From 396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b Mon Sep 17 00:00:00 2001 From: Fuwn <50817549+Fuwn@users.noreply.github.com> Date: Sat, 24 Jan 2026 13:09:50 +0000 Subject: Initial commit Created from https://vercel.com/new --- .dockerignore | 11 + .github/ISSUE_TEMPLATE/1.bug_report.yml | 36 + .github/ISSUE_TEMPLATE/2.feature_request.yml | 9 + .github/ISSUE_TEMPLATE/config.yml | 6 + .gitignore | 45 + .husky/pre-commit | 1 + .stylelintrc.json | 6 + Dockerfile | 66 + LICENSE | 21 + README.md | 132 + app.json | 16 + biome.json | 65 + cypress.config.ts | 13 + cypress/docker-compose.yml | 52 + cypress/e2e/api-team.cy.ts | 209 + cypress/e2e/api-user.cy.ts | 125 + cypress/e2e/api-website.cy.ts | 198 + cypress/e2e/login.cy.ts | 36 + cypress/e2e/user.cy.ts | 65 + cypress/e2e/website.cy.ts | 89 + cypress/fixtures/teams.json | 8 + cypress/fixtures/users.json | 11 + cypress/fixtures/websites.json | 10 + cypress/support/e2e.ts | 123 + cypress/support/index.d.ts | 56 + cypress/tsconfig.json | 8 + db/clickhouse/migrations/01_edit_keys.sql | 18 + db/clickhouse/migrations/02_add_visit_id.sql | 90 + db/clickhouse/migrations/03_session_data.sql | 57 + db/clickhouse/migrations/04_add_tag.sql | 77 + db/clickhouse/migrations/05_add_utm_clid.sql | 332 + db/clickhouse/migrations/06_update_subdivision.sql | 122 + db/clickhouse/migrations/07_add_distinct_id.sql | 103 + .../migrations/08_update_hostname_view.sql | 253 + db/clickhouse/schema.sql | 283 + .../data-migrations/convert-utm-clid-columns.sql | 49 + .../data-migrations/populate-revenue-table.sql | 41 + docker-compose.yml | 35 + docker/middleware.ts | 78 + jest.config.ts | 10 + netlify.toml | 5 + next-env.d.ts | 6 + next.config.ts | 202 + package.components.json | 10 + package.json | 174 + pnpm-lock.yaml | 15100 +++++++++++++++++++ pnpm-workspace.yaml | 10 + podman/README.md | 50 + podman/env.sample | 16 + podman/install-systemd-user-service | 10 + podman/podman-compose.yml | 41 + podman/umami.service | 14 + postcss.config.js | 17 + prisma.config.ts | 8 + prisma/migrations/01_init/migration.sql | 199 + .../02_report_schema_session_data/migration.sql | 70 + .../03_metric_performance_index/migration.sql | 50 + prisma/migrations/04_team_redesign/migration.sql | 29 + prisma/migrations/05_add_visit_id/migration.sql | 22 + prisma/migrations/06_session_data/migration.sql | 18 + prisma/migrations/07_add_tag/migration.sql | 5 + prisma/migrations/08_add_utm_clid/migration.sql | 13 + .../09_update_hostname_region/migration.sql | 25 + prisma/migrations/10_add_distinct_id/migration.sql | 5 + prisma/migrations/11_add_segment/migration.sql | 18 + .../12_update_report_parameter/migration.sql | 3 + prisma/migrations/13_add_revenue/migration.sql | 28 + .../migrations/14_add_link_and_pixel/migration.sql | 119 + prisma/migrations/migration_lock.toml | 3 + prisma/schema.prisma | 318 + public/android-chrome-192x192.png | Bin 0 -> 7707 bytes public/android-chrome-512x512.png | Bin 0 -> 21989 bytes public/apple-touch-icon.png | Bin 0 -> 1992 bytes public/browserconfig.xml | 9 + public/datamaps.world.json | 13191 ++++++++++++++++ public/favicon-16x16.png | Bin 0 -> 580 bytes public/favicon-32x32.png | Bin 0 -> 851 bytes public/favicon.ico | Bin 0 -> 15086 bytes public/images/browser/android-webview.png | Bin 0 -> 806 bytes public/images/browser/android.png | Bin 0 -> 1510 bytes public/images/browser/aol.png | Bin 0 -> 420 bytes public/images/browser/beaker.png | Bin 0 -> 1058 bytes public/images/browser/blackberry.png | Bin 0 -> 1438 bytes public/images/browser/brave.png | Bin 0 -> 635 bytes public/images/browser/chrome.png | Bin 0 -> 819 bytes public/images/browser/chromium-webview.png | Bin 0 -> 680 bytes public/images/browser/crios.png | Bin 0 -> 819 bytes public/images/browser/curl.png | Bin 0 -> 1195 bytes public/images/browser/edge-chromium.png | Bin 0 -> 811 bytes public/images/browser/edge-ios.png | Bin 0 -> 811 bytes public/images/browser/edge.png | Bin 0 -> 2048 bytes public/images/browser/facebook.png | Bin 0 -> 2036 bytes public/images/browser/firefox.png | Bin 0 -> 835 bytes public/images/browser/fxios.png | Bin 0 -> 835 bytes public/images/browser/ie.png | Bin 0 -> 2019 bytes public/images/browser/instagram.png | Bin 0 -> 2177 bytes public/images/browser/ios-webview.png | Bin 0 -> 1276 bytes public/images/browser/ios.png | Bin 0 -> 1276 bytes public/images/browser/kakaotalk.png | Bin 0 -> 426 bytes public/images/browser/miui.png | Bin 0 -> 1688 bytes public/images/browser/opera-mini.png | Bin 0 -> 794 bytes public/images/browser/opera.png | Bin 0 -> 632 bytes public/images/browser/safari.png | Bin 0 -> 829 bytes public/images/browser/samsung.png | Bin 0 -> 535 bytes public/images/browser/searchbot.png | Bin 0 -> 1255 bytes public/images/browser/silk.png | Bin 0 -> 621 bytes public/images/browser/unknown.png | Bin 0 -> 106 bytes public/images/browser/yandexbrowser.png | Bin 0 -> 794 bytes public/images/country/ad.png | Bin 0 -> 235 bytes public/images/country/ae.png | Bin 0 -> 122 bytes public/images/country/af.png | Bin 0 -> 296 bytes public/images/country/ag.png | Bin 0 -> 281 bytes public/images/country/ai.png | Bin 0 -> 245 bytes public/images/country/al.png | Bin 0 -> 183 bytes public/images/country/am.png | Bin 0 -> 110 bytes public/images/country/ao.png | Bin 0 -> 201 bytes public/images/country/aq.png | Bin 0 -> 186 bytes public/images/country/ar.png | Bin 0 -> 141 bytes public/images/country/as.png | Bin 0 -> 237 bytes public/images/country/at.png | Bin 0 -> 102 bytes public/images/country/au.png | Bin 0 -> 211 bytes public/images/country/aw.png | Bin 0 -> 139 bytes public/images/country/ax.png | Bin 0 -> 163 bytes public/images/country/az.png | Bin 0 -> 150 bytes public/images/country/ba.png | Bin 0 -> 175 bytes public/images/country/bb.png | Bin 0 -> 149 bytes public/images/country/bd.png | Bin 0 -> 129 bytes public/images/country/be.png | Bin 0 -> 105 bytes public/images/country/bf.png | Bin 0 -> 140 bytes public/images/country/bg.png | Bin 0 -> 97 bytes public/images/country/bh.png | Bin 0 -> 153 bytes public/images/country/bi.png | Bin 0 -> 264 bytes public/images/country/bj.png | Bin 0 -> 107 bytes public/images/country/bl.png | Bin 0 -> 353 bytes public/images/country/bm.png | Bin 0 -> 286 bytes public/images/country/bn.png | Bin 0 -> 350 bytes public/images/country/bo.png | Bin 0 -> 145 bytes public/images/country/bq.png | Bin 0 -> 321 bytes public/images/country/br.png | Bin 0 -> 260 bytes public/images/country/bs.png | Bin 0 -> 147 bytes public/images/country/bt.png | Bin 0 -> 316 bytes public/images/country/bv.png | Bin 0 -> 150 bytes public/images/country/bw.png | Bin 0 -> 114 bytes public/images/country/by.png | Bin 0 -> 145 bytes public/images/country/bz.png | Bin 0 -> 253 bytes public/images/country/ca.png | Bin 0 -> 171 bytes public/images/country/cc.png | Bin 0 -> 211 bytes public/images/country/cd.png | Bin 0 -> 233 bytes public/images/country/cf.png | Bin 0 -> 206 bytes public/images/country/cg.png | Bin 0 -> 164 bytes public/images/country/ch.png | Bin 0 -> 129 bytes public/images/country/ci.png | Bin 0 -> 114 bytes public/images/country/ck.png | Bin 0 -> 230 bytes public/images/country/cl.png | Bin 0 -> 144 bytes public/images/country/cm.png | Bin 0 -> 135 bytes public/images/country/cn.png | Bin 0 -> 144 bytes public/images/country/co.png | Bin 0 -> 112 bytes public/images/country/cr.png | Bin 0 -> 142 bytes public/images/country/cu.png | Bin 0 -> 163 bytes public/images/country/cv.png | Bin 0 -> 146 bytes public/images/country/cw.png | Bin 0 -> 154 bytes public/images/country/cx.png | Bin 0 -> 240 bytes public/images/country/cy.png | Bin 0 -> 196 bytes public/images/country/cz.png | Bin 0 -> 196 bytes public/images/country/de.png | Bin 0 -> 97 bytes public/images/country/dj.png | Bin 0 -> 234 bytes public/images/country/dk.png | Bin 0 -> 127 bytes public/images/country/dm.png | Bin 0 -> 200 bytes public/images/country/do.png | Bin 0 -> 164 bytes public/images/country/dz.png | Bin 0 -> 160 bytes public/images/country/ec.png | Bin 0 -> 237 bytes public/images/country/ee.png | Bin 0 -> 117 bytes public/images/country/eg.png | Bin 0 -> 160 bytes public/images/country/eh.png | Bin 0 -> 230 bytes public/images/country/er.png | Bin 0 -> 204 bytes public/images/country/es.png | Bin 0 -> 190 bytes public/images/country/et.png | Bin 0 -> 215 bytes public/images/country/fi.png | Bin 0 -> 121 bytes public/images/country/fj.png | Bin 0 -> 257 bytes public/images/country/fk.png | Bin 0 -> 285 bytes public/images/country/fm.png | Bin 0 -> 156 bytes public/images/country/fo.png | Bin 0 -> 147 bytes public/images/country/fr.png | Bin 0 -> 105 bytes public/images/country/ga.png | Bin 0 -> 98 bytes public/images/country/gb-eng.png | Bin 0 -> 119 bytes public/images/country/gb-nir.png | Bin 0 -> 169 bytes public/images/country/gb-sct.png | Bin 0 -> 190 bytes public/images/country/gb-wls.png | Bin 0 -> 420 bytes public/images/country/gb.png | Bin 0 -> 196 bytes public/images/country/gd.png | Bin 0 -> 228 bytes public/images/country/ge.png | Bin 0 -> 179 bytes public/images/country/gf.png | Bin 0 -> 232 bytes public/images/country/gg.png | Bin 0 -> 154 bytes public/images/country/gh.png | Bin 0 -> 155 bytes public/images/country/gi.png | Bin 0 -> 223 bytes public/images/country/gl.png | Bin 0 -> 190 bytes public/images/country/gm.png | Bin 0 -> 119 bytes public/images/country/gn.png | Bin 0 -> 113 bytes public/images/country/gp.png | Bin 0 -> 299 bytes public/images/country/gq.png | Bin 0 -> 244 bytes public/images/country/gr.png | Bin 0 -> 158 bytes public/images/country/gs.png | Bin 0 -> 327 bytes public/images/country/gt.png | Bin 0 -> 156 bytes public/images/country/gu.png | Bin 0 -> 165 bytes public/images/country/gw.png | Bin 0 -> 141 bytes public/images/country/gy.png | Bin 0 -> 259 bytes public/images/country/hk.png | Bin 0 -> 187 bytes public/images/country/hm.png | Bin 0 -> 222 bytes public/images/country/hn.png | Bin 0 -> 138 bytes public/images/country/hr.png | Bin 0 -> 193 bytes public/images/country/ht.png | Bin 0 -> 139 bytes public/images/country/hu.png | Bin 0 -> 110 bytes public/images/country/id.png | Bin 0 -> 98 bytes public/images/country/ie.png | Bin 0 -> 105 bytes public/images/country/il.png | Bin 0 -> 174 bytes public/images/country/im.png | Bin 0 -> 178 bytes public/images/country/in.png | Bin 0 -> 148 bytes public/images/country/io.png | Bin 0 -> 391 bytes public/images/country/iq.png | Bin 0 -> 152 bytes public/images/country/ir.png | Bin 0 -> 177 bytes public/images/country/is.png | Bin 0 -> 138 bytes public/images/country/it.png | Bin 0 -> 105 bytes public/images/country/je.png | Bin 0 -> 223 bytes public/images/country/jm.png | Bin 0 -> 159 bytes public/images/country/jo.png | Bin 0 -> 173 bytes public/images/country/jp.png | Bin 0 -> 138 bytes public/images/country/ke.png | Bin 0 -> 205 bytes public/images/country/kg.png | Bin 0 -> 154 bytes public/images/country/kh.png | Bin 0 -> 204 bytes public/images/country/ki.png | Bin 0 -> 311 bytes public/images/country/km.png | Bin 0 -> 234 bytes public/images/country/kn.png | Bin 0 -> 341 bytes public/images/country/kp.png | Bin 0 -> 158 bytes public/images/country/kr.png | Bin 0 -> 315 bytes public/images/country/kw.png | Bin 0 -> 160 bytes public/images/country/ky.png | Bin 0 -> 272 bytes public/images/country/kz.png | Bin 0 -> 166 bytes public/images/country/la.png | Bin 0 -> 137 bytes public/images/country/lb.png | Bin 0 -> 199 bytes public/images/country/lc.png | Bin 0 -> 188 bytes public/images/country/li.png | Bin 0 -> 146 bytes public/images/country/lk.png | Bin 0 -> 277 bytes public/images/country/lr.png | Bin 0 -> 152 bytes public/images/country/ls.png | Bin 0 -> 149 bytes public/images/country/lt.png | Bin 0 -> 98 bytes public/images/country/lu.png | Bin 0 -> 98 bytes public/images/country/lv.png | Bin 0 -> 92 bytes public/images/country/ly.png | Bin 0 -> 134 bytes public/images/country/ma.png | Bin 0 -> 115 bytes public/images/country/mc.png | Bin 0 -> 92 bytes public/images/country/md.png | Bin 0 -> 188 bytes public/images/country/me.png | Bin 0 -> 188 bytes public/images/country/mf.png | Bin 0 -> 105 bytes public/images/country/mg.png | Bin 0 -> 118 bytes public/images/country/mh.png | Bin 0 -> 321 bytes public/images/country/mk.png | Bin 0 -> 184 bytes public/images/country/ml.png | Bin 0 -> 114 bytes public/images/country/mm.png | Bin 0 -> 219 bytes public/images/country/mn.png | Bin 0 -> 165 bytes public/images/country/mo.png | Bin 0 -> 163 bytes public/images/country/mp.png | Bin 0 -> 341 bytes public/images/country/mq.png | Bin 0 -> 219 bytes public/images/country/mr.png | Bin 0 -> 175 bytes public/images/country/ms.png | Bin 0 -> 246 bytes public/images/country/mt.png | Bin 0 -> 140 bytes public/images/country/mu.png | Bin 0 -> 126 bytes public/images/country/mv.png | Bin 0 -> 153 bytes public/images/country/mw.png | Bin 0 -> 155 bytes public/images/country/mx.png | Bin 0 -> 189 bytes public/images/country/my.png | Bin 0 -> 189 bytes public/images/country/mz.png | Bin 0 -> 257 bytes public/images/country/na.png | Bin 0 -> 310 bytes public/images/country/nc.png | Bin 0 -> 249 bytes public/images/country/ne.png | Bin 0 -> 139 bytes public/images/country/nf.png | Bin 0 -> 175 bytes public/images/country/ng.png | Bin 0 -> 109 bytes public/images/country/ni.png | Bin 0 -> 123 bytes public/images/country/nl.png | Bin 0 -> 117 bytes public/images/country/no.png | Bin 0 -> 150 bytes public/images/country/np.png | Bin 0 -> 371 bytes public/images/country/nr.png | Bin 0 -> 129 bytes public/images/country/nu.png | Bin 0 -> 194 bytes public/images/country/nz.png | Bin 0 -> 207 bytes public/images/country/om.png | Bin 0 -> 146 bytes public/images/country/pa.png | Bin 0 -> 158 bytes public/images/country/pe.png | Bin 0 -> 95 bytes public/images/country/pf.png | Bin 0 -> 218 bytes public/images/country/pg.png | Bin 0 -> 265 bytes public/images/country/ph.png | Bin 0 -> 227 bytes public/images/country/pk.png | Bin 0 -> 183 bytes public/images/country/pl.png | Bin 0 -> 98 bytes public/images/country/pm.png | Bin 0 -> 727 bytes public/images/country/pn.png | Bin 0 -> 309 bytes public/images/country/pr.png | Bin 0 -> 219 bytes public/images/country/ps.png | Bin 0 -> 189 bytes public/images/country/pt.png | Bin 0 -> 226 bytes public/images/country/pw.png | Bin 0 -> 165 bytes public/images/country/py.png | Bin 0 -> 149 bytes public/images/country/qa.png | Bin 0 -> 120 bytes public/images/country/re.png | Bin 0 -> 244 bytes public/images/country/ro.png | Bin 0 -> 105 bytes public/images/country/rs.png | Bin 0 -> 291 bytes public/images/country/ru.png | Bin 0 -> 112 bytes public/images/country/rw.png | Bin 0 -> 157 bytes public/images/country/sa.png | Bin 0 -> 152 bytes public/images/country/sb.png | Bin 0 -> 184 bytes public/images/country/sc.png | Bin 0 -> 241 bytes public/images/country/sd.png | Bin 0 -> 192 bytes public/images/country/se.png | Bin 0 -> 124 bytes public/images/country/sg.png | Bin 0 -> 150 bytes public/images/country/sh.png | Bin 0 -> 236 bytes public/images/country/si.png | Bin 0 -> 143 bytes public/images/country/sj.png | Bin 0 -> 150 bytes public/images/country/sk.png | Bin 0 -> 207 bytes public/images/country/sl.png | Bin 0 -> 117 bytes public/images/country/sm.png | Bin 0 -> 291 bytes public/images/country/sn.png | Bin 0 -> 135 bytes public/images/country/so.png | Bin 0 -> 140 bytes public/images/country/sr.png | Bin 0 -> 152 bytes public/images/country/ss.png | Bin 0 -> 201 bytes public/images/country/st.png | Bin 0 -> 150 bytes public/images/country/sv.png | Bin 0 -> 144 bytes public/images/country/sx.png | Bin 0 -> 286 bytes public/images/country/sy.png | Bin 0 -> 152 bytes public/images/country/sz.png | Bin 0 -> 318 bytes public/images/country/tc.png | Bin 0 -> 216 bytes public/images/country/td.png | Bin 0 -> 105 bytes public/images/country/tf.png | Bin 0 -> 197 bytes public/images/country/tg.png | Bin 0 -> 188 bytes public/images/country/th.png | Bin 0 -> 125 bytes public/images/country/tj.png | Bin 0 -> 150 bytes public/images/country/tk.png | Bin 0 -> 220 bytes public/images/country/tl.png | Bin 0 -> 188 bytes public/images/country/tm.png | Bin 0 -> 283 bytes public/images/country/tn.png | Bin 0 -> 154 bytes public/images/country/to.png | Bin 0 -> 133 bytes public/images/country/tr.png | Bin 0 -> 154 bytes public/images/country/tt.png | Bin 0 -> 218 bytes public/images/country/tv.png | Bin 0 -> 231 bytes public/images/country/tw.png | Bin 0 -> 149 bytes public/images/country/tz.png | Bin 0 -> 276 bytes public/images/country/ua.png | Bin 0 -> 98 bytes public/images/country/ug.png | Bin 0 -> 211 bytes public/images/country/um.png | Bin 0 -> 221 bytes public/images/country/unknown.png | Bin 0 -> 106 bytes public/images/country/us.png | Bin 0 -> 221 bytes public/images/country/uy.png | Bin 0 -> 217 bytes public/images/country/uz.png | Bin 0 -> 144 bytes public/images/country/va.png | Bin 0 -> 273 bytes public/images/country/vc.png | Bin 0 -> 155 bytes public/images/country/ve.png | Bin 0 -> 166 bytes public/images/country/vg.png | Bin 0 -> 282 bytes public/images/country/vi.png | Bin 0 -> 443 bytes public/images/country/vn.png | Bin 0 -> 141 bytes public/images/country/vu.png | Bin 0 -> 220 bytes public/images/country/wf.png | Bin 0 -> 169 bytes public/images/country/ws.png | Bin 0 -> 127 bytes public/images/country/xk.png | Bin 0 -> 213 bytes public/images/country/ye.png | Bin 0 -> 117 bytes public/images/country/yt.png | Bin 0 -> 327 bytes public/images/country/za.png | Bin 0 -> 291 bytes public/images/country/zm.png | Bin 0 -> 170 bytes public/images/country/zw.png | Bin 0 -> 210 bytes public/images/device/desktop.png | Bin 0 -> 653 bytes public/images/device/laptop.png | Bin 0 -> 910 bytes public/images/device/mobile.png | Bin 0 -> 551 bytes public/images/device/tablet.png | Bin 0 -> 572 bytes public/images/device/unknown.png | Bin 0 -> 106 bytes public/images/os/amazon-os.png | Bin 0 -> 2028 bytes public/images/os/android-os.png | Bin 0 -> 1798 bytes public/images/os/beos.png | Bin 0 -> 2630 bytes public/images/os/blackberry-os.png | Bin 0 -> 1939 bytes public/images/os/chrome-os.png | Bin 0 -> 1423 bytes public/images/os/ios.png | Bin 0 -> 657 bytes public/images/os/linux.png | Bin 0 -> 1784 bytes public/images/os/mac-os.png | Bin 0 -> 2332 bytes public/images/os/open-bsd.png | Bin 0 -> 3107 bytes public/images/os/os-2.png | Bin 0 -> 1224 bytes public/images/os/qnx.png | Bin 0 -> 2334 bytes public/images/os/sun-os.png | Bin 0 -> 2293 bytes public/images/os/unknown.png | Bin 0 -> 106 bytes public/images/os/windows-10.png | Bin 0 -> 221 bytes public/images/os/windows-11.png | Bin 0 -> 221 bytes public/images/os/windows-2000.png | Bin 0 -> 2821 bytes public/images/os/windows-3-11.png | Bin 0 -> 2821 bytes public/images/os/windows-7.png | Bin 0 -> 2427 bytes public/images/os/windows-8-1.png | Bin 0 -> 1412 bytes public/images/os/windows-8.png | Bin 0 -> 1412 bytes public/images/os/windows-95.png | Bin 0 -> 2821 bytes public/images/os/windows-98.png | Bin 0 -> 2821 bytes public/images/os/windows-me.png | Bin 0 -> 2427 bytes public/images/os/windows-mobile.png | Bin 0 -> 2427 bytes public/images/os/windows-server-2003.png | Bin 0 -> 2427 bytes public/images/os/windows-vista.png | Bin 0 -> 2427 bytes public/images/os/windows-xp.png | Bin 0 -> 2427 bytes public/intl/country/am-ET.json | 252 + public/intl/country/ar-SA.json | 252 + public/intl/country/be-BY.json | 252 + public/intl/country/bg-BG.json | 252 + public/intl/country/bn-BD.json | 252 + public/intl/country/bs-BA.json | 252 + public/intl/country/ca-ES.json | 252 + public/intl/country/cs-CZ.json | 252 + public/intl/country/da-DK.json | 252 + public/intl/country/de-CH.json | 252 + public/intl/country/de-DE.json | 252 + public/intl/country/el-GR.json | 252 + public/intl/country/en-GB.json | 252 + public/intl/country/en-US.json | 252 + public/intl/country/es-ES.json | 252 + public/intl/country/es-MX.json | 252 + public/intl/country/fa-IR.json | 252 + public/intl/country/fi-FI.json | 252 + public/intl/country/fo-FO.json | 252 + public/intl/country/fr-FR.json | 252 + public/intl/country/he-IL.json | 252 + public/intl/country/hi-IN.json | 252 + public/intl/country/hr-HR.json | 252 + public/intl/country/hu-HU.json | 252 + public/intl/country/id-ID.json | 252 + public/intl/country/it-IT.json | 252 + public/intl/country/ja-JP.json | 252 + public/intl/country/km-KH.json | 252 + public/intl/country/ko-KR.json | 252 + public/intl/country/lt-LT.json | 252 + public/intl/country/mn-MN.json | 252 + public/intl/country/ms-MY.json | 252 + public/intl/country/my-MM.json | 252 + public/intl/country/nb-NO.json | 252 + public/intl/country/nl-NL.json | 252 + public/intl/country/pl-PL.json | 252 + public/intl/country/pt-BR.json | 252 + public/intl/country/pt-PT.json | 252 + public/intl/country/ro-RO.json | 252 + public/intl/country/ru-RU.json | 252 + public/intl/country/si-LK.json | 252 + public/intl/country/sk-SK.json | 252 + public/intl/country/sl-SI.json | 252 + public/intl/country/sv-SE.json | 252 + public/intl/country/ta-IN.json | 252 + public/intl/country/th-TH.json | 252 + public/intl/country/tr-TR.json | 252 + public/intl/country/uk-UA.json | 252 + public/intl/country/ur-PK.json | 252 + public/intl/country/uz-UZ.json | 251 + public/intl/country/vi-VN.json | 252 + public/intl/country/zh-CN.json | 252 + public/intl/country/zh-TW.json | 252 + public/intl/language/am-ET.json | 611 + public/intl/language/ar-SA.json | 611 + public/intl/language/be-BY.json | 611 + public/intl/language/bg-BG.json | 611 + public/intl/language/bn-BD.json | 611 + public/intl/language/bs-BA.json | 611 + public/intl/language/ca-ES.json | 611 + public/intl/language/cs-CZ.json | 611 + public/intl/language/da-DK.json | 611 + public/intl/language/de-CH.json | 611 + public/intl/language/de-DE.json | 611 + public/intl/language/el-GR.json | 611 + public/intl/language/en-GB.json | 611 + public/intl/language/en-US.json | 184 + public/intl/language/es-ES.json | 611 + public/intl/language/es-MX.json | 611 + public/intl/language/fa-IR.json | 611 + public/intl/language/fi-FI.json | 611 + public/intl/language/fo-FO.json | 611 + public/intl/language/fr-FR.json | 611 + public/intl/language/he-IL.json | 611 + public/intl/language/hi-IN.json | 611 + public/intl/language/hr-HR.json | 611 + public/intl/language/hu-HU.json | 611 + public/intl/language/id-ID.json | 611 + public/intl/language/it-IT.json | 611 + public/intl/language/ja-JP.json | 611 + public/intl/language/km-KH.json | 611 + public/intl/language/ko-KR.json | 611 + public/intl/language/lt-LT.json | 611 + public/intl/language/mn-MN.json | 611 + public/intl/language/ms-MY.json | 611 + public/intl/language/my-MM.json | 611 + public/intl/language/nb-NO.json | 611 + public/intl/language/nl-NL.json | 611 + public/intl/language/pl-PL.json | 611 + public/intl/language/pt-BR.json | 611 + public/intl/language/pt-PT.json | 611 + public/intl/language/ro-RO.json | 611 + public/intl/language/ru-RU.json | 611 + public/intl/language/si-LK.json | 611 + public/intl/language/sk-SK.json | 611 + public/intl/language/sl-SI.json | 611 + public/intl/language/sv-SE.json | 611 + public/intl/language/ta-IN.json | 611 + public/intl/language/th-TH.json | 611 + public/intl/language/tr-TR.json | 611 + public/intl/language/uk-UA.json | 611 + public/intl/language/ur-PK.json | 611 + public/intl/language/uz-UZ.json | 611 + public/intl/language/vi-VN.json | 611 + public/intl/language/zh-CN.json | 611 + public/intl/language/zh-TW.json | 611 + public/intl/messages/am-ET.json | 2230 +++ public/intl/messages/ar-SA.json | 2214 +++ public/intl/messages/be-BY.json | 2222 +++ public/intl/messages/bg-BG.json | 2228 +++ public/intl/messages/bn-BD.json | 2230 +++ public/intl/messages/bs-BA.json | 2228 +++ public/intl/messages/ca-ES.json | 2222 +++ public/intl/messages/cs-CZ.json | 2222 +++ public/intl/messages/da-DK.json | 2222 +++ public/intl/messages/de-CH.json | 2214 +++ public/intl/messages/de-DE.json | 2210 +++ public/intl/messages/el-GR.json | 2222 +++ public/intl/messages/en-GB.json | 2222 +++ public/intl/messages/en-US.json | 2228 +++ public/intl/messages/es-ES.json | 2228 +++ public/intl/messages/es-MX.json | 1460 ++ public/intl/messages/fa-IR.json | 2202 +++ public/intl/messages/fi-FI.json | 2222 +++ public/intl/messages/fo-FO.json | 2222 +++ public/intl/messages/fr-FR.json | 2206 +++ public/intl/messages/ga-ES.json | 2230 +++ public/intl/messages/he-IL.json | 2206 +++ public/intl/messages/hi-IN.json | 2214 +++ public/intl/messages/hr-HR.json | 2236 +++ public/intl/messages/hu-HU.json | 2226 +++ public/intl/messages/id-ID.json | 2186 +++ public/intl/messages/it-IT.json | 2226 +++ public/intl/messages/ja-JP.json | 2212 +++ public/intl/messages/km-KH.json | 2212 +++ public/intl/messages/ko-KR.json | 2168 +++ public/intl/messages/lt-LT.json | 2347 +++ public/intl/messages/mn-MN.json | 2236 +++ public/intl/messages/ms-MY.json | 2214 +++ public/intl/messages/my-MM.json | 2202 +++ public/intl/messages/nb-NO.json | 2226 +++ public/intl/messages/nl-NL.json | 2222 +++ public/intl/messages/pl-PL.json | 2222 +++ public/intl/messages/pt-BR.json | 2206 +++ public/intl/messages/pt-PT.json | 2226 +++ public/intl/messages/ro-RO.json | 2222 +++ public/intl/messages/ru-RU.json | 2190 +++ public/intl/messages/si-LK.json | 2228 +++ public/intl/messages/sk-SK.json | 2222 +++ public/intl/messages/sl-SI.json | 2096 +++ public/intl/messages/sv-SE.json | 2226 +++ public/intl/messages/ta-IN.json | 2218 +++ public/intl/messages/th-TH.json | 2218 +++ public/intl/messages/tr-TR.json | 2178 +++ public/intl/messages/uk-UA.json | 2198 +++ public/intl/messages/ur-PK.json | 2222 +++ public/intl/messages/uz-UZ.json | 1858 +++ public/intl/messages/vi-VN.json | 1860 +++ public/intl/messages/zh-CN.json | 2214 +++ public/intl/messages/zh-TW.json | 2200 +++ public/iso-3166-2.json | 3617 +++++ public/mstile-150x150.png | Bin 0 -> 2602 bytes public/robots.txt | 2 + public/safari-pinned-tab.svg | 1 + public/site.webmanifest | 19 + rollup.tracker.config.js | 20 + scripts/build-geo.js | 108 + scripts/build-prisma-client.js | 18 + scripts/check-db.js | 90 + scripts/check-env.js | 27 + scripts/download-country-names.js | 59 + scripts/download-language-names.js | 59 + scripts/format-lang.js | 35 + scripts/merge-messages.js | 43 + scripts/postbuild.js | 10 + scripts/seed-data.ts | 121 + scripts/seed/distributions/devices.ts | 80 + scripts/seed/distributions/geographic.ts | 144 + scripts/seed/distributions/referrers.ts | 163 + scripts/seed/distributions/temporal.ts | 69 + scripts/seed/generators/events.ts | 191 + scripts/seed/generators/revenue.ts | 65 + scripts/seed/generators/sessions.ts | 52 + scripts/seed/index.ts | 378 + scripts/seed/sites/blog.ts | 108 + scripts/seed/sites/saas.ts | 185 + scripts/seed/utils.ts | 85 + scripts/start-env.js | 7 + scripts/telemetry.js | 40 + scripts/update-tracker.js | 16 + src/app/(collect)/p/[slug]/route.ts | 68 + src/app/(collect)/q/[slug]/route.ts | 61 + src/app/(main)/App.tsx | 62 + src/app/(main)/MobileNav.tsx | 71 + src/app/(main)/SideNav.tsx | 87 + src/app/(main)/TopNav.tsx | 26 + src/app/(main)/UpdateNotice.tsx | 61 + src/app/(main)/admin/AdminLayout.tsx | 33 + src/app/(main)/admin/AdminNav.tsx | 48 + src/app/(main)/admin/layout.tsx | 17 + src/app/(main)/admin/teams/AdminTeamsDataTable.tsx | 19 + src/app/(main)/admin/teams/AdminTeamsPage.tsx | 19 + src/app/(main)/admin/teams/AdminTeamsTable.tsx | 86 + .../(main)/admin/teams/[teamId]/AdminTeamPage.tsx | 11 + src/app/(main)/admin/teams/[teamId]/page.tsx | 12 + src/app/(main)/admin/teams/page.tsx | 9 + src/app/(main)/admin/users/UserAddButton.tsx | 32 + src/app/(main)/admin/users/UserAddForm.tsx | 71 + src/app/(main)/admin/users/UserDeleteButton.tsx | 35 + src/app/(main)/admin/users/UserDeleteForm.tsx | 41 + src/app/(main)/admin/users/UsersDataTable.tsx | 14 + src/app/(main)/admin/users/UsersPage.tsx | 24 + src/app/(main)/admin/users/UsersTable.tsx | 84 + .../(main)/admin/users/[userId]/UserEditForm.tsx | 73 + src/app/(main)/admin/users/[userId]/UserHeader.tsx | 9 + src/app/(main)/admin/users/[userId]/UserPage.tsx | 19 + .../(main)/admin/users/[userId]/UserProvider.tsx | 20 + .../(main)/admin/users/[userId]/UserSettings.tsx | 25 + .../(main)/admin/users/[userId]/UserWebsites.tsx | 15 + src/app/(main)/admin/users/[userId]/page.tsx | 12 + src/app/(main)/admin/users/page.tsx | 9 + .../admin/websites/AdminWebsitesDataTable.tsx | 13 + .../(main)/admin/websites/AdminWebsitesPage.tsx | 19 + .../(main)/admin/websites/AdminWebsitesTable.tsx | 89 + .../websites/[websiteId]/AdminWebsitePage.tsx | 14 + src/app/(main)/admin/websites/[websiteId]/page.tsx | 12 + src/app/(main)/admin/websites/page.tsx | 9 + src/app/(main)/boards/BoardAddButton.tsx | 32 + src/app/(main)/boards/BoardAddForm.tsx | 60 + src/app/(main)/boards/BoardsPage.tsx | 17 + src/app/(main)/boards/[boardId]/Board.tsx | 10 + src/app/(main)/boards/[boardId]/page.tsx | 12 + src/app/(main)/boards/page.tsx | 10 + .../(main)/console/[websiteId]/TestConsolePage.tsx | 207 + src/app/(main)/console/[websiteId]/page.tsx | 22 + src/app/(main)/dashboard/DashboardPage.tsx | 17 + src/app/(main)/dashboard/page.tsx | 10 + src/app/(main)/layout.tsx | 18 + src/app/(main)/links/LinkAddButton.tsx | 19 + src/app/(main)/links/LinkDeleteButton.tsx | 57 + src/app/(main)/links/LinkEditButton.tsx | 16 + src/app/(main)/links/LinkEditForm.tsx | 148 + src/app/(main)/links/LinkProvider.tsx | 21 + src/app/(main)/links/LinksDataTable.tsx | 14 + src/app/(main)/links/LinksPage.tsx | 26 + src/app/(main)/links/LinksTable.tsx | 51 + src/app/(main)/links/[linkId]/LinkControls.tsx | 32 + src/app/(main)/links/[linkId]/LinkHeader.tsx | 19 + src/app/(main)/links/[linkId]/LinkMetricsBar.tsx | 70 + src/app/(main)/links/[linkId]/LinkPage.tsx | 34 + src/app/(main)/links/[linkId]/LinkPanels.tsx | 83 + src/app/(main)/links/[linkId]/page.tsx | 12 + src/app/(main)/links/page.tsx | 10 + src/app/(main)/pixels/PixelAddButton.tsx | 19 + src/app/(main)/pixels/PixelDeleteButton.tsx | 57 + src/app/(main)/pixels/PixelEditButton.tsx | 21 + src/app/(main)/pixels/PixelEditForm.tsx | 129 + src/app/(main)/pixels/PixelProvider.tsx | 21 + src/app/(main)/pixels/PixelsDataTable.tsx | 14 + src/app/(main)/pixels/PixelsPage.tsx | 26 + src/app/(main)/pixels/PixelsTable.tsx | 48 + src/app/(main)/pixels/[pixelId]/PixelControls.tsx | 32 + src/app/(main)/pixels/[pixelId]/PixelHeader.tsx | 19 + .../(main)/pixels/[pixelId]/PixelMetricsBar.tsx | 70 + src/app/(main)/pixels/[pixelId]/PixelPage.tsx | 34 + src/app/(main)/pixels/[pixelId]/PixelPanels.tsx | 83 + src/app/(main)/pixels/[pixelId]/page.tsx | 12 + src/app/(main)/pixels/page.tsx | 10 + src/app/(main)/settings/SettingsLayout.tsx | 26 + src/app/(main)/settings/SettingsNav.tsx | 53 + src/app/(main)/settings/layout.tsx | 17 + .../settings/preferences/DateRangeSetting.tsx | 28 + .../settings/preferences/LanguageSetting.tsx | 48 + .../settings/preferences/PreferenceSettings.tsx | 36 + .../settings/preferences/PreferencesPage.tsx | 22 + .../(main)/settings/preferences/ThemeSetting.tsx | 21 + .../settings/preferences/TimezoneSetting.tsx | 44 + src/app/(main)/settings/preferences/page.tsx | 10 + .../settings/profile/PasswordChangeButton.tsx | 29 + .../(main)/settings/profile/PasswordEditForm.tsx | 67 + src/app/(main)/settings/profile/ProfileHeader.tsx | 8 + src/app/(main)/settings/profile/ProfilePage.tsx | 22 + .../(main)/settings/profile/ProfileSettings.tsx | 51 + src/app/(main)/settings/profile/page.tsx | 10 + .../(main)/settings/teams/TeamsSettingsPage.tsx | 16 + .../settings/teams/[teamId]/TeamSettingsPage.tsx | 11 + src/app/(main)/settings/teams/[teamId]/page.tsx | 12 + src/app/(main)/settings/teams/page.tsx | 10 + .../settings/websites/WebsitesSettingsPage.tsx | 16 + .../websites/[websiteId]/WebsiteSettingsPage.tsx | 16 + .../(main)/settings/websites/[websiteId]/page.tsx | 12 + src/app/(main)/settings/websites/page.tsx | 12 + src/app/(main)/teams/TeamAddForm.tsx | 39 + src/app/(main)/teams/TeamJoinForm.tsx | 40 + src/app/(main)/teams/TeamLeaveButton.tsx | 41 + src/app/(main)/teams/TeamLeaveForm.tsx | 48 + src/app/(main)/teams/TeamProvider.tsx | 21 + src/app/(main)/teams/TeamsAddButton.tsx | 33 + src/app/(main)/teams/TeamsDataTable.tsx | 27 + src/app/(main)/teams/TeamsHeader.tsx | 26 + src/app/(main)/teams/TeamsJoinButton.tsx | 31 + src/app/(main)/teams/TeamsPage.tsx | 19 + src/app/(main)/teams/TeamsTable.tsx | 29 + src/app/(main)/teams/[teamId]/TeamDeleteForm.tsx | 40 + src/app/(main)/teams/[teamId]/TeamEditForm.tsx | 89 + src/app/(main)/teams/[teamId]/TeamManage.tsx | 32 + .../(main)/teams/[teamId]/TeamMemberEditButton.tsx | 46 + .../(main)/teams/[teamId]/TeamMemberEditForm.tsx | 62 + .../teams/[teamId]/TeamMemberRemoveButton.tsx | 60 + .../(main)/teams/[teamId]/TeamMembersDataTable.tsx | 19 + src/app/(main)/teams/[teamId]/TeamMembersTable.tsx | 55 + src/app/(main)/teams/[teamId]/TeamSettings.tsx | 49 + .../teams/[teamId]/TeamWebsiteRemoveButton.tsx | 25 + .../teams/[teamId]/TeamWebsitesDataTable.tsx | 19 + .../(main)/teams/[teamId]/TeamWebsitesTable.tsx | 50 + src/app/(main)/teams/page.tsx | 10 + src/app/(main)/websites/WebsiteAddButton.tsx | 28 + src/app/(main)/websites/WebsiteAddForm.tsx | 60 + src/app/(main)/websites/WebsiteProvider.tsx | 27 + src/app/(main)/websites/WebsitesDataTable.tsx | 47 + src/app/(main)/websites/WebsitesHeader.tsx | 18 + src/app/(main)/websites/WebsitesPage.tsx | 26 + src/app/(main)/websites/WebsitesTable.tsx | 41 + .../(reports)/attribution/Attribution.tsx | 128 + .../(reports)/attribution/AttributionPage.tsx | 63 + .../[websiteId]/(reports)/attribution/page.tsx | 12 + .../[websiteId]/(reports)/breakdown/Breakdown.tsx | 91 + .../(reports)/breakdown/BreakdownPage.tsx | 51 + .../(reports)/breakdown/FieldSelectForm.tsx | 46 + .../[websiteId]/(reports)/breakdown/page.tsx | 12 + .../[websiteId]/(reports)/funnels/Funnel.tsx | 134 + .../(reports)/funnels/FunnelAddButton.tsx | 28 + .../(reports)/funnels/FunnelEditForm.tsx | 141 + .../[websiteId]/(reports)/funnels/FunnelsPage.tsx | 36 + .../[websiteId]/(reports)/funnels/page.tsx | 12 + .../websites/[websiteId]/(reports)/goals/Goal.tsx | 99 + .../[websiteId]/(reports)/goals/GoalAddButton.tsx | 28 + .../[websiteId]/(reports)/goals/GoalEditForm.tsx | 104 + .../[websiteId]/(reports)/goals/GoalsPage.tsx | 36 + .../websites/[websiteId]/(reports)/goals/page.tsx | 12 + .../(reports)/journeys/Journey.module.css | 267 + .../[websiteId]/(reports)/journeys/Journey.tsx | 294 + .../(reports)/journeys/JourneysPage.tsx | 67 + .../[websiteId]/(reports)/journeys/page.tsx | 12 + .../[websiteId]/(reports)/retention/Retention.tsx | 140 + .../(reports)/retention/RetentionPage.tsx | 22 + .../[websiteId]/(reports)/retention/page.tsx | 12 + .../[websiteId]/(reports)/revenue/Revenue.tsx | 152 + .../[websiteId]/(reports)/revenue/RevenuePage.tsx | 18 + .../[websiteId]/(reports)/revenue/RevenueTable.tsx | 21 + .../[websiteId]/(reports)/revenue/page.tsx | 12 + .../websites/[websiteId]/(reports)/utm/UTM.tsx | 71 + .../websites/[websiteId]/(reports)/utm/UTMPage.tsx | 18 + .../websites/[websiteId]/(reports)/utm/page.tsx | 12 + .../websites/[websiteId]/ExpandedViewModal.tsx | 52 + .../(main)/websites/[websiteId]/WebsiteChart.tsx | 61 + .../websites/[websiteId]/WebsiteControls.tsx | 40 + .../websites/[websiteId]/WebsiteExpandedMenu.tsx | 183 + .../websites/[websiteId]/WebsiteExpandedView.tsx | 57 + .../(main)/websites/[websiteId]/WebsiteHeader.tsx | 57 + .../(main)/websites/[websiteId]/WebsiteLayout.tsx | 30 + .../(main)/websites/[websiteId]/WebsiteMenu.tsx | 56 + .../websites/[websiteId]/WebsiteMetricsBar.tsx | 88 + src/app/(main)/websites/[websiteId]/WebsiteNav.tsx | 180 + .../(main)/websites/[websiteId]/WebsitePage.tsx | 22 + .../(main)/websites/[websiteId]/WebsitePanels.tsx | 140 + .../(main)/websites/[websiteId]/WebsiteTabs.tsx | 64 + .../[websiteId]/cohorts/CohortAddButton.tsx | 21 + .../[websiteId]/cohorts/CohortDeleteButton.tsx | 60 + .../[websiteId]/cohorts/CohortEditButton.tsx | 37 + .../[websiteId]/cohorts/CohortEditForm.tsx | 135 + .../[websiteId]/cohorts/CohortsDataTable.tsx | 24 + .../websites/[websiteId]/cohorts/CohortsPage.tsx | 16 + .../websites/[websiteId]/cohorts/CohortsTable.tsx | 41 + .../(main)/websites/[websiteId]/cohorts/page.tsx | 12 + .../websites/[websiteId]/compare/ComparePage.tsx | 20 + .../websites/[websiteId]/compare/CompareTables.tsx | 171 + .../(main)/websites/[websiteId]/compare/page.tsx | 12 + .../[websiteId]/events/EventProperties.tsx | 127 + .../[websiteId]/events/EventsDataTable.tsx | 48 + .../[websiteId]/events/EventsMetricsBar.tsx | 40 + .../websites/[websiteId]/events/EventsPage.tsx | 59 + .../websites/[websiteId]/events/EventsTable.tsx | 107 + .../(main)/websites/[websiteId]/events/page.tsx | 12 + src/app/(main)/websites/[websiteId]/layout.tsx | 21 + src/app/(main)/websites/[websiteId]/page.tsx | 12 + .../[websiteId]/realtime/RealtimeCountries.tsx | 31 + .../[websiteId]/realtime/RealtimeHeader.tsx | 17 + .../websites/[websiteId]/realtime/RealtimeLog.tsx | 206 + .../websites/[websiteId]/realtime/RealtimePage.tsx | 58 + .../[websiteId]/realtime/RealtimePaths.tsx | 45 + .../[websiteId]/realtime/RealtimeReferrers.tsx | 45 + .../(main)/websites/[websiteId]/realtime/page.tsx | 12 + .../[websiteId]/segments/SegmentAddButton.tsx | 21 + .../[websiteId]/segments/SegmentDeleteButton.tsx | 60 + .../[websiteId]/segments/SegmentEditButton.tsx | 37 + .../[websiteId]/segments/SegmentEditForm.tsx | 86 + .../[websiteId]/segments/SegmentsDataTable.tsx | 24 + .../websites/[websiteId]/segments/SegmentsPage.tsx | 16 + .../[websiteId]/segments/SegmentsTable.tsx | 38 + .../(main)/websites/[websiteId]/segments/page.tsx | 12 + .../[websiteId]/sessions/SessionActivity.tsx | 94 + .../websites/[websiteId]/sessions/SessionData.tsx | 32 + .../websites/[websiteId]/sessions/SessionInfo.tsx | 85 + .../websites/[websiteId]/sessions/SessionModal.tsx | 41 + .../[websiteId]/sessions/SessionProfile.tsx | 84 + .../[websiteId]/sessions/SessionProperties.tsx | 97 + .../websites/[websiteId]/sessions/SessionStats.tsx | 21 + .../[websiteId]/sessions/SessionsDataTable.tsx | 15 + .../[websiteId]/sessions/SessionsMetricsBar.tsx | 40 + .../websites/[websiteId]/sessions/SessionsPage.tsx | 43 + .../[websiteId]/sessions/SessionsTable.tsx | 58 + .../(main)/websites/[websiteId]/sessions/page.tsx | 12 + .../websites/[websiteId]/settings/SettingsPage.tsx | 6 + .../websites/[websiteId]/settings/WebsiteData.tsx | 104 + .../[websiteId]/settings/WebsiteDeleteForm.tsx | 40 + .../[websiteId]/settings/WebsiteEditForm.tsx | 55 + .../[websiteId]/settings/WebsiteResetForm.tsx | 37 + .../[websiteId]/settings/WebsiteSettings.tsx | 28 + .../[websiteId]/settings/WebsiteSettingsHeader.tsx | 22 + .../[websiteId]/settings/WebsiteShareForm.tsx | 93 + .../[websiteId]/settings/WebsiteTrackingCode.tsx | 40 + .../[websiteId]/settings/WebsiteTransferForm.tsx | 102 + .../(main)/websites/[websiteId]/settings/page.tsx | 12 + src/app/(main)/websites/page.tsx | 10 + src/app/Providers.tsx | 62 + src/app/api/admin/teams/route.ts | 58 + src/app/api/admin/users/route.ts | 46 + src/app/api/admin/websites/route.ts | 58 + src/app/api/auth/login/route.ts | 48 + src/app/api/auth/logout/route.ts | 12 + src/app/api/auth/sso/route.ts | 18 + src/app/api/auth/verify/route.ts | 15 + src/app/api/batch/route.ts | 58 + src/app/api/config/route.ts | 21 + src/app/api/heartbeat/route.ts | 3 + src/app/api/links/[linkId]/route.ts | 77 + src/app/api/links/route.ts | 64 + src/app/api/me/password/route.ts | 33 + src/app/api/me/route.ts | 12 + src/app/api/me/teams/route.ts | 23 + src/app/api/me/websites/route.ts | 26 + src/app/api/pixels/[pixelId]/route.ts | 76 + src/app/api/pixels/route.ts | 62 + src/app/api/realtime/[websiteId]/route.ts | 36 + src/app/api/reports/[reportId]/route.ts | 80 + src/app/api/reports/attribution/route.ts | 26 + src/app/api/reports/breakdown/route.ts | 26 + src/app/api/reports/funnel/route.ts | 26 + src/app/api/reports/goal/route.ts | 26 + src/app/api/reports/journey/route.ts | 25 + src/app/api/reports/retention/route.ts | 26 + src/app/api/reports/revenue/route.ts | 26 + src/app/api/reports/route.ts | 73 + src/app/api/reports/utm/route.ts | 37 + src/app/api/scripts/telemetry/route.ts | 28 + src/app/api/send/route.ts | 284 + src/app/api/share/[shareId]/route.ts | 19 + src/app/api/teams/[teamId]/links/route.ts | 29 + src/app/api/teams/[teamId]/pixels/route.ts | 29 + src/app/api/teams/[teamId]/route.ts | 71 + src/app/api/teams/[teamId]/users/[userId]/route.ts | 85 + src/app/api/teams/[teamId]/users/route.ts | 83 + src/app/api/teams/[teamId]/websites/route.ts | 29 + src/app/api/teams/join/route.ts | 39 + src/app/api/teams/route.ts | 55 + src/app/api/users/[userId]/route.ts | 102 + src/app/api/users/[userId]/teams/route.ts | 27 + src/app/api/users/[userId]/websites/route.ts | 33 + src/app/api/users/route.ts | 44 + src/app/api/websites/[websiteId]/active/route.ts | 25 + .../api/websites/[websiteId]/daterange/route.ts | 25 + .../[websiteId]/event-data/[eventId]/route.ts | 25 + .../[websiteId]/event-data/events/route.ts | 37 + .../[websiteId]/event-data/fields/route.ts | 35 + .../[websiteId]/event-data/properties/route.ts | 35 + .../websites/[websiteId]/event-data/stats/route.ts | 35 + .../[websiteId]/event-data/values/route.ts | 41 + src/app/api/websites/[websiteId]/events/route.ts | 37 + .../websites/[websiteId]/events/series/route.ts | 37 + src/app/api/websites/[websiteId]/export/route.ts | 64 + .../websites/[websiteId]/metrics/expanded/route.ts | 66 + src/app/api/websites/[websiteId]/metrics/route.ts | 66 + .../api/websites/[websiteId]/pageviews/route.ts | 72 + src/app/api/websites/[websiteId]/reports/route.ts | 46 + src/app/api/websites/[websiteId]/reset/route.ts | 25 + src/app/api/websites/[websiteId]/route.ts | 84 + .../[websiteId]/segments/[segmentId]/route.ts | 92 + src/app/api/websites/[websiteId]/segments/route.ts | 70 + .../[websiteId]/session-data/properties/route.ts | 35 + .../[websiteId]/session-data/values/route.ts | 40 + .../sessions/[sessionId]/activity/route.ts | 33 + .../sessions/[sessionId]/properties/route.ts | 25 + .../[websiteId]/sessions/[sessionId]/route.ts | 25 + src/app/api/websites/[websiteId]/sessions/route.ts | 36 + .../websites/[websiteId]/sessions/stats/route.ts | 42 + .../websites/[websiteId]/sessions/weekly/route.ts | 36 + src/app/api/websites/[websiteId]/stats/route.ts | 43 + src/app/api/websites/[websiteId]/transfer/route.ts | 50 + src/app/api/websites/[websiteId]/values/route.ts | 50 + src/app/api/websites/route.ts | 86 + src/app/layout.tsx | 49 + src/app/login/LoginForm.tsx | 70 + src/app/login/LoginPage.tsx | 11 + src/app/login/page.tsx | 14 + src/app/logout/LogoutPage.tsx | 25 + src/app/logout/page.tsx | 14 + src/app/not-found.tsx | 13 + src/app/page.tsx | 19 + src/app/share/[...shareId]/Footer.tsx | 12 + src/app/share/[...shareId]/Header.tsx | 24 + src/app/share/[...shareId]/SharePage.tsx | 41 + src/app/share/[...shareId]/page.tsx | 7 + src/app/sso/SSOPage.tsx | 22 + src/app/sso/page.tsx | 10 + src/assets/add-user.svg | 1 + src/assets/bar-chart.svg | 1 + src/assets/bars.svg | 1 + src/assets/bolt.svg | 1 + src/assets/bookmark.svg | 1 + src/assets/change.svg | 1 + src/assets/compare.svg | 1 + src/assets/dashboard.svg | 1 + src/assets/download.svg | 1 + src/assets/expand.svg | 1 + src/assets/export.svg | 1 + src/assets/flag.svg | 1 + src/assets/funnel.svg | 1 + src/assets/gear.svg | 1 + src/assets/lightbulb.svg | 1 + src/assets/lightning.svg | 1 + src/assets/location.svg | 1 + src/assets/lock.svg | 1 + src/assets/logo-white.svg | 1 + src/assets/logo.svg | 1 + src/assets/magnet.svg | 1 + src/assets/money.svg | 1 + src/assets/network.svg | 1 + src/assets/nodes.svg | 1 + src/assets/overview.svg | 1 + src/assets/path.svg | 1 + src/assets/profile.svg | 1 + src/assets/pushpin.svg | 1 + src/assets/redo.svg | 1 + src/assets/reports.svg | 1 + src/assets/security.svg | 1 + src/assets/speaker.svg | 1 + src/assets/switch.svg | 1 + src/assets/tag.svg | 1 + src/assets/target.svg | 1 + src/assets/visitor.svg | 1 + src/assets/website.svg | 1 + src/components/boards/Board.tsx | 9 + src/components/charts/BarChart.tsx | 131 + src/components/charts/BubbleChart.tsx | 31 + src/components/charts/Chart.tsx | 130 + src/components/charts/ChartTooltip.tsx | 23 + src/components/charts/PieChart.tsx | 31 + src/components/common/ActionForm.tsx | 15 + src/components/common/AnimatedDiv.tsx | 3 + src/components/common/Avatar.tsx | 21 + src/components/common/ConfirmationForm.tsx | 42 + src/components/common/DataGrid.tsx | 107 + src/components/common/DateDisplay.tsx | 28 + src/components/common/DateDistance.tsx | 19 + src/components/common/Empty.tsx | 24 + src/components/common/EmptyPlaceholder.tsx | 28 + src/components/common/ErrorBoundary.tsx | 38 + src/components/common/ErrorMessage.tsx | 16 + src/components/common/ExternalLink.tsx | 23 + src/components/common/Favicon.tsx | 22 + src/components/common/FilterLink.tsx | 49 + src/components/common/FilterRecord.tsx | 117 + src/components/common/GridRow.tsx | 32 + src/components/common/LinkButton.tsx | 41 + src/components/common/LoadingPanel.tsx | 71 + src/components/common/PageBody.tsx | 42 + src/components/common/PageHeader.tsx | 58 + src/components/common/Pager.tsx | 60 + src/components/common/Panel.tsx | 64 + src/components/common/SectionHeader.tsx | 28 + src/components/common/SideMenu.tsx | 80 + src/components/common/TypeConfirmationForm.tsx | 55 + src/components/common/TypeIcon.tsx | 29 + src/components/hooks/context/useLink.ts | 6 + src/components/hooks/context/usePixel.ts | 6 + src/components/hooks/context/useTeam.ts | 6 + src/components/hooks/context/useUser.ts | 6 + src/components/hooks/context/useWebsite.ts | 6 + src/components/hooks/index.ts | 84 + .../hooks/queries/useActiveUsersQuery.ts | 12 + src/components/hooks/queries/useDateRangeQuery.ts | 23 + src/components/hooks/queries/useDeleteQuery.ts | 12 + .../hooks/queries/useEventDataEventsQuery.ts | 27 + .../hooks/queries/useEventDataPropertiesQuery.ts | 27 + src/components/hooks/queries/useEventDataQuery.ts | 27 + .../hooks/queries/useEventDataValuesQuery.ts | 34 + src/components/hooks/queries/useLinkQuery.ts | 15 + src/components/hooks/queries/useLinksQuery.ts | 17 + src/components/hooks/queries/useLoginQuery.ts | 23 + src/components/hooks/queries/usePixelQuery.ts | 15 + src/components/hooks/queries/usePixelsQuery.ts | 17 + src/components/hooks/queries/useRealtimeQuery.ts | 17 + src/components/hooks/queries/useReportQuery.ts | 15 + src/components/hooks/queries/useReportsQuery.ts | 19 + src/components/hooks/queries/useResultQuery.ts | 44 + .../hooks/queries/useSessionActivityQuery.ts | 21 + .../hooks/queries/useSessionDataPropertiesQuery.ts | 27 + .../hooks/queries/useSessionDataQuery.ts | 12 + .../hooks/queries/useSessionDataValuesQuery.ts | 32 + src/components/hooks/queries/useShareTokenQuery.ts | 25 + .../hooks/queries/useTeamMembersQuery.ts | 16 + src/components/hooks/queries/useTeamQuery.ts | 17 + .../hooks/queries/useTeamWebsitesQuery.ts | 15 + src/components/hooks/queries/useTeamsQuery.ts | 20 + src/components/hooks/queries/useUpdateQuery.ts | 15 + src/components/hooks/queries/useUserQuery.ts | 17 + src/components/hooks/queries/useUserTeamsQuery.ts | 15 + .../hooks/queries/useUserWebsitesQuery.ts | 31 + src/components/hooks/queries/useUsersQuery.ts | 17 + .../hooks/queries/useWebsiteCohortQuery.ts | 21 + .../hooks/queries/useWebsiteCohortsQuery.ts | 25 + .../hooks/queries/useWebsiteEventsQuery.ts | 39 + .../hooks/queries/useWebsiteEventsSeriesQuery.ts | 18 + .../queries/useWebsiteExpandedMetricsQuery.ts | 51 + .../hooks/queries/useWebsiteMetricsQuery.ts | 47 + .../hooks/queries/useWebsitePageviewsQuery.ts | 36 + src/components/hooks/queries/useWebsiteQuery.ts | 17 + .../hooks/queries/useWebsiteSegmentQuery.ts | 21 + .../hooks/queries/useWebsiteSegmentsQuery.ts | 24 + .../hooks/queries/useWebsiteSessionQuery.ts | 13 + .../hooks/queries/useWebsiteSessionStatsQuery.ts | 17 + .../hooks/queries/useWebsiteSessionsQuery.ts | 34 + .../hooks/queries/useWebsiteStatsQuery.ts | 36 + .../hooks/queries/useWebsiteValuesQuery.ts | 62 + src/components/hooks/queries/useWebsitesQuery.ts | 20 + .../hooks/queries/useWeeklyTrafficQuery.ts | 28 + src/components/hooks/useApi.ts | 67 + src/components/hooks/useConfig.ts | 33 + src/components/hooks/useCountryNames.ts | 32 + src/components/hooks/useDateParameters.ts | 18 + src/components/hooks/useDateRange.ts | 37 + src/components/hooks/useDocumentClick.ts | 13 + src/components/hooks/useEscapeKey.ts | 19 + src/components/hooks/useFields.ts | 23 + src/components/hooks/useFilterParameters.ts | 70 + src/components/hooks/useFilters.ts | 99 + src/components/hooks/useForceUpdate.ts | 9 + src/components/hooks/useFormat.ts | 74 + src/components/hooks/useGlobalState.ts | 13 + src/components/hooks/useLanguageNames.ts | 32 + src/components/hooks/useLocale.ts | 60 + src/components/hooks/useMessages.ts | 48 + src/components/hooks/useMobile.ts | 9 + src/components/hooks/useModified.ts | 13 + src/components/hooks/useNavigation.ts | 43 + src/components/hooks/usePageParameters.ts | 16 + src/components/hooks/usePagedQuery.ts | 27 + src/components/hooks/useRegionNames.ts | 22 + src/components/hooks/useSlug.ts | 14 + src/components/hooks/useSticky.ts | 25 + src/components/hooks/useTimezone.ts | 95 + src/components/icons.ts | 1 + src/components/input/ActionSelect.tsx | 18 + src/components/input/CurrencySelect.tsx | 34 + src/components/input/DateFilter.tsx | 141 + src/components/input/DialogButton.tsx | 64 + src/components/input/DownloadButton.tsx | 42 + src/components/input/ExportButton.tsx | 64 + src/components/input/FieldFilters.tsx | 117 + src/components/input/FilterBar.tsx | 155 + src/components/input/FilterButtons.tsx | 33 + src/components/input/FilterEditForm.tsx | 95 + src/components/input/LanguageButton.tsx | 41 + src/components/input/LookupField.tsx | 65 + src/components/input/MenuButton.tsx | 32 + src/components/input/MobileMenuButton.tsx | 17 + src/components/input/MonthFilter.tsx | 18 + src/components/input/MonthSelect.tsx | 47 + src/components/input/NavButton.tsx | 188 + src/components/input/PanelButton.tsx | 19 + src/components/input/PreferencesButton.tsx | 32 + src/components/input/ProfileButton.tsx | 74 + src/components/input/RefreshButton.tsx | 32 + src/components/input/ReportEditButton.tsx | 99 + src/components/input/SegmentFilters.tsx | 42 + src/components/input/SegmentSaveButton.tsx | 26 + src/components/input/SettingsButton.tsx | 84 + src/components/input/WebsiteDateFilter.tsx | 102 + src/components/input/WebsiteFilterButton.tsx | 32 + src/components/input/WebsiteSelect.tsx | 74 + src/components/messages.ts | 518 + src/components/metrics/ActiveUsers.tsx | 39 + src/components/metrics/ChangeLabel.tsx | 60 + src/components/metrics/DatePickerForm.tsx | 74 + src/components/metrics/EventData.tsx | 22 + src/components/metrics/EventsChart.tsx | 93 + src/components/metrics/Legend.tsx | 39 + src/components/metrics/ListTable.tsx | 152 + src/components/metrics/MetricCard.tsx | 56 + src/components/metrics/MetricLabel.tsx | 142 + src/components/metrics/MetricsBar.tsx | 14 + src/components/metrics/MetricsExpandedTable.tsx | 139 + src/components/metrics/MetricsTable.tsx | 95 + src/components/metrics/PageviewsChart.tsx | 98 + src/components/metrics/RealtimeChart.tsx | 59 + src/components/metrics/WeeklyTraffic.tsx | 112 + src/components/metrics/WorldMap.tsx | 105 + src/components/svg/AddUser.tsx | 16 + src/components/svg/BarChart.tsx | 8 + src/components/svg/Bars.tsx | 8 + src/components/svg/Bolt.tsx | 8 + src/components/svg/Bookmark.tsx | 8 + src/components/svg/Calendar.tsx | 8 + src/components/svg/Change.tsx | 13 + src/components/svg/Clock.tsx | 12 + src/components/svg/Compare.tsx | 8 + src/components/svg/Dashboard.tsx | 21 + src/components/svg/Download.tsx | 9 + src/components/svg/Expand.tsx | 18 + src/components/svg/Export.tsx | 12 + src/components/svg/Flag.tsx | 8 + src/components/svg/Funnel.tsx | 18 + src/components/svg/Gear.tsx | 8 + src/components/svg/Globe.tsx | 8 + src/components/svg/Lightbulb.tsx | 15 + src/components/svg/Lightning.tsx | 33 + src/components/svg/Link.tsx | 8 + src/components/svg/Location.tsx | 8 + src/components/svg/Lock.tsx | 8 + src/components/svg/Logo.tsx | 17 + src/components/svg/LogoWhite.tsx | 26 + src/components/svg/Magnet.tsx | 15 + src/components/svg/Money.tsx | 15 + src/components/svg/Moon.tsx | 8 + src/components/svg/Network.tsx | 15 + src/components/svg/Nodes.tsx | 12 + src/components/svg/Overview.tsx | 8 + src/components/svg/Path.tsx | 15 + src/components/svg/Profile.tsx | 8 + src/components/svg/Pushpin.tsx | 8 + src/components/svg/Redo.tsx | 8 + src/components/svg/Reports.tsx | 8 + src/components/svg/Security.tsx | 16 + src/components/svg/Speaker.tsx | 8 + src/components/svg/Sun.tsx | 9 + src/components/svg/Switch.tsx | 19 + src/components/svg/Tag.tsx | 16 + src/components/svg/Target.tsx | 21 + src/components/svg/Visitor.tsx | 8 + src/components/svg/Website.tsx | 13 + src/components/svg/index.ts | 37 + src/declaration.d.ts | 18 + src/index.ts | 82 + src/lang/ar-SA.json | 339 + src/lang/be-BY.json | 339 + src/lang/bg-BG.json | 339 + src/lang/bn-BD.json | 339 + src/lang/bs-BA.json | 339 + src/lang/ca-ES.json | 339 + src/lang/cs-CZ.json | 339 + src/lang/da-DK.json | 339 + src/lang/de-CH.json | 339 + src/lang/de-DE.json | 339 + src/lang/el-GR.json | 339 + src/lang/en-GB.json | 339 + src/lang/en-US.json | 339 + src/lang/es-ES.json | 340 + src/lang/fa-IR.json | 339 + src/lang/fi-FI.json | 339 + src/lang/fo-FO.json | 339 + src/lang/fr-FR.json | 341 + src/lang/ga-ES.json | 339 + src/lang/he-IL.json | 339 + src/lang/hi-IN.json | 339 + src/lang/hr-HR.json | 339 + src/lang/hu-HU.json | 339 + src/lang/id-ID.json | 339 + src/lang/it-IT.json | 339 + src/lang/ja-JP.json | 339 + src/lang/km-KH.json | 339 + src/lang/ko-KR.json | 339 + src/lang/lt-LT.json | 339 + src/lang/mn-MN.json | 339 + src/lang/ms-MY.json | 339 + src/lang/my-MM.json | 339 + src/lang/nb-NO.json | 339 + src/lang/nl-NL.json | 339 + src/lang/pl-PL.json | 339 + src/lang/pt-BR.json | 339 + src/lang/pt-PT.json | 339 + src/lang/ro-RO.json | 339 + src/lang/ru-RU.json | 339 + src/lang/si-LK.json | 339 + src/lang/sk-SK.json | 339 + src/lang/sl-SI.json | 318 + src/lang/sv-SE.json | 339 + src/lang/ta-IN.json | 339 + src/lang/th-TH.json | 339 + src/lang/tr-TR.json | 339 + src/lang/uk-UA.json | 339 + src/lang/ur-PK.json | 339 + src/lang/uz-UZ.json | 280 + src/lang/vi-VN.json | 280 + src/lang/zh-CN.json | 339 + src/lang/zh-TW.json | 339 + src/lib/__tests__/charts.test.ts | 39 + src/lib/__tests__/detect.test.ts | 22 + src/lib/__tests__/format.test.ts | 38 + src/lib/auth.ts | 80 + src/lib/charts.ts | 27 + src/lib/clickhouse.ts | 273 + src/lib/client.ts | 14 + src/lib/colors.ts | 91 + src/lib/constants.ts | 682 + src/lib/crypto.ts | 65 + src/lib/data.ts | 94 + src/lib/date.ts | 375 + src/lib/db.ts | 40 + src/lib/detect.ts | 154 + src/lib/fetch.ts | 58 + src/lib/filters.ts | 31 + src/lib/format.ts | 118 + src/lib/generate.ts | 20 + src/lib/ip.ts | 60 + src/lib/jwt.ts | 36 + src/lib/kafka.ts | 112 + src/lib/lang.ts | 111 + src/lib/load.ts | 40 + src/lib/params.ts | 62 + src/lib/password.ts | 11 + src/lib/prisma.ts | 368 + src/lib/react.ts | 77 + src/lib/redis.ts | 18 + src/lib/request.ts | 145 + src/lib/response.ts | 58 + src/lib/schema.ts | 232 + src/lib/sql.ts | 0 src/lib/storage.ts | 25 + src/lib/types.ts | 143 + src/lib/url.ts | 49 + src/lib/utils.ts | 46 + src/permissions/index.ts | 6 + src/permissions/link.ts | 64 + src/permissions/pixel.ts | 64 + src/permissions/report.ts | 27 + src/permissions/team.ts | 68 + src/permissions/user.ts | 29 + src/permissions/website.ts | 128 + src/queries/prisma/index.ts | 8 + src/queries/prisma/link.ts | 66 + src/queries/prisma/pixel.ts | 60 + src/queries/prisma/report.ts | 89 + src/queries/prisma/segment.ts | 61 + src/queries/prisma/team.ts | 165 + src/queries/prisma/teamUser.ts | 66 + src/queries/prisma/user.ts | 206 + src/queries/prisma/website.ts | 234 + src/queries/sql/events/getEventData.ts | 63 + src/queries/sql/events/getEventDataEvents.ts | 139 + src/queries/sql/events/getEventDataFields.ts | 84 + src/queries/sql/events/getEventDataProperties.ts | 88 + src/queries/sql/events/getEventDataStats.ts | 90 + src/queries/sql/events/getEventDataUsage.ts | 38 + src/queries/sql/events/getEventDataValues.ts | 93 + src/queries/sql/events/getEventExpandedMetrics.ts | 132 + src/queries/sql/events/getEventMetrics.ts | 97 + src/queries/sql/events/getEventStats.ts | 101 + src/queries/sql/events/getEventUsage.ts | 38 + src/queries/sql/events/getWebsiteEvents.ts | 119 + src/queries/sql/events/saveEvent.ts | 249 + src/queries/sql/events/saveEventData.ts | 79 + src/queries/sql/events/saveRevenue.ts | 36 + src/queries/sql/getActiveVisitors.ts | 50 + src/queries/sql/getChannelExpandedMetrics.ts | 190 + src/queries/sql/getChannelMetrics.ts | 142 + src/queries/sql/getRealtimeActivity.ts | 80 + src/queries/sql/getRealtimeData.ts | 78 + src/queries/sql/getValues.ts | 129 + src/queries/sql/getWebsiteDateRange.ts | 55 + src/queries/sql/getWebsiteStats.ts | 128 + src/queries/sql/getWeeklyTraffic.ts | 97 + src/queries/sql/index.ts | 41 + .../sql/pageviews/getPageviewExpandedMetrics.ts | 227 + src/queries/sql/pageviews/getPageviewMetrics.ts | 191 + src/queries/sql/pageviews/getPageviewStats.ts | 98 + src/queries/sql/reports/getAttribution.ts | 514 + src/queries/sql/reports/getBreakdown.ts | 135 + src/queries/sql/reports/getFunnel.ts | 255 + src/queries/sql/reports/getGoal.ts | 105 + src/queries/sql/reports/getJourney.ts | 275 + src/queries/sql/reports/getRetention.ts | 173 + src/queries/sql/reports/getRevenue.ts | 217 + src/queries/sql/reports/getUTM.ts | 84 + src/queries/sql/sessions/createSession.ts | 44 + src/queries/sql/sessions/getSessionActivity.ts | 78 + src/queries/sql/sessions/getSessionData.ts | 60 + .../sql/sessions/getSessionDataProperties.ts | 75 + src/queries/sql/sessions/getSessionDataValues.ts | 85 + .../sql/sessions/getSessionExpandedMetrics.ts | 152 + src/queries/sql/sessions/getSessionMetrics.ts | 130 + src/queries/sql/sessions/getSessionStats.ts | 98 + src/queries/sql/sessions/getWebsiteSession.ts | 113 + src/queries/sql/sessions/getWebsiteSessionStats.ts | 97 + src/queries/sql/sessions/getWebsiteSessions.ts | 156 + src/queries/sql/sessions/saveSessionData.ts | 112 + src/store/app.ts | 50 + src/store/cache.ts | 9 + src/store/dashboard.ts | 22 + src/store/version.ts | 55 + src/store/websites.ts | 35 + src/styles/global.css | 43 + src/styles/variables.css | 4 + src/tracker/index.d.ts | 153 + src/tracker/index.js | 240 + tsconfig.json | 36 + tsconfig.prisma.json | 12 + tsup.config.js | 15 + 1313 files changed, 253893 insertions(+) create mode 100644 .dockerignore create mode 100644 .github/ISSUE_TEMPLATE/1.bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/2.feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .gitignore create mode 100755 .husky/pre-commit create mode 100644 .stylelintrc.json create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 README.md create mode 100644 app.json create mode 100644 biome.json create mode 100644 cypress.config.ts create mode 100644 cypress/docker-compose.yml create mode 100644 cypress/e2e/api-team.cy.ts create mode 100644 cypress/e2e/api-user.cy.ts create mode 100644 cypress/e2e/api-website.cy.ts create mode 100644 cypress/e2e/login.cy.ts create mode 100644 cypress/e2e/user.cy.ts create mode 100644 cypress/e2e/website.cy.ts create mode 100644 cypress/fixtures/teams.json create mode 100644 cypress/fixtures/users.json create mode 100644 cypress/fixtures/websites.json create mode 100644 cypress/support/e2e.ts create mode 100644 cypress/support/index.d.ts create mode 100644 cypress/tsconfig.json create mode 100644 db/clickhouse/migrations/01_edit_keys.sql create mode 100644 db/clickhouse/migrations/02_add_visit_id.sql create mode 100644 db/clickhouse/migrations/03_session_data.sql create mode 100644 db/clickhouse/migrations/04_add_tag.sql create mode 100644 db/clickhouse/migrations/05_add_utm_clid.sql create mode 100644 db/clickhouse/migrations/06_update_subdivision.sql create mode 100644 db/clickhouse/migrations/07_add_distinct_id.sql create mode 100644 db/clickhouse/migrations/08_update_hostname_view.sql create mode 100644 db/clickhouse/schema.sql create mode 100644 db/postgresql/data-migrations/convert-utm-clid-columns.sql create mode 100644 db/postgresql/data-migrations/populate-revenue-table.sql create mode 100644 docker-compose.yml create mode 100644 docker/middleware.ts create mode 100644 jest.config.ts create mode 100644 netlify.toml create mode 100644 next-env.d.ts create mode 100644 next.config.ts create mode 100644 package.components.json create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 pnpm-workspace.yaml create mode 100644 podman/README.md create mode 100644 podman/env.sample create mode 100755 podman/install-systemd-user-service create mode 100644 podman/podman-compose.yml create mode 100644 podman/umami.service create mode 100644 postcss.config.js create mode 100644 prisma.config.ts create mode 100644 prisma/migrations/01_init/migration.sql create mode 100644 prisma/migrations/02_report_schema_session_data/migration.sql create mode 100644 prisma/migrations/03_metric_performance_index/migration.sql create mode 100644 prisma/migrations/04_team_redesign/migration.sql create mode 100644 prisma/migrations/05_add_visit_id/migration.sql create mode 100644 prisma/migrations/06_session_data/migration.sql create mode 100644 prisma/migrations/07_add_tag/migration.sql create mode 100644 prisma/migrations/08_add_utm_clid/migration.sql create mode 100644 prisma/migrations/09_update_hostname_region/migration.sql create mode 100644 prisma/migrations/10_add_distinct_id/migration.sql create mode 100644 prisma/migrations/11_add_segment/migration.sql create mode 100644 prisma/migrations/12_update_report_parameter/migration.sql create mode 100644 prisma/migrations/13_add_revenue/migration.sql create mode 100644 prisma/migrations/14_add_link_and_pixel/migration.sql create mode 100644 prisma/migrations/migration_lock.toml create mode 100644 prisma/schema.prisma create mode 100644 public/android-chrome-192x192.png create mode 100644 public/android-chrome-512x512.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/browserconfig.xml create mode 100644 public/datamaps.world.json create mode 100644 public/favicon-16x16.png create mode 100644 public/favicon-32x32.png create mode 100644 public/favicon.ico create mode 100644 public/images/browser/android-webview.png create mode 100644 public/images/browser/android.png create mode 100644 public/images/browser/aol.png create mode 100644 public/images/browser/beaker.png create mode 100644 public/images/browser/blackberry.png create mode 100644 public/images/browser/brave.png create mode 100644 public/images/browser/chrome.png create mode 100644 public/images/browser/chromium-webview.png create mode 100644 public/images/browser/crios.png create mode 100644 public/images/browser/curl.png create mode 100644 public/images/browser/edge-chromium.png create mode 100644 public/images/browser/edge-ios.png create mode 100644 public/images/browser/edge.png create mode 100644 public/images/browser/facebook.png create mode 100644 public/images/browser/firefox.png create mode 100644 public/images/browser/fxios.png create mode 100644 public/images/browser/ie.png create mode 100644 public/images/browser/instagram.png create mode 100644 public/images/browser/ios-webview.png create mode 100644 public/images/browser/ios.png create mode 100644 public/images/browser/kakaotalk.png create mode 100644 public/images/browser/miui.png create mode 100644 public/images/browser/opera-mini.png create mode 100644 public/images/browser/opera.png create mode 100644 public/images/browser/safari.png create mode 100644 public/images/browser/samsung.png create mode 100644 public/images/browser/searchbot.png create mode 100644 public/images/browser/silk.png create mode 100644 public/images/browser/unknown.png create mode 100644 public/images/browser/yandexbrowser.png create mode 100644 public/images/country/ad.png create mode 100644 public/images/country/ae.png create mode 100644 public/images/country/af.png create mode 100644 public/images/country/ag.png create mode 100644 public/images/country/ai.png create mode 100644 public/images/country/al.png create mode 100644 public/images/country/am.png create mode 100644 public/images/country/ao.png create mode 100644 public/images/country/aq.png create mode 100644 public/images/country/ar.png create mode 100644 public/images/country/as.png create mode 100644 public/images/country/at.png create mode 100644 public/images/country/au.png create mode 100644 public/images/country/aw.png create mode 100644 public/images/country/ax.png create mode 100644 public/images/country/az.png create mode 100644 public/images/country/ba.png create mode 100644 public/images/country/bb.png create mode 100644 public/images/country/bd.png create mode 100644 public/images/country/be.png create mode 100644 public/images/country/bf.png create mode 100644 public/images/country/bg.png create mode 100644 public/images/country/bh.png create mode 100644 public/images/country/bi.png create mode 100644 public/images/country/bj.png create mode 100644 public/images/country/bl.png create mode 100644 public/images/country/bm.png create mode 100644 public/images/country/bn.png create mode 100644 public/images/country/bo.png create mode 100644 public/images/country/bq.png create mode 100644 public/images/country/br.png create mode 100644 public/images/country/bs.png create mode 100644 public/images/country/bt.png create mode 100644 public/images/country/bv.png create mode 100644 public/images/country/bw.png create mode 100644 public/images/country/by.png create mode 100644 public/images/country/bz.png create mode 100644 public/images/country/ca.png create mode 100644 public/images/country/cc.png create mode 100644 public/images/country/cd.png create mode 100644 public/images/country/cf.png create mode 100644 public/images/country/cg.png create mode 100644 public/images/country/ch.png create mode 100644 public/images/country/ci.png create mode 100644 public/images/country/ck.png create mode 100644 public/images/country/cl.png create mode 100644 public/images/country/cm.png create mode 100644 public/images/country/cn.png create mode 100644 public/images/country/co.png create mode 100644 public/images/country/cr.png create mode 100644 public/images/country/cu.png create mode 100644 public/images/country/cv.png create mode 100644 public/images/country/cw.png create mode 100644 public/images/country/cx.png create mode 100644 public/images/country/cy.png create mode 100644 public/images/country/cz.png create mode 100644 public/images/country/de.png create mode 100644 public/images/country/dj.png create mode 100644 public/images/country/dk.png create mode 100644 public/images/country/dm.png create mode 100644 public/images/country/do.png create mode 100644 public/images/country/dz.png create mode 100644 public/images/country/ec.png create mode 100644 public/images/country/ee.png create mode 100644 public/images/country/eg.png create mode 100644 public/images/country/eh.png create mode 100644 public/images/country/er.png create mode 100644 public/images/country/es.png create mode 100644 public/images/country/et.png create mode 100644 public/images/country/fi.png create mode 100644 public/images/country/fj.png create mode 100644 public/images/country/fk.png create mode 100644 public/images/country/fm.png create mode 100644 public/images/country/fo.png create mode 100644 public/images/country/fr.png create mode 100644 public/images/country/ga.png create mode 100644 public/images/country/gb-eng.png create mode 100644 public/images/country/gb-nir.png create mode 100644 public/images/country/gb-sct.png create mode 100644 public/images/country/gb-wls.png create mode 100644 public/images/country/gb.png create mode 100644 public/images/country/gd.png create mode 100644 public/images/country/ge.png create mode 100644 public/images/country/gf.png create mode 100644 public/images/country/gg.png create mode 100644 public/images/country/gh.png create mode 100644 public/images/country/gi.png create mode 100644 public/images/country/gl.png create mode 100644 public/images/country/gm.png create mode 100644 public/images/country/gn.png create mode 100644 public/images/country/gp.png create mode 100644 public/images/country/gq.png create mode 100644 public/images/country/gr.png create mode 100644 public/images/country/gs.png create mode 100644 public/images/country/gt.png create mode 100644 public/images/country/gu.png create mode 100644 public/images/country/gw.png create mode 100644 public/images/country/gy.png create mode 100644 public/images/country/hk.png create mode 100644 public/images/country/hm.png create mode 100644 public/images/country/hn.png create mode 100644 public/images/country/hr.png create mode 100644 public/images/country/ht.png create mode 100644 public/images/country/hu.png create mode 100644 public/images/country/id.png create mode 100644 public/images/country/ie.png create mode 100644 public/images/country/il.png create mode 100644 public/images/country/im.png create mode 100644 public/images/country/in.png create mode 100644 public/images/country/io.png create mode 100644 public/images/country/iq.png create mode 100644 public/images/country/ir.png create mode 100644 public/images/country/is.png create mode 100644 public/images/country/it.png create mode 100644 public/images/country/je.png create mode 100644 public/images/country/jm.png create mode 100644 public/images/country/jo.png create mode 100644 public/images/country/jp.png create mode 100644 public/images/country/ke.png create mode 100644 public/images/country/kg.png create mode 100644 public/images/country/kh.png create mode 100644 public/images/country/ki.png create mode 100644 public/images/country/km.png create mode 100644 public/images/country/kn.png create mode 100644 public/images/country/kp.png create mode 100644 public/images/country/kr.png create mode 100644 public/images/country/kw.png create mode 100644 public/images/country/ky.png create mode 100644 public/images/country/kz.png create mode 100644 public/images/country/la.png create mode 100644 public/images/country/lb.png create mode 100644 public/images/country/lc.png create mode 100644 public/images/country/li.png create mode 100644 public/images/country/lk.png create mode 100644 public/images/country/lr.png create mode 100644 public/images/country/ls.png create mode 100644 public/images/country/lt.png create mode 100644 public/images/country/lu.png create mode 100644 public/images/country/lv.png create mode 100644 public/images/country/ly.png create mode 100644 public/images/country/ma.png create mode 100644 public/images/country/mc.png create mode 100644 public/images/country/md.png create mode 100644 public/images/country/me.png create mode 100644 public/images/country/mf.png create mode 100644 public/images/country/mg.png create mode 100644 public/images/country/mh.png create mode 100644 public/images/country/mk.png create mode 100644 public/images/country/ml.png create mode 100644 public/images/country/mm.png create mode 100644 public/images/country/mn.png create mode 100644 public/images/country/mo.png create mode 100644 public/images/country/mp.png create mode 100644 public/images/country/mq.png create mode 100644 public/images/country/mr.png create mode 100644 public/images/country/ms.png create mode 100644 public/images/country/mt.png create mode 100644 public/images/country/mu.png create mode 100644 public/images/country/mv.png create mode 100644 public/images/country/mw.png create mode 100644 public/images/country/mx.png create mode 100644 public/images/country/my.png create mode 100644 public/images/country/mz.png create mode 100644 public/images/country/na.png create mode 100644 public/images/country/nc.png create mode 100644 public/images/country/ne.png create mode 100644 public/images/country/nf.png create mode 100644 public/images/country/ng.png create mode 100644 public/images/country/ni.png create mode 100644 public/images/country/nl.png create mode 100644 public/images/country/no.png create mode 100644 public/images/country/np.png create mode 100644 public/images/country/nr.png create mode 100644 public/images/country/nu.png create mode 100644 public/images/country/nz.png create mode 100644 public/images/country/om.png create mode 100644 public/images/country/pa.png create mode 100644 public/images/country/pe.png create mode 100644 public/images/country/pf.png create mode 100644 public/images/country/pg.png create mode 100644 public/images/country/ph.png create mode 100644 public/images/country/pk.png create mode 100644 public/images/country/pl.png create mode 100644 public/images/country/pm.png create mode 100644 public/images/country/pn.png create mode 100644 public/images/country/pr.png create mode 100644 public/images/country/ps.png create mode 100644 public/images/country/pt.png create mode 100644 public/images/country/pw.png create mode 100644 public/images/country/py.png create mode 100644 public/images/country/qa.png create mode 100644 public/images/country/re.png create mode 100644 public/images/country/ro.png create mode 100644 public/images/country/rs.png create mode 100644 public/images/country/ru.png create mode 100644 public/images/country/rw.png create mode 100644 public/images/country/sa.png create mode 100644 public/images/country/sb.png create mode 100644 public/images/country/sc.png create mode 100644 public/images/country/sd.png create mode 100644 public/images/country/se.png create mode 100644 public/images/country/sg.png create mode 100644 public/images/country/sh.png create mode 100644 public/images/country/si.png create mode 100644 public/images/country/sj.png create mode 100644 public/images/country/sk.png create mode 100644 public/images/country/sl.png create mode 100644 public/images/country/sm.png create mode 100644 public/images/country/sn.png create mode 100644 public/images/country/so.png create mode 100644 public/images/country/sr.png create mode 100644 public/images/country/ss.png create mode 100644 public/images/country/st.png create mode 100644 public/images/country/sv.png create mode 100644 public/images/country/sx.png create mode 100644 public/images/country/sy.png create mode 100644 public/images/country/sz.png create mode 100644 public/images/country/tc.png create mode 100644 public/images/country/td.png create mode 100644 public/images/country/tf.png create mode 100644 public/images/country/tg.png create mode 100644 public/images/country/th.png create mode 100644 public/images/country/tj.png create mode 100644 public/images/country/tk.png create mode 100644 public/images/country/tl.png create mode 100644 public/images/country/tm.png create mode 100644 public/images/country/tn.png create mode 100644 public/images/country/to.png create mode 100644 public/images/country/tr.png create mode 100644 public/images/country/tt.png create mode 100644 public/images/country/tv.png create mode 100644 public/images/country/tw.png create mode 100644 public/images/country/tz.png create mode 100644 public/images/country/ua.png create mode 100644 public/images/country/ug.png create mode 100644 public/images/country/um.png create mode 100644 public/images/country/unknown.png create mode 100644 public/images/country/us.png create mode 100644 public/images/country/uy.png create mode 100644 public/images/country/uz.png create mode 100644 public/images/country/va.png create mode 100644 public/images/country/vc.png create mode 100644 public/images/country/ve.png create mode 100644 public/images/country/vg.png create mode 100644 public/images/country/vi.png create mode 100644 public/images/country/vn.png create mode 100644 public/images/country/vu.png create mode 100644 public/images/country/wf.png create mode 100644 public/images/country/ws.png create mode 100644 public/images/country/xk.png create mode 100644 public/images/country/ye.png create mode 100644 public/images/country/yt.png create mode 100644 public/images/country/za.png create mode 100644 public/images/country/zm.png create mode 100644 public/images/country/zw.png create mode 100644 public/images/device/desktop.png create mode 100644 public/images/device/laptop.png create mode 100644 public/images/device/mobile.png create mode 100644 public/images/device/tablet.png create mode 100644 public/images/device/unknown.png create mode 100644 public/images/os/amazon-os.png create mode 100644 public/images/os/android-os.png create mode 100644 public/images/os/beos.png create mode 100644 public/images/os/blackberry-os.png create mode 100644 public/images/os/chrome-os.png create mode 100644 public/images/os/ios.png create mode 100644 public/images/os/linux.png create mode 100644 public/images/os/mac-os.png create mode 100644 public/images/os/open-bsd.png create mode 100644 public/images/os/os-2.png create mode 100644 public/images/os/qnx.png create mode 100644 public/images/os/sun-os.png create mode 100644 public/images/os/unknown.png create mode 100644 public/images/os/windows-10.png create mode 100644 public/images/os/windows-11.png create mode 100644 public/images/os/windows-2000.png create mode 100644 public/images/os/windows-3-11.png create mode 100644 public/images/os/windows-7.png create mode 100644 public/images/os/windows-8-1.png create mode 100644 public/images/os/windows-8.png create mode 100644 public/images/os/windows-95.png create mode 100644 public/images/os/windows-98.png create mode 100644 public/images/os/windows-me.png create mode 100644 public/images/os/windows-mobile.png create mode 100644 public/images/os/windows-server-2003.png create mode 100644 public/images/os/windows-vista.png create mode 100644 public/images/os/windows-xp.png create mode 100644 public/intl/country/am-ET.json create mode 100644 public/intl/country/ar-SA.json create mode 100644 public/intl/country/be-BY.json create mode 100644 public/intl/country/bg-BG.json create mode 100644 public/intl/country/bn-BD.json create mode 100644 public/intl/country/bs-BA.json create mode 100644 public/intl/country/ca-ES.json create mode 100644 public/intl/country/cs-CZ.json create mode 100644 public/intl/country/da-DK.json create mode 100644 public/intl/country/de-CH.json create mode 100644 public/intl/country/de-DE.json create mode 100644 public/intl/country/el-GR.json create mode 100644 public/intl/country/en-GB.json create mode 100644 public/intl/country/en-US.json create mode 100644 public/intl/country/es-ES.json create mode 100644 public/intl/country/es-MX.json create mode 100644 public/intl/country/fa-IR.json create mode 100644 public/intl/country/fi-FI.json create mode 100644 public/intl/country/fo-FO.json create mode 100644 public/intl/country/fr-FR.json create mode 100644 public/intl/country/he-IL.json create mode 100644 public/intl/country/hi-IN.json create mode 100644 public/intl/country/hr-HR.json create mode 100644 public/intl/country/hu-HU.json create mode 100644 public/intl/country/id-ID.json create mode 100644 public/intl/country/it-IT.json create mode 100644 public/intl/country/ja-JP.json create mode 100644 public/intl/country/km-KH.json create mode 100644 public/intl/country/ko-KR.json create mode 100644 public/intl/country/lt-LT.json create mode 100644 public/intl/country/mn-MN.json create mode 100644 public/intl/country/ms-MY.json create mode 100644 public/intl/country/my-MM.json create mode 100644 public/intl/country/nb-NO.json create mode 100644 public/intl/country/nl-NL.json create mode 100644 public/intl/country/pl-PL.json create mode 100644 public/intl/country/pt-BR.json create mode 100644 public/intl/country/pt-PT.json create mode 100644 public/intl/country/ro-RO.json create mode 100644 public/intl/country/ru-RU.json create mode 100644 public/intl/country/si-LK.json create mode 100644 public/intl/country/sk-SK.json create mode 100644 public/intl/country/sl-SI.json create mode 100644 public/intl/country/sv-SE.json create mode 100644 public/intl/country/ta-IN.json create mode 100644 public/intl/country/th-TH.json create mode 100644 public/intl/country/tr-TR.json create mode 100644 public/intl/country/uk-UA.json create mode 100644 public/intl/country/ur-PK.json create mode 100644 public/intl/country/uz-UZ.json create mode 100644 public/intl/country/vi-VN.json create mode 100644 public/intl/country/zh-CN.json create mode 100644 public/intl/country/zh-TW.json create mode 100644 public/intl/language/am-ET.json create mode 100644 public/intl/language/ar-SA.json create mode 100644 public/intl/language/be-BY.json create mode 100644 public/intl/language/bg-BG.json create mode 100644 public/intl/language/bn-BD.json create mode 100644 public/intl/language/bs-BA.json create mode 100644 public/intl/language/ca-ES.json create mode 100644 public/intl/language/cs-CZ.json create mode 100644 public/intl/language/da-DK.json create mode 100644 public/intl/language/de-CH.json create mode 100644 public/intl/language/de-DE.json create mode 100644 public/intl/language/el-GR.json create mode 100644 public/intl/language/en-GB.json create mode 100644 public/intl/language/en-US.json create mode 100644 public/intl/language/es-ES.json create mode 100644 public/intl/language/es-MX.json create mode 100644 public/intl/language/fa-IR.json create mode 100644 public/intl/language/fi-FI.json create mode 100644 public/intl/language/fo-FO.json create mode 100644 public/intl/language/fr-FR.json create mode 100644 public/intl/language/he-IL.json create mode 100644 public/intl/language/hi-IN.json create mode 100644 public/intl/language/hr-HR.json create mode 100644 public/intl/language/hu-HU.json create mode 100644 public/intl/language/id-ID.json create mode 100644 public/intl/language/it-IT.json create mode 100644 public/intl/language/ja-JP.json create mode 100644 public/intl/language/km-KH.json create mode 100644 public/intl/language/ko-KR.json create mode 100644 public/intl/language/lt-LT.json create mode 100644 public/intl/language/mn-MN.json create mode 100644 public/intl/language/ms-MY.json create mode 100644 public/intl/language/my-MM.json create mode 100644 public/intl/language/nb-NO.json create mode 100644 public/intl/language/nl-NL.json create mode 100644 public/intl/language/pl-PL.json create mode 100644 public/intl/language/pt-BR.json create mode 100644 public/intl/language/pt-PT.json create mode 100644 public/intl/language/ro-RO.json create mode 100644 public/intl/language/ru-RU.json create mode 100644 public/intl/language/si-LK.json create mode 100644 public/intl/language/sk-SK.json create mode 100644 public/intl/language/sl-SI.json create mode 100644 public/intl/language/sv-SE.json create mode 100644 public/intl/language/ta-IN.json create mode 100644 public/intl/language/th-TH.json create mode 100644 public/intl/language/tr-TR.json create mode 100644 public/intl/language/uk-UA.json create mode 100644 public/intl/language/ur-PK.json create mode 100644 public/intl/language/uz-UZ.json create mode 100644 public/intl/language/vi-VN.json create mode 100644 public/intl/language/zh-CN.json create mode 100644 public/intl/language/zh-TW.json create mode 100644 public/intl/messages/am-ET.json create mode 100644 public/intl/messages/ar-SA.json create mode 100644 public/intl/messages/be-BY.json create mode 100644 public/intl/messages/bg-BG.json create mode 100644 public/intl/messages/bn-BD.json create mode 100644 public/intl/messages/bs-BA.json create mode 100644 public/intl/messages/ca-ES.json create mode 100644 public/intl/messages/cs-CZ.json create mode 100644 public/intl/messages/da-DK.json create mode 100644 public/intl/messages/de-CH.json create mode 100644 public/intl/messages/de-DE.json create mode 100644 public/intl/messages/el-GR.json create mode 100644 public/intl/messages/en-GB.json create mode 100644 public/intl/messages/en-US.json create mode 100644 public/intl/messages/es-ES.json create mode 100644 public/intl/messages/es-MX.json create mode 100644 public/intl/messages/fa-IR.json create mode 100644 public/intl/messages/fi-FI.json create mode 100644 public/intl/messages/fo-FO.json create mode 100644 public/intl/messages/fr-FR.json create mode 100644 public/intl/messages/ga-ES.json create mode 100644 public/intl/messages/he-IL.json create mode 100644 public/intl/messages/hi-IN.json create mode 100644 public/intl/messages/hr-HR.json create mode 100644 public/intl/messages/hu-HU.json create mode 100644 public/intl/messages/id-ID.json create mode 100644 public/intl/messages/it-IT.json create mode 100644 public/intl/messages/ja-JP.json create mode 100644 public/intl/messages/km-KH.json create mode 100644 public/intl/messages/ko-KR.json create mode 100644 public/intl/messages/lt-LT.json create mode 100644 public/intl/messages/mn-MN.json create mode 100644 public/intl/messages/ms-MY.json create mode 100644 public/intl/messages/my-MM.json create mode 100644 public/intl/messages/nb-NO.json create mode 100644 public/intl/messages/nl-NL.json create mode 100644 public/intl/messages/pl-PL.json create mode 100644 public/intl/messages/pt-BR.json create mode 100644 public/intl/messages/pt-PT.json create mode 100644 public/intl/messages/ro-RO.json create mode 100644 public/intl/messages/ru-RU.json create mode 100644 public/intl/messages/si-LK.json create mode 100644 public/intl/messages/sk-SK.json create mode 100644 public/intl/messages/sl-SI.json create mode 100644 public/intl/messages/sv-SE.json create mode 100644 public/intl/messages/ta-IN.json create mode 100644 public/intl/messages/th-TH.json create mode 100644 public/intl/messages/tr-TR.json create mode 100644 public/intl/messages/uk-UA.json create mode 100644 public/intl/messages/ur-PK.json create mode 100644 public/intl/messages/uz-UZ.json create mode 100644 public/intl/messages/vi-VN.json create mode 100644 public/intl/messages/zh-CN.json create mode 100644 public/intl/messages/zh-TW.json create mode 100644 public/iso-3166-2.json create mode 100644 public/mstile-150x150.png create mode 100644 public/robots.txt create mode 100644 public/safari-pinned-tab.svg create mode 100644 public/site.webmanifest create mode 100644 rollup.tracker.config.js create mode 100644 scripts/build-geo.js create mode 100644 scripts/build-prisma-client.js create mode 100644 scripts/check-db.js create mode 100644 scripts/check-env.js create mode 100644 scripts/download-country-names.js create mode 100644 scripts/download-language-names.js create mode 100644 scripts/format-lang.js create mode 100644 scripts/merge-messages.js create mode 100644 scripts/postbuild.js create mode 100644 scripts/seed-data.ts create mode 100644 scripts/seed/distributions/devices.ts create mode 100644 scripts/seed/distributions/geographic.ts create mode 100644 scripts/seed/distributions/referrers.ts create mode 100644 scripts/seed/distributions/temporal.ts create mode 100644 scripts/seed/generators/events.ts create mode 100644 scripts/seed/generators/revenue.ts create mode 100644 scripts/seed/generators/sessions.ts create mode 100644 scripts/seed/index.ts create mode 100644 scripts/seed/sites/blog.ts create mode 100644 scripts/seed/sites/saas.ts create mode 100644 scripts/seed/utils.ts create mode 100644 scripts/start-env.js create mode 100644 scripts/telemetry.js create mode 100644 scripts/update-tracker.js create mode 100644 src/app/(collect)/p/[slug]/route.ts create mode 100644 src/app/(collect)/q/[slug]/route.ts create mode 100644 src/app/(main)/App.tsx create mode 100644 src/app/(main)/MobileNav.tsx create mode 100644 src/app/(main)/SideNav.tsx create mode 100644 src/app/(main)/TopNav.tsx create mode 100644 src/app/(main)/UpdateNotice.tsx create mode 100644 src/app/(main)/admin/AdminLayout.tsx create mode 100644 src/app/(main)/admin/AdminNav.tsx create mode 100644 src/app/(main)/admin/layout.tsx create mode 100644 src/app/(main)/admin/teams/AdminTeamsDataTable.tsx create mode 100644 src/app/(main)/admin/teams/AdminTeamsPage.tsx create mode 100644 src/app/(main)/admin/teams/AdminTeamsTable.tsx create mode 100644 src/app/(main)/admin/teams/[teamId]/AdminTeamPage.tsx create mode 100644 src/app/(main)/admin/teams/[teamId]/page.tsx create mode 100644 src/app/(main)/admin/teams/page.tsx create mode 100644 src/app/(main)/admin/users/UserAddButton.tsx create mode 100644 src/app/(main)/admin/users/UserAddForm.tsx create mode 100644 src/app/(main)/admin/users/UserDeleteButton.tsx create mode 100644 src/app/(main)/admin/users/UserDeleteForm.tsx create mode 100644 src/app/(main)/admin/users/UsersDataTable.tsx create mode 100644 src/app/(main)/admin/users/UsersPage.tsx create mode 100644 src/app/(main)/admin/users/UsersTable.tsx create mode 100644 src/app/(main)/admin/users/[userId]/UserEditForm.tsx create mode 100644 src/app/(main)/admin/users/[userId]/UserHeader.tsx create mode 100644 src/app/(main)/admin/users/[userId]/UserPage.tsx create mode 100644 src/app/(main)/admin/users/[userId]/UserProvider.tsx create mode 100644 src/app/(main)/admin/users/[userId]/UserSettings.tsx create mode 100644 src/app/(main)/admin/users/[userId]/UserWebsites.tsx create mode 100644 src/app/(main)/admin/users/[userId]/page.tsx create mode 100644 src/app/(main)/admin/users/page.tsx create mode 100644 src/app/(main)/admin/websites/AdminWebsitesDataTable.tsx create mode 100644 src/app/(main)/admin/websites/AdminWebsitesPage.tsx create mode 100644 src/app/(main)/admin/websites/AdminWebsitesTable.tsx create mode 100644 src/app/(main)/admin/websites/[websiteId]/AdminWebsitePage.tsx create mode 100644 src/app/(main)/admin/websites/[websiteId]/page.tsx create mode 100644 src/app/(main)/admin/websites/page.tsx create mode 100644 src/app/(main)/boards/BoardAddButton.tsx create mode 100644 src/app/(main)/boards/BoardAddForm.tsx create mode 100644 src/app/(main)/boards/BoardsPage.tsx create mode 100644 src/app/(main)/boards/[boardId]/Board.tsx create mode 100644 src/app/(main)/boards/[boardId]/page.tsx create mode 100644 src/app/(main)/boards/page.tsx create mode 100644 src/app/(main)/console/[websiteId]/TestConsolePage.tsx create mode 100644 src/app/(main)/console/[websiteId]/page.tsx create mode 100644 src/app/(main)/dashboard/DashboardPage.tsx create mode 100644 src/app/(main)/dashboard/page.tsx create mode 100644 src/app/(main)/layout.tsx create mode 100644 src/app/(main)/links/LinkAddButton.tsx create mode 100644 src/app/(main)/links/LinkDeleteButton.tsx create mode 100644 src/app/(main)/links/LinkEditButton.tsx create mode 100644 src/app/(main)/links/LinkEditForm.tsx create mode 100644 src/app/(main)/links/LinkProvider.tsx create mode 100644 src/app/(main)/links/LinksDataTable.tsx create mode 100644 src/app/(main)/links/LinksPage.tsx create mode 100644 src/app/(main)/links/LinksTable.tsx create mode 100644 src/app/(main)/links/[linkId]/LinkControls.tsx create mode 100644 src/app/(main)/links/[linkId]/LinkHeader.tsx create mode 100644 src/app/(main)/links/[linkId]/LinkMetricsBar.tsx create mode 100644 src/app/(main)/links/[linkId]/LinkPage.tsx create mode 100644 src/app/(main)/links/[linkId]/LinkPanels.tsx create mode 100644 src/app/(main)/links/[linkId]/page.tsx create mode 100644 src/app/(main)/links/page.tsx create mode 100644 src/app/(main)/pixels/PixelAddButton.tsx create mode 100644 src/app/(main)/pixels/PixelDeleteButton.tsx create mode 100644 src/app/(main)/pixels/PixelEditButton.tsx create mode 100644 src/app/(main)/pixels/PixelEditForm.tsx create mode 100644 src/app/(main)/pixels/PixelProvider.tsx create mode 100644 src/app/(main)/pixels/PixelsDataTable.tsx create mode 100644 src/app/(main)/pixels/PixelsPage.tsx create mode 100644 src/app/(main)/pixels/PixelsTable.tsx create mode 100644 src/app/(main)/pixels/[pixelId]/PixelControls.tsx create mode 100644 src/app/(main)/pixels/[pixelId]/PixelHeader.tsx create mode 100644 src/app/(main)/pixels/[pixelId]/PixelMetricsBar.tsx create mode 100644 src/app/(main)/pixels/[pixelId]/PixelPage.tsx create mode 100644 src/app/(main)/pixels/[pixelId]/PixelPanels.tsx create mode 100644 src/app/(main)/pixels/[pixelId]/page.tsx create mode 100644 src/app/(main)/pixels/page.tsx create mode 100644 src/app/(main)/settings/SettingsLayout.tsx create mode 100644 src/app/(main)/settings/SettingsNav.tsx create mode 100644 src/app/(main)/settings/layout.tsx create mode 100644 src/app/(main)/settings/preferences/DateRangeSetting.tsx create mode 100644 src/app/(main)/settings/preferences/LanguageSetting.tsx create mode 100644 src/app/(main)/settings/preferences/PreferenceSettings.tsx create mode 100644 src/app/(main)/settings/preferences/PreferencesPage.tsx create mode 100644 src/app/(main)/settings/preferences/ThemeSetting.tsx create mode 100644 src/app/(main)/settings/preferences/TimezoneSetting.tsx create mode 100644 src/app/(main)/settings/preferences/page.tsx create mode 100644 src/app/(main)/settings/profile/PasswordChangeButton.tsx create mode 100644 src/app/(main)/settings/profile/PasswordEditForm.tsx create mode 100644 src/app/(main)/settings/profile/ProfileHeader.tsx create mode 100644 src/app/(main)/settings/profile/ProfilePage.tsx create mode 100644 src/app/(main)/settings/profile/ProfileSettings.tsx create mode 100644 src/app/(main)/settings/profile/page.tsx create mode 100644 src/app/(main)/settings/teams/TeamsSettingsPage.tsx create mode 100644 src/app/(main)/settings/teams/[teamId]/TeamSettingsPage.tsx create mode 100644 src/app/(main)/settings/teams/[teamId]/page.tsx create mode 100644 src/app/(main)/settings/teams/page.tsx create mode 100644 src/app/(main)/settings/websites/WebsitesSettingsPage.tsx create mode 100644 src/app/(main)/settings/websites/[websiteId]/WebsiteSettingsPage.tsx create mode 100644 src/app/(main)/settings/websites/[websiteId]/page.tsx create mode 100644 src/app/(main)/settings/websites/page.tsx create mode 100644 src/app/(main)/teams/TeamAddForm.tsx create mode 100644 src/app/(main)/teams/TeamJoinForm.tsx create mode 100644 src/app/(main)/teams/TeamLeaveButton.tsx create mode 100644 src/app/(main)/teams/TeamLeaveForm.tsx create mode 100644 src/app/(main)/teams/TeamProvider.tsx create mode 100644 src/app/(main)/teams/TeamsAddButton.tsx create mode 100644 src/app/(main)/teams/TeamsDataTable.tsx create mode 100644 src/app/(main)/teams/TeamsHeader.tsx create mode 100644 src/app/(main)/teams/TeamsJoinButton.tsx create mode 100644 src/app/(main)/teams/TeamsPage.tsx create mode 100644 src/app/(main)/teams/TeamsTable.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamDeleteForm.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamEditForm.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamManage.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamMemberEditButton.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamMemberEditForm.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamMemberRemoveButton.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamMembersDataTable.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamMembersTable.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamSettings.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamWebsiteRemoveButton.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamWebsitesDataTable.tsx create mode 100644 src/app/(main)/teams/[teamId]/TeamWebsitesTable.tsx create mode 100644 src/app/(main)/teams/page.tsx create mode 100644 src/app/(main)/websites/WebsiteAddButton.tsx create mode 100644 src/app/(main)/websites/WebsiteAddForm.tsx create mode 100644 src/app/(main)/websites/WebsiteProvider.tsx create mode 100644 src/app/(main)/websites/WebsitesDataTable.tsx create mode 100644 src/app/(main)/websites/WebsitesHeader.tsx create mode 100644 src/app/(main)/websites/WebsitesPage.tsx create mode 100644 src/app/(main)/websites/WebsitesTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/attribution/Attribution.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/attribution/AttributionPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/attribution/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/breakdown/Breakdown.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/breakdown/BreakdownPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/breakdown/FieldSelectForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/breakdown/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/funnels/Funnel.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/funnels/FunnelAddButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/funnels/FunnelEditForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/funnels/FunnelsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/funnels/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/goals/Goal.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/goals/GoalAddButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/goals/GoalEditForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/goals/GoalsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/goals/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/journeys/Journey.module.css create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/journeys/Journey.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/journeys/JourneysPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/journeys/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/retention/Retention.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/retention/RetentionPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/retention/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/revenue/Revenue.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/revenue/RevenuePage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/revenue/RevenueTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/revenue/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/utm/UTM.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/utm/UTMPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/(reports)/utm/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/ExpandedViewModal.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteChart.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteControls.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteExpandedMenu.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteExpandedView.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteHeader.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteLayout.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteMenu.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteMetricsBar.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteNav.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsitePage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsitePanels.tsx create mode 100644 src/app/(main)/websites/[websiteId]/WebsiteTabs.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortAddButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortDeleteButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortEditButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortEditForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortsDataTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/CohortsTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/cohorts/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/compare/ComparePage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/compare/CompareTables.tsx create mode 100644 src/app/(main)/websites/[websiteId]/compare/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/events/EventProperties.tsx create mode 100644 src/app/(main)/websites/[websiteId]/events/EventsDataTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/events/EventsMetricsBar.tsx create mode 100644 src/app/(main)/websites/[websiteId]/events/EventsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/events/EventsTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/events/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/layout.tsx create mode 100644 src/app/(main)/websites/[websiteId]/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/RealtimeCountries.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/RealtimeHeader.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/RealtimeLog.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/RealtimePage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/RealtimePaths.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/RealtimeReferrers.tsx create mode 100644 src/app/(main)/websites/[websiteId]/realtime/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentAddButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentDeleteButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentEditButton.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentEditForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentsDataTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/SegmentsTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/segments/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionActivity.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionData.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionInfo.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionModal.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionProfile.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionProperties.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionStats.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionsDataTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionsMetricsBar.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/SessionsTable.tsx create mode 100644 src/app/(main)/websites/[websiteId]/sessions/page.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/SettingsPage.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteData.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteDeleteForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteEditForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteResetForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteSettings.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteSettingsHeader.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteShareForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteTrackingCode.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/WebsiteTransferForm.tsx create mode 100644 src/app/(main)/websites/[websiteId]/settings/page.tsx create mode 100644 src/app/(main)/websites/page.tsx create mode 100644 src/app/Providers.tsx create mode 100644 src/app/api/admin/teams/route.ts create mode 100644 src/app/api/admin/users/route.ts create mode 100644 src/app/api/admin/websites/route.ts create mode 100644 src/app/api/auth/login/route.ts create mode 100644 src/app/api/auth/logout/route.ts create mode 100644 src/app/api/auth/sso/route.ts create mode 100644 src/app/api/auth/verify/route.ts create mode 100644 src/app/api/batch/route.ts create mode 100644 src/app/api/config/route.ts create mode 100644 src/app/api/heartbeat/route.ts create mode 100644 src/app/api/links/[linkId]/route.ts create mode 100644 src/app/api/links/route.ts create mode 100644 src/app/api/me/password/route.ts create mode 100644 src/app/api/me/route.ts create mode 100644 src/app/api/me/teams/route.ts create mode 100644 src/app/api/me/websites/route.ts create mode 100644 src/app/api/pixels/[pixelId]/route.ts create mode 100644 src/app/api/pixels/route.ts create mode 100644 src/app/api/realtime/[websiteId]/route.ts create mode 100644 src/app/api/reports/[reportId]/route.ts create mode 100644 src/app/api/reports/attribution/route.ts create mode 100644 src/app/api/reports/breakdown/route.ts create mode 100644 src/app/api/reports/funnel/route.ts create mode 100644 src/app/api/reports/goal/route.ts create mode 100644 src/app/api/reports/journey/route.ts create mode 100644 src/app/api/reports/retention/route.ts create mode 100644 src/app/api/reports/revenue/route.ts create mode 100644 src/app/api/reports/route.ts create mode 100644 src/app/api/reports/utm/route.ts create mode 100644 src/app/api/scripts/telemetry/route.ts create mode 100644 src/app/api/send/route.ts create mode 100644 src/app/api/share/[shareId]/route.ts create mode 100644 src/app/api/teams/[teamId]/links/route.ts create mode 100644 src/app/api/teams/[teamId]/pixels/route.ts create mode 100644 src/app/api/teams/[teamId]/route.ts create mode 100644 src/app/api/teams/[teamId]/users/[userId]/route.ts create mode 100644 src/app/api/teams/[teamId]/users/route.ts create mode 100644 src/app/api/teams/[teamId]/websites/route.ts create mode 100644 src/app/api/teams/join/route.ts create mode 100644 src/app/api/teams/route.ts create mode 100644 src/app/api/users/[userId]/route.ts create mode 100644 src/app/api/users/[userId]/teams/route.ts create mode 100644 src/app/api/users/[userId]/websites/route.ts create mode 100644 src/app/api/users/route.ts create mode 100644 src/app/api/websites/[websiteId]/active/route.ts create mode 100644 src/app/api/websites/[websiteId]/daterange/route.ts create mode 100644 src/app/api/websites/[websiteId]/event-data/[eventId]/route.ts create mode 100644 src/app/api/websites/[websiteId]/event-data/events/route.ts create mode 100644 src/app/api/websites/[websiteId]/event-data/fields/route.ts create mode 100644 src/app/api/websites/[websiteId]/event-data/properties/route.ts create mode 100644 src/app/api/websites/[websiteId]/event-data/stats/route.ts create mode 100644 src/app/api/websites/[websiteId]/event-data/values/route.ts create mode 100644 src/app/api/websites/[websiteId]/events/route.ts create mode 100644 src/app/api/websites/[websiteId]/events/series/route.ts create mode 100644 src/app/api/websites/[websiteId]/export/route.ts create mode 100644 src/app/api/websites/[websiteId]/metrics/expanded/route.ts create mode 100644 src/app/api/websites/[websiteId]/metrics/route.ts create mode 100644 src/app/api/websites/[websiteId]/pageviews/route.ts create mode 100644 src/app/api/websites/[websiteId]/reports/route.ts create mode 100644 src/app/api/websites/[websiteId]/reset/route.ts create mode 100644 src/app/api/websites/[websiteId]/route.ts create mode 100644 src/app/api/websites/[websiteId]/segments/[segmentId]/route.ts create mode 100644 src/app/api/websites/[websiteId]/segments/route.ts create mode 100644 src/app/api/websites/[websiteId]/session-data/properties/route.ts create mode 100644 src/app/api/websites/[websiteId]/session-data/values/route.ts create mode 100644 src/app/api/websites/[websiteId]/sessions/[sessionId]/activity/route.ts create mode 100644 src/app/api/websites/[websiteId]/sessions/[sessionId]/properties/route.ts create mode 100644 src/app/api/websites/[websiteId]/sessions/[sessionId]/route.ts create mode 100644 src/app/api/websites/[websiteId]/sessions/route.ts create mode 100644 src/app/api/websites/[websiteId]/sessions/stats/route.ts create mode 100644 src/app/api/websites/[websiteId]/sessions/weekly/route.ts create mode 100644 src/app/api/websites/[websiteId]/stats/route.ts create mode 100644 src/app/api/websites/[websiteId]/transfer/route.ts create mode 100644 src/app/api/websites/[websiteId]/values/route.ts create mode 100644 src/app/api/websites/route.ts create mode 100644 src/app/layout.tsx create mode 100644 src/app/login/LoginForm.tsx create mode 100644 src/app/login/LoginPage.tsx create mode 100644 src/app/login/page.tsx create mode 100644 src/app/logout/LogoutPage.tsx create mode 100644 src/app/logout/page.tsx create mode 100644 src/app/not-found.tsx create mode 100644 src/app/page.tsx create mode 100644 src/app/share/[...shareId]/Footer.tsx create mode 100644 src/app/share/[...shareId]/Header.tsx create mode 100644 src/app/share/[...shareId]/SharePage.tsx create mode 100644 src/app/share/[...shareId]/page.tsx create mode 100644 src/app/sso/SSOPage.tsx create mode 100644 src/app/sso/page.tsx create mode 100644 src/assets/add-user.svg create mode 100644 src/assets/bar-chart.svg create mode 100644 src/assets/bars.svg create mode 100644 src/assets/bolt.svg create mode 100644 src/assets/bookmark.svg create mode 100644 src/assets/change.svg create mode 100644 src/assets/compare.svg create mode 100644 src/assets/dashboard.svg create mode 100644 src/assets/download.svg create mode 100644 src/assets/expand.svg create mode 100644 src/assets/export.svg create mode 100644 src/assets/flag.svg create mode 100644 src/assets/funnel.svg create mode 100644 src/assets/gear.svg create mode 100644 src/assets/lightbulb.svg create mode 100644 src/assets/lightning.svg create mode 100644 src/assets/location.svg create mode 100644 src/assets/lock.svg create mode 100644 src/assets/logo-white.svg create mode 100644 src/assets/logo.svg create mode 100644 src/assets/magnet.svg create mode 100644 src/assets/money.svg create mode 100644 src/assets/network.svg create mode 100644 src/assets/nodes.svg create mode 100644 src/assets/overview.svg create mode 100644 src/assets/path.svg create mode 100644 src/assets/profile.svg create mode 100644 src/assets/pushpin.svg create mode 100644 src/assets/redo.svg create mode 100644 src/assets/reports.svg create mode 100644 src/assets/security.svg create mode 100644 src/assets/speaker.svg create mode 100644 src/assets/switch.svg create mode 100644 src/assets/tag.svg create mode 100644 src/assets/target.svg create mode 100644 src/assets/visitor.svg create mode 100644 src/assets/website.svg create mode 100644 src/components/boards/Board.tsx create mode 100644 src/components/charts/BarChart.tsx create mode 100644 src/components/charts/BubbleChart.tsx create mode 100644 src/components/charts/Chart.tsx create mode 100644 src/components/charts/ChartTooltip.tsx create mode 100644 src/components/charts/PieChart.tsx create mode 100644 src/components/common/ActionForm.tsx create mode 100644 src/components/common/AnimatedDiv.tsx create mode 100644 src/components/common/Avatar.tsx create mode 100644 src/components/common/ConfirmationForm.tsx create mode 100644 src/components/common/DataGrid.tsx create mode 100644 src/components/common/DateDisplay.tsx create mode 100644 src/components/common/DateDistance.tsx create mode 100644 src/components/common/Empty.tsx create mode 100644 src/components/common/EmptyPlaceholder.tsx create mode 100644 src/components/common/ErrorBoundary.tsx create mode 100644 src/components/common/ErrorMessage.tsx create mode 100644 src/components/common/ExternalLink.tsx create mode 100644 src/components/common/Favicon.tsx create mode 100644 src/components/common/FilterLink.tsx create mode 100644 src/components/common/FilterRecord.tsx create mode 100644 src/components/common/GridRow.tsx create mode 100644 src/components/common/LinkButton.tsx create mode 100644 src/components/common/LoadingPanel.tsx create mode 100644 src/components/common/PageBody.tsx create mode 100644 src/components/common/PageHeader.tsx create mode 100644 src/components/common/Pager.tsx create mode 100644 src/components/common/Panel.tsx create mode 100644 src/components/common/SectionHeader.tsx create mode 100644 src/components/common/SideMenu.tsx create mode 100644 src/components/common/TypeConfirmationForm.tsx create mode 100644 src/components/common/TypeIcon.tsx create mode 100644 src/components/hooks/context/useLink.ts create mode 100644 src/components/hooks/context/usePixel.ts create mode 100644 src/components/hooks/context/useTeam.ts create mode 100644 src/components/hooks/context/useUser.ts create mode 100644 src/components/hooks/context/useWebsite.ts create mode 100644 src/components/hooks/index.ts create mode 100644 src/components/hooks/queries/useActiveUsersQuery.ts create mode 100644 src/components/hooks/queries/useDateRangeQuery.ts create mode 100644 src/components/hooks/queries/useDeleteQuery.ts create mode 100644 src/components/hooks/queries/useEventDataEventsQuery.ts create mode 100644 src/components/hooks/queries/useEventDataPropertiesQuery.ts create mode 100644 src/components/hooks/queries/useEventDataQuery.ts create mode 100644 src/components/hooks/queries/useEventDataValuesQuery.ts create mode 100644 src/components/hooks/queries/useLinkQuery.ts create mode 100644 src/components/hooks/queries/useLinksQuery.ts create mode 100644 src/components/hooks/queries/useLoginQuery.ts create mode 100644 src/components/hooks/queries/usePixelQuery.ts create mode 100644 src/components/hooks/queries/usePixelsQuery.ts create mode 100644 src/components/hooks/queries/useRealtimeQuery.ts create mode 100644 src/components/hooks/queries/useReportQuery.ts create mode 100644 src/components/hooks/queries/useReportsQuery.ts create mode 100644 src/components/hooks/queries/useResultQuery.ts create mode 100644 src/components/hooks/queries/useSessionActivityQuery.ts create mode 100644 src/components/hooks/queries/useSessionDataPropertiesQuery.ts create mode 100644 src/components/hooks/queries/useSessionDataQuery.ts create mode 100644 src/components/hooks/queries/useSessionDataValuesQuery.ts create mode 100644 src/components/hooks/queries/useShareTokenQuery.ts create mode 100644 src/components/hooks/queries/useTeamMembersQuery.ts create mode 100644 src/components/hooks/queries/useTeamQuery.ts create mode 100644 src/components/hooks/queries/useTeamWebsitesQuery.ts create mode 100644 src/components/hooks/queries/useTeamsQuery.ts create mode 100644 src/components/hooks/queries/useUpdateQuery.ts create mode 100644 src/components/hooks/queries/useUserQuery.ts create mode 100644 src/components/hooks/queries/useUserTeamsQuery.ts create mode 100644 src/components/hooks/queries/useUserWebsitesQuery.ts create mode 100644 src/components/hooks/queries/useUsersQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteCohortQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteCohortsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteEventsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteEventsSeriesQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteExpandedMetricsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteMetricsQuery.ts create mode 100644 src/components/hooks/queries/useWebsitePageviewsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteSegmentQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteSegmentsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteSessionQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteSessionStatsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteSessionsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteStatsQuery.ts create mode 100644 src/components/hooks/queries/useWebsiteValuesQuery.ts create mode 100644 src/components/hooks/queries/useWebsitesQuery.ts create mode 100644 src/components/hooks/queries/useWeeklyTrafficQuery.ts create mode 100644 src/components/hooks/useApi.ts create mode 100644 src/components/hooks/useConfig.ts create mode 100644 src/components/hooks/useCountryNames.ts create mode 100644 src/components/hooks/useDateParameters.ts create mode 100644 src/components/hooks/useDateRange.ts create mode 100644 src/components/hooks/useDocumentClick.ts create mode 100644 src/components/hooks/useEscapeKey.ts create mode 100644 src/components/hooks/useFields.ts create mode 100644 src/components/hooks/useFilterParameters.ts create mode 100644 src/components/hooks/useFilters.ts create mode 100644 src/components/hooks/useForceUpdate.ts create mode 100644 src/components/hooks/useFormat.ts create mode 100644 src/components/hooks/useGlobalState.ts create mode 100644 src/components/hooks/useLanguageNames.ts create mode 100644 src/components/hooks/useLocale.ts create mode 100644 src/components/hooks/useMessages.ts create mode 100644 src/components/hooks/useMobile.ts create mode 100644 src/components/hooks/useModified.ts create mode 100644 src/components/hooks/useNavigation.ts create mode 100644 src/components/hooks/usePageParameters.ts create mode 100644 src/components/hooks/usePagedQuery.ts create mode 100644 src/components/hooks/useRegionNames.ts create mode 100644 src/components/hooks/useSlug.ts create mode 100644 src/components/hooks/useSticky.ts create mode 100644 src/components/hooks/useTimezone.ts create mode 100644 src/components/icons.ts create mode 100644 src/components/input/ActionSelect.tsx create mode 100644 src/components/input/CurrencySelect.tsx create mode 100644 src/components/input/DateFilter.tsx create mode 100644 src/components/input/DialogButton.tsx create mode 100644 src/components/input/DownloadButton.tsx create mode 100644 src/components/input/ExportButton.tsx create mode 100644 src/components/input/FieldFilters.tsx create mode 100644 src/components/input/FilterBar.tsx create mode 100644 src/components/input/FilterButtons.tsx create mode 100644 src/components/input/FilterEditForm.tsx create mode 100644 src/components/input/LanguageButton.tsx create mode 100644 src/components/input/LookupField.tsx create mode 100644 src/components/input/MenuButton.tsx create mode 100644 src/components/input/MobileMenuButton.tsx create mode 100644 src/components/input/MonthFilter.tsx create mode 100644 src/components/input/MonthSelect.tsx create mode 100644 src/components/input/NavButton.tsx create mode 100644 src/components/input/PanelButton.tsx create mode 100644 src/components/input/PreferencesButton.tsx create mode 100644 src/components/input/ProfileButton.tsx create mode 100644 src/components/input/RefreshButton.tsx create mode 100644 src/components/input/ReportEditButton.tsx create mode 100644 src/components/input/SegmentFilters.tsx create mode 100644 src/components/input/SegmentSaveButton.tsx create mode 100644 src/components/input/SettingsButton.tsx create mode 100644 src/components/input/WebsiteDateFilter.tsx create mode 100644 src/components/input/WebsiteFilterButton.tsx create mode 100644 src/components/input/WebsiteSelect.tsx create mode 100644 src/components/messages.ts create mode 100644 src/components/metrics/ActiveUsers.tsx create mode 100644 src/components/metrics/ChangeLabel.tsx create mode 100644 src/components/metrics/DatePickerForm.tsx create mode 100644 src/components/metrics/EventData.tsx create mode 100644 src/components/metrics/EventsChart.tsx create mode 100644 src/components/metrics/Legend.tsx create mode 100644 src/components/metrics/ListTable.tsx create mode 100644 src/components/metrics/MetricCard.tsx create mode 100644 src/components/metrics/MetricLabel.tsx create mode 100644 src/components/metrics/MetricsBar.tsx create mode 100644 src/components/metrics/MetricsExpandedTable.tsx create mode 100644 src/components/metrics/MetricsTable.tsx create mode 100644 src/components/metrics/PageviewsChart.tsx create mode 100644 src/components/metrics/RealtimeChart.tsx create mode 100644 src/components/metrics/WeeklyTraffic.tsx create mode 100644 src/components/metrics/WorldMap.tsx create mode 100644 src/components/svg/AddUser.tsx create mode 100644 src/components/svg/BarChart.tsx create mode 100644 src/components/svg/Bars.tsx create mode 100644 src/components/svg/Bolt.tsx create mode 100644 src/components/svg/Bookmark.tsx create mode 100644 src/components/svg/Calendar.tsx create mode 100644 src/components/svg/Change.tsx create mode 100644 src/components/svg/Clock.tsx create mode 100644 src/components/svg/Compare.tsx create mode 100644 src/components/svg/Dashboard.tsx create mode 100644 src/components/svg/Download.tsx create mode 100644 src/components/svg/Expand.tsx create mode 100644 src/components/svg/Export.tsx create mode 100644 src/components/svg/Flag.tsx create mode 100644 src/components/svg/Funnel.tsx create mode 100644 src/components/svg/Gear.tsx create mode 100644 src/components/svg/Globe.tsx create mode 100644 src/components/svg/Lightbulb.tsx create mode 100644 src/components/svg/Lightning.tsx create mode 100644 src/components/svg/Link.tsx create mode 100644 src/components/svg/Location.tsx create mode 100644 src/components/svg/Lock.tsx create mode 100644 src/components/svg/Logo.tsx create mode 100644 src/components/svg/LogoWhite.tsx create mode 100644 src/components/svg/Magnet.tsx create mode 100644 src/components/svg/Money.tsx create mode 100644 src/components/svg/Moon.tsx create mode 100644 src/components/svg/Network.tsx create mode 100644 src/components/svg/Nodes.tsx create mode 100644 src/components/svg/Overview.tsx create mode 100644 src/components/svg/Path.tsx create mode 100644 src/components/svg/Profile.tsx create mode 100644 src/components/svg/Pushpin.tsx create mode 100644 src/components/svg/Redo.tsx create mode 100644 src/components/svg/Reports.tsx create mode 100644 src/components/svg/Security.tsx create mode 100644 src/components/svg/Speaker.tsx create mode 100644 src/components/svg/Sun.tsx create mode 100644 src/components/svg/Switch.tsx create mode 100644 src/components/svg/Tag.tsx create mode 100644 src/components/svg/Target.tsx create mode 100644 src/components/svg/Visitor.tsx create mode 100644 src/components/svg/Website.tsx create mode 100644 src/components/svg/index.ts create mode 100644 src/declaration.d.ts create mode 100644 src/index.ts create mode 100644 src/lang/ar-SA.json create mode 100644 src/lang/be-BY.json create mode 100644 src/lang/bg-BG.json create mode 100644 src/lang/bn-BD.json create mode 100644 src/lang/bs-BA.json create mode 100644 src/lang/ca-ES.json create mode 100644 src/lang/cs-CZ.json create mode 100644 src/lang/da-DK.json create mode 100644 src/lang/de-CH.json create mode 100644 src/lang/de-DE.json create mode 100644 src/lang/el-GR.json create mode 100644 src/lang/en-GB.json create mode 100644 src/lang/en-US.json create mode 100644 src/lang/es-ES.json create mode 100644 src/lang/fa-IR.json create mode 100644 src/lang/fi-FI.json create mode 100644 src/lang/fo-FO.json create mode 100644 src/lang/fr-FR.json create mode 100644 src/lang/ga-ES.json create mode 100644 src/lang/he-IL.json create mode 100644 src/lang/hi-IN.json create mode 100644 src/lang/hr-HR.json create mode 100644 src/lang/hu-HU.json create mode 100644 src/lang/id-ID.json create mode 100644 src/lang/it-IT.json create mode 100644 src/lang/ja-JP.json create mode 100644 src/lang/km-KH.json create mode 100644 src/lang/ko-KR.json create mode 100644 src/lang/lt-LT.json create mode 100644 src/lang/mn-MN.json create mode 100644 src/lang/ms-MY.json create mode 100644 src/lang/my-MM.json create mode 100644 src/lang/nb-NO.json create mode 100644 src/lang/nl-NL.json create mode 100644 src/lang/pl-PL.json create mode 100644 src/lang/pt-BR.json create mode 100644 src/lang/pt-PT.json create mode 100644 src/lang/ro-RO.json create mode 100644 src/lang/ru-RU.json create mode 100644 src/lang/si-LK.json create mode 100644 src/lang/sk-SK.json create mode 100644 src/lang/sl-SI.json create mode 100644 src/lang/sv-SE.json create mode 100644 src/lang/ta-IN.json create mode 100644 src/lang/th-TH.json create mode 100644 src/lang/tr-TR.json create mode 100644 src/lang/uk-UA.json create mode 100644 src/lang/ur-PK.json create mode 100644 src/lang/uz-UZ.json create mode 100644 src/lang/vi-VN.json create mode 100644 src/lang/zh-CN.json create mode 100644 src/lang/zh-TW.json create mode 100644 src/lib/__tests__/charts.test.ts create mode 100644 src/lib/__tests__/detect.test.ts create mode 100644 src/lib/__tests__/format.test.ts create mode 100644 src/lib/auth.ts create mode 100644 src/lib/charts.ts create mode 100644 src/lib/clickhouse.ts create mode 100644 src/lib/client.ts create mode 100644 src/lib/colors.ts create mode 100644 src/lib/constants.ts create mode 100644 src/lib/crypto.ts create mode 100644 src/lib/data.ts create mode 100644 src/lib/date.ts create mode 100644 src/lib/db.ts create mode 100644 src/lib/detect.ts create mode 100644 src/lib/fetch.ts create mode 100644 src/lib/filters.ts create mode 100644 src/lib/format.ts create mode 100644 src/lib/generate.ts create mode 100644 src/lib/ip.ts create mode 100644 src/lib/jwt.ts create mode 100644 src/lib/kafka.ts create mode 100644 src/lib/lang.ts create mode 100644 src/lib/load.ts create mode 100644 src/lib/params.ts create mode 100644 src/lib/password.ts create mode 100644 src/lib/prisma.ts create mode 100644 src/lib/react.ts create mode 100644 src/lib/redis.ts create mode 100644 src/lib/request.ts create mode 100644 src/lib/response.ts create mode 100644 src/lib/schema.ts create mode 100644 src/lib/sql.ts create mode 100644 src/lib/storage.ts create mode 100644 src/lib/types.ts create mode 100644 src/lib/url.ts create mode 100644 src/lib/utils.ts create mode 100644 src/permissions/index.ts create mode 100644 src/permissions/link.ts create mode 100644 src/permissions/pixel.ts create mode 100644 src/permissions/report.ts create mode 100644 src/permissions/team.ts create mode 100644 src/permissions/user.ts create mode 100644 src/permissions/website.ts create mode 100644 src/queries/prisma/index.ts create mode 100644 src/queries/prisma/link.ts create mode 100644 src/queries/prisma/pixel.ts create mode 100644 src/queries/prisma/report.ts create mode 100644 src/queries/prisma/segment.ts create mode 100644 src/queries/prisma/team.ts create mode 100644 src/queries/prisma/teamUser.ts create mode 100644 src/queries/prisma/user.ts create mode 100644 src/queries/prisma/website.ts create mode 100644 src/queries/sql/events/getEventData.ts create mode 100644 src/queries/sql/events/getEventDataEvents.ts create mode 100644 src/queries/sql/events/getEventDataFields.ts create mode 100644 src/queries/sql/events/getEventDataProperties.ts create mode 100644 src/queries/sql/events/getEventDataStats.ts create mode 100644 src/queries/sql/events/getEventDataUsage.ts create mode 100644 src/queries/sql/events/getEventDataValues.ts create mode 100644 src/queries/sql/events/getEventExpandedMetrics.ts create mode 100644 src/queries/sql/events/getEventMetrics.ts create mode 100644 src/queries/sql/events/getEventStats.ts create mode 100644 src/queries/sql/events/getEventUsage.ts create mode 100644 src/queries/sql/events/getWebsiteEvents.ts create mode 100644 src/queries/sql/events/saveEvent.ts create mode 100644 src/queries/sql/events/saveEventData.ts create mode 100644 src/queries/sql/events/saveRevenue.ts create mode 100644 src/queries/sql/getActiveVisitors.ts create mode 100644 src/queries/sql/getChannelExpandedMetrics.ts create mode 100644 src/queries/sql/getChannelMetrics.ts create mode 100644 src/queries/sql/getRealtimeActivity.ts create mode 100644 src/queries/sql/getRealtimeData.ts create mode 100644 src/queries/sql/getValues.ts create mode 100644 src/queries/sql/getWebsiteDateRange.ts create mode 100644 src/queries/sql/getWebsiteStats.ts create mode 100644 src/queries/sql/getWeeklyTraffic.ts create mode 100644 src/queries/sql/index.ts create mode 100644 src/queries/sql/pageviews/getPageviewExpandedMetrics.ts create mode 100644 src/queries/sql/pageviews/getPageviewMetrics.ts create mode 100644 src/queries/sql/pageviews/getPageviewStats.ts create mode 100644 src/queries/sql/reports/getAttribution.ts create mode 100644 src/queries/sql/reports/getBreakdown.ts create mode 100644 src/queries/sql/reports/getFunnel.ts create mode 100644 src/queries/sql/reports/getGoal.ts create mode 100644 src/queries/sql/reports/getJourney.ts create mode 100644 src/queries/sql/reports/getRetention.ts create mode 100644 src/queries/sql/reports/getRevenue.ts create mode 100644 src/queries/sql/reports/getUTM.ts create mode 100644 src/queries/sql/sessions/createSession.ts create mode 100644 src/queries/sql/sessions/getSessionActivity.ts create mode 100644 src/queries/sql/sessions/getSessionData.ts create mode 100644 src/queries/sql/sessions/getSessionDataProperties.ts create mode 100644 src/queries/sql/sessions/getSessionDataValues.ts create mode 100644 src/queries/sql/sessions/getSessionExpandedMetrics.ts create mode 100644 src/queries/sql/sessions/getSessionMetrics.ts create mode 100644 src/queries/sql/sessions/getSessionStats.ts create mode 100644 src/queries/sql/sessions/getWebsiteSession.ts create mode 100644 src/queries/sql/sessions/getWebsiteSessionStats.ts create mode 100644 src/queries/sql/sessions/getWebsiteSessions.ts create mode 100644 src/queries/sql/sessions/saveSessionData.ts create mode 100644 src/store/app.ts create mode 100644 src/store/cache.ts create mode 100644 src/store/dashboard.ts create mode 100644 src/store/version.ts create mode 100644 src/store/websites.ts create mode 100644 src/styles/global.css create mode 100644 src/styles/variables.css create mode 100644 src/tracker/index.d.ts create mode 100644 src/tracker/index.js create mode 100644 tsconfig.json create mode 100644 tsconfig.prisma.json create mode 100644 tsup.config.js diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..61cb85b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,11 @@ +.git +docker-compose.yml +Dockerfile +.gitignore +.DS_Store +node_modules +.idea +.env +.env.* +scripts/seed +scripts/seed-data.ts diff --git a/.github/ISSUE_TEMPLATE/1.bug_report.yml b/.github/ISSUE_TEMPLATE/1.bug_report.yml new file mode 100644 index 0000000..2404918 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1.bug_report.yml @@ -0,0 +1,36 @@ +name: '🐛 Bug Report' +description: Create a bug report for Umami. +body: + - type: textarea + attributes: + label: Describe the Bug + description: A clear and concise description of what the bug is. + validations: + required: true + - type: dropdown + attributes: + label: Database + description: What database are you using? + options: + - PostgreSQL + - MySQL + - Umami Cloud + validations: + required: true + - type: textarea + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: input + attributes: + label: Which Umami version are you using? (if relevant) + description: 'For example: 2.18.0, 2.15.1, 1.39.0, etc' + - type: input + attributes: + label: Which browser are you using? (if relevant) + description: 'For example: Chrome, Edge, Firefox, etc' + - type: input + attributes: + label: How are you deploying your application? (if relevant) + description: 'For example: Vercel, Railway, Docker, etc' diff --git a/.github/ISSUE_TEMPLATE/2.feature_request.yml b/.github/ISSUE_TEMPLATE/2.feature_request.yml new file mode 100644 index 0000000..529a6c7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2.feature_request.yml @@ -0,0 +1,9 @@ +name: '✨ Feature Request' +description: Create a feature or enhancement request for Umami. +body: + - type: textarea + attributes: + label: Describe the feature or enhancement + description: A clear and concise description of what the feature or enhancement is. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..9213292 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,6 @@ + +blank_issues_enabled: false +contact_links: + - name: "🤔 Ask a question" + url: https://github.com/umami-software/umami/discussions + about: Ask questions and discuss with other community members. \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..753389d --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +node_modules +.pnp +.pnp.js +.pnpm-store +package-lock.json + +# testing +/coverage + +# next.js +/.next +/out + +# production +/build +/public/script.js +/geo +/dist +/generated +/src/generated + +# misc +.DS_Store +.idea +.yarn +*.iml +*.log +.vscode +.tool-versions + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env +.env.* +*.env.* + +*.dev.yml + diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..2312dc5 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1 @@ +npx lint-staged diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..1831c1f --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,6 @@ +{ + "extends": ["stylelint-config-recommended", "stylelint-config-css-modules"], + "rules": { + "no-descending-specificity": null + } +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1282fd8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,66 @@ +ARG NODE_IMAGE_VERSION="22-alpine" + +# Install dependencies only when needed +FROM node:${NODE_IMAGE_VERSION} AS deps +# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. +RUN apk add --no-cache libc6-compat +WORKDIR /app +COPY package.json pnpm-lock.yaml ./ +RUN npm install -g pnpm +RUN pnpm install --frozen-lockfile + +# Rebuild the source code only when needed +FROM node:${NODE_IMAGE_VERSION} AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . +COPY docker/middleware.ts ./src + +ARG BASE_PATH + +ENV BASE_PATH=$BASE_PATH +ENV NEXT_TELEMETRY_DISABLED=1 +ENV DATABASE_URL="postgresql://user:pass@localhost:5432/dummy" + +RUN npm run build-docker + +# Production image, copy all the files and run next +FROM node:${NODE_IMAGE_VERSION} AS runner +WORKDIR /app + +ARG PRISMA_VERSION="6.19.0" +ARG NODE_OPTIONS + +ENV NODE_ENV=production +ENV NEXT_TELEMETRY_DISABLED=1 +ENV NODE_OPTIONS=$NODE_OPTIONS + +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs +RUN set -x \ + && apk add --no-cache curl \ + && npm install -g pnpm + +# Script dependencies +RUN pnpm --allow-build='@prisma/engines' add npm-run-all dotenv chalk semver \ + prisma@${PRISMA_VERSION} \ + @prisma/adapter-pg@${PRISMA_VERSION} + +COPY --from=builder --chown=nextjs:nodejs /app/public ./public +COPY --from=builder /app/prisma ./prisma +COPY --from=builder /app/scripts ./scripts +COPY --from=builder /app/generated ./generated + +# Automatically leverage output traces to reduce image size +# https://nextjs.org/docs/advanced-features/output-file-tracing +COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ +COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static + +USER nextjs + +EXPOSE 3000 + +ENV HOSTNAME=0.0.0.0 +ENV PORT=3000 + +CMD ["pnpm", "start-docker"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..eff4136 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Umami Software, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..cd365a6 --- /dev/null +++ b/README.md @@ -0,0 +1,132 @@ +

+ Umami Logo +

+ +

Umami

+ +

+ Umami is a simple, fast, privacy-focused alternative to Google Analytics. +

+ +

+ GitHub Release + MIT License + Build Status + Umami Demo +

+ +--- + +## 🚀 Getting Started + +A detailed getting started guide can be found at [umami.is/docs](https://umami.is/docs/). + +--- + +## 🛠 Installing from Source + +### Requirements + +- A server with Node.js version 18.18+. +- A PostgreSQL database version v12.14+. + +### Get the source code and install packages + +```bash +git clone https://github.com/umami-software/umami.git +cd umami +pnpm install +``` + +### Configure Umami + +Create an `.env` file with the following: + +```bash +DATABASE_URL=connection-url +``` + +The connection URL format: + +```bash +postgresql://username:mypassword@localhost:5432/mydb +``` + +### Build the Application + +```bash +pnpm run build +``` + +The build step will create tables in your database if you are installing for the first time. It will also create a login user with username **admin** and password **umami**. + +### Start the Application + +```bash +pnpm run start +``` + +By default, this will launch the application on `http://localhost:3000`. You will need to either [proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly. + +--- + +## 🐳 Installing with Docker + +Umami provides Docker images as well as a Docker compose file for easy deployment. + +Docker image: + +```bash +docker pull docker.umami.is/umami-software/umami:latest +``` + +Docker compose (Runs Umami with a PostgreSQL database): + +```bash +docker compose up -d +``` + +--- + +## 🔄 Getting Updates + +To get the latest features, simply do a pull, install any new dependencies, and rebuild: + +```bash +git pull +pnpm install +pnpm build +``` + +To update the Docker image, simply pull the new images and rebuild: + +```bash +docker compose pull +docker compose up --force-recreate -d +``` + +--- + +## 🛟 Support + +

+ GitHub + Twitter + LinkedIn + Discord +

+ +[release-shield]: https://img.shields.io/github/release/umami-software/umami.svg +[releases-url]: https://github.com/umami-software/umami/releases +[license-shield]: https://img.shields.io/github/license/umami-software/umami.svg +[license-url]: https://github.com/umami-software/umami/blob/master/LICENSE +[build-shield]: https://img.shields.io/github/actions/workflow/status/umami-software/umami/ci.yml +[build-url]: https://github.com/umami-software/umami/actions +[github-shield]: https://img.shields.io/badge/GitHub--blue?style=social&logo=github +[github-url]: https://github.com/umami-software/umami +[twitter-shield]: https://img.shields.io/badge/Twitter--blue?style=social&logo=twitter +[twitter-url]: https://twitter.com/umami_software +[linkedin-shield]: https://img.shields.io/badge/LinkedIn--blue?style=social&logo=linkedin +[linkedin-url]: https://linkedin.com/company/umami-software +[discord-shield]: https://img.shields.io/badge/Discord--blue?style=social&logo=discord +[discord-url]: https://discord.com/invite/4dz4zcXYrQ diff --git a/app.json b/app.json new file mode 100644 index 0000000..cec5fda --- /dev/null +++ b/app.json @@ -0,0 +1,16 @@ +{ + "name": "Umami", + "description": "Umami is a simple, fast, website analytics alternative to Google Analytics.", + "keywords": ["analytics", "charts", "statistics", "web-analytics"], + "website": "https://umami.is", + "repository": "https://github.com/umami-software/umami", + "addons": ["heroku-postgresql"], + "env": { + "APP_SECRET": { + "description": "Used to generate unique values for your installation", + "required": true, + "generator": "secret" + } + }, + "success_url": "/" +} diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..61d094c --- /dev/null +++ b/biome.json @@ -0,0 +1,65 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.3.6/schema.json", + "vcs": { + "enabled": true, + "clientKind": "git", + "useIgnoreFile": true + }, + "files": { + "includes": ["**", "!!**/dist"] + }, + "formatter": { + "enabled": true, + "lineWidth": 100, + "indentStyle": "space", + "indentWidth": 2, + "lineEnding": "lf" + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "a11y": "off", + "correctness": { + "useExhaustiveDependencies": "off" + }, + "style": { + "noDescendingSpecificity": "off" + }, + "complexity": { + "noImportantStyles": "off" + }, + "suspicious": { + "noArrayIndexKey": "off", + "noExplicitAny": "off", + "noImplicitAnyLet": "off" + }, + "performance": { + "noImgElement": "off" + } + } + }, + "javascript": { + "formatter": { + "quoteStyle": "single", + "trailingCommas": "all", + "arrowParentheses": "asNeeded" + } + }, + "css": { + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 2, + "lineEnding": "lf" + } + }, + "assist": { + "enabled": true, + "actions": { + "source": { + "organizeImports": "on" + } + } + } +} diff --git a/cypress.config.ts b/cypress.config.ts new file mode 100644 index 0000000..c110046 --- /dev/null +++ b/cypress.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from 'cypress'; + +export default defineConfig({ + e2e: { + baseUrl: 'http://localhost:3000', + }, + // default username / password on init + env: { + umami_user: 'admin', + umami_password: 'umami', + umami_user_id: '41e2b680-648e-4b09-bcd7-3e2b10c06264', + }, +}); diff --git a/cypress/docker-compose.yml b/cypress/docker-compose.yml new file mode 100644 index 0000000..01a47bd --- /dev/null +++ b/cypress/docker-compose.yml @@ -0,0 +1,52 @@ +--- +version: '3' +services: + umami: + build: ../ + #image: ghcr.io/umami-software/umami:postgresql-latest + ports: + - '3000:3000' + environment: + DATABASE_URL: postgresql://umami:umami@db:5432/umami + DATABASE_TYPE: postgresql + APP_SECRET: replace-me-with-a-random-string + depends_on: + db: + condition: service_healthy + restart: always + healthcheck: + test: ['CMD-SHELL', 'curl http://localhost:3000/api/heartbeat'] + interval: 5s + timeout: 5s + retries: 5 + db: + image: postgres:15-alpine + environment: + POSTGRES_DB: umami + POSTGRES_USER: umami + POSTGRES_PASSWORD: umami + volumes: + - umami-db-data:/var/lib/postgresql/data + restart: always + healthcheck: + test: ['CMD-SHELL', 'pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}'] + interval: 5s + timeout: 5s + retries: 5 + cypress: + image: 'cypress/included:13.6.0' + depends_on: + - umami + - db + environment: + - CYPRESS_baseUrl=http://umami:3000 + - CYPRESS_umami_user=admin + - CYPRESS_umami_password=umami + volumes: + - ./tsconfig.json:/tsconfig.json + - ../cypress.config.ts:/cypress.config.ts + - ./:/cypress + - ../node_modules/:/node_modules + - ../src/lib/crypto.ts:/src/lib/crypto.ts +volumes: + umami-db-data: diff --git a/cypress/e2e/api-team.cy.ts b/cypress/e2e/api-team.cy.ts new file mode 100644 index 0000000..2281113 --- /dev/null +++ b/cypress/e2e/api-team.cy.ts @@ -0,0 +1,209 @@ +describe('Team API tests', () => { + Cypress.session.clearAllSavedSessions(); + + let teamId; + let userId; + + before(() => { + cy.login(Cypress.env('umami_user'), Cypress.env('umami_password')); + cy.fixture('users').then(data => { + const userCreate = data.userCreate; + cy.request({ + method: 'POST', + url: '/api/users', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: userCreate, + }).then(response => { + userId = response.body.id; + expect(response.status).to.eq(200); + expect(response.body).to.have.property('username', 'cypress1'); + expect(response.body).to.have.property('role', 'user'); + }); + }); + }); + + it('Creates a team.', () => { + cy.fixture('teams').then(data => { + const teamCreate = data.teamCreate; + cy.request({ + method: 'POST', + url: '/api/teams', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: teamCreate, + }).then(response => { + teamId = response.body[0].id; + expect(response.status).to.eq(200); + expect(response.body[0]).to.have.property('name', 'cypress'); + expect(response.body[1]).to.have.property('role', 'team-owner'); + }); + }); + }); + + it('Gets a teams by ID.', () => { + cy.request({ + method: 'GET', + url: `/api/teams/${teamId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('id', teamId); + }); + }); + + it('Updates a team.', () => { + cy.fixture('teams').then(data => { + const teamUpdate = data.teamUpdate; + cy.request({ + method: 'POST', + url: `/api/teams/${teamId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: teamUpdate, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('id', teamId); + expect(response.body).to.have.property('name', 'cypressUpdate'); + }); + }); + }); + + it('Get all users that belong to a team.', () => { + cy.request({ + method: 'GET', + url: `/api/teams/${teamId}/users`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body.data[0]).to.have.property('id'); + expect(response.body.data[0]).to.have.property('teamId'); + expect(response.body.data[0]).to.have.property('userId'); + expect(response.body.data[0]).to.have.property('user'); + }); + }); + + it('Get a user belonging to a team.', () => { + cy.request({ + method: 'GET', + url: `/api/teams/${teamId}/users/${Cypress.env('umami_user_id')}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('teamId'); + expect(response.body).to.have.property('userId'); + expect(response.body).to.have.property('role'); + }); + }); + + it('Get all websites belonging to a team.', () => { + cy.request({ + method: 'GET', + url: `/api/teams/${teamId}/websites`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('data'); + }); + }); + + it('Add a user to a team.', () => { + cy.request({ + method: 'POST', + url: `/api/teams/${teamId}/users`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + userId, + role: 'team-member', + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('userId', userId); + expect(response.body).to.have.property('role', 'team-member'); + }); + }); + + it(`Update a user's role on a team.`, () => { + cy.request({ + method: 'POST', + url: `/api/teams/${teamId}/users/${userId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + role: 'team-view-only', + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('userId', userId); + expect(response.body).to.have.property('role', 'team-view-only'); + }); + }); + + it(`Remove a user from a team.`, () => { + cy.request({ + method: 'DELETE', + url: `/api/teams/${teamId}/users/${userId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + }); + }); + + it('Deletes a team.', () => { + cy.request({ + method: 'DELETE', + url: `/api/teams/${teamId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('ok', true); + }); + }); + + // it('Gets all teams that belong to a user.', () => { + // cy.request({ + // method: 'GET', + // url: `/api/users/${userId}/teams`, + // headers: { + // 'Content-Type': 'application/json', + // Authorization: Cypress.env('authorization'), + // }, + // }).then(response => { + // expect(response.status).to.eq(200); + // expect(response.body).to.have.property('data'); + // }); + // }); + + after(() => { + cy.deleteUser(userId); + }); +}); diff --git a/cypress/e2e/api-user.cy.ts b/cypress/e2e/api-user.cy.ts new file mode 100644 index 0000000..696cd21 --- /dev/null +++ b/cypress/e2e/api-user.cy.ts @@ -0,0 +1,125 @@ +describe('User API tests', () => { + Cypress.session.clearAllSavedSessions(); + + before(() => { + cy.login(Cypress.env('umami_user'), Cypress.env('umami_password')); + }); + + let userId; + + it('Creates a user.', () => { + cy.fixture('users').then(data => { + const userCreate = data.userCreate; + cy.request({ + method: 'POST', + url: '/api/users', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: userCreate, + }).then(response => { + userId = response.body.id; + expect(response.status).to.eq(200); + expect(response.body).to.have.property('username', 'cypress1'); + expect(response.body).to.have.property('role', 'user'); + }); + }); + }); + + it('Returns all users. Admin access is required.', () => { + cy.request({ + method: 'GET', + url: '/api/admin/users', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body.data[0]).to.have.property('id'); + expect(response.body.data[0]).to.have.property('username'); + expect(response.body.data[0]).to.have.property('password'); + expect(response.body.data[0]).to.have.property('role'); + }); + }); + + it('Updates a user.', () => { + cy.fixture('users').then(data => { + const userUpdate = data.userUpdate; + cy.request({ + method: 'POST', + url: `/api/users/${userId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: userUpdate, + }).then(response => { + userId = response.body.id; + expect(response.status).to.eq(200); + expect(response.body).to.have.property('id', userId); + expect(response.body).to.have.property('username', 'cypress1'); + expect(response.body).to.have.property('role', 'view-only'); + }); + }); + }); + + it('Gets a user by ID.', () => { + cy.request({ + method: 'GET', + url: `/api/users/${userId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('id', userId); + expect(response.body).to.have.property('username', 'cypress1'); + expect(response.body).to.have.property('role', 'view-only'); + }); + }); + + it('Deletes a user.', () => { + cy.request({ + method: 'DELETE', + url: `/api/users/${userId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('ok', true); + }); + }); + + it('Gets all websites that belong to a user.', () => { + cy.request({ + method: 'GET', + url: `/api/users/${userId}/websites`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('data'); + }); + }); + + it('Gets all teams that belong to a user.', () => { + cy.request({ + method: 'GET', + url: `/api/users/${userId}/teams`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('data'); + }); + }); +}); diff --git a/cypress/e2e/api-website.cy.ts b/cypress/e2e/api-website.cy.ts new file mode 100644 index 0000000..cd336bd --- /dev/null +++ b/cypress/e2e/api-website.cy.ts @@ -0,0 +1,198 @@ +import { uuid } from '../../src/lib/crypto'; + +describe('Website API tests', () => { + Cypress.session.clearAllSavedSessions(); + + let websiteId; + let teamId; + + before(() => { + cy.login(Cypress.env('umami_user'), Cypress.env('umami_password')); + cy.fixture('teams').then(data => { + const teamCreate = data.teamCreate; + cy.request({ + method: 'POST', + url: '/api/teams', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: teamCreate, + }).then(response => { + teamId = response.body[0].id; + expect(response.status).to.eq(200); + expect(response.body[0]).to.have.property('name', 'cypress'); + expect(response.body[1]).to.have.property('role', 'team-owner'); + }); + }); + }); + + it('Creates a website for user.', () => { + cy.fixture('websites').then(data => { + const websiteCreate = data.websiteCreate; + cy.request({ + method: 'POST', + url: '/api/websites', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: websiteCreate, + }).then(response => { + websiteId = response.body.id; + expect(response.status).to.eq(200); + expect(response.body).to.have.property('name', 'Cypress Website'); + expect(response.body).to.have.property('domain', 'cypress.com'); + }); + }); + }); + + it('Creates a website for team.', () => { + cy.request({ + method: 'POST', + url: '/api/websites', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + name: 'Team Website', + domain: 'teamwebsite.com', + teamId: teamId, + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('name', 'Team Website'); + expect(response.body).to.have.property('domain', 'teamwebsite.com'); + }); + }); + + it('Creates a website with a fixed ID.', () => { + cy.fixture('websites').then(data => { + const websiteCreate = data.websiteCreate; + const fixedId = uuid(); + cy.request({ + method: 'POST', + url: '/api/websites', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { ...websiteCreate, id: fixedId }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('id', fixedId); + expect(response.body).to.have.property('name', 'Cypress Website'); + expect(response.body).to.have.property('domain', 'cypress.com'); + + // cleanup + cy.request({ + method: 'DELETE', + url: `/api/websites/${fixedId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }); + }); + }); + }); + + it('Returns all tracked websites.', () => { + cy.request({ + method: 'GET', + url: '/api/websites', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body.data[0]).to.have.property('id'); + expect(response.body.data[0]).to.have.property('name'); + expect(response.body.data[0]).to.have.property('domain'); + }); + }); + + it('Gets a website by ID.', () => { + cy.request({ + method: 'GET', + url: `/api/websites/${websiteId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('name', 'Cypress Website'); + expect(response.body).to.have.property('domain', 'cypress.com'); + }); + }); + + it('Updates a website.', () => { + cy.fixture('websites').then(data => { + const websiteUpdate = data.websiteUpdate; + cy.request({ + method: 'POST', + url: `/api/websites/${websiteId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: websiteUpdate, + }).then(response => { + websiteId = response.body.id; + expect(response.status).to.eq(200); + expect(response.body).to.have.property('name', 'Cypress Website Updated'); + expect(response.body).to.have.property('domain', 'cypressupdated.com'); + }); + }); + }); + + it('Updates a website with only shareId.', () => { + cy.request({ + method: 'POST', + url: `/api/websites/${websiteId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { shareId: 'ABCDEF' }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('shareId', 'ABCDEF'); + }); + }); + + it('Resets a website by removing all data related to the website.', () => { + cy.request({ + method: 'POST', + url: `/api/websites/${websiteId}/reset`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('ok', true); + }); + }); + + it('Deletes a website.', () => { + cy.request({ + method: 'DELETE', + url: `/api/websites/${websiteId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + expect(response.body).to.have.property('ok', true); + }); + }); + + after(() => { + cy.deleteTeam(teamId); + }); +}); diff --git a/cypress/e2e/login.cy.ts b/cypress/e2e/login.cy.ts new file mode 100644 index 0000000..507b1b5 --- /dev/null +++ b/cypress/e2e/login.cy.ts @@ -0,0 +1,36 @@ +describe('Login tests', () => { + beforeEach(() => { + cy.visit('/login'); + }); + + it( + 'logs user in with correct credentials and logs user out', + { + defaultCommandTimeout: 10000, + }, + () => { + cy.getDataTest('input-username').find('input').as('inputUsername').click(); + cy.get('@inputUsername').type(Cypress.env('umami_user'), { delay: 0 }); + cy.get('@inputUsername').click(); + cy.getDataTest('input-password') + .find('input') + .type(Cypress.env('umami_password'), { delay: 0 }); + cy.getDataTest('button-submit').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/dashboard'); + cy.logout(); + }, + ); + + it('login with blank inputs or incorrect credentials', () => { + cy.getDataTest('button-submit').click(); + cy.contains(/Required/i).should('be.visible'); + + cy.getDataTest('input-username').find('input').as('inputUsername'); + cy.get('@inputUsername').click(); + cy.get('@inputUsername').type(Cypress.env('umami_user'), { delay: 0 }); + cy.get('@inputUsername').click(); + cy.getDataTest('input-password').find('input').type('wrongpassword', { delay: 0 }); + cy.getDataTest('button-submit').click(); + cy.contains(/Incorrect username and\/or password./i).should('be.visible'); + }); +}); diff --git a/cypress/e2e/user.cy.ts b/cypress/e2e/user.cy.ts new file mode 100644 index 0000000..24df305 --- /dev/null +++ b/cypress/e2e/user.cy.ts @@ -0,0 +1,65 @@ +describe('User tests', () => { + Cypress.session.clearAllSavedSessions(); + + beforeEach(() => { + cy.login(Cypress.env('umami_user'), Cypress.env('umami_password')); + cy.visit('/settings/users'); + }); + + it('Add a User', () => { + // add user + cy.contains(/Create user/i).should('be.visible'); + cy.getDataTest('button-create-user').click(); + cy.getDataTest('input-username').find('input').as('inputName').click(); + cy.get('@inputName').type('Test-user', { delay: 0 }); + cy.getDataTest('input-password').find('input').as('inputPassword').click(); + cy.get('@inputPassword').type('testPasswordCypress', { delay: 0 }); + cy.getDataTest('dropdown-role').click(); + cy.getDataTest('dropdown-item-user').click(); + cy.getDataTest('button-submit').click(); + cy.get('td[label="Username"]').should('contain.text', 'Test-user'); + cy.get('td[label="Role"]').should('contain.text', 'User'); + }); + + it('Edit a User role and password', () => { + // edit user + cy.get('table tbody tr') + .contains('td', /Test-user/i) + .parent() + .within(() => { + cy.getDataTest('link-button-edit').click(); // Clicks the button inside the row + }); + cy.getDataTest('input-password').find('input').as('inputPassword').click(); + cy.get('@inputPassword').type('newPassword', { delay: 0 }); + cy.getDataTest('dropdown-role').click(); + cy.getDataTest('dropdown-item-viewOnly').click(); + cy.getDataTest('button-submit').click(); + + cy.visit('/settings/users'); + cy.get('table tbody tr') + .contains('td', /Test-user/i) + .parent() + .should('contain.text', 'View only'); + + cy.logout(); + cy.url().should('eq', Cypress.config().baseUrl + '/login'); + cy.getDataTest('input-username').find('input').as('inputUsername').click(); + cy.get('@inputUsername').type('Test-user', { delay: 0 }); + cy.get('@inputUsername').click(); + cy.getDataTest('input-password').find('input').type('newPassword', { delay: 0 }); + cy.getDataTest('button-submit').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/dashboard'); + }); + + it('Delete a user', () => { + // delete user + cy.get('table tbody tr') + .contains('td', /Test-user/i) + .parent() + .within(() => { + cy.getDataTest('button-delete').click(); // Clicks the button inside the row + }); + cy.contains(/Are you sure you want to delete Test-user?/i).should('be.visible'); + cy.getDataTest('button-confirm').click(); + }); +}); diff --git a/cypress/e2e/website.cy.ts b/cypress/e2e/website.cy.ts new file mode 100644 index 0000000..2dcd602 --- /dev/null +++ b/cypress/e2e/website.cy.ts @@ -0,0 +1,89 @@ +describe('Website tests', () => { + Cypress.session.clearAllSavedSessions(); + + beforeEach(() => { + cy.login(Cypress.env('umami_user'), Cypress.env('umami_password')); + }); + + it('Add a website', () => { + // add website + cy.visit('/settings/websites'); + cy.getDataTest('button-website-add').click(); + cy.contains(/Add website/i).should('be.visible'); + cy.getDataTest('input-name').find('input').as('inputUsername').click(); + cy.getDataTest('input-name').find('input').type('Add test', { delay: 0 }); + cy.getDataTest('input-domain').find('input').click(); + cy.getDataTest('input-domain').find('input').type('addtest.com', { delay: 0 }); + cy.getDataTest('button-submit').click(); + cy.get('td[label="Name"]').should('contain.text', 'Add test'); + cy.get('td[label="Domain"]').should('contain.text', 'addtest.com'); + + // clean-up data + cy.getDataTest('link-button-edit').first().click(); + cy.contains(/Details/i).should('be.visible'); + cy.getDataTest('text-field-websiteId') + .find('input') + .then($input => { + const websiteId = $input[0].value; + cy.deleteWebsite(websiteId); + }); + cy.visit('/settings/websites'); + cy.contains(/Add test/i).should('not.exist'); + }); + + it('Edit a website', () => { + // prep data + cy.addWebsite('Update test', 'updatetest.com'); + cy.visit('/settings/websites'); + + // edit website + cy.getDataTest('link-button-edit').first().click(); + cy.contains(/Details/i).should('be.visible'); + cy.getDataTest('input-name').find('input').click(); + cy.getDataTest('input-name').find('input').clear(); + cy.getDataTest('input-name').find('input').type('Updated website', { delay: 0 }); + cy.getDataTest('input-domain').find('input').click(); + cy.getDataTest('input-domain').find('input').clear(); + cy.getDataTest('input-domain').find('input').type('updatedwebsite.com', { delay: 0 }); + cy.getDataTest('button-submit').click({ force: true }); + cy.getDataTest('input-name').find('input').should('have.value', 'Updated website'); + cy.getDataTest('input-domain').find('input').should('have.value', 'updatedwebsite.com'); + + // verify tracking script + cy.get('div') + .contains(/Tracking code/i) + .click(); + cy.get('textarea').should('contain.text', Cypress.config().baseUrl + '/script.js'); + + // clean-up data + cy.get('div') + .contains(/Details/i) + .click(); + cy.contains(/Details/i).should('be.visible'); + cy.getDataTest('text-field-websiteId') + .find('input') + .then($input => { + const websiteId = $input[0].value; + cy.deleteWebsite(websiteId); + }); + cy.visit('/settings/websites'); + cy.contains(/Add test/i).should('not.exist'); + }); + + it('Delete a website', () => { + // prep data + cy.addWebsite('Delete test', 'deletetest.com'); + cy.visit('/settings/websites'); + + // delete website + cy.getDataTest('link-button-edit').first().click(); + cy.contains(/Data/i).should('be.visible'); + cy.get('div').contains(/Data/i).click(); + cy.contains(/All website data will be deleted./i).should('be.visible'); + cy.getDataTest('button-delete').click(); + cy.contains(/Type DELETE in the box below to confirm./i).should('be.visible'); + cy.get('input[name="confirm"').type('DELETE'); + cy.get('button[type="submit"]').click(); + cy.contains(/Delete test/i).should('not.exist'); + }); +}); diff --git a/cypress/fixtures/teams.json b/cypress/fixtures/teams.json new file mode 100644 index 0000000..4c001e6 --- /dev/null +++ b/cypress/fixtures/teams.json @@ -0,0 +1,8 @@ +{ + "teamCreate": { + "name": "cypress" + }, + "teamUpdate": { + "name": "cypressUpdate" + } +} diff --git a/cypress/fixtures/users.json b/cypress/fixtures/users.json new file mode 100644 index 0000000..235f0d6 --- /dev/null +++ b/cypress/fixtures/users.json @@ -0,0 +1,11 @@ +{ + "userCreate": { + "username": "cypress1", + "password": "password", + "role": "user" + }, + "userUpdate": { + "username": "cypress1", + "role": "view-only" + } +} diff --git a/cypress/fixtures/websites.json b/cypress/fixtures/websites.json new file mode 100644 index 0000000..0b81788 --- /dev/null +++ b/cypress/fixtures/websites.json @@ -0,0 +1,10 @@ +{ + "websiteCreate": { + "name": "Cypress Website", + "domain": "cypress.com" + }, + "websiteUpdate": { + "name": "Cypress Website Updated", + "domain": "cypressupdated.com" + } +} diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts new file mode 100644 index 0000000..a95035b --- /dev/null +++ b/cypress/support/e2e.ts @@ -0,0 +1,123 @@ +/// +import { uuid } from '../../src/lib/crypto'; + +Cypress.Commands.add('getDataTest', (value: string) => { + return cy.get(`[data-test=${value}]`); +}); + +Cypress.Commands.add('logout', () => { + cy.getDataTest('button-profile').click(); + cy.getDataTest('item-logout').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/login'); +}); + +Cypress.Commands.add('login', (username: string, password: string) => { + cy.session([username, password], () => { + cy.request({ + method: 'POST', + url: '/api/auth/login', + body: { + username, + password, + }, + }) + .then(response => { + Cypress.env('authorization', `bearer ${response.body.token}`); + window.localStorage.setItem('umami.auth', JSON.stringify(response.body.token)); + }) + .its('status') + .should('eq', 200); + }); +}); + +Cypress.Commands.add('addWebsite', (name: string, domain: string) => { + cy.request({ + method: 'POST', + url: '/api/websites', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + id: uuid(), + createdBy: '41e2b680-648e-4b09-bcd7-3e2b10c06264', + name: name, + domain: domain, + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); + +Cypress.Commands.add('deleteWebsite', (websiteId: string) => { + cy.request({ + method: 'DELETE', + url: `/api/websites/${websiteId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); + +Cypress.Commands.add('addUser', (username: string, password: string, role: string) => { + cy.request({ + method: 'POST', + url: '/api/users', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + username: username, + password: password, + role: role, + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); + +Cypress.Commands.add('deleteUser', (userId: string) => { + cy.request({ + method: 'DELETE', + url: `/api/users/${userId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); + +Cypress.Commands.add('addTeam', (name: string) => { + cy.request({ + method: 'POST', + url: '/api/teams', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + name: name, + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); + +Cypress.Commands.add('deleteTeam', (teamId: string) => { + cy.request({ + method: 'DELETE', + url: `/api/teams/${teamId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); diff --git a/cypress/support/index.d.ts b/cypress/support/index.d.ts new file mode 100644 index 0000000..b630269 --- /dev/null +++ b/cypress/support/index.d.ts @@ -0,0 +1,56 @@ +/// +/* global JQuery */ + +declare namespace Cypress { + interface Chainable { + /** + * Custom command to select DOM element by data-test attribute. + * @example cy.getDataTest('greeting') + */ + getDataTest(value: string): Chainable>; + /** + * Custom command to logout through UI. + * @example cy.logout() + */ + logout(): Chainable>; + /** + * Custom command to login user into the app. + * @example cy.login('admin', 'password) + */ + login(username: string, password: string): Chainable>; + /** + * Custom command to create a website + * @example cy.addWebsite('test', 'test.com') + */ + addWebsite(name: string, domain: string): Chainable>; + /** + * Custom command to delete a website + * @example cy.deleteWebsite('02d89813-7a72-41e1-87f0-8d668f85008b') + */ + deleteWebsite(websiteId: string): Chainable>; + /** + * Custom command to create a website + * @example cy.deleteWebsite('02d89813-7a72-41e1-87f0-8d668f85008b') + */ + /** + * Custom command to create a user + * @example cy.addUser('cypress', 'password', 'User') + */ + addUser(username: string, password: string, role: string): Chainable>; + /** + * Custom command to delete a user + * @example cy.deleteUser('02d89813-7a72-41e1-87f0-8d668f85008b') + */ + deleteUser(userId: string): Chainable>; + /** + * Custom command to create a team + * @example cy.addTeam('cypressTeam') + */ + addTeam(name: string): Chainable>; + /** + * Custom command to create a website + * @example cy.deleteTeam('02d89813-7a72-41e1-87f0-8d668f85008b') + */ + deleteTeam(teamId: string): Chainable>; + } +} diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json new file mode 100644 index 0000000..48c3e14 --- /dev/null +++ b/cypress/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["es5", "dom"], + "types": ["cypress", "node"] + }, + "include": ["**/*.ts", "../cypress.config.ts"] +} diff --git a/db/clickhouse/migrations/01_edit_keys.sql b/db/clickhouse/migrations/01_edit_keys.sql new file mode 100644 index 0000000..3fc7dd7 --- /dev/null +++ b/db/clickhouse/migrations/01_edit_keys.sql @@ -0,0 +1,18 @@ +-- edit event_data values +ALTER TABLE "event_data" RENAME COLUMN "event_date_value" TO "date_value"; +ALTER TABLE "event_data" RENAME COLUMN "event_numeric_value" TO "number_value"; +ALTER TABLE "event_data" RENAME COLUMN "event_string_value" TO "string_value"; +ALTER TABLE "event_data" RENAME COLUMN "event_data_type" TO "data_type"; + +-- add job_id +ALTER TABLE "website_event" ADD COLUMN "job_id" UUID AFTER "created_at"; +ALTER TABLE "event_data" ADD COLUMN "job_id" UUID AFTER "created_at"; + +-- update event_data string +alter table umami.event_data +update string_value = number_value +where data_type = 2 + +alter table umami.event_data +update string_value = replaceOne(concat(CAST(toDateTime(date_value, 'UTC'), 'String'),'Z'), ' ', 'T') +where data_type = 4 \ No newline at end of file diff --git a/db/clickhouse/migrations/02_add_visit_id.sql b/db/clickhouse/migrations/02_add_visit_id.sql new file mode 100644 index 0000000..202c0fd --- /dev/null +++ b/db/clickhouse/migrations/02_add_visit_id.sql @@ -0,0 +1,90 @@ +CREATE TABLE umami.website_event_join +( + session_id UUID, + visit_id UUID, + created_at DateTime('UTC') +) + engine = MergeTree + ORDER BY (session_id, created_at) + SETTINGS index_granularity = 8192; + +INSERT INTO umami.website_event_join +SELECT DISTINCT + s.session_id, + generateUUIDv4() visit_id, + s.created_at +FROM (SELECT DISTINCT session_id, + date_trunc('hour', created_at) created_at + FROM website_event) s; + +-- create new table +CREATE TABLE umami.website_event_new +( + website_id UUID, + session_id UUID, + visit_id UUID, + event_id UUID, + hostname LowCardinality(String), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + subdivision1 LowCardinality(String), + subdivision2 LowCardinality(String), + city String, + url_path String, + url_query String, + referrer_path String, + referrer_query String, + referrer_domain String, + page_title String, + event_type UInt32, + event_name String, + created_at DateTime('UTC'), + job_id UUID +) + engine = MergeTree + ORDER BY (website_id, session_id, created_at) + SETTINGS index_granularity = 8192; + +INSERT INTO umami.website_event_new +SELECT we.website_id, + we.session_id, + j.visit_id, + we.event_id, + we.hostname, + we.browser, + we.os, + we.device, + we.screen, + we.language, + we.country, + we.subdivision1, + we.subdivision2, + we.city, + we.url_path, + we.url_query, + we.referrer_path, + we.referrer_query, + we.referrer_domain, + we.page_title, + we.event_type, + we.event_name, + we.created_at, + we.job_id +FROM umami.website_event we +JOIN umami.website_event_join j + ON we.session_id = j.session_id + and date_trunc('hour', we.created_at) = j.created_at + +RENAME TABLE umami.website_event TO umami.website_event_old; +RENAME TABLE umami.website_event_new TO umami.website_event; + +/* + + DROP TABLE umami.website_event_old + DROP TABLE umami.website_event_join + + */ \ No newline at end of file diff --git a/db/clickhouse/migrations/03_session_data.sql b/db/clickhouse/migrations/03_session_data.sql new file mode 100644 index 0000000..1ed2c06 --- /dev/null +++ b/db/clickhouse/migrations/03_session_data.sql @@ -0,0 +1,57 @@ +CREATE TABLE umami.event_data_new +( + website_id UUID, + session_id UUID, + event_id UUID, + url_path String, + event_name String, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal64(4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) + engine = MergeTree + ORDER BY (website_id, event_id, data_key, created_at) + SETTINGS index_granularity = 8192; + +INSERT INTO umami.event_data_new +SELECT website_id, + session_id, + event_id, + url_path, + event_name, + event_key, + string_value, + number_value, + date_value, + data_type, + created_at, + NULL +FROM umami.event_data; + +CREATE TABLE umami.session_data +( + website_id UUID, + session_id UUID, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal64(4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) + engine = MergeTree + ORDER BY (website_id, session_id, data_key, created_at) + SETTINGS index_granularity = 8192; + +RENAME TABLE umami.event_data TO umami.event_data_old; +RENAME TABLE umami.event_data_new TO umami.event_data; + +/* +DROP TABLE umami.event_data_old + */ + diff --git a/db/clickhouse/migrations/04_add_tag.sql b/db/clickhouse/migrations/04_add_tag.sql new file mode 100644 index 0000000..7ffc499 --- /dev/null +++ b/db/clickhouse/migrations/04_add_tag.sql @@ -0,0 +1,77 @@ +-- add tag column +ALTER TABLE umami.website_event ADD COLUMN "tag" String AFTER "event_name"; +ALTER TABLE umami.website_event_stats_hourly ADD COLUMN "tag" SimpleAggregateFunction(groupArrayArray, Array(String)) AFTER "max_time"; + +-- update materialized view +DROP TABLE umami.website_event_stats_hourly_mv; + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + referrer_domain, + page_title, + event_type, + event_name, + views, + min_time, + max_time, + tag, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + event_type, + timestamp); \ No newline at end of file diff --git a/db/clickhouse/migrations/05_add_utm_clid.sql b/db/clickhouse/migrations/05_add_utm_clid.sql new file mode 100644 index 0000000..30d9671 --- /dev/null +++ b/db/clickhouse/migrations/05_add_utm_clid.sql @@ -0,0 +1,332 @@ +-- Create Event +CREATE TABLE umami.website_event_new +( + website_id UUID, + session_id UUID, + visit_id UUID, + event_id UUID, + --sessions + hostname LowCardinality(String), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + subdivision1 LowCardinality(String), + subdivision2 LowCardinality(String), + city String, + --pageviews + url_path String, + url_query String, + utm_source String, + utm_medium String, + utm_campaign String, + utm_content String, + utm_term String, + referrer_path String, + referrer_query String, + referrer_domain String, + page_title String, + --clickIDs + gclid String, + fbclid String, + msclkid String, + ttclid String, + li_fat_id String, + twclid String, + --events + event_type UInt32, + event_name String, + tag String, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) +ENGINE = MergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY (toStartOfHour(created_at), website_id, session_id, visit_id, created_at) + PRIMARY KEY (toStartOfHour(created_at), website_id, session_id, visit_id) + SETTINGS index_granularity = 8192; + +-- stats hourly +CREATE TABLE umami.website_event_stats_hourly_new +( + website_id UUID, + session_id UUID, + visit_id UUID, + hostname LowCardinality(String), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + subdivision1 LowCardinality(String), + city String, + entry_url AggregateFunction(argMin, String, DateTime('UTC')), + exit_url AggregateFunction(argMax, String, DateTime('UTC')), + url_path SimpleAggregateFunction(groupArrayArray, Array(String)), + url_query SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_source SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_medium SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_campaign SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_content SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_term SimpleAggregateFunction(groupArrayArray, Array(String)), + referrer_domain SimpleAggregateFunction(groupArrayArray, Array(String)), + page_title SimpleAggregateFunction(groupArrayArray, Array(String)), + gclid SimpleAggregateFunction(groupArrayArray, Array(String)), + fbclid SimpleAggregateFunction(groupArrayArray, Array(String)), + msclkid SimpleAggregateFunction(groupArrayArray, Array(String)), + ttclid SimpleAggregateFunction(groupArrayArray, Array(String)), + li_fat_id SimpleAggregateFunction(groupArrayArray, Array(String)), + twclid SimpleAggregateFunction(groupArrayArray, Array(String)), + event_type UInt32, + event_name SimpleAggregateFunction(groupArrayArray, Array(String)), + views SimpleAggregateFunction(sum, UInt64), + min_time SimpleAggregateFunction(min, DateTime('UTC')), + max_time SimpleAggregateFunction(max, DateTime('UTC')), + tag SimpleAggregateFunction(groupArrayArray, Array(String)), + created_at Datetime('UTC') +) +ENGINE = AggregatingMergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY ( + website_id, + event_type, + toStartOfHour(created_at), + cityHash64(visit_id), + visit_id + ) + SAMPLE BY cityHash64(visit_id); + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv_new +TO umami.website_event_stats_hourly_new +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + toStartOfHour(created_at) timestamp +FROM umami.website_event_new +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + event_type, + timestamp); + +-- projections +ALTER TABLE umami.website_event_new +ADD PROJECTION website_event_url_path_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, url_path, created_at +); + +ALTER TABLE umami.website_event_new MATERIALIZE PROJECTION website_event_url_path_projection; + +ALTER TABLE umami.website_event_new +ADD PROJECTION website_event_referrer_domain_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, referrer_domain, created_at +); + +ALTER TABLE umami.website_event_new MATERIALIZE PROJECTION website_event_referrer_domain_projection; + +-- migration +INSERT INTO umami.website_event_new +SELECT website_id, session_id, visit_id, event_id, hostname, browser, os, device, screen, language, country, subdivision1, subdivision2, city, url_path, url_query, + extract(url_query, 'utm_source=([^&]*)') AS utm_source, + extract(url_query, 'utm_medium=([^&]*)') AS utm_medium, + extract(url_query, 'utm_campaign=([^&]*)') AS utm_campaign, + extract(url_query, 'utm_content=([^&]*)') AS utm_content, + extract(url_query, 'utm_term=([^&]*)') AS utm_term,referrer_path, referrer_query, referrer_domain, + page_title, + extract(url_query, 'gclid=([^&]*)') gclid, + extract(url_query, 'fbclid=([^&]*)') fbclid, + extract(url_query, 'msclkid=([^&]*)') msclkid, + extract(url_query, 'ttclid=([^&]*)') ttclid, + extract(url_query, 'li_fat_id=([^&]*)') li_fat_id, + extract(url_query, 'twclid=([^&]*)') twclid, + event_type, event_name, tag, created_at, job_id +FROM umami.website_event + +-- rename tables +RENAME TABLE umami.website_event TO umami.website_event_old; +RENAME TABLE umami.website_event_new TO umami.website_event; + +RENAME TABLE umami.website_event_stats_hourly TO umami.website_event_stats_hourly_old; +RENAME TABLE umami.website_event_stats_hourly_new TO umami.website_event_stats_hourly; + +RENAME TABLE umami.website_event_stats_hourly_mv TO umami.website_event_stats_hourly_mv_old; +RENAME TABLE umami.website_event_stats_hourly_mv_new TO umami.website_event_stats_hourly_mv; + +-- recreate view +DROP TABLE umami.website_event_stats_hourly_mv; + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + event_type, + timestamp); \ No newline at end of file diff --git a/db/clickhouse/migrations/06_update_subdivision.sql b/db/clickhouse/migrations/06_update_subdivision.sql new file mode 100644 index 0000000..70f4ba4 --- /dev/null +++ b/db/clickhouse/migrations/06_update_subdivision.sql @@ -0,0 +1,122 @@ +-- drop projections +ALTER TABLE umami.website_event DROP PROJECTION website_event_url_path_projection; +ALTER TABLE umami.website_event DROP PROJECTION website_event_referrer_domain_projection; + +--drop view +DROP TABLE umami.website_event_stats_hourly_mv; + +-- rename columns +ALTER TABLE umami.website_event RENAME COLUMN "subdivision1" TO "region"; +ALTER TABLE umami.website_event_stats_hourly RENAME COLUMN "subdivision1" TO "region"; + +-- drop columns +ALTER TABLE umami.website_event DROP COLUMN "subdivision2"; + +-- recreate projections +ALTER TABLE umami.website_event +ADD PROJECTION website_event_url_path_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, url_path, created_at +); + +ALTER TABLE umami.website_event MATERIALIZE PROJECTION website_event_url_path_projection; + +ALTER TABLE umami.website_event +ADD PROJECTION website_event_referrer_domain_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, referrer_domain, created_at +); + +ALTER TABLE umami.website_event MATERIALIZE PROJECTION website_event_referrer_domain_projection; + +-- recreate view +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + event_type, + timestamp); \ No newline at end of file diff --git a/db/clickhouse/migrations/07_add_distinct_id.sql b/db/clickhouse/migrations/07_add_distinct_id.sql new file mode 100644 index 0000000..e235694 --- /dev/null +++ b/db/clickhouse/migrations/07_add_distinct_id.sql @@ -0,0 +1,103 @@ +-- add tag column +ALTER TABLE umami.website_event ADD COLUMN "distinct_id" String AFTER "tag"; +ALTER TABLE umami.website_event_stats_hourly ADD COLUMN "distinct_id" String AFTER "tag"; +ALTER TABLE umami.session_data ADD COLUMN "distinct_id" String AFTER "data_type"; + +-- update materialized view +DROP TABLE umami.website_event_stats_hourly_mv; + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + distinct_id, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + distinct_id, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + event_type, + distinct_id, + timestamp); \ No newline at end of file diff --git a/db/clickhouse/migrations/08_update_hostname_view.sql b/db/clickhouse/migrations/08_update_hostname_view.sql new file mode 100644 index 0000000..061fa62 --- /dev/null +++ b/db/clickhouse/migrations/08_update_hostname_view.sql @@ -0,0 +1,253 @@ +-- create new hourly table +CREATE TABLE umami.website_event_stats_hourly_new +( + website_id UUID, + session_id UUID, + visit_id UUID, + hostname SimpleAggregateFunction(groupArrayArray, Array(String)), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + region LowCardinality(String), + city String, + entry_url AggregateFunction(argMin, String, DateTime('UTC')), + exit_url AggregateFunction(argMax, String, DateTime('UTC')), + url_path SimpleAggregateFunction(groupArrayArray, Array(String)), + url_query SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_source SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_medium SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_campaign SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_content SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_term SimpleAggregateFunction(groupArrayArray, Array(String)), + referrer_domain SimpleAggregateFunction(groupArrayArray, Array(String)), + page_title SimpleAggregateFunction(groupArrayArray, Array(String)), + gclid SimpleAggregateFunction(groupArrayArray, Array(String)), + fbclid SimpleAggregateFunction(groupArrayArray, Array(String)), + msclkid SimpleAggregateFunction(groupArrayArray, Array(String)), + ttclid SimpleAggregateFunction(groupArrayArray, Array(String)), + li_fat_id SimpleAggregateFunction(groupArrayArray, Array(String)), + twclid SimpleAggregateFunction(groupArrayArray, Array(String)), + event_type UInt32, + event_name SimpleAggregateFunction(groupArrayArray, Array(String)), + views SimpleAggregateFunction(sum, UInt64), + min_time SimpleAggregateFunction(min, DateTime('UTC')), + max_time SimpleAggregateFunction(max, DateTime('UTC')), + tag SimpleAggregateFunction(groupArrayArray, Array(String)), + distinct_id String, + created_at Datetime('UTC') +) +ENGINE = AggregatingMergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY ( + website_id, + event_type, + toStartOfHour(created_at), + cityHash64(visit_id), + visit_id + ) + SAMPLE BY cityHash64(visit_id); + +-- create view +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv_new +TO umami.website_event_stats_hourly_new +AS +SELECT + website_id, + session_id, + visit_id, + hostnames as hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + distinct_id, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + arrayFilter(x -> x != '', groupArray(hostname)) hostnames, + browser, + os, + device, + screen, + language, + country, + region, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '' and x != hostname, groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + distinct_id, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + event_type, + distinct_id, + timestamp); + +-- rename tables +RENAME TABLE umami.website_event_stats_hourly TO umami.website_event_stats_hourly_old; +RENAME TABLE umami.website_event_stats_hourly_new TO umami.website_event_stats_hourly; + +-- drop views +DROP TABLE umami.website_event_stats_hourly_mv; +DROP TABLE umami.website_event_stats_hourly_mv_new; + +-- recreate view +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostnames as hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + distinct_id, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + arrayFilter(x -> x != '', groupArray(hostname)) hostnames, + browser, + os, + device, + screen, + language, + country, + region, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '' and x != hostname, groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + distinct_id, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + event_type, + distinct_id, + timestamp); diff --git a/db/clickhouse/schema.sql b/db/clickhouse/schema.sql new file mode 100644 index 0000000..e916032 --- /dev/null +++ b/db/clickhouse/schema.sql @@ -0,0 +1,283 @@ +-- Create Event +CREATE TABLE umami.website_event +( + website_id UUID, + session_id UUID, + visit_id UUID, + event_id UUID, + --sessions + hostname LowCardinality(String), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + region LowCardinality(String), + city String, + --pageviews + url_path String, + url_query String, + utm_source String, + utm_medium String, + utm_campaign String, + utm_content String, + utm_term String, + referrer_path String, + referrer_query String, + referrer_domain String, + page_title String, + --clickIDs + gclid String, + fbclid String, + msclkid String, + ttclid String, + li_fat_id String, + twclid String, + --events + event_type UInt32, + event_name String, + tag String, + distinct_id String, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) +ENGINE = MergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY (toStartOfHour(created_at), website_id, session_id, visit_id, created_at) + PRIMARY KEY (toStartOfHour(created_at), website_id, session_id, visit_id) + SETTINGS index_granularity = 8192; + +CREATE TABLE umami.event_data +( + website_id UUID, + session_id UUID, + event_id UUID, + url_path String, + event_name String, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal(22, 4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) +ENGINE = MergeTree + ORDER BY (website_id, event_id, data_key, created_at) + SETTINGS index_granularity = 8192; + +CREATE TABLE umami.session_data +( + website_id UUID, + session_id UUID, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal(22, 4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + distinct_id String, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) +ENGINE = ReplacingMergeTree + ORDER BY (website_id, session_id, data_key) + SETTINGS index_granularity = 8192; + +-- stats hourly +CREATE TABLE umami.website_event_stats_hourly +( + website_id UUID, + session_id UUID, + visit_id UUID, + hostname SimpleAggregateFunction(groupArrayArray, Array(String)), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + region LowCardinality(String), + city String, + entry_url AggregateFunction(argMin, String, DateTime('UTC')), + exit_url AggregateFunction(argMax, String, DateTime('UTC')), + url_path SimpleAggregateFunction(groupArrayArray, Array(String)), + url_query SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_source SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_medium SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_campaign SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_content SimpleAggregateFunction(groupArrayArray, Array(String)), + utm_term SimpleAggregateFunction(groupArrayArray, Array(String)), + referrer_domain SimpleAggregateFunction(groupArrayArray, Array(String)), + page_title SimpleAggregateFunction(groupArrayArray, Array(String)), + gclid SimpleAggregateFunction(groupArrayArray, Array(String)), + fbclid SimpleAggregateFunction(groupArrayArray, Array(String)), + msclkid SimpleAggregateFunction(groupArrayArray, Array(String)), + ttclid SimpleAggregateFunction(groupArrayArray, Array(String)), + li_fat_id SimpleAggregateFunction(groupArrayArray, Array(String)), + twclid SimpleAggregateFunction(groupArrayArray, Array(String)), + event_type UInt32, + event_name SimpleAggregateFunction(groupArrayArray, Array(String)), + views SimpleAggregateFunction(sum, UInt64), + min_time SimpleAggregateFunction(min, DateTime('UTC')), + max_time SimpleAggregateFunction(max, DateTime('UTC')), + tag SimpleAggregateFunction(groupArrayArray, Array(String)), + distinct_id String, + created_at Datetime('UTC') +) +ENGINE = AggregatingMergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY ( + website_id, + event_type, + toStartOfHour(created_at), + cityHash64(visit_id), + visit_id + ) + SAMPLE BY cityHash64(visit_id); + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostnames as hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + utm_source, + utm_medium, + utm_campaign, + utm_content, + utm_term, + referrer_domain, + page_title, + gclid, + fbclid, + msclkid, + ttclid, + li_fat_id, + twclid, + event_type, + event_name, + views, + min_time, + max_time, + tag, + distinct_id, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + arrayFilter(x -> x != '', groupArray(hostname)) hostnames, + browser, + os, + device, + screen, + language, + country, + region, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(utm_source)) utm_source, + arrayFilter(x -> x != '', groupArray(utm_medium)) utm_medium, + arrayFilter(x -> x != '', groupArray(utm_campaign)) utm_campaign, + arrayFilter(x -> x != '', groupArray(utm_content)) utm_content, + arrayFilter(x -> x != '', groupArray(utm_term)) utm_term, + arrayFilter(x -> x != '' and x != hostname, groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + arrayFilter(x -> x != '', groupArray(gclid)) gclid, + arrayFilter(x -> x != '', groupArray(fbclid)) fbclid, + arrayFilter(x -> x != '', groupArray(msclkid)) msclkid, + arrayFilter(x -> x != '', groupArray(ttclid)) ttclid, + arrayFilter(x -> x != '', groupArray(li_fat_id)) li_fat_id, + arrayFilter(x -> x != '', groupArray(twclid)) twclid, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type != 2) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + distinct_id, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + region, + city, + event_type, + distinct_id, + timestamp); + +-- projections +ALTER TABLE umami.website_event +ADD PROJECTION website_event_url_path_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, url_path, created_at +); + +ALTER TABLE umami.website_event MATERIALIZE PROJECTION website_event_url_path_projection; + +ALTER TABLE umami.website_event +ADD PROJECTION website_event_referrer_domain_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, referrer_domain, created_at +); + +ALTER TABLE umami.website_event MATERIALIZE PROJECTION website_event_referrer_domain_projection; + +-- revenue +CREATE TABLE umami.website_revenue +( + website_id UUID, + session_id UUID, + event_id UUID, + event_name String, + currency String, + revenue DECIMAL(18,4), + created_at DateTime('UTC') +) +ENGINE = MergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY (website_id, session_id, created_at) + SETTINGS index_granularity = 8192; + + +CREATE MATERIALIZED VIEW umami.website_revenue_mv +TO umami.website_revenue +AS +SELECT DISTINCT + ed.website_id, + ed.session_id, + ed.event_id, + ed.event_name, + c.currency, + coalesce(toDecimal64(ed.number_value, 2), toDecimal64(ed.string_value, 2)) revenue, + ed.created_at +FROM umami.event_data ed +JOIN (SELECT event_id, string_value as currency + FROM umami.event_data + WHERE positionCaseInsensitive(data_key, 'currency') > 0) c + ON c.event_id = ed.event_id +WHERE positionCaseInsensitive(data_key, 'revenue') > 0; diff --git a/db/postgresql/data-migrations/convert-utm-clid-columns.sql b/db/postgresql/data-migrations/convert-utm-clid-columns.sql new file mode 100644 index 0000000..fffe1dd --- /dev/null +++ b/db/postgresql/data-migrations/convert-utm-clid-columns.sql @@ -0,0 +1,49 @@ +----------------------------------------------------- +-- PostgreSQL +----------------------------------------------------- +UPDATE "website_event" we +SET fbclid = LEFT(url.fbclid, 255), + gclid = LEFT(url.gclid, 255), + li_fat_id = LEFT(url.li_fat_id, 255), + msclkid = LEFT(url.msclkid, 255), + ttclid = LEFT(url.ttclid, 255), + twclid = LEFT(url.twclid, 255), + utm_campaign = LEFT(url.utm_campaign, 255), + utm_content = LEFT(url.utm_content, 255), + utm_medium = LEFT(url.utm_medium, 255), + utm_source = LEFT(url.utm_source, 255), + utm_term = LEFT(url.utm_term, 255) +FROM (SELECT event_id, website_id, session_id, + (regexp_matches(url_query, '(?:[&?]|^)fbclid=([^&]+)', 'i'))[1] AS fbclid, + (regexp_matches(url_query, '(?:[&?]|^)gclid=([^&]+)', 'i'))[1] AS gclid, + (regexp_matches(url_query, '(?:[&?]|^)li_fat_id=([^&]+)', 'i'))[1] AS li_fat_id, + (regexp_matches(url_query, '(?:[&?]|^)msclkid=([^&]+)', 'i'))[1] AS msclkid, + (regexp_matches(url_query, '(?:[&?]|^)ttclid=([^&]+)', 'i'))[1] AS ttclid, + (regexp_matches(url_query, '(?:[&?]|^)twclid=([^&]+)', 'i'))[1] AS twclid, + (regexp_matches(url_query, '(?:[&?]|^)utm_campaign=([^&]+)', 'i'))[1] AS utm_campaign, + (regexp_matches(url_query, '(?:[&?]|^)utm_content=([^&]+)', 'i'))[1] AS utm_content, + (regexp_matches(url_query, '(?:[&?]|^)utm_medium=([^&]+)', 'i'))[1] AS utm_medium, + (regexp_matches(url_query, '(?:[&?]|^)utm_source=([^&]+)', 'i'))[1] AS utm_source, + (regexp_matches(url_query, '(?:[&?]|^)utm_term=([^&]+)', 'i'))[1] AS utm_term + FROM "website_event" + WHERE url_query IS NOT NULL) url +WHERE we.event_id = url.event_id + and we.session_id = url.session_id + and we.website_id = url.website_id; + +----------------------------------------------------- +-- MySQL +----------------------------------------------------- +UPDATE `website_event` +SET fbclid = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)fbclid=[^&]+'), '=', -1), '&', 1), 255), + gclid = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)gclid=[^&]+'), '=', -1), '&', 1), 255), + li_fat_id = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)li_fat_id=[^&]+'), '=', -1), '&', 1), 255), + msclkid = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)msclkid=[^&]+'), '=', -1), '&', 1), 255), + ttclid = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)ttclid=[^&]+'), '=', -1), '&', 1), 255), + twclid = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)twclid=[^&]+'), '=', -1), '&', 1), 255), + utm_campaign = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)utm_campaign=[^&]+'), '=', -1), '&', 1), 255), + utm_content = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)utm_content=[^&]+'), '=', -1), '&', 1), 255), + utm_medium = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)utm_medium=[^&]+'), '=', -1), '&', 1), 255), + utm_source = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)utm_source=[^&]+'), '=', -1), '&', 1), 255), + utm_term = LEFT(SUBSTRING_INDEX(SUBSTRING_INDEX(REGEXP_SUBSTR(url_query, '(?:[&?]|^)utm_term=[^&]+'), '=', -1), '&', 1), 255) +WHERE url_query IS NOT NULL; diff --git a/db/postgresql/data-migrations/populate-revenue-table.sql b/db/postgresql/data-migrations/populate-revenue-table.sql new file mode 100644 index 0000000..9df7518 --- /dev/null +++ b/db/postgresql/data-migrations/populate-revenue-table.sql @@ -0,0 +1,41 @@ +----------------------------------------------------- +-- PostgreSQL +----------------------------------------------------- +INSERT INTO "revenue" +SELECT gen_random_uuid() revenue_id, + ed.website_id, + we.session_id, + we.event_id, + we.event_name, + currency.string_value currency, + coalesce(ed.number_value, cast(ed.string_value as numeric(19,4))) revenue, + ed.created_at +FROM event_data ed +JOIN website_event we +ON we.event_id = ed.website_event_id +JOIN (SELECT website_event_id, string_value + FROM event_data + WHERE data_key ilike '%currency%') currency +ON currency.website_event_id = ed.website_event_id +WHERE ed.data_key ilike '%revenue%'; + +----------------------------------------------------- +-- MySQL +----------------------------------------------------- +INSERT INTO `revenue` +SELECT UUID() revenue_id, + ed.website_id, + we.session_id, + we.event_id, + we.event_name, + currency.string_value currency, + coalesce(ed.number_value, cast(ed.string_value as decimal(19,4))) revenue, + ed.created_at +FROM event_data ed +JOIN website_event we +ON we.event_id = ed.website_event_id +JOIN (SELECT website_event_id, string_value + FROM event_data + WHERE data_key like '%currency%') currency +ON currency.website_event_id = ed.website_event_id +WHERE ed.data_key like '%revenue%'; \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..348c294 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,35 @@ +--- +services: + umami: + image: ghcr.io/umami-software/umami:latest + ports: + - "3000:3000" + environment: + DATABASE_URL: postgresql://umami:umami@db:5432/umami + APP_SECRET: replace-me-with-a-random-string + depends_on: + db: + condition: service_healthy + init: true + restart: always + healthcheck: + test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"] + interval: 5s + timeout: 5s + retries: 5 + db: + image: postgres:15-alpine + environment: + POSTGRES_DB: umami + POSTGRES_USER: umami + POSTGRES_PASSWORD: umami + volumes: + - umami-db-data:/var/lib/postgresql/data + restart: always + healthcheck: + test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] + interval: 5s + timeout: 5s + retries: 5 +volumes: + umami-db-data: diff --git a/docker/middleware.ts b/docker/middleware.ts new file mode 100644 index 0000000..4b189df --- /dev/null +++ b/docker/middleware.ts @@ -0,0 +1,78 @@ +import { type NextRequest, NextResponse } from 'next/server'; + +export const config = { + matcher: '/:path*', +}; + +const TRACKER_PATH = '/script.js'; +const COLLECT_PATH = '/api/send'; +const LOGIN_PATH = '/login'; + +const apiHeaders = { + 'Access-Control-Allow-Origin': '*', + 'Access-Control-Allow-Headers': '*', + 'Access-Control-Allow-Methods': 'GET, DELETE, POST, PUT', + 'Access-Control-Max-Age': process.env.CORS_MAX_AGE || '86400', + 'Cache-Control': 'no-cache', +}; + +const trackerHeaders = { + 'Access-Control-Allow-Origin': '*', + 'Cache-Control': 'public, max-age=86400, must-revalidate', +}; + +function customCollectEndpoint(request: NextRequest) { + const collectEndpoint = process.env.COLLECT_API_ENDPOINT; + + if (collectEndpoint) { + const url = request.nextUrl.clone(); + + if (url.pathname.endsWith(collectEndpoint)) { + url.pathname = COLLECT_PATH; + return NextResponse.rewrite(url, { headers: apiHeaders }); + } + } +} + +function customScriptName(request: NextRequest) { + const scriptName = process.env.TRACKER_SCRIPT_NAME; + + if (scriptName) { + const url = request.nextUrl.clone(); + const names = scriptName.split(',').map(name => name.trim().replace(/^\/+/, '')); + + if (names.find(name => url.pathname.endsWith(name))) { + url.pathname = TRACKER_PATH; + return NextResponse.rewrite(url, { headers: trackerHeaders }); + } + } +} + +function customScriptUrl(request: NextRequest) { + const scriptUrl = process.env.TRACKER_SCRIPT_URL; + + if (scriptUrl && request.nextUrl.pathname.endsWith(TRACKER_PATH)) { + return NextResponse.rewrite(scriptUrl, { headers: trackerHeaders }); + } +} + +function disableLogin(request: NextRequest) { + const loginDisabled = process.env.DISABLE_LOGIN; + + if (loginDisabled && request.nextUrl.pathname.endsWith(LOGIN_PATH)) { + return new NextResponse('Access denied', { status: 403 }); + } +} + +export default function middleware(req: NextRequest) { + const fns = [customCollectEndpoint, customScriptName, customScriptUrl, disableLogin]; + + for (const fn of fns) { + const res = fn(req); + if (res) { + return res; + } + } + + return NextResponse.next(); +} diff --git a/jest.config.ts b/jest.config.ts new file mode 100644 index 0000000..d06ac09 --- /dev/null +++ b/jest.config.ts @@ -0,0 +1,10 @@ +export default { + roots: ['./src'], + testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'], + transform: { + '^.+\\.(ts|tsx)$': 'ts-jest', + }, + moduleNameMapper: { + '^@/(.*)$': '/src/$1', + }, +}; diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..c2beb95 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,5 @@ +[functions] +included_files = ["node_modules/.geo/**"] + +[[plugins]] +package = "@netlify/plugin-nextjs" diff --git a/next-env.d.ts b/next-env.d.ts new file mode 100644 index 0000000..830fb59 --- /dev/null +++ b/next-env.d.ts @@ -0,0 +1,6 @@ +/// +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..99dcca0 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,202 @@ +import 'dotenv/config'; +import pkg from './package.json' with { type: 'json' }; + +const TRACKER_SCRIPT = '/script.js'; + +const basePath = process.env.BASE_PATH || ''; +const cloudMode = process.env.CLOUD_MODE || ''; +const cloudUrl = process.env.CLOUD_URL || ''; +const collectApiEndpoint = process.env.COLLECT_API_ENDPOINT || ''; +const corsMaxAge = process.env.CORS_MAX_AGE || ''; +const defaultLocale = process.env.DEFAULT_LOCALE || ''; +const forceSSL = process.env.FORCE_SSL || ''; +const frameAncestors = process.env.ALLOWED_FRAME_URLS || ''; +const trackerScriptName = process.env.TRACKER_SCRIPT_NAME || ''; +const trackerScriptURL = process.env.TRACKER_SCRIPT_URL || ''; + +const contentSecurityPolicy = ` + default-src 'self'; + img-src 'self' https: data:; + script-src 'self' 'unsafe-eval' 'unsafe-inline'; + style-src 'self' 'unsafe-inline'; + connect-src 'self' https:; + frame-ancestors 'self' ${frameAncestors}; +`; + +const defaultHeaders = [ + { + key: 'X-DNS-Prefetch-Control', + value: 'on', + }, + { + key: 'Content-Security-Policy', + value: contentSecurityPolicy.replace(/\s{2,}/g, ' ').trim(), + }, +]; + +if (forceSSL) { + defaultHeaders.push({ + key: 'Strict-Transport-Security', + value: 'max-age=63072000; includeSubDomains; preload', + }); +} + +const trackerHeaders = [ + { + key: 'Access-Control-Allow-Origin', + value: '*', + }, + { + key: 'Cache-Control', + value: 'public, max-age=86400, must-revalidate', + }, +]; + +const apiHeaders = [ + { + key: 'Access-Control-Allow-Origin', + value: '*', + }, + { + key: 'Access-Control-Allow-Headers', + value: '*', + }, + { + key: 'Access-Control-Allow-Methods', + value: 'GET, DELETE, POST, PUT', + }, + { + key: 'Access-Control-Max-Age', + value: corsMaxAge || '86400', + }, + { + key: 'Cache-Control', + value: 'no-cache', + }, +]; + +const headers = [ + { + source: '/api/:path*', + headers: apiHeaders, + }, + { + source: '/:path*', + headers: defaultHeaders, + }, + { + source: TRACKER_SCRIPT, + headers: trackerHeaders, + }, +]; + +const rewrites = []; + +if (trackerScriptURL) { + rewrites.push({ + source: TRACKER_SCRIPT, + destination: trackerScriptURL, + }); +} + +if (collectApiEndpoint) { + headers.push({ + source: collectApiEndpoint, + headers: apiHeaders, + }); + + rewrites.push({ + source: collectApiEndpoint, + destination: '/api/send', + }); +} + +const redirects = [ + { + source: '/settings', + destination: '/settings/preferences', + permanent: false, + }, + { + source: '/teams/:id', + destination: '/teams/:id/websites', + permanent: false, + }, + { + source: '/teams/:id/settings', + destination: '/teams/:id/settings/preferences', + permanent: false, + }, + { + source: '/admin', + destination: '/admin/users', + permanent: false, + }, +]; + +// Adding rewrites + headers for all alternative tracker script names. +if (trackerScriptName) { + const names = trackerScriptName?.split(',').map(name => name.trim()); + + if (names) { + names.forEach(name => { + const normalizedSource = `/${name.replace(/^\/+/, '')}`; + + rewrites.push({ + source: normalizedSource, + destination: TRACKER_SCRIPT, + }); + + headers.push({ + source: normalizedSource, + headers: trackerHeaders, + }); + }); + } +} + +if (cloudMode) { + rewrites.push({ + source: '/script.js', + destination: 'https://cloud.umami.is/script.js', + }); +} + +/** @type {import('next').NextConfig} */ +export default { + reactStrictMode: false, + env: { + basePath, + cloudMode, + cloudUrl, + currentVersion: pkg.version, + defaultLocale, + }, + basePath, + output: 'standalone', + eslint: { + ignoreDuringBuilds: true, + }, + typescript: { + ignoreBuildErrors: true, + }, + async headers() { + return headers; + }, + async rewrites() { + return [ + ...rewrites, + { + source: '/telemetry.js', + destination: '/api/scripts/telemetry', + }, + { + source: '/teams/:teamId/:path*', + destination: '/:path*', + }, + ]; + }, + async redirects() { + return [...redirects]; + }, +}; diff --git a/package.components.json b/package.components.json new file mode 100644 index 0000000..ab3454c --- /dev/null +++ b/package.components.json @@ -0,0 +1,10 @@ +{ + "name": "@umami/components", + "version": "0.130.0", + "description": "Umami React components.", + "author": "Mike Cao ", + "license": "MIT", + "type": "module", + "main": "./index.js", + "types": "./index.d.ts" +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..76b1e1f --- /dev/null +++ b/package.json @@ -0,0 +1,174 @@ +{ + "name": "umami", + "version": "3.0.3", + "description": "A modern, privacy-focused alternative to Google Analytics.", + "author": "Umami Software, Inc. ", + "license": "MIT", + "homepage": "https://umami.is", + "repository": { + "type": "git", + "url": "https://github.com/umami-software/umami.git" + }, + "type": "module", + "scripts": { + "dev": "next dev -p 3001 --turbo", + "build": "npm-run-all check-env build-db check-db build-tracker build-geo build-app", + "start": "next start", + "build-docker": "npm-run-all build-db build-tracker build-geo build-app", + "start-docker": "npm-run-all check-db update-tracker start-server", + "start-env": "node scripts/start-env.js", + "start-server": "node server.js", + "build-app": "next build --turbo", + "build-icons": "svgr ./src/assets --out-dir src/components/svg --typescript", + "build-components": "tsup", + "build-tracker": "rollup -c rollup.tracker.config.js", + "build-prisma-client": "node scripts/build-prisma-client.js", + "build-lang": "npm-run-all format-lang compile-lang download-country-names download-language-names clean-lang", + "build-geo": "node scripts/build-geo.js", + "build-db": "npm-run-all build-db-client build-prisma-client", + "build-db-schema": "prisma db pull", + "build-db-client": "prisma generate", + "update-tracker": "node scripts/update-tracker.js", + "update-db": "prisma migrate deploy", + "check-db": "node scripts/check-db.js", + "check-env": "node scripts/check-env.js", + "copy-db-files": "node scripts/copy-db-files.js", + "extract-messages": "formatjs extract \"src/components/messages.ts\" --out-file build/extracted-messages.json", + "merge-messages": "node scripts/merge-messages.js", + "generate-lang": "npm-run-all extract-messages merge-messages", + "format-lang": "node scripts/format-lang.js", + "compile-lang": "formatjs compile-folder --ast build/messages public/intl/messages", + "clean-lang": "prettier --write ./public/intl/**/*.json", + "download-country-names": "node scripts/download-country-names.js", + "download-language-names": "node scripts/download-language-names.js", + "change-password": "node scripts/change-password.js", + "prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){process.exit(1)} \" || husky install", + "postbuild": "node scripts/postbuild.js", + "test": "jest", + "cypress-open": "cypress open cypress run", + "cypress-run": "cypress run cypress run", + "seed-data": "tsx scripts/seed-data.ts", + "lint": "biome lint .", + "format": "biome format --write .", + "check": "biome check --write" + }, + "lint-staged": { + "**/*.{js,jsx,ts,tsx,json,css}": [ + "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true" + ] + }, + "cacheDirectories": [ + ".next/cache" + ], + "dependencies": { + "@clickhouse/client": "^1.12.0", + "@date-fns/utc": "^1.2.0", + "@dicebear/collection": "^9.2.3", + "@dicebear/core": "^9.2.3", + "@fontsource/inter": "^5.2.8", + "@hello-pangea/dnd": "^17.0.0", + "@prisma/adapter-pg": "^6.18.0", + "@prisma/client": "^6.18.0", + "@prisma/extension-read-replicas": "^0.4.1", + "@react-spring/web": "^10.0.3", + "@svgr/cli": "^8.1.0", + "@tanstack/react-query": "^5.90.11", + "@umami/react-zen": "^0.211.0", + "@umami/redis-client": "^0.29.0", + "bcryptjs": "^3.0.2", + "chalk": "^5.6.2", + "chart.js": "^4.5.1", + "chartjs-adapter-date-fns": "^3.0.0", + "classnames": "^2.3.1", + "colord": "^2.9.2", + "cors": "^2.8.5", + "cross-spawn": "^7.0.3", + "date-fns": "^2.23.0", + "date-fns-tz": "^1.1.4", + "debug": "^4.4.3", + "del": "^6.0.0", + "detect-browser": "^5.2.0", + "dotenv": "^17.2.3", + "esbuild": "^0.25.11", + "fs-extra": "^11.3.2", + "immer": "^10.2.0", + "ipaddr.js": "^2.3.0", + "is-ci": "^3.0.1", + "is-docker": "^3.0.0", + "is-localhost-ip": "^2.0.0", + "isbot": "^5.1.31", + "jsonwebtoken": "^9.0.2", + "jszip": "^3.10.1", + "kafkajs": "^2.1.0", + "lucide-react": "^0.543.0", + "maxmind": "^5.0.0", + "next": "^15.5.9", + "node-fetch": "^3.2.8", + "npm-run-all": "^4.1.5", + "papaparse": "^5.5.3", + "pg": "^8.16.3", + "prisma": "^6.18.0", + "pure-rand": "^7.0.1", + "react": "^19.2.3", + "react-dom": "^19.2.3", + "react-error-boundary": "^4.0.4", + "react-intl": "^7.1.14", + "react-simple-maps": "^2.3.0", + "react-use-measure": "^2.0.4", + "react-window": "^1.8.6", + "request-ip": "^3.3.0", + "semver": "^7.7.3", + "serialize-error": "^12.0.0", + "thenby": "^1.3.4", + "ua-parser-js": "^2.0.6", + "uuid": "^11.1.0", + "zod": "^4.1.13", + "zustand": "^5.0.9" + }, + "devDependencies": { + "@biomejs/biome": "^2.3.8", + "@formatjs/cli": "^4.2.29", + "@netlify/plugin-nextjs": "^5.15.1", + "@rollup/plugin-alias": "^5.0.0", + "@rollup/plugin-commonjs": "^25.0.4", + "@rollup/plugin-json": "^6.0.0", + "@rollup/plugin-node-resolve": "^15.2.0", + "@rollup/plugin-replace": "^5.0.2", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-typescript": "^12.3.0", + "@types/jest": "^30.0.0", + "@types/node": "^24.9.2", + "@types/react": "^19.2.7", + "@types/react-dom": "^19.2.2", + "@types/react-window": "^1.8.8", + "babel-plugin-react-compiler": "19.1.0-rc.2", + "cross-env": "^10.1.0", + "cypress": "^13.6.6", + "extract-react-intl-messages": "^4.1.1", + "husky": "^9.1.7", + "jest": "^29.7.0", + "lint-staged": "^16.2.6", + "postcss": "^8.5.6", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-import": "^15.1.0", + "postcss-preset-env": "7.8.3", + "prompts": "2.4.2", + "rollup": "^4.52.5", + "rollup-plugin-copy": "^3.4.0", + "rollup-plugin-delete": "^3.0.1", + "rollup-plugin-dts": "^6.3.0", + "rollup-plugin-node-externals": "^8.1.1", + "rollup-plugin-peer-deps-external": "^2.2.4", + "rollup-plugin-postcss": "^4.0.2", + "stylelint": "^15.10.1", + "stylelint-config-css-modules": "^4.5.1", + "stylelint-config-prettier": "^9.0.3", + "stylelint-config-recommended": "^14.0.0", + "tar": "^6.1.2", + "ts-jest": "^29.4.6", + "ts-node": "^10.9.1", + "tsup": "^8.5.0", + "tsx": "^4.19.0", + "typescript": "^5.9.3" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..3f2b1ce --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,15100 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@clickhouse/client': + specifier: ^1.12.0 + version: 1.14.0 + '@date-fns/utc': + specifier: ^1.2.0 + version: 1.2.0 + '@dicebear/collection': + specifier: ^9.2.3 + version: 9.2.4(@dicebear/core@9.2.4) + '@dicebear/core': + specifier: ^9.2.3 + version: 9.2.4 + '@fontsource/inter': + specifier: ^5.2.8 + version: 5.2.8 + '@hello-pangea/dnd': + specifier: ^17.0.0 + version: 17.0.0(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@prisma/adapter-pg': + specifier: ^6.18.0 + version: 6.19.0 + '@prisma/client': + specifier: ^6.18.0 + version: 6.19.0(prisma@6.19.0(typescript@5.9.3))(typescript@5.9.3) + '@prisma/extension-read-replicas': + specifier: ^0.4.1 + version: 0.4.1(@prisma/client@6.19.0(prisma@6.19.0(typescript@5.9.3))(typescript@5.9.3)) + '@react-spring/web': + specifier: ^10.0.3 + version: 10.0.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@svgr/cli': + specifier: ^8.1.0 + version: 8.1.0(typescript@5.9.3) + '@tanstack/react-query': + specifier: ^5.90.11 + version: 5.90.11(react@19.2.3) + '@umami/react-zen': + specifier: ^0.211.0 + version: 0.211.0(@babel/core@7.28.3)(@types/react@19.2.7)(babel-plugin-react-compiler@19.1.0-rc.2)(immer@10.2.0)(use-sync-external-store@1.6.0(react@19.2.3)) + '@umami/redis-client': + specifier: ^0.29.0 + version: 0.29.0 + bcryptjs: + specifier: ^3.0.2 + version: 3.0.3 + chalk: + specifier: ^5.6.2 + version: 5.6.2 + chart.js: + specifier: ^4.5.1 + version: 4.5.1 + chartjs-adapter-date-fns: + specifier: ^3.0.0 + version: 3.0.0(chart.js@4.5.1)(date-fns@2.30.0) + classnames: + specifier: ^2.3.1 + version: 2.5.1 + colord: + specifier: ^2.9.2 + version: 2.9.3 + cors: + specifier: ^2.8.5 + version: 2.8.5 + cross-spawn: + specifier: ^7.0.3 + version: 7.0.6 + date-fns: + specifier: ^2.23.0 + version: 2.30.0 + date-fns-tz: + specifier: ^1.1.4 + version: 1.3.8(date-fns@2.30.0) + debug: + specifier: ^4.4.3 + version: 4.4.3(supports-color@8.1.1) + del: + specifier: ^6.0.0 + version: 6.1.1 + detect-browser: + specifier: ^5.2.0 + version: 5.3.0 + dotenv: + specifier: ^17.2.3 + version: 17.2.3 + esbuild: + specifier: ^0.25.11 + version: 0.25.12 + fs-extra: + specifier: ^11.3.2 + version: 11.3.2 + immer: + specifier: ^10.2.0 + version: 10.2.0 + ipaddr.js: + specifier: ^2.3.0 + version: 2.3.0 + is-ci: + specifier: ^3.0.1 + version: 3.0.1 + is-docker: + specifier: ^3.0.0 + version: 3.0.0 + is-localhost-ip: + specifier: ^2.0.0 + version: 2.0.0 + isbot: + specifier: ^5.1.31 + version: 5.1.32 + jsonwebtoken: + specifier: ^9.0.2 + version: 9.0.2 + jszip: + specifier: ^3.10.1 + version: 3.10.1 + kafkajs: + specifier: ^2.1.0 + version: 2.2.4 + lucide-react: + specifier: ^0.543.0 + version: 0.543.0(react@19.2.3) + maxmind: + specifier: ^5.0.0 + version: 5.0.1 + next: + specifier: ^15.5.9 + version: 15.5.9(@babel/core@7.28.3)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + node-fetch: + specifier: ^3.2.8 + version: 3.3.2 + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + papaparse: + specifier: ^5.5.3 + version: 5.5.3 + pg: + specifier: ^8.16.3 + version: 8.16.3 + prisma: + specifier: ^6.18.0 + version: 6.19.0(typescript@5.9.3) + pure-rand: + specifier: ^7.0.1 + version: 7.0.1 + react: + specifier: ^19.2.3 + version: 19.2.3 + react-dom: + specifier: ^19.2.3 + version: 19.2.3(react@19.2.3) + react-error-boundary: + specifier: ^4.0.4 + version: 4.1.2(react@19.2.3) + react-intl: + specifier: ^7.1.14 + version: 7.1.14(react@19.2.3)(typescript@5.9.3) + react-simple-maps: + specifier: ^2.3.0 + version: 2.3.0(prop-types@15.8.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + react-use-measure: + specifier: ^2.0.4 + version: 2.1.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + react-window: + specifier: ^1.8.6 + version: 1.8.11(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + request-ip: + specifier: ^3.3.0 + version: 3.3.0 + semver: + specifier: ^7.7.3 + version: 7.7.3 + serialize-error: + specifier: ^12.0.0 + version: 12.0.0 + thenby: + specifier: ^1.3.4 + version: 1.3.4 + ua-parser-js: + specifier: ^2.0.6 + version: 2.0.6 + uuid: + specifier: ^11.1.0 + version: 11.1.0 + zod: + specifier: ^4.1.13 + version: 4.1.13 + zustand: + specifier: ^5.0.9 + version: 5.0.9(@types/react@19.2.7)(immer@10.2.0)(react@19.2.3)(use-sync-external-store@1.6.0(react@19.2.3)) + devDependencies: + '@biomejs/biome': + specifier: ^2.3.8 + version: 2.3.8 + '@formatjs/cli': + specifier: ^4.2.29 + version: 4.8.4(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)) + '@netlify/plugin-nextjs': + specifier: ^5.15.1 + version: 5.15.1 + '@rollup/plugin-alias': + specifier: ^5.0.0 + version: 5.1.1(rollup@4.53.3) + '@rollup/plugin-commonjs': + specifier: ^25.0.4 + version: 25.0.8(rollup@4.53.3) + '@rollup/plugin-json': + specifier: ^6.0.0 + version: 6.1.0(rollup@4.53.3) + '@rollup/plugin-node-resolve': + specifier: ^15.2.0 + version: 15.3.1(rollup@4.53.3) + '@rollup/plugin-replace': + specifier: ^5.0.2 + version: 5.0.7(rollup@4.53.3) + '@rollup/plugin-terser': + specifier: ^0.4.4 + version: 0.4.4(rollup@4.53.3) + '@rollup/plugin-typescript': + specifier: ^12.3.0 + version: 12.3.0(rollup@4.53.3)(tslib@2.8.1)(typescript@5.9.3) + '@types/jest': + specifier: ^30.0.0 + version: 30.0.0 + '@types/node': + specifier: ^24.9.2 + version: 24.10.1 + '@types/react': + specifier: ^19.2.7 + version: 19.2.7 + '@types/react-dom': + specifier: ^19.2.2 + version: 19.2.3(@types/react@19.2.7) + '@types/react-window': + specifier: ^1.8.8 + version: 1.8.8 + babel-plugin-react-compiler: + specifier: 19.1.0-rc.2 + version: 19.1.0-rc.2 + cross-env: + specifier: ^10.1.0 + version: 10.1.0 + cypress: + specifier: ^13.6.6 + version: 13.17.0 + extract-react-intl-messages: + specifier: ^4.1.1 + version: 4.1.1(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)) + husky: + specifier: ^9.1.7 + version: 9.1.7 + jest: + specifier: ^29.7.0 + version: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + lint-staged: + specifier: ^16.2.6 + version: 16.2.7 + postcss: + specifier: ^8.5.6 + version: 8.5.6 + postcss-flexbugs-fixes: + specifier: ^5.0.2 + version: 5.0.2(postcss@8.5.6) + postcss-import: + specifier: ^15.1.0 + version: 15.1.0(postcss@8.5.6) + postcss-preset-env: + specifier: 7.8.3 + version: 7.8.3(postcss@8.5.6) + prompts: + specifier: 2.4.2 + version: 2.4.2 + rollup: + specifier: ^4.52.5 + version: 4.53.3 + rollup-plugin-copy: + specifier: ^3.4.0 + version: 3.5.0 + rollup-plugin-delete: + specifier: ^3.0.1 + version: 3.0.1(rollup@4.53.3) + rollup-plugin-dts: + specifier: ^6.3.0 + version: 6.3.0(rollup@4.53.3)(typescript@5.9.3) + rollup-plugin-node-externals: + specifier: ^8.1.1 + version: 8.1.2(rollup@4.53.3) + rollup-plugin-peer-deps-external: + specifier: ^2.2.4 + version: 2.2.4(rollup@4.53.3) + rollup-plugin-postcss: + specifier: ^4.0.2 + version: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + stylelint: + specifier: ^15.10.1 + version: 15.11.0(typescript@5.9.3) + stylelint-config-css-modules: + specifier: ^4.5.1 + version: 4.5.1(stylelint@15.11.0(typescript@5.9.3)) + stylelint-config-prettier: + specifier: ^9.0.3 + version: 9.0.5(stylelint@15.11.0(typescript@5.9.3)) + stylelint-config-recommended: + specifier: ^14.0.0 + version: 14.0.1(stylelint@15.11.0(typescript@5.9.3)) + tar: + specifier: ^6.1.2 + version: 6.2.1 + ts-jest: + specifier: ^29.4.6 + version: 29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3) + ts-node: + specifier: ^10.9.1 + version: 10.9.2(@types/node@24.10.1)(typescript@5.9.3) + tsup: + specifier: ^8.5.0 + version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1) + tsx: + specifier: ^4.19.0 + version: 4.21.0 + typescript: + specifier: ^5.9.3 + version: 5.9.3 + +packages: + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.0': + resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.3': + resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.3': + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.3': + resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.3': + resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime@7.28.3': + resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.3': + resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.2': + resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + engines: {node: '>=6.9.0'} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@biomejs/biome@2.3.8': + resolution: {integrity: sha512-Qjsgoe6FEBxWAUzwFGFrB+1+M8y/y5kwmg5CHac+GSVOdmOIqsAiXM5QMVGZJ1eCUCLlPZtq4aFAQ0eawEUuUA==} + engines: {node: '>=14.21.3'} + hasBin: true + + '@biomejs/cli-darwin-arm64@2.3.8': + resolution: {integrity: sha512-HM4Zg9CGQ3txTPflxD19n8MFPrmUAjaC7PQdLkugeeC0cQ+PiVrd7i09gaBS/11QKsTDBJhVg85CEIK9f50Qww==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [darwin] + + '@biomejs/cli-darwin-x64@2.3.8': + resolution: {integrity: sha512-lUDQ03D7y/qEao7RgdjWVGCu+BLYadhKTm40HkpJIi6kn8LSv5PAwRlew/DmwP4YZ9ke9XXoTIQDO1vAnbRZlA==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [darwin] + + '@biomejs/cli-linux-arm64-musl@2.3.8': + resolution: {integrity: sha512-PShR4mM0sjksUMyxbyPNMxoKFPVF48fU8Qe8Sfx6w6F42verbwRLbz+QiKNiDPRJwUoMG1nPM50OBL3aOnTevA==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [linux] + + '@biomejs/cli-linux-arm64@2.3.8': + resolution: {integrity: sha512-Uo1OJnIkJgSgF+USx970fsM/drtPcQ39I+JO+Fjsaa9ZdCN1oysQmy6oAGbyESlouz+rzEckLTF6DS7cWse95g==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [linux] + + '@biomejs/cli-linux-x64-musl@2.3.8': + resolution: {integrity: sha512-YGLkqU91r1276uwSjiUD/xaVikdxgV1QpsicT0bIA1TaieM6E5ibMZeSyjQ/izBn4tKQthUSsVZacmoJfa3pDA==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [linux] + + '@biomejs/cli-linux-x64@2.3.8': + resolution: {integrity: sha512-QDPMD5bQz6qOVb3kiBui0zKZXASLo0NIQ9JVJio5RveBEFgDgsvJFUvZIbMbUZT3T00M/1wdzwWXk4GIh0KaAw==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [linux] + + '@biomejs/cli-win32-arm64@2.3.8': + resolution: {integrity: sha512-H4IoCHvL1fXKDrTALeTKMiE7GGWFAraDwBYFquE/L/5r1927Te0mYIGseXi4F+lrrwhSWbSGt5qPFswNoBaCxg==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [win32] + + '@biomejs/cli-win32-x64@2.3.8': + resolution: {integrity: sha512-RguzimPoZWtBapfKhKjcWXBVI91tiSprqdBYu7tWhgN8pKRZhw24rFeNZTNf6UiBfjCYCi9eFQs/JzJZIhuK4w==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [win32] + + '@clickhouse/client-common@1.14.0': + resolution: {integrity: sha512-CyUcv2iCkZ1A++vmOSufYRpHR3aAWVfbrWed7ATzf0yyx/BW/2SEqlL07vBpSRa3BIkQe/DSOHVv8JkWZpUOwQ==} + + '@clickhouse/client@1.14.0': + resolution: {integrity: sha512-co2spjR7wZoZ3Ck0H/jv76bpiuO3oJHtOmq9/gxFiod2DcT9NFg01u/hXcG8MJFnEJuMB6e3vGqS6IOnLwHqRw==} + engines: {node: '>=16'} + + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@csstools/css-parser-algorithms@2.7.1': + resolution: {integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-tokenizer': ^2.4.1 + + '@csstools/css-tokenizer@2.4.1': + resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==} + engines: {node: ^14 || ^16 || >=18} + + '@csstools/media-query-list-parser@2.1.13': + resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-parser-algorithms': ^2.7.1 + '@csstools/css-tokenizer': ^2.4.1 + + '@csstools/postcss-cascade-layers@1.1.1': + resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-color-function@1.1.1': + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-font-format-keywords@1.0.1': + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-hwb-function@1.0.2': + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-ic-unit@1.0.1': + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-is-pseudo-class@2.0.7': + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-nested-calc@1.0.0': + resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-normalize-display-values@1.0.1': + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-oklab-function@1.1.1': + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-progressive-custom-properties@1.3.0': + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + + '@csstools/postcss-stepped-value-functions@1.0.1': + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-text-decoration-shorthand@1.0.0': + resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-trigonometric-functions@1.0.2': + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/postcss-unset-value@1.0.2': + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + '@csstools/selector-specificity@2.2.0': + resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss-selector-parser: ^6.0.10 + + '@csstools/selector-specificity@3.1.1': + resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss-selector-parser: ^6.0.13 + + '@cypress/request@3.0.9': + resolution: {integrity: sha512-I3l7FdGRXluAS44/0NguwWlO83J18p0vlr2FYHrJkWdNYhgVoiYo61IXPqaOsL+vNxU1ZqMACzItGK3/KKDsdw==} + engines: {node: '>= 6'} + + '@cypress/xvfb@1.2.4': + resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + + '@date-fns/utc@1.2.0': + resolution: {integrity: sha512-YLq+crMPJiBmIdkRmv9nZuZy1mVtMlDcUKlg4mvI0UsC/dZeIaGoGB5p/C4FrpeOhZ7zBTK03T58S0DFkRNMnw==} + + '@dicebear/adventurer-neutral@9.2.4': + resolution: {integrity: sha512-I9IrB4ZYbUHSOUpWoUbfX3vG8FrjcW8htoQ4bEOR7TYOKKE11Mo1nrGMuHZ7GPfwN0CQeK1YVJhWqLTmtYn7Pg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/adventurer@9.2.4': + resolution: {integrity: sha512-Xvboay3VH1qe7lH17T+bA3qPawf5EjccssDiyhCX/VT0P21c65JyjTIUJV36Nsv08HKeyDscyP0kgt9nPTRKvA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/avataaars-neutral@9.2.4': + resolution: {integrity: sha512-HtBvA7elRv50QTOOsBdtYB1GVimCpGEDlDgWsu1snL5Z3d1+3dIESoXQd3mXVvKTVT8Z9ciA4TEaF09WfxDjAA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/avataaars@9.2.4': + resolution: {integrity: sha512-QKNBtA/1QGEzR+JjS4XQyrFHYGbzdOp0oa6gjhGhUDrMegDFS8uyjdRfDQsFTebVkyLWjgBQKZEiDqKqHptB6A==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/big-ears-neutral@9.2.4': + resolution: {integrity: sha512-pPjYu80zMFl43A9sa5+tAKPkhp4n9nd7eN878IOrA1HAowh/XePh5JN8PTkNFS9eM+rnN9m8WX08XYFe30kLYw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/big-ears@9.2.4': + resolution: {integrity: sha512-U33tbh7Io6wG6ViUMN5fkWPER7hPKMaPPaYgafaYQlCT4E7QPKF2u8X1XGag3jCKm0uf4SLXfuZ8v+YONcHmNQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/big-smile@9.2.4': + resolution: {integrity: sha512-zeEfXOOXy7j9tfkPLzfQdLBPyQsctBetTdEfKRArc1k3RUliNPxfJG9j88+cXQC6GXrVW2pcT2X50NSPtugCFQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/bottts-neutral@9.2.4': + resolution: {integrity: sha512-eMVdofdD/udHsKIaeWEXShDRtiwk7vp4FjY7l0f79vIzfhkIsXKEhPcnvHKOl/yoArlDVS3Uhgjj0crWTO9RJA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/bottts@9.2.4': + resolution: {integrity: sha512-4CTqrnVg+NQm6lZ4UuCJish8gGWe8EqSJrzvHQRO5TEyAKjYxbTdVqejpkycG1xkawha4FfxsYgtlSx7UwoVMw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/collection@9.2.4': + resolution: {integrity: sha512-I1wCUp0yu5qSIeMQHmDYXQIXKkKjcja/SYBxppPkYFXpR2alxb0k9/swFDdMbkY6a1c9AT1kI1y+Pg6ywQ2rTA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/core@9.2.4': + resolution: {integrity: sha512-hz6zArEcUwkZzGOSJkWICrvqnEZY7BKeiq9rqKzVJIc1tRVv0MkR0FGvIxSvXiK9TTIgKwu656xCWAGAl6oh+w==} + engines: {node: '>=18.0.0'} + + '@dicebear/croodles-neutral@9.2.4': + resolution: {integrity: sha512-8vAS9lIEKffSUVx256GSRAlisB8oMX38UcPWw72venO/nitLVsyZ6hZ3V7eBdII0Onrjqw1RDndslQODbVcpTw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/croodles@9.2.4': + resolution: {integrity: sha512-CqT0NgVfm+5kd+VnjGY4WECNFeOrj5p7GCPTSEA7tCuN72dMQOX47P9KioD3wbExXYrIlJgOcxNrQeb/FMGc3A==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/dylan@9.2.4': + resolution: {integrity: sha512-tiih1358djAq0jDDzmW3N3S4C3ynC2yn4hhlTAq/MaUAQtAi47QxdHdFGdxH0HBMZKqA4ThLdVk3yVgN4xsukg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/fun-emoji@9.2.4': + resolution: {integrity: sha512-Od729skczse1HvHekgEFv+mSuJKMC4sl5hENGi/izYNe6DZDqJrrD0trkGT/IVh/SLXUFbq1ZFY9I2LoUGzFZg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/glass@9.2.4': + resolution: {integrity: sha512-5lxbJode1t99eoIIgW0iwZMoZU4jNMJv/6vbsgYUhAslYFX5zP0jVRscksFuo89TTtS7YKqRqZAL3eNhz4bTDw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/icons@9.2.4': + resolution: {integrity: sha512-bRsK1qj8u9Z76xs8XhXlgVr/oHh68tsHTJ/1xtkX9DeTQTSamo2tS26+r231IHu+oW3mePtFnwzdG9LqEPRd4A==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/identicon@9.2.4': + resolution: {integrity: sha512-R9nw/E8fbu9HltHOqI9iL/o9i7zM+2QauXWMreQyERc39oGR9qXiwgBxsfYGcIS4C85xPyuL5B3I2RXrLBlJPg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/initials@9.2.4': + resolution: {integrity: sha512-4SzHG5WoQZl1TGcpEZR4bdsSkUVqwNQCOwWSPAoBJa3BNxbVsvL08LF7I97BMgrCoknWZjQHUYt05amwTPTKtg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/lorelei-neutral@9.2.4': + resolution: {integrity: sha512-bWq2/GonbcJULtT+B/MGcM2UnA7kBQoH+INw8/oW83WI3GNTZ6qEwe3/W4QnCgtSOhUsuwuiSULguAFyvtkOZQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/lorelei@9.2.4': + resolution: {integrity: sha512-eS4mPYUgDpo89HvyFAx/kgqSSKh8W4zlUA8QJeIUCWTB0WpQmeqkSgIyUJjGDYSrIujWi+zEhhckksM5EwW0Dg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/micah@9.2.4': + resolution: {integrity: sha512-XNWJ8Mx+pncIV8Ye0XYc/VkMiax8kTxcP3hLTC5vmELQyMSLXzg/9SdpI+W/tCQghtPZRYTT3JdY9oU9IUlP2g==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/miniavs@9.2.4': + resolution: {integrity: sha512-k7IYTAHE/4jSO6boMBRrNlqPT3bh7PLFM1atfe0nOeCDwmz/qJUBP3HdONajbf3fmo8f2IZYhELrNWTOE7Ox3Q==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/notionists-neutral@9.2.4': + resolution: {integrity: sha512-fskWzBVxQzJhCKqY24DGZbYHSBaauoRa1DgXM7+7xBuksH7mfbTmZTvnUAsAqJYBkla8IPb4ERKduDWtlWYYjQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/notionists@9.2.4': + resolution: {integrity: sha512-zcvpAJ93EfC0xQffaPZQuJPShwPhnu9aTcoPsaYGmw0oEDLcv2XYmDhUUdX84QYCn6LtCZH053rHLVazRW+OGw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/open-peeps@9.2.4': + resolution: {integrity: sha512-s6nwdjXFsplqEI7imlsel4Gt6kFVJm6YIgtZSpry0UdwDoxUUudei5bn957j9lXwVpVUcRjJW+TuEKztYjXkKQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/personas@9.2.4': + resolution: {integrity: sha512-JNim8RfZYwb0MfxW6DLVfvreCFIevQg+V225Xe5tDfbFgbcYEp4OU/KaiqqO2476OBjCw7i7/8USbv2acBhjwA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/pixel-art-neutral@9.2.4': + resolution: {integrity: sha512-ZITPLD1cPN4GjKkhWi80s7e5dcbXy34ijWlvmxbc4eb/V7fZSsyRa9EDUW3QStpo+xrCJLcLR+3RBE5iz0PC/A==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/pixel-art@9.2.4': + resolution: {integrity: sha512-4Ao45asieswUdlCTBZqcoF/0zHR3OWUWB0Mvhlu9b1Fbc6IlPBiOfx2vsp6bnVGVnMag58tJLecx2omeXdECBQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/rings@9.2.4': + resolution: {integrity: sha512-teZxELYyV2ogzgb5Mvtn/rHptT0HXo9SjUGS4A52mOwhIdHSGGU71MqA1YUzfae9yJThsw6K7Z9kzuY2LlZZHA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/shapes@9.2.4': + resolution: {integrity: sha512-MhK9ZdFm1wUnH4zWeKPRMZ98UyApolf5OLzhCywfu38tRN6RVbwtBRHc/42ZwoN1JU1JgXr7hzjYucMqISHtbA==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@dicebear/thumbs@9.2.4': + resolution: {integrity: sha512-EL4sMqv9p2+1Xy3d8e8UxyeKZV2+cgt3X2x2RTRzEOIIhobtkL8u6lJxmJbiGbpVtVALmrt5e7gjmwqpryYDpg==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@dicebear/core': ^9.0.0 + + '@emnapi/runtime@1.5.0': + resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} + + '@emnapi/runtime@1.7.1': + resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==} + + '@epic-web/invariant@1.0.0': + resolution: {integrity: sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==} + + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.27.0': + resolution: {integrity: sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.27.0': + resolution: {integrity: sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.27.0': + resolution: {integrity: sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.27.0': + resolution: {integrity: sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.27.0': + resolution: {integrity: sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.27.0': + resolution: {integrity: sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.27.0': + resolution: {integrity: sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.27.0': + resolution: {integrity: sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.27.0': + resolution: {integrity: sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.27.0': + resolution: {integrity: sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.27.0': + resolution: {integrity: sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.27.0': + resolution: {integrity: sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.27.0': + resolution: {integrity: sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.27.0': + resolution: {integrity: sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.27.0': + resolution: {integrity: sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.27.0': + resolution: {integrity: sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.27.0': + resolution: {integrity: sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-arm64@0.27.0': + resolution: {integrity: sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.0': + resolution: {integrity: sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-arm64@0.27.0': + resolution: {integrity: sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.0': + resolution: {integrity: sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/openharmony-arm64@0.27.0': + resolution: {integrity: sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.27.0': + resolution: {integrity: sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.27.0': + resolution: {integrity: sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.27.0': + resolution: {integrity: sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.27.0': + resolution: {integrity: sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@fontsource/inter@5.2.8': + resolution: {integrity: sha512-P6r5WnJoKiNVV+zvW2xM13gNdFhAEpQ9dQJHt3naLvfg+LkF2ldgSLiF4T41lf1SQCM9QmkqPTn4TH568IRagg==} + + '@fontsource/jetbrains-mono@5.2.8': + resolution: {integrity: sha512-6w8/SG4kqvIMu7xd7wt6x3idn1Qux3p9N62s6G3rfldOUYHpWcc2FKrqf+Vo44jRvqWj2oAtTHrZXEP23oSKwQ==} + + '@formatjs/cli@4.8.4': + resolution: {integrity: sha512-zZI8QYVl5CHaT6j9OHjS+0mMnWzopBVH0un4n5b4IhIJRzIKnxwFTkxBp5Ifqj6FntrwzIGqP+D6v8u7MPYsmw==} + hasBin: true + + '@formatjs/ecma402-abstract@1.11.4': + resolution: {integrity: sha512-EBikYFp2JCdIfGEb5G9dyCkTGDmC57KSHhRQOC3aYxoPWVZvfWCDjZwkGYHN7Lis/fmuWl906bnNTJifDQ3sXw==} + + '@formatjs/ecma402-abstract@1.4.0': + resolution: {integrity: sha512-Mv027hcLFjE45K8UJ8PjRpdDGfR0aManEFj1KzoN8zXNveHGEygpZGfFf/FTTMl+QEVSrPAUlyxaCApvmv47AQ==} + + '@formatjs/ecma402-abstract@1.5.0': + resolution: {integrity: sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==} + + '@formatjs/ecma402-abstract@2.3.6': + resolution: {integrity: sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw==} + + '@formatjs/fast-memoize@2.2.7': + resolution: {integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==} + + '@formatjs/icu-messageformat-parser@2.1.0': + resolution: {integrity: sha512-Qxv/lmCN6hKpBSss2uQ8IROVnta2r9jd3ymUEIjm2UyIkUCHVcbUVRGL/KS/wv7876edvsPe+hjHVJ4z8YuVaw==} + + '@formatjs/icu-messageformat-parser@2.11.4': + resolution: {integrity: sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw==} + + '@formatjs/icu-skeleton-parser@1.3.6': + resolution: {integrity: sha512-I96mOxvml/YLrwU2Txnd4klA7V8fRhb6JG/4hm3VMNmeJo1F03IpV2L3wWt7EweqNLES59SZ4d6hVOPCSf80Bg==} + + '@formatjs/icu-skeleton-parser@1.8.16': + resolution: {integrity: sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ==} + + '@formatjs/intl-localematcher@0.2.25': + resolution: {integrity: sha512-YmLcX70BxoSopLFdLr1Ds99NdlTI2oWoLbaUW2M406lxOIPzE1KQhRz2fPUkq34xVZQaihCoU29h0KK7An3bhA==} + + '@formatjs/intl-localematcher@0.6.2': + resolution: {integrity: sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==} + + '@formatjs/intl-numberformat@5.7.6': + resolution: {integrity: sha512-ZlZfYtvbVHYZY5OG3RXizoCwxKxEKOrzEe2YOw9wbzoxF3PmFn0SAgojCFGLyNXkkR6xVxlylhbuOPf1dkIVNg==} + + '@formatjs/intl@3.1.8': + resolution: {integrity: sha512-LWXgwI5zTMatvR8w8kCNh/priDTOF/ZssokMBHJ7ZWXFoYLVOYo0EJERD9Eajv+xsfQO1QkuAt77KWQ1OI4mOQ==} + peerDependencies: + typescript: ^5.6.0 + peerDependenciesMeta: + typescript: + optional: true + + '@formatjs/ts-transformer@2.13.0': + resolution: {integrity: sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==} + peerDependencies: + ts-jest: ^26.4.0 + peerDependenciesMeta: + ts-jest: + optional: true + + '@formatjs/ts-transformer@3.9.4': + resolution: {integrity: sha512-S5q/zsTodaKtxVxNvbRQ9APenJtm5smXE76usS+5yF2vWQdZHkagmOKWfgvfIbesP4SR2B+i3koqlnlpqSIp5w==} + peerDependencies: + ts-jest: '27' + peerDependenciesMeta: + ts-jest: + optional: true + + '@hello-pangea/dnd@17.0.0': + resolution: {integrity: sha512-LDDPOix/5N0j5QZxubiW9T0M0+1PR0rTDWeZF5pu1Tz91UQnuVK4qQ/EjY83Qm2QeX0eM8qDXANfDh3VVqtR4Q==} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + + '@img/colour@1.0.0': + resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} + engines: {node: '>=18'} + + '@img/sharp-darwin-arm64@0.34.3': + resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-arm64@0.34.5': + resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.3': + resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.5': + resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.2.0': + resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.2.4': + resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.2.0': + resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.2.4': + resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.2.0': + resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm64@1.2.4': + resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.2.0': + resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.2.4': + resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-ppc64@1.2.0': + resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==} + cpu: [ppc64] + os: [linux] + + '@img/sharp-libvips-linux-ppc64@1.2.4': + resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} + cpu: [ppc64] + os: [linux] + + '@img/sharp-libvips-linux-riscv64@1.2.4': + resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} + cpu: [riscv64] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.2.0': + resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.2.4': + resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.2.0': + resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.2.4': + resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.2.0': + resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.2.0': + resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.34.3': + resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm64@0.34.5': + resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.34.3': + resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-arm@0.34.5': + resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-ppc64@0.34.3': + resolution: {integrity: sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ppc64] + os: [linux] + + '@img/sharp-linux-ppc64@0.34.5': + resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ppc64] + os: [linux] + + '@img/sharp-linux-riscv64@0.34.5': + resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [riscv64] + os: [linux] + + '@img/sharp-linux-s390x@0.34.3': + resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-s390x@0.34.5': + resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.34.3': + resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-x64@0.34.5': + resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.34.3': + resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.34.5': + resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.34.3': + resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.34.5': + resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.34.3': + resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-wasm32@0.34.5': + resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-arm64@0.34.3': + resolution: {integrity: sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-arm64@0.34.5': + resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.34.3': + resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-ia32@0.34.5': + resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.34.3': + resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@img/sharp-win32-x64@0.34.5': + resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@internationalized/date@3.10.0': + resolution: {integrity: sha512-oxDR/NTEJ1k+UFVQElaNIk65E/Z83HK1z1WI3lQyhTtnNg4R5oVXaPzK3jcpKG8UHKDVuDQHzn+wsxSz8RP3aw==} + + '@internationalized/message@3.1.8': + resolution: {integrity: sha512-Rwk3j/TlYZhn3HQ6PyXUV0XP9Uv42jqZGNegt0BXlxjE6G3+LwHjbQZAGHhCnCPdaA6Tvd3ma/7QzLlLkJxAWA==} + + '@internationalized/number@3.6.5': + resolution: {integrity: sha512-6hY4Kl4HPBvtfS62asS/R22JzNNy8vi/Ssev7x6EobfCp+9QIB2hKvI2EtbdJ0VSQacxVNtqhE/NmF/NZ0gm6g==} + + '@internationalized/string@3.2.7': + resolution: {integrity: sha512-D4OHBjrinH+PFZPvfCXvG28n2LSykWcJ7GIioQL+ok0LON15SdfoUssoHzzOUmVZLbRoREsQXVzA6r8JKsbP6A==} + + '@isaacs/balanced-match@4.0.1': + resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} + engines: {node: 20 || >=22} + + '@isaacs/brace-expansion@5.0.0': + resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} + engines: {node: 20 || >=22} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/diff-sequences@30.0.1': + resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@30.1.1': + resolution: {integrity: sha512-5YUHr27fpJ64dnvtu+tt11ewATynrHkGYD+uSFgRr8V2eFJis/vEXgToyLwccIwqBihVfz9jwio+Zr1ab1Zihw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/get-type@30.1.0': + resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/pattern@30.0.1': + resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/schemas@30.0.5': + resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@30.0.5': + resolution: {integrity: sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.11': + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.30': + resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@kurkle/color@0.3.4': + resolution: {integrity: sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==} + + '@netlify/plugin-nextjs@5.15.1': + resolution: {integrity: sha512-HXm94tteOuA0FYwhkxjYIPe0zta+Dsu0wz7LnhfqVlaYcRaOLjHtd2vgfmpz3np/fx9TQg3gCfqGkXt2a9i7Aw==} + engines: {node: '>=18.0.0'} + + '@next/env@15.5.9': + resolution: {integrity: sha512-4GlTZ+EJM7WaW2HEZcyU317tIQDjkQIyENDLxYJfSWlfqguN+dHkZgyQTV/7ykvobU7yEH5gKvreNrH4B6QgIg==} + + '@next/env@16.0.10': + resolution: {integrity: sha512-8tuaQkyDVgeONQ1MeT9Mkk8pQmZapMKFh5B+OrFUlG3rVmYTXcXlBetBgTurKXGaIZvkoqRT9JL5K3phXcgang==} + + '@next/swc-darwin-arm64@15.5.7': + resolution: {integrity: sha512-IZwtxCEpI91HVU/rAUOOobWSZv4P2DeTtNaCdHqLcTJU4wdNXgAySvKa/qJCgR5m6KI8UsKDXtO2B31jcaw1Yw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-arm64@16.0.10': + resolution: {integrity: sha512-4XgdKtdVsaflErz+B5XeG0T5PeXKDdruDf3CRpnhN+8UebNa5N2H58+3GDgpn/9GBurrQ1uWW768FfscwYkJRg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@15.5.7': + resolution: {integrity: sha512-UP6CaDBcqaCBuiq/gfCEJw7sPEoX1aIjZHnBWN9v9qYHQdMKvCKcAVs4OX1vIjeE+tC5EIuwDTVIoXpUes29lg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-darwin-x64@16.0.10': + resolution: {integrity: sha512-spbEObMvRKkQ3CkYVOME+ocPDFo5UqHb8EMTS78/0mQ+O1nqE8toHJVioZo4TvebATxgA8XMTHHrScPrn68OGw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@15.5.7': + resolution: {integrity: sha512-NCslw3GrNIw7OgmRBxHtdWFQYhexoUCq+0oS2ccjyYLtcn1SzGzeM54jpTFonIMUjNbHmpKpziXnpxhSWLcmBA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-gnu@16.0.10': + resolution: {integrity: sha512-uQtWE3X0iGB8apTIskOMi2w/MKONrPOUCi5yLO+v3O8Mb5c7K4Q5KD1jvTpTF5gJKa3VH/ijKjKUq9O9UhwOYw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@15.5.7': + resolution: {integrity: sha512-nfymt+SE5cvtTrG9u1wdoxBr9bVB7mtKTcj0ltRn6gkP/2Nu1zM5ei8rwP9qKQP0Y//umK+TtkKgNtfboBxRrw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@16.0.10': + resolution: {integrity: sha512-llA+hiDTrYvyWI21Z0L1GiXwjQaanPVQQwru5peOgtooeJ8qx3tlqRV2P7uH2pKQaUfHxI/WVarvI5oYgGxaTw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@15.5.7': + resolution: {integrity: sha512-hvXcZvCaaEbCZcVzcY7E1uXN9xWZfFvkNHwbe/n4OkRhFWrs1J1QV+4U1BN06tXLdaS4DazEGXwgqnu/VMcmqw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-gnu@16.0.10': + resolution: {integrity: sha512-AK2q5H0+a9nsXbeZ3FZdMtbtu9jxW4R/NgzZ6+lrTm3d6Zb7jYrWcgjcpM1k8uuqlSy4xIyPR2YiuUr+wXsavA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@15.5.7': + resolution: {integrity: sha512-4IUO539b8FmF0odY6/SqANJdgwn1xs1GkPO5doZugwZ3ETF6JUdckk7RGmsfSf7ws8Qb2YB5It33mvNL/0acqA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@16.0.10': + resolution: {integrity: sha512-1TDG9PDKivNw5550S111gsO4RGennLVl9cipPhtkXIFVwo31YZ73nEbLjNC8qG3SgTz/QZyYyaFYMeY4BKZR/g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@15.5.7': + resolution: {integrity: sha512-CpJVTkYI3ZajQkC5vajM7/ApKJUOlm6uP4BknM3XKvJ7VXAvCqSjSLmM0LKdYzn6nBJVSjdclx8nYJSa3xlTgQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-arm64-msvc@16.0.10': + resolution: {integrity: sha512-aEZIS4Hh32xdJQbHz121pyuVZniSNoqDVx1yIr2hy+ZwJGipeqnMZBJHyMxv2tiuAXGx6/xpTcQJ6btIiBjgmg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-x64-msvc@15.5.7': + resolution: {integrity: sha512-gMzgBX164I6DN+9/PGA+9dQiwmTkE4TloBNx8Kv9UiGARsr9Nba7IpcBRA1iTV9vwlYnrE3Uy6I7Aj6qLjQuqw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@next/swc-win32-x64-msvc@16.0.10': + resolution: {integrity: sha512-E+njfCoFLb01RAFEnGZn6ERoOqhK1Gl3Lfz1Kjnj0Ulfu7oJbuMyvBKNj/bw8XZnenHDASlygTjZICQW+rYW1Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@prisma/adapter-pg@6.19.0': + resolution: {integrity: sha512-F8f2kvU+igmxERA9oM+D2maMaxrST1P6vO7ayvdlAdcJI47nKNPdkLBGZKic9otghfA9CQnjNOGB56q2VXqnHw==} + + '@prisma/client@6.19.0': + resolution: {integrity: sha512-QXFT+N/bva/QI2qoXmjBzL7D6aliPffIwP+81AdTGq0FXDoLxLkWivGMawG8iM5B9BKfxLIXxfWWAF6wbuJU6g==} + engines: {node: '>=18.18'} + peerDependencies: + prisma: '*' + typescript: '>=5.1.0' + peerDependenciesMeta: + prisma: + optional: true + typescript: + optional: true + + '@prisma/config@6.19.0': + resolution: {integrity: sha512-zwCayme+NzI/WfrvFEtkFhhOaZb/hI+X8TTjzjJ252VbPxAl2hWHK5NMczmnG9sXck2lsXrxIZuK524E25UNmg==} + + '@prisma/debug@6.19.0': + resolution: {integrity: sha512-8hAdGG7JmxrzFcTzXZajlQCidX0XNkMJkpqtfbLV54wC6LSSX6Vni25W/G+nAANwLnZ2TmwkfIuWetA7jJxJFA==} + + '@prisma/driver-adapter-utils@6.19.0': + resolution: {integrity: sha512-VAC/wFebV569Jk7iEqzLxekM2A5toKYAr6cPM2KWVHiRHgyjsh/IHf++Xo67q8uor/JxY8mwOuyQyuxkstSf5w==} + + '@prisma/engines-version@6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773': + resolution: {integrity: sha512-gV7uOBQfAFlWDvPJdQxMT1aSRur3a0EkU/6cfbAC5isV67tKDWUrPauyaHNpB+wN1ebM4A9jn/f4gH+3iHSYSQ==} + + '@prisma/engines@6.19.0': + resolution: {integrity: sha512-pMRJ+1S6NVdXoB8QJAPIGpKZevFjxhKt0paCkRDTZiczKb7F4yTgRP8M4JdVkpQwmaD4EoJf6qA+p61godDokw==} + + '@prisma/extension-read-replicas@0.4.1': + resolution: {integrity: sha512-mCMDloqUKUwx2o5uedTs1FHX3Nxdt1GdRMoeyp1JggjiwOALmIYWhxfIN08M2BZ0w8SKwvJqicJZMjkQYkkijw==} + peerDependencies: + '@prisma/client': ^6.5.0 + + '@prisma/fetch-engine@6.19.0': + resolution: {integrity: sha512-OOx2Lda0DGrZ1rodADT06ZGqHzr7HY7LNMaFE2Vp8dp146uJld58sRuasdX0OiwpHgl8SqDTUKHNUyzEq7pDdQ==} + + '@prisma/get-platform@6.19.0': + resolution: {integrity: sha512-ym85WDO2yDhC3fIXHWYpG3kVMBA49cL1XD2GCsCF8xbwoy2OkDQY44gEbAt2X46IQ4Apq9H6g0Ex1iFfPqEkHA==} + + '@react-aria/autocomplete@3.0.0-rc.3': + resolution: {integrity: sha512-vemf7h3hvIDk3MxiiPryysfYgJDg8R72X46dRIeg0+cXKYxjPYou64/DTucSV2z5J6RC5JalINu0jIDaLhEILw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/breadcrumbs@3.5.29': + resolution: {integrity: sha512-rKS0dryllaZJqrr3f/EAf2liz8CBEfmL5XACj+Z1TAig6GIYe1QuA3BtkX0cV9OkMugXdX8e3cbA7nD10ORRqg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/button@3.14.2': + resolution: {integrity: sha512-VbLIA+Kd6f/MDjd+TJBUg2+vNDw66pnvsj2E4RLomjI9dfBuN7d+Yo2UnsqKVyhePjCUZ6xxa2yDuD63IOSIYA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/calendar@3.9.2': + resolution: {integrity: sha512-uSLxLgOPRnEU4Jg59lAhUVA+uDx/55NBg4lpfsP2ynazyiJ5LCXmYceJi+VuOqMml7d9W0dB87OldOeLdIxYVA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/checkbox@3.16.2': + resolution: {integrity: sha512-29Mj9ZqXioJ0bcMnNGooHztnTau5pikZqX3qCRj5bYR3by/ZFFavYoMroh9F7s/MbFm/tsKX+Sf02lYFEdXRjA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/collections@3.0.0': + resolution: {integrity: sha512-vCFztpsl1AYjQn3lH7CwzYiiRAGfnm7+EXaXIt7yS4O6YC8C3FfOBf3jdxcFjE5u8CEfiL4X+4ABkfio10nneg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/color@3.1.2': + resolution: {integrity: sha512-jCC+Q7rAQGLQBkHjkPAeDuGYuMbc4neifjlNRiyZ9as1z4gg63H8MteoWYYk6K4vCKKxSixgt8MfI29XWMOWPQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/combobox@3.14.0': + resolution: {integrity: sha512-z4ro0Hma//p4nL2IJx5iUa7NwxeXbzSoZ0se5uTYjG1rUUMszg+wqQh/AQoL+eiULn7rs18JY9wwNbVIkRNKWA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/datepicker@3.15.2': + resolution: {integrity: sha512-th078hyNqPf4P2K10su/y32zPDjs3lOYVdHvsL9/+5K1dnTvLHCK5vgUyLuyn8FchhF7cmHV49D+LZVv65PEpQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/dialog@3.5.31': + resolution: {integrity: sha512-inxQMyrzX0UBW9Mhraq0nZ4HjHdygQvllzloT1E/RlDd61lr3RbmJR6pLsrbKOTtSvDIBJpCso1xEdHCFNmA0Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/disclosure@3.1.0': + resolution: {integrity: sha512-5996BeBpnj+yKXYysz+UuhFQxGFPvaZZ3zNBd052wz/i+TVFVGSqqYJ6cwZyO1AfBR8zOT0ZIiK4EC3ETwSvtQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/dnd@3.11.3': + resolution: {integrity: sha512-MyTziciik1Owz3rqDghu0K3ZtTFvmj/R2ZsLDwbU9N4hKqGX/BKnrI8SytTn8RDqVv5LmA/GhApLngiupTAsXw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/focus@3.21.2': + resolution: {integrity: sha512-JWaCR7wJVggj+ldmM/cb/DXFg47CXR55lznJhZBh4XVqJjMKwaOOqpT5vNN7kpC1wUpXicGNuDnJDN1S/+6dhQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/form@3.1.2': + resolution: {integrity: sha512-R3i7L7Ci61PqZQvOrnL9xJeWEbh28UkTVgkj72EvBBn39y4h7ReH++0stv7rRs8p5ozETSKezBbGfu4UsBewWw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/grid@3.14.5': + resolution: {integrity: sha512-XHw6rgjlTqc85e3zjsWo3U0EVwjN5MOYtrolCKc/lc2ItNdcY3OlMhpsU9+6jHwg/U3VCSWkGvwAz9hg7krd8Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/gridlist@3.14.1': + resolution: {integrity: sha512-keS03Am07aOn7RuNaRsMOyh0jscyhDn95asCVy4lxhl9A9TFk1Jw0o2L6q6cWRj1gFiKeacj/otG5H8ZKQQ2Wg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/i18n@3.12.13': + resolution: {integrity: sha512-YTM2BPg0v1RvmP8keHenJBmlx8FXUKsdYIEX7x6QWRd1hKlcDwphfjzvt0InX9wiLiPHsT5EoBTpuUk8SXc0Mg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/interactions@3.25.6': + resolution: {integrity: sha512-5UgwZmohpixwNMVkMvn9K1ceJe6TzlRlAfuYoQDUuOkk62/JVJNDLAPKIf5YMRc7d2B0rmfgaZLMtbREb0Zvkw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/label@3.7.22': + resolution: {integrity: sha512-jLquJeA5ZNqDT64UpTc9XJ7kQYltUlNcgxZ37/v4mHe0UZ7QohCKdKQhXHONb0h2jjNUpp2HOZI8J9++jOpzxA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/landmark@3.0.7': + resolution: {integrity: sha512-t8c610b8hPLS6Vwv+rbuSyljZosI1s5+Tosfa0Fk4q7d+Ex6Yj7hLfUFy59GxZAufhUYfGX396fT0gPqAbU1tg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/link@3.8.6': + resolution: {integrity: sha512-7F7UDJnwbU9IjfoAdl6f3Hho5/WB7rwcydUOjUux0p7YVWh/fTjIFjfAGyIir7MJhPapun1D0t97QQ3+8jXVcg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/listbox@3.15.0': + resolution: {integrity: sha512-Ub1Wu79R9sgxM7h4HeEdjOgOKDHwduvYcnDqsSddGXgpkL8ADjsy2YUQ0hHY5VnzA4BxK36bLp4mzSna8Qvj1w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/live-announcer@3.4.4': + resolution: {integrity: sha512-PTTBIjNRnrdJOIRTDGNifY2d//kA7GUAwRFJNOEwSNG4FW+Bq9awqLiflw0JkpyB0VNIwou6lqKPHZVLsGWOXA==} + + '@react-aria/menu@3.19.3': + resolution: {integrity: sha512-52fh8y8b2776R2VrfZPpUBJYC9oTP7XDy+zZuZTxPEd7Ywk0JNUl5F92y6ru22yPkS13sdhrNM/Op+V/KulmAg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/meter@3.4.27': + resolution: {integrity: sha512-andOOdJkgRJF9vBi5VWRmFodK+GT+5X1lLeNUmb4qOX8/MVfX/RbK72LDeIhd7xC7rSCFHj3WvZ198rK4q0k3w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/numberfield@3.12.2': + resolution: {integrity: sha512-M2b+z0HIXiXpGAWOQkO2kpIjaLNUXJ5Q3/GMa3Fkr+B1piFX0VuOynYrtddKVrmXCe+r5t+XcGb0KS29uqv7nQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/overlays@3.30.0': + resolution: {integrity: sha512-UpjqSjYZx5FAhceWCRVsW6fX1sEwya1fQ/TKkL53FAlLFR8QKuoKqFlmiL43YUFTcGK3UdEOy3cWTleLQwdSmQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/progress@3.4.27': + resolution: {integrity: sha512-0OA1shs1575g1zmO8+rWozdbTnxThFFhOfuoL1m7UV5Dley6FHpueoKB1ECv7B+Qm4dQt6DoEqLg7wsbbQDhmg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/radio@3.12.2': + resolution: {integrity: sha512-I11f6I90neCh56rT/6ieAs3XyDKvEfbj/QmbU5cX3p+SJpRRPN0vxQi5D1hkh0uxDpeClxygSr31NmZsd4sqfg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/searchfield@3.8.9': + resolution: {integrity: sha512-Yt2pj8Wb5/XsUr2T0DQqFv+DlFpzzWIWnNr9cJATUcWV/xw6ok7YFEg9+7EHtBmsCQxFFJtock1QfZzBw6qLtQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/select@3.17.0': + resolution: {integrity: sha512-q5ZuyAn5jSOeI0Ys99951TaGcF4O7u1SSBVxPMwVVXOU8ZhToCNx+WG3n/JDYHEjqdo7sbsVRaPA7LkBzBGf5w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/selection@3.26.0': + resolution: {integrity: sha512-ZBH3EfWZ+RfhTj01dH8L17uT7iNbXWS8u77/fUpHgtrm0pwNVhx0TYVnLU1YpazQ/3WVpvWhmBB8sWwD1FlD/g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/separator@3.4.13': + resolution: {integrity: sha512-0NlcrdBfQbcjWEXdHl3+uSY1272n2ljT1gWL2RIf6aQsQWTZ0gz0rTgRHy0MTXN+y+tICItUERJT4vmTLtIzVg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/slider@3.8.2': + resolution: {integrity: sha512-6KyUGaVzRE4xAz1LKHbNh1q5wzxe58pdTHFSnxNe6nk1SCoHw7NfI4h2s2m6LgJ0megFxsT0Ir8aHaFyyxmbgg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/spinbutton@3.6.19': + resolution: {integrity: sha512-xOIXegDpts9t3RSHdIN0iYQpdts0FZ3LbpYJIYVvdEHo9OpDS+ElnDzCGtwZLguvZlwc5s1LAKuKopDUsAEMkw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/ssr@3.9.10': + resolution: {integrity: sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==} + engines: {node: '>= 12'} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/switch@3.7.8': + resolution: {integrity: sha512-AfsUq1/YiuoprhcBUD9vDPyWaigAwctQNW1fMb8dROL+i/12B+Zekj8Ml+jbU69/kIVtfL0Jl7/0Bo9KK3X0xQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/table@3.17.8': + resolution: {integrity: sha512-bXiZoxTMbsqUJsYDhHPzKc3jw0HFJ/xMsJ49a0f7mp5r9zACxNLeIU0wJ4Uvx37dnYOHKzGliG+rj5l4sph7MA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/tabs@3.10.8': + resolution: {integrity: sha512-sPPJyTyoAqsBh76JinBAxStOcbjZvyWFYKpJ9Uqw+XT0ObshAPPFSGeh8DiQemPs02RwJdrfARPMhyqiX8t59A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/tag@3.7.2': + resolution: {integrity: sha512-JV679P5r4DftbqyNBRt7Nw9mP7dxaKPfikjyQuvUoEOa06wBLbM/hU9RJUPRvqK+Un6lgBDAmXD9NNf4N2xpdw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/textfield@3.18.2': + resolution: {integrity: sha512-G+lM8VYSor6g9Yptc6hLZ6BF+0cq0pYol1z6wdQUQgJN8tg4HPtzq75lsZtlCSIznL3amgRAxJtd0dUrsAnvaQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/toast@3.0.8': + resolution: {integrity: sha512-rfJIms6AkMyQ7ZgKrMZgGfPwGcB/t1JoEwbc1PAmXcAvFI/hzF6YF7ZFDXiq38ucFsP9PnHmbXIzM9w4ccl18A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/toggle@3.12.2': + resolution: {integrity: sha512-g25XLYqJuJpt0/YoYz2Rab8ax+hBfbssllcEFh0v0jiwfk2gwTWfRU9KAZUvxIqbV8Nm8EBmrYychDpDcvW1kw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/toolbar@3.0.0-beta.21': + resolution: {integrity: sha512-yRCk/GD8g+BhdDgxd3I0a0c8Ni4Wyo6ERzfSoBkPkwQ4X2E2nkopmraM9D0fXw4UcIr4bnmvADzkHXtBN0XrBg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/tooltip@3.8.8': + resolution: {integrity: sha512-CmHUqtXtFWmG4AHMEr9hIVex+oscK6xcM2V47gq9ijNInxe3M6UBu/dBdkgGP/jYv9N7tzCAjTR8nNIHQXwvWw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/tree@3.1.4': + resolution: {integrity: sha512-6pbFeN0dAsCOrFGUKU39CNjft20zCAjLfMqfkRWisL+JkUHI2nq6odUJF5jJTsU1C+1951+3oFOmVxPX+K+akQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/utils@3.31.0': + resolution: {integrity: sha512-ABOzCsZrWzf78ysswmguJbx3McQUja7yeGj6/vZo4JVsZNlxAN+E9rs381ExBRI0KzVo6iBTeX5De8eMZPJXig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/virtualizer@4.1.10': + resolution: {integrity: sha512-s0xOFh602ybTWuDrV/i6fV7Pz7vYghsY7F/RpYL/5IX9qCZ5C1FWFePpVktQAZghnd3ljH8hS8DULPeDfVLCrg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/visually-hidden@3.8.28': + resolution: {integrity: sha512-KRRjbVVob2CeBidF24dzufMxBveEUtUu7IM+hpdZKB+gxVROoh4XRLPv9SFmaH89Z7D9To3QoykVZoWD0lan6Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-spring/animated@10.0.3': + resolution: {integrity: sha512-7MrxADV3vaUADn2V9iYhaIL6iOWRx9nCJjYrsk2AHD2kwPr6fg7Pt0v+deX5RnCDmCKNnD6W5fasiyM8D+wzJQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@react-spring/animated@9.7.5': + resolution: {integrity: sha512-Tqrwz7pIlsSDITzxoLS3n/v/YCUHQdOIKtOJf4yL6kYVSDTSmVK1LI1Q3M/uu2Sx4X3pIWF3xLUhlsA6SPNTNg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/core@10.0.3': + resolution: {integrity: sha512-D4DwNO68oohDf/0HG2G0Uragzb9IA1oXblxrd6MZAcBcUQG2EHUWXewjdECMPLNmQvlYVyyBRH6gPxXM5DX7DQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@react-spring/core@9.7.5': + resolution: {integrity: sha512-rmEqcxRcu7dWh7MnCcMXLvrf6/SDlSokLaLTxiPlAYi11nN3B5oiCUAblO72o+9z/87j2uzxa2Inm8UbLjXA+w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/rafz@10.0.3': + resolution: {integrity: sha512-Ri2/xqt8OnQ2iFKkxKMSF4Nqv0LSWnxXT4jXFzBDsHgeeH/cHxTLupAWUwmV9hAGgmEhBmh5aONtj3J6R/18wg==} + + '@react-spring/rafz@9.7.5': + resolution: {integrity: sha512-5ZenDQMC48wjUzPAm1EtwQ5Ot3bLIAwwqP2w2owG5KoNdNHpEJV263nGhCeKKmuA3vG2zLLOdu3or6kuDjA6Aw==} + + '@react-spring/shared@10.0.3': + resolution: {integrity: sha512-geCal66nrkaQzUVhPkGomylo+Jpd5VPK8tPMEDevQEfNSWAQP15swHm+MCRG4wVQrQlTi9lOzKzpRoTL3CA84Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@react-spring/shared@9.7.5': + resolution: {integrity: sha512-wdtoJrhUeeyD/PP/zo+np2s1Z820Ohr/BbuVYv+3dVLW7WctoiN7std8rISoYoHpUXtbkpesSKuPIw/6U1w1Pw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/types@10.0.3': + resolution: {integrity: sha512-H5Ixkd2OuSIgHtxuHLTt7aJYfhMXKXT/rK32HPD/kSrOB6q6ooeiWAXkBy7L8F3ZxdkBb9ini9zP9UwnEFzWgQ==} + + '@react-spring/types@9.7.5': + resolution: {integrity: sha512-HVj7LrZ4ReHWBimBvu2SKND3cDVUPWKLqRTmWe/fNY6o1owGOX0cAHbdPDTMelgBlVbrTKrre6lFkhqGZErK/g==} + + '@react-spring/web@10.0.3': + resolution: {integrity: sha512-ndU+kWY81rHsT7gTFtCJ6mrVhaJ6grFmgTnENipzmKqot4HGf5smPNK+cZZJqoGeDsj9ZsiWPW4geT/NyD484A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@react-spring/web@9.7.5': + resolution: {integrity: sha512-lmvqGwpe+CSttsWNZVr+Dg62adtKhauGwLyGE/RRyZ8AAMLgb9x3NDMA5RMElXo+IMyTkPp7nxTB8ZQlmhb6JQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-stately/autocomplete@3.0.0-beta.3': + resolution: {integrity: sha512-YfP/TrvkOCp6j7oqpZxJSvmSeXn+XtbKSOiBOuo+m2zCIhW2ncThmDB9uAUOkpmikDv/LkGKni40RQE8USdGdA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/calendar@3.9.0': + resolution: {integrity: sha512-U5Nf2kx9gDhJRxdDUm5gjfyUlt/uUfOvM1vDW2UA62cA6+2k2cavMLc2wNlXOb/twFtl6p0joYKHG7T4xnEFkg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/checkbox@3.7.2': + resolution: {integrity: sha512-j1ycUVz5JmqhaL6mDZgDNZqBilOB8PBW096sDPFaTtuYreDx2HOd1igxiIvwlvPESZwsJP7FVM3mYnaoXtpKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/collections@3.12.8': + resolution: {integrity: sha512-AceJYLLXt1Y2XIcOPi6LEJSs4G/ubeYW3LqOCQbhfIgMaNqKfQMIfagDnPeJX9FVmPFSlgoCBxb1pTJW2vjCAQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/color@3.9.2': + resolution: {integrity: sha512-F+6Do8W3yu/4n7MpzZtbXwVukcLTFYYDIUtpoR+Jl52UmAr9Hf1CQgkyTI2azv1ZMzj1mVrTBhpBL0q27kFZig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/combobox@3.12.0': + resolution: {integrity: sha512-A6q9R/7cEa/qoQsBkdslXWvD7ztNLLQ9AhBhVN9QvzrmrH5B4ymUwcTU8lWl22ykH7RRwfonLeLXJL4C+/L2oQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/data@3.14.1': + resolution: {integrity: sha512-lDNc4gZ6kVZcrABeeQZPTTnP+1ykNylSvFzAC/Hq1fs8+s54xLRvoENWIyG+yK19N9TIGEoA0AOFG8PoAun43g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/datepicker@3.15.2': + resolution: {integrity: sha512-S5GL+W37chvV8knv9v0JRv0L6hKo732qqabCCHXzOpYxkLIkV4f/y3cHdEzFWzpZ0O0Gkg7WgeYo160xOdBKYg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/disclosure@3.0.8': + resolution: {integrity: sha512-/Ce/Z76y85eSBZiemfU/uEyXkBBa1RdfLRaKD13rnfUV7/nS3ae1VtNlsXgmwQjWv2pmAiSuEKYMbZfVL7q/lQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/dnd@3.7.1': + resolution: {integrity: sha512-O1JBJ4HI1rVNKuoa5NXiC5FCrCEkr9KVBoKNlTZU8/cnQselhbEsUfMglAakO2EuwIaM1tIXoNF5J/N5P+6lTA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/flags@3.1.2': + resolution: {integrity: sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==} + + '@react-stately/form@3.2.2': + resolution: {integrity: sha512-soAheOd7oaTO6eNs6LXnfn0tTqvOoe3zN9FvtIhhrErKz9XPc5sUmh3QWwR45+zKbitOi1HOjfA/gifKhZcfWw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/grid@3.11.6': + resolution: {integrity: sha512-vWPAkzpeTIsrurHfMubzMuqEw7vKzFhIJeEK5sEcLunyr1rlADwTzeWrHNbPMl66NAIAi70Dr1yNq+kahQyvMA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/layout@4.5.1': + resolution: {integrity: sha512-Zk92HM6a8KFdyPzslhLCOmrrsvJ28+vFBisgiKMwVhe96cWlax1m9i4ktmO43xaUpSZkn06DRD/2k0d1x+Uwjw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/list@3.13.1': + resolution: {integrity: sha512-eHaoauh21twbcl0kkwULhVJ+CzYcy1jUjMikNVMHOQdhr4WIBdExf7PmSgKHKqsSPhpGg6IpTCY2dUX3RycjDg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/menu@3.9.8': + resolution: {integrity: sha512-bo0NOhofnTHLESiYfsSSw6gyXiPVJJ0UlN2igUXtJk5PmyhWjFzUzTzcnd7B028OB0si9w3LIWM3stqz5271Eg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/numberfield@3.10.2': + resolution: {integrity: sha512-jlKVFYaH3RX5KvQ7a+SAMQuPccZCzxLkeYkBE64u1Zvi7YhJ8hkTMHG/fmZMbk1rHlseE2wfBdk0Rlya3MvoNQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/overlays@3.6.20': + resolution: {integrity: sha512-YAIe+uI8GUXX8F/0Pzr53YeC5c/bjqbzDFlV8NKfdlCPa6+Jp4B/IlYVjIooBj9+94QvbQdjylegvYWK/iPwlg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/radio@3.11.2': + resolution: {integrity: sha512-UM7L6AW+k8edhSBUEPZAqiWNRNadfOKK7BrCXyBiG79zTz0zPcXRR+N+gzkDn7EMSawDeyK1SHYUuoSltTactg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/searchfield@3.5.16': + resolution: {integrity: sha512-MRfqT1lZ24r94GuFNcGJXsfijZoWjSMySCT60T6NXtbOzVPuAF3K+pL70Rayq/EWLJjS2NPHND11VTs0VdcE0Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/select@3.8.0': + resolution: {integrity: sha512-A721nlt0DSCDit0wKvhcrXFTG5Vv1qkEVkeKvobmETZy6piKvwh0aaN8iQno5AFuZaj1iOZeNjZ/20TsDJR/4A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/selection@3.20.6': + resolution: {integrity: sha512-a0bjuP2pJYPKEiedz2Us1W1aSz0iHRuyeQEdBOyL6Z6VUa6hIMq9H60kvseir2T85cOa4QggizuRV7mcO6bU5w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/slider@3.7.2': + resolution: {integrity: sha512-EVBHUdUYwj++XqAEiQg2fGi8Reccznba0uyQ3gPejF0pAc390Q/J5aqiTEDfiCM7uJ6WHxTM6lcCqHQBISk2dQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/table@3.15.1': + resolution: {integrity: sha512-MhMAgE/LgAzHcAn1P3p/nQErzJ6DiixSJ1AOt2JlnAKEb5YJg4ATKWCb2IjBLwywt9ZCzfm3KMUzkctZqAoxwA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tabs@3.8.6': + resolution: {integrity: sha512-9RYxmgjVIxUpIsGKPIF7uRoHWOEz8muwaYiStCVeyiYBPmarvZoIYtTXcwSMN/vEs7heVN5uGCL6/bfdY4+WiA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/toast@3.1.2': + resolution: {integrity: sha512-HiInm7bck32khFBHZThTQaAF6e6/qm57F4mYRWdTq8IVeGDzpkbUYibnLxRhk0UZ5ybc6me+nqqPkG/lVmM42Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/toggle@3.9.2': + resolution: {integrity: sha512-dOxs9wrVXHUmA7lc8l+N9NbTJMAaXcYsnNGsMwfXIXQ3rdq+IjWGNYJ52UmNQyRYFcg0jrzRrU16TyGbNjOdNQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tooltip@3.5.8': + resolution: {integrity: sha512-gkcUx2ROhCiGNAYd2BaTejakXUUNLPnnoJ5+V/mN480pN+OrO8/2V9pqb/IQmpqxLsso93zkM3A4wFHHLBBmPQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/tree@3.9.3': + resolution: {integrity: sha512-ZngG79nLFxE/GYmpwX6E/Rma2MMkzdoJPRI3iWk3dgqnGMMzpPnUp/cvjDsU3UHF7xDVusC5BT6pjWN0uxCIFQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/utils@3.10.8': + resolution: {integrity: sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-stately/virtualizer@4.4.4': + resolution: {integrity: sha512-ri8giqXSZOrznZDCCOE4U36wSkOhy+hrFK7yo/YVcpxTqqp3d3eisfKMqbDsgqBW+XTHycTU/xeAf0u9NqrfpQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/autocomplete@3.0.0-alpha.35': + resolution: {integrity: sha512-Wv5eU4WixfJ4M+fqvJUQqliWPbw7/VldRlgoJhqAlPwlNyLlHYwv5tlA64AySDXHGcSMIbzcS38LaHm44wt0AQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/breadcrumbs@3.7.17': + resolution: {integrity: sha512-IhvVTcfli5o/UDlGACXxjlor2afGlMQA8pNR3faH0bBUay1Fmm3IWktVw9Xwmk+KraV2RTAg9e+E6p8DOQZfiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/button@3.14.1': + resolution: {integrity: sha512-D8C4IEwKB7zEtiWYVJ3WE/5HDcWlze9mLWQ5hfsBfpePyWCgO3bT/+wjb/7pJvcAocrkXo90QrMm85LcpBtrpg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/calendar@3.8.0': + resolution: {integrity: sha512-ZDZgfZgbz1ydWOFs1mH7QFfX3ioJrmb3Y/lkoubQE0HWXLZzyYNvhhKyFJRS1QJ40IofLSBHriwbQb/tsUnGlw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/checkbox@3.10.2': + resolution: {integrity: sha512-ktPkl6ZfIdGS1tIaGSU/2S5Agf2NvXI9qAgtdMDNva0oLyAZ4RLQb6WecPvofw1J7YKXu0VA5Mu7nlX+FM2weQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/color@3.1.2': + resolution: {integrity: sha512-NP0TAY3j4tlMztOp/bBfMlPwC9AQKTjSiTFmc2oQNkx5M4sl3QpPqFPosdt7jZ8M4nItvfCWZrlZGjST4SB83A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/combobox@3.13.9': + resolution: {integrity: sha512-G6GmLbzVkLW6VScxPAr/RtliEyPhBClfYaIllK1IZv+Z42SVnOpKzhnoe79BpmiFqy1AaC3+LjZX783mrsHCwA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/datepicker@3.13.2': + resolution: {integrity: sha512-+M6UZxJnejYY8kz0spbY/hP08QJ5rsZ3aNarRQQHc48xV2oelFLX5MhAqizfLEsvyfb0JYrhWoh4z1xZtAmYCg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/dialog@3.5.22': + resolution: {integrity: sha512-smSvzOcqKE196rWk0oqJDnz+ox5JM5+OT0PmmJXiUD4q7P5g32O6W5Bg7hMIFUI9clBtngo8kLaX2iMg+GqAzg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/form@3.7.16': + resolution: {integrity: sha512-Sb7KJoWEaQ/e4XIY+xRbjKvbP1luome98ZXevpD+zVSyGjEcfIroebizP6K1yMHCWP/043xH6GUkgEqWPoVGjg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/grid@3.3.6': + resolution: {integrity: sha512-vIZJlYTii2n1We9nAugXwM2wpcpsC6JigJFBd6vGhStRdRWRoU4yv1Gc98Usbx0FQ/J7GLVIgeG8+1VMTKBdxw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/link@3.6.5': + resolution: {integrity: sha512-+I2s3XWBEvLrzts0GnNeA84mUkwo+a7kLUWoaJkW0TOBDG7my95HFYxF9WnqKye7NgpOkCqz4s3oW96xPdIniQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/listbox@3.7.4': + resolution: {integrity: sha512-p4YEpTl/VQGrqVE8GIfqTS5LkT5jtjDTbVeZgrkPnX/fiPhsfbTPiZ6g0FNap4+aOGJFGEEZUv2q4vx+rCORww==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/menu@3.10.5': + resolution: {integrity: sha512-HBTrKll2hm0VKJNM4ubIv1L9MNo8JuOnm2G3M+wXvb6EYIyDNxxJkhjsqsGpUXJdAOSkacHBDcNh2HsZABNX4A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/meter@3.4.13': + resolution: {integrity: sha512-EiarfbpHcvmeyXvXcr6XLaHkNHuGc4g7fBVEiDPwssFJKKfbUzqnnknDxPjyspqUVRcXC08CokS98J1jYobqDg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/numberfield@3.8.15': + resolution: {integrity: sha512-97r92D23GKCOjGIGMeW9nt+/KlfM3GeWH39Czcmd2/D5y3k6z4j0avbsfx2OttCtJszrnENjw3GraYGYI2KosQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/overlays@3.9.2': + resolution: {integrity: sha512-Q0cRPcBGzNGmC8dBuHyoPR7N3057KTS5g+vZfQ53k8WwmilXBtemFJPLsogJbspuewQ/QJ3o2HYsp2pne7/iNw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/progress@3.5.16': + resolution: {integrity: sha512-I9tSdCFfvQ7gHJtm90VAKgwdTWXQgVNvLRStEc0z9h+bXBxdvZb+QuiRPERChwFQ9VkK4p4rDqaFo69nDqWkpw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/radio@3.9.2': + resolution: {integrity: sha512-3UcJXu37JrTkRyP4GJPDBU7NmDTInrEdOe+bVzA1j4EegzdkJmLBkLg5cLDAbpiEHB+xIsvbJdx6dxeMuc+H3g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/searchfield@3.6.6': + resolution: {integrity: sha512-cl3itr/fk7wbIQc2Gz5Ie8aVeUmPjVX/mRGS5/EXlmzycAKNYTvqf2mlxwObLndtLISmt7IgNjRRhbUUDI8Ang==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/select@3.11.0': + resolution: {integrity: sha512-SzIsMFVPCbXE1Z1TLfpdfiwJ1xnIkcL1/CjGilmUKkNk5uT7rYX1xCJqWCjXI0vAU1xM4Qn+T3n8de4fw6HRBg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/shared@3.32.1': + resolution: {integrity: sha512-famxyD5emrGGpFuUlgOP6fVW2h/ZaF405G5KDi3zPHzyjAWys/8W6NAVJtNbkCkhedmvL0xOhvt8feGXyXaw5w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/slider@3.8.2': + resolution: {integrity: sha512-MQYZP76OEOYe7/yA2To+Dl0LNb0cKKnvh5JtvNvDnAvEprn1RuLiay8Oi/rTtXmc2KmBa4VdTcsXsmkbbkeN2Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/switch@3.5.15': + resolution: {integrity: sha512-r/ouGWQmIeHyYSP1e5luET+oiR7N7cLrAlWsrAfYRWHxqXOSNQloQnZJ3PLHrKFT02fsrQhx2rHaK2LfKeyN3A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/table@3.13.4': + resolution: {integrity: sha512-I/DYiZQl6aNbMmjk90J9SOhkzVDZvyA3Vn3wMWCiajkMNjvubFhTfda5DDf2SgFP5l0Yh6TGGH5XumRv9LqL5Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/tabs@3.3.19': + resolution: {integrity: sha512-fE+qI43yR5pAMpeqPxGqQq9jDHXEPqXskuxNHERMW0PYMdPyem2Cw6goc5F4qeZO3Hf6uPZgHkvJz2OAq7TbBw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/textfield@3.12.6': + resolution: {integrity: sha512-hpEVKE+M3uUkTjw2WrX1NrH/B3rqDJFUa+ViNK2eVranLY4ZwFqbqaYXSzHupOF3ecSjJJv2C103JrwFvx6TPQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/tooltip@3.4.21': + resolution: {integrity: sha512-ugGHOZU6WbOdeTdbjnaEc+Ms7/WhsUCg+T3PCOIeOT9FG02Ce189yJ/+hd7oqL/tVwIhEMYJIqSCgSELFox+QA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@redis/bloom@1.2.0': + resolution: {integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==} + peerDependencies: + '@redis/client': ^1.0.0 + + '@redis/client@1.6.1': + resolution: {integrity: sha512-/KCsg3xSlR+nCK8/8ZYSknYxvXHwubJrU82F3Lm1Fp6789VQ0/3RJKfsmRXjqfaTA++23CvC3hqmqe/2GEt6Kw==} + engines: {node: '>=14'} + + '@redis/graph@1.1.1': + resolution: {integrity: sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==} + peerDependencies: + '@redis/client': ^1.0.0 + + '@redis/json@1.0.7': + resolution: {integrity: sha512-6UyXfjVaTBTJtKNG4/9Z8PSpKE6XgSyEb8iwaqDcy+uKrd/DGYHTWkUdnQDyzm727V7p21WUMhsqz5oy65kPcQ==} + peerDependencies: + '@redis/client': ^1.0.0 + + '@redis/search@1.2.0': + resolution: {integrity: sha512-tYoDBbtqOVigEDMAcTGsRlMycIIjwMCgD8eR2t0NANeQmgK/lvxNAvYyb6bZDD4frHRhIHkJu2TBRvB0ERkOmw==} + peerDependencies: + '@redis/client': ^1.0.0 + + '@redis/time-series@1.1.0': + resolution: {integrity: sha512-c1Q99M5ljsIuc4YdaCwfUEXsofakb9c8+Zse2qxTadu8TalLXuAESzLvFAvNVbkmSlvlzIQOLpBCmWI9wTOt+g==} + peerDependencies: + '@redis/client': ^1.0.0 + + '@rollup/plugin-alias@5.1.1': + resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-commonjs@25.0.8': + resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.68.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-json@6.1.0': + resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-node-resolve@15.3.1': + resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-replace@5.0.7': + resolution: {integrity: sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-terser@0.4.4': + resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-typescript@12.3.0': + resolution: {integrity: sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.14.0||^3.0.0||^4.0.0 + tslib: '*' + typescript: '>=3.7.0' + peerDependenciesMeta: + rollup: + optional: true + tslib: + optional: true + + '@rollup/pluginutils@5.2.0': + resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.53.3': + resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.53.3': + resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.53.3': + resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.53.3': + resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.53.3': + resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.53.3': + resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.53.3': + resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.53.3': + resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.53.3': + resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.53.3': + resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.53.3': + resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.53.3': + resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.53.3': + resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openharmony-arm64@4.53.3': + resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.53.3': + resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.53.3': + resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.53.3': + resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.53.3': + resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==} + cpu: [x64] + os: [win32] + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sinclair/typebox@0.34.40': + resolution: {integrity: sha512-gwBNIP8ZAYev/ORDWW0QvxdwPXwxBtLsdsJgSc7eDIRt8ubP+rxUBzPsrwnu16fgEF8Bx4lh/+mvQvJzcTM6Kw==} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@standard-schema/spec@1.0.0': + resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + + '@svgr/babel-plugin-add-jsx-attribute@8.0.0': + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@8.0.0': + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@8.0.0': + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@8.1.0': + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@8.0.0': + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@8.1.0': + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/cli@8.1.0': + resolution: {integrity: sha512-SnlaLspB610XFXvs3PmhzViHErsXp0yIy4ERyZlHDlO1ro2iYtHMWYk2mztdLD/lBjiA4ZXe4RePON3qU/Tc4A==} + engines: {node: '>=14'} + hasBin: true + + '@svgr/core@8.1.0': + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} + + '@svgr/hast-util-to-babel-ast@8.0.0': + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} + + '@svgr/plugin-jsx@8.1.0': + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/plugin-prettier@8.1.0': + resolution: {integrity: sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/plugin-svgo@8.1.0': + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + + '@swc/helpers@0.5.17': + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} + + '@tanstack/query-core@5.90.11': + resolution: {integrity: sha512-f9z/nXhCgWDF4lHqgIE30jxLe4sYv15QodfdPDKYAk7nAEjNcndy4dHz3ezhdUaR23BpWa4I2EH4/DZ0//Uf8A==} + + '@tanstack/react-query@5.90.11': + resolution: {integrity: sha512-3uyzz01D1fkTLXuxF3JfoJoHQMU2fxsfJwE+6N5hHy0dVNoZOvwKP8Z2k7k1KDeD54N20apcJnG75TBAStIrBA==} + peerDependencies: + react: ^18 || ^19 + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.28.0': + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} + + '@types/estree@0.0.50': + resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + + '@types/fs-extra@9.0.13': + resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hoist-non-react-statics@3.3.7': + resolution: {integrity: sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==} + peerDependencies: + '@types/react': '*' + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@30.0.0': + resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json-stable-stringify@1.2.0': + resolution: {integrity: sha512-PEHY3ohqolHqAzDyB1+31tFaAMnoLN7x/JgdcGmNZ2uvtEJ6rlFCUYNQc0Xe754xxCYLNGZbLUGydSE6tS4S9A==} + deprecated: This is a stub types definition. json-stable-stringify provides its own type definitions, so you do not need this installed. + + '@types/minimatch@6.0.0': + resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==} + deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed. + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/node@14.18.63': + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + + '@types/node@24.10.1': + resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/react-dom@19.2.3': + resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} + peerDependencies: + '@types/react': ^19.2.0 + + '@types/react-window@1.8.8': + resolution: {integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==} + + '@types/react@19.2.7': + resolution: {integrity: sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/schema-utils@2.4.0': + resolution: {integrity: sha512-454hrj5gz/FXcUE20ygfEiN4DxZ1sprUo0V1gqIqkNZ/CzoEzAZEll2uxMsuyz6BYjiQan4Aa65xbTemfzW9hQ==} + deprecated: This is a stub types definition. schema-utils provides its own type definitions, so you do not need this installed. + + '@types/sinonjs__fake-timers@8.1.1': + resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + + '@types/sizzle@2.3.9': + resolution: {integrity: sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/use-sync-external-store@0.0.6': + resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@17.0.33': + resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@umami/react-zen@0.211.0': + resolution: {integrity: sha512-e9dfsmMYpClYU/xQ+nwFo4ktAJc6eth4k6lpdD4j47FD5PaMfSY1FK1qJ7yq/JVN0Ydomc8cuWBDZbHpG4sQmQ==} + + '@umami/redis-client@0.29.0': + resolution: {integrity: sha512-Jaqh++jskqDB7ny75pfC02OvKp1JTS4asGDsFrRL3qy8sxL3PAl9+/mybCJe4/6vWrXDJKqpgkSfUDJq2bFjyw==} + + '@vue/compiler-core@3.5.18': + resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==} + + '@vue/compiler-dom@3.5.18': + resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==} + + '@vue/compiler-sfc@3.5.18': + resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==} + + '@vue/compiler-ssr@3.5.18': + resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==} + + '@vue/reactivity@3.5.18': + resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==} + + '@vue/runtime-core@3.5.18': + resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==} + + '@vue/runtime-dom@3.5.18': + resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==} + + '@vue/server-renderer@3.5.18': + resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==} + peerDependencies: + vue: 3.5.18 + + '@vue/shared@3.5.18': + resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==} + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-escapes@7.1.1: + resolution: {integrity: sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q==} + engines: {node: '>=18'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.2.2: + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + + astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + autoprefixer@10.4.21: + resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + + aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} + + babel-jest@29.7.0: + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + babel-plugin-react-compiler@19.1.0-rc.2: + resolution: {integrity: sha512-kSNA//p5fMO6ypG8EkEVPIqAjwIXm5tMjfD1XRPL/sRjYSbJ6UsvORfaeolNWnZ9n310aM0xJP7peW26BuCVzA==} + + babel-plugin-react-intl@7.9.4: + resolution: {integrity: sha512-cMKrHEXrw43yT4M89Wbgq8A8N8lffSquj1Piwov/HVukR7jwOw8gf9btXNsQhT27ccyqEwy+M286JQYy0jby2g==} + deprecated: this package has been renamed to babel-plugin-formatjs + + babel-preset-current-node-syntax@1.2.0: + resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==} + peerDependencies: + '@babel/core': ^7.0.0 || ^8.0.0-0 + + babel-preset-jest@29.6.3: + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + balanced-match@2.0.0: + resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + bcryptjs@3.0.3: + resolution: {integrity: sha512-GlF5wPWnSa/X5LKM1o0wz0suXIINz1iHRLvTS+sLyi7XPbe5ycmYI3DlZqVGZZtDgl4DmasFg7gOB3JYbphV5g==} + hasBin: true + + blob-util@2.0.2: + resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.25.2: + resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + buffer-equal-constant-time@1.0.1: + resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + bundle-require@5.1.0: + resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + esbuild: '>=0.18' + + c12@3.1.0: + resolution: {integrity: sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==} + peerDependencies: + magicast: ^0.3.5 + peerDependenciesMeta: + magicast: + optional: true + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + cachedir@2.4.0: + resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} + engines: {node: '>=6'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase-keys@7.0.2: + resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==} + engines: {node: '>=12'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001735: + resolution: {integrity: sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==} + + caniuse-lite@1.0.30001741: + resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} + + caniuse-lite@1.0.30001759: + resolution: {integrity: sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==} + + caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.6.2: + resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + + chart.js@4.5.1: + resolution: {integrity: sha512-GIjfiT9dbmHRiYi6Nl2yFCq7kkwdkp1W/lp2J99rX0yo9tgJGn3lKQATztIjb5tVtevcBtIdICNWqlq5+E8/Pw==} + engines: {pnpm: '>=8'} + + chartjs-adapter-date-fns@3.0.0: + resolution: {integrity: sha512-Rs3iEB3Q5pJ973J93OBTpnP7qoGwvq3nUnoMdtxO+9aoJof7UFcRbWcIDteXuYd1fgAvct/32T9qaLyLuZVwCg==} + peerDependencies: + chart.js: '>=2.8.0' + date-fns: '>=2.0.0' + + check-more-types@2.24.0: + resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} + engines: {node: '>= 0.8.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + ci-info@4.3.0: + resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} + engines: {node: '>=8'} + + citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + + cjs-module-lexer@1.4.3: + resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} + + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + + cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} + + cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} + + cli-truncate@5.1.1: + resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==} + engines: {node: '>=20'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + cluster-key-slot@1.1.2: + resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} + engines: {node: '>=0.10.0'} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + commander@14.0.2: + resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==} + engines: {node: '>=20'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + commander@9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + + common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + confbox@0.1.8: + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + + confbox@0.2.2: + resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} + + consola@3.4.2: + resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} + engines: {node: ^14.18.0 || >=16.10.0} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cors@2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-env@10.1.0: + resolution: {integrity: sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw==} + engines: {node: '>=20'} + hasBin: true + + cross-spawn@6.0.6: + resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + css-blank-pseudo@3.0.3: + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + + css-box-model@1.2.1: + resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-functions-list@3.2.3: + resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==} + engines: {node: '>=12 || >=16'} + + css-has-pseudo@3.0.4: + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + + css-prefers-color-scheme@6.0.3: + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-select@5.2.2: + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-tree@3.1.0: + resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + + cssdb@7.11.2: + resolution: {integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} + + currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + + cypress@13.17.0: + resolution: {integrity: sha512-5xWkaPurwkIljojFidhw8lFScyxhtiFHl/i/3zov+1Z5CmY4t9tjIdvSXfu82Y3w7wt0uR9KkucbhkVvJZLQSA==} + engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} + hasBin: true + + d3-array@2.12.1: + resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} + + d3-color@2.0.0: + resolution: {integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==} + + d3-dispatch@2.0.0: + resolution: {integrity: sha512-S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA==} + + d3-drag@2.0.0: + resolution: {integrity: sha512-g9y9WbMnF5uqB9qKqwIIa/921RYWzlUDv9Jl1/yONQwxbOfszAWTCm8u7HOTgJgRDXiRZN56cHT9pd24dmXs8w==} + + d3-ease@2.0.0: + resolution: {integrity: sha512-68/n9JWarxXkOWMshcT5IcjbB+agblQUaIsbnXmrzejn2O82n3p2A9R2zEB9HIEFWKFwPAEDDN8gR0VdSAyyAQ==} + + d3-geo@2.0.2: + resolution: {integrity: sha512-8pM1WGMLGFuhq9S+FpPURxic+gKzjluCD/CHTuUF3mXMeiCo0i6R0tO1s4+GArRFde96SLcW/kOFRjoAosPsFA==} + + d3-interpolate@2.0.1: + resolution: {integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==} + + d3-selection@2.0.0: + resolution: {integrity: sha512-XoGGqhLUN/W14NmaqcO/bb1nqjDAw5WtSYb2X8wiuQWvSZUsUVYsOSkOybUrNvcBjaywBdYPy03eXHMXjk9nZA==} + + d3-timer@2.0.0: + resolution: {integrity: sha512-TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA==} + + d3-transition@2.0.0: + resolution: {integrity: sha512-42ltAGgJesfQE3u9LuuBHNbGrI/AJjNL2OAUdclE70UE6Vy239GCBEYD38uBPoLeNsOhFStGpPI0BAOV+HMxog==} + peerDependencies: + d3-selection: '2' + + d3-zoom@2.0.0: + resolution: {integrity: sha512-fFg7aoaEm9/jf+qfstak0IYpnesZLiMX6GZvXtUSdv8RH2o4E2qeelgdU09eKS6wGuiGMfcnMI0nTIqWzRHGpw==} + + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + + dashify@2.0.0: + resolution: {integrity: sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A==} + engines: {node: '>=4'} + + data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + date-fns-tz@1.3.8: + resolution: {integrity: sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==} + peerDependencies: + date-fns: '>=2.0.0' + + date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decamelize@5.0.1: + resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} + engines: {node: '>=10'} + + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + + dedent@1.6.0: + resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deepmerge-ts@7.1.5: + resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==} + engines: {node: '>=16.0.0'} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + del@6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} + + del@8.0.0: + resolution: {integrity: sha512-R6ep6JJ+eOBZsBr9esiNN1gxFbZE4Q2cULkUSFumGYecAiS6qodDvcPx/sFuWHMNul7DWmrtoEOpYSm7o6tbSA==} + engines: {node: '>=18'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + + detect-browser@5.3.0: + resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} + + detect-europe-js@0.1.2: + resolution: {integrity: sha512-lgdERlL3u0aUdHocoouzT10d9I89VVhk0qNRmll7mXdGfJT1/wqZ2ZLA4oJAjeACPY5fT1wsbq2AT+GkuInsow==} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dotenv@16.6.1: + resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} + engines: {node: '>=12'} + + dotenv@17.2.3: + resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==} + engines: {node: '>=12'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + ecdsa-sig-formatter@1.0.11: + resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + + effect@3.18.4: + resolution: {integrity: sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==} + + electron-to-chromium@1.5.202: + resolution: {integrity: sha512-NxbYjRmiHcHXV1Ws3fWUW+SLb62isauajk45LUJ/HgIOkUA7jLZu/X2Iif+X9FBNK8QkF9Zb4Q2mcwXCcY30mg==} + + emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + empathic@2.0.0: + resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} + engines: {node: '>=14'} + + end-of-stream@1.4.5: + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} + engines: {node: '>=18'} + hasBin: true + + esbuild@0.27.0: + resolution: {integrity: sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + eventemitter2@6.4.7: + resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + expect@30.1.1: + resolution: {integrity: sha512-OKe7cdic4qbfWd/CcgwJvvCrNX2KWfuMZee9AfJHL1gTYmvqjBjZG1a2NwfhspBzxzlXwsN75WWpKTYfsJpBxg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + exsolve@1.0.8: + resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extract-react-intl-messages@4.1.1: + resolution: {integrity: sha512-dPogci5X7HVtV7VbUxajH/1YgfNRaW2VtEiVidZ/31Tq8314uzOtzVMNo0IrAPD2E+H1wHoPiu/j565TZsyIZg==} + engines: {node: '>=10'} + hasBin: true + + extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + + extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + + fast-check@3.23.2: + resolution: {integrity: sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==} + engines: {node: '>=8.0.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} + + fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@7.0.2: + resolution: {integrity: sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==} + engines: {node: '>=12.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + fix-dts-default-cjs-exports@1.0.1: + resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + + form-data@4.0.4: + resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==} + engines: {node: '>= 6'} + + formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@11.3.2: + resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==} + engines: {node: '>=14.14'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + generic-pool@3.9.0: + resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==} + engines: {node: '>= 4'} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.4.0: + resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} + engines: {node: '>=18'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.13.0: + resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==} + + getos@3.2.1: + resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + + giget@2.0.0: + resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} + hasBin: true + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob@10.5.0: + resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} + hasBin: true + + glob@13.0.0: + resolution: {integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==} + engines: {node: 20 || >=22} + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + + global-modules@2.0.0: + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} + + global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globby@14.1.0: + resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} + engines: {node: '>=18'} + + globjoin@0.1.4: + resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + highlight.js@11.11.1: + resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==} + engines: {node: '>=12.0.0'} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-tags@3.3.1: + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} + + http-signature@1.4.0: + resolution: {integrity: sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==} + engines: {node: '>=0.10'} + + human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + immediate@3.0.6: + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + + immer@10.2.0: + resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==} + + import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} + + import-lazy@4.0.0: + resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} + engines: {node: '>=8'} + + import-local@3.2.0: + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + indent-string@5.0.0: + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + internmap@1.0.1: + resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} + + intl-messageformat-parser@5.5.1: + resolution: {integrity: sha512-TvB3LqF2VtP6yI6HXlRT5TxX98HKha6hCcrg9dwlPwNaedVNuQA9KgBdtWKgiyakyCTYHQ+KJeFEstNKfZr64w==} + deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser + + intl-messageformat-parser@6.1.2: + resolution: {integrity: sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==} + deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser + + intl-messageformat@10.7.18: + resolution: {integrity: sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g==} + + ipaddr.js@2.3.0: + resolution: {integrity: sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==} + engines: {node: '>= 10'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@5.1.0: + resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==} + engines: {node: '>=18'} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + + is-localhost-ip@2.0.0: + resolution: {integrity: sha512-vlgs2cSgMOfnKU8c1ewgKPyum9rVrjjLLW2HBdL5i0iAJjOs8NY55ZBd/hqUTaYR0EO9CKZd3hVSC2HlIbygTQ==} + engines: {node: '>=12'} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + + is-path-cwd@3.0.0: + resolution: {integrity: sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-path-inside@4.0.0: + resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==} + engines: {node: '>=12'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-standalone-pwa@0.1.1: + resolution: {integrity: sha512-9Cbovsa52vNQCjdXOzeQq5CnCbAcRk05aU62K20WO372NrTv0NxibLFCK6lQ4/iZEFdEA3p3t2VNOn8AJ53F5g==} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isbot@5.1.32: + resolution: {integrity: sha512-VNfjM73zz2IBZmdShMfAUg10prm6t7HFUQmNAEOAVS4YH92ZrZcvkMcGX6cIgBJAzWDzPent/EeAtYEHNPNPBQ==} + engines: {node: '>=18'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@29.7.0: + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-diff@30.1.1: + resolution: {integrity: sha512-LUU2Gx8EhYxpdzTR6BmjL1ifgOAQJQELTHOiPv9KITaKjZvJ9Jmgigx01tuZ49id37LorpGc9dPBPlXTboXScw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@30.1.1: + resolution: {integrity: sha512-SuH2QVemK48BNTqReti6FtjsMPFsSOD/ZzRxU1TttR7RiRsRSe78d03bb4Cx6D4bQC/80Q8U4VnaaAH9FlbZ9w==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@30.1.0: + resolution: {integrity: sha512-HizKDGG98cYkWmaLUHChq4iN+oCENohQLb7Z5guBPumYs+/etonmNFlg1Ps6yN9LTPyZn+M+b/9BbnHx3WTMDg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@30.0.5: + resolution: {integrity: sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-regex-util@30.0.1: + resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@30.0.5: + resolution: {integrity: sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@29.7.0: + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} + hasBin: true + + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + + json-stable-stringify@1.3.0: + resolution: {integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==} + engines: {node: '>= 0.4'} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.2.0: + resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + + jsonify@0.0.1: + resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} + + jsonwebtoken@9.0.2: + resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} + engines: {node: '>=12', npm: '>=6'} + + jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} + + jszip@3.10.1: + resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} + + jwa@1.4.2: + resolution: {integrity: sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==} + + jws@3.2.2: + resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} + + kafkajs@2.2.4: + resolution: {integrity: sha512-j/YeapB1vfPT2iOIUn/vxdyKEuhuY2PxMBvf5JWux6iSaukAccrMtXEY/Lb7OvavDhOWME589bpLrEdnVHjfjA==} + engines: {node: '>=14.0.0'} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + known-css-properties@0.29.0: + resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==} + + known-css-properties@0.36.0: + resolution: {integrity: sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA==} + + lazy-ass@1.6.0: + resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} + engines: {node: '> 0.8'} + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + lie@3.3.0: + resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + lint-staged@16.2.7: + resolution: {integrity: sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==} + engines: {node: '>=20.17'} + hasBin: true + + listr2@3.14.0: + resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} + engines: {node: '>=10.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + + listr2@9.0.5: + resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==} + engines: {node: '>=20.0.0'} + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} + + load-tsconfig@0.2.5: + resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.includes@4.3.0: + resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + + lodash.isboolean@3.0.3: + resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + + lodash.isinteger@4.0.4: + resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + + lodash.isnumber@3.0.3: + resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.isstring@4.0.1: + resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + + lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + + lodash.pick@4.4.0: + resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==} + deprecated: This package is deprecated. Use destructuring assignment syntax instead. + + lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} + + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loud-rejection@2.2.0: + resolution: {integrity: sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==} + engines: {node: '>=8'} + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@11.2.4: + resolution: {integrity: sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==} + engines: {node: 20 || >=22} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lucide-react@0.543.0: + resolution: {integrity: sha512-fpVfuOQO0V3HBaOA1stIiP/A2fPCXHIleRZL16Mx3HmjTYwNSbimhnFBygs2CAfU1geexMX5ItUcWBGUaqw5CA==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + lucide-react@0.555.0: + resolution: {integrity: sha512-D8FvHUGbxWBRQM90NZeIyhAvkFfsh3u9ekrMvJ30Z6gnpBHS6HC6ldLg7tL45hwiIz/u66eKDtdA23gwwGsAHA==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mathml-tag-names@2.1.3: + resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} + + maxmind@5.0.1: + resolution: {integrity: sha512-hYxQxvHkBUlyF34f7IlQOb60rytezCi2oZ8H/BtZpcoodXTlcK1eLgf7kY2TofHqBC3o+Hqtvde9kS72gFQSDw==} + engines: {node: '>=12', npm: '>=6'} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + mdn-data@2.12.2: + resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} + + mdn-data@2.24.0: + resolution: {integrity: sha512-i97fklrJl03tL1tdRVw0ZfLLvuDsdb6wxL+TrJ+PKkCbLrp2PCu2+OYdCKychIUm19nSM/35S6qz7pJpnXttoA==} + + memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + + memoize-one@6.0.0: + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + meow@10.1.5: + resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@10.0.3: + resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} + engines: {node: 20 || >=22} + + minimatch@10.1.1: + resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} + engines: {node: 20 || >=22} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mlly@1.8.0: + resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} + + mmdb-lib@3.0.1: + resolution: {integrity: sha512-dyAyMR+cRykZd1mw5altC9f4vKpCsuywPwo8l/L5fKqDay2zmqT0mF/BvUoXnQiqGn+nceO914rkPKJoyFnGxA==} + engines: {node: '>=10', npm: '>=6'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nano-spawn@2.0.0: + resolution: {integrity: sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==} + engines: {node: '>=20.17'} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + next@15.5.9: + resolution: {integrity: sha512-agNLK89seZEtC5zUHwtut0+tNrc0Xw4FT/Dg+B/VLEo9pAcS9rtTKpek3V6kVcVwsB2YlqMaHdfZL4eLEVYuCg==} + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.51.1 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + + next@16.0.10: + resolution: {integrity: sha512-RtWh5PUgI+vxlV3HdR+IfWA1UUHu0+Ram/JBO4vWB54cVPentCD0e+lxyAYEsDTqGGMg7qpjhKh6dc6aW7W/sA==} + engines: {node: '>=20.9.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.51.1 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + deprecated: Use your platform's native DOMException instead + + node-fetch-native@1.6.7: + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} + + node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nypm@0.6.2: + resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + ospath@1.2.2: + resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-map@7.0.3: + resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==} + engines: {node: '>=18'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + pako@1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + + papaparse@5.5.3: + resolution: {integrity: sha512-5QvjGxYVjxO59MGU2lHVYpRWBBtKHnlIAcSe1uNFCkkptUh63NFRj0FJQm7nR67puEruUci/ZkjmEFrjCAyP4A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-scurry@2.0.1: + resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==} + engines: {node: 20 || >=22} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + path-type@6.0.0: + resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} + engines: {node: '>=18'} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + + pg-cloudflare@1.2.7: + resolution: {integrity: sha512-YgCtzMH0ptvZJslLM1ffsY4EuGaU0cx4XSdXLRFae8bPP4dS5xL1tNB3k2o/N64cHJpwU7dxKli/nZ2lUa5fLg==} + + pg-connection-string@2.9.1: + resolution: {integrity: sha512-nkc6NpDcvPVpZXxrreI/FOtX3XemeLl8E0qFr6F2Lrm/I8WOnaWNhIPK2Z7OHpw7gh5XJThi6j6ppgNoaT1w4w==} + + pg-int8@1.0.1: + resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} + engines: {node: '>=4.0.0'} + + pg-pool@3.10.1: + resolution: {integrity: sha512-Tu8jMlcX+9d8+QVzKIvM/uJtp07PKr82IUOYEphaWcoBhIYkoHpLXN3qO59nAI11ripznDsEzEv8nUxBVWajGg==} + peerDependencies: + pg: '>=8.0' + + pg-protocol@1.10.3: + resolution: {integrity: sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==} + + pg-types@2.2.0: + resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} + engines: {node: '>=4'} + + pg@8.16.3: + resolution: {integrity: sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==} + engines: {node: '>= 16.0.0'} + peerDependencies: + pg-native: '>=3.0.1' + peerDependenciesMeta: + pg-native: + optional: true + + pgpass@1.0.5: + resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pkg-types@1.3.1: + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} + + pkg-types@2.3.0: + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss-attribute-case-insensitive@5.0.2: + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-clamp@4.1.0: + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.6 + + postcss-color-functional-notation@4.2.4: + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-color-hex-alpha@8.0.4: + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-color-rebeccapurple@7.1.1: + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-custom-media@8.0.2: + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + + postcss-custom-properties@12.1.11: + resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-custom-selectors@6.0.3: + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + + postcss-dir-pseudo-class@6.0.5: + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-double-position-gradients@3.1.2: + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-env-function@4.0.6: + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-flexbugs-fixes@5.0.2: + resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} + peerDependencies: + postcss: ^8.1.4 + + postcss-focus-visible@6.0.4: + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-focus-within@5.0.4: + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-font-variant@5.0.0: + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + peerDependencies: + postcss: ^8.1.0 + + postcss-gap-properties@3.0.5: + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-image-set-function@4.0.7: + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-import@15.1.0: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-initial@4.0.1: + resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} + peerDependencies: + postcss: ^8.0.0 + + postcss-lab-function@4.2.1: + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-load-config@6.0.1: + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} + engines: {node: '>= 18'} + peerDependencies: + jiti: '>=1.21.0' + postcss: '>=8.0.9' + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + jiti: + optional: true + postcss: + optional: true + tsx: + optional: true + yaml: + optional: true + + postcss-logical@5.0.4: + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-media-minmax@5.0.0: + resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.1.0 + + postcss-media-query-parser@0.2.3: + resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@4.2.0: + resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.1: + resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-nesting@10.2.0: + resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-opacity-percentage@1.1.3: + resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-overflow-shorthand@3.0.4: + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-page-break@3.0.4: + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + peerDependencies: + postcss: ^8 + + postcss-place@7.0.5: + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-preset-env@7.8.3: + resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-pseudo-class-any-link@7.1.6: + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-replace-overflow-wrap@4.0.0: + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + peerDependencies: + postcss: ^8.0.3 + + postcss-resolve-nested-selector@0.1.6: + resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==} + + postcss-safe-parser@6.0.0: + resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.3.3 + + postcss-selector-not@6.0.1: + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss-selector-parser@7.1.0: + resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + postgres-array@2.0.0: + resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} + engines: {node: '>=4'} + + postgres-array@3.0.4: + resolution: {integrity: sha512-nAUSGfSDGOaOAEGwqsRY27GPOea7CNipJPOA7lPbdEpx5Kg3qzdP0AaWC5MlhTWV9s4hFX39nomVZ+C4tnGOJQ==} + engines: {node: '>=12'} + + postgres-bytea@1.0.0: + resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==} + engines: {node: '>=0.10.0'} + + postgres-date@1.0.7: + resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} + engines: {node: '>=0.10.0'} + + postgres-interval@1.2.0: + resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} + engines: {node: '>=0.10.0'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + pretty-format@30.0.5: + resolution: {integrity: sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + prisma@6.19.0: + resolution: {integrity: sha512-F3eX7K+tWpkbhl3l4+VkFtrwJlLXbAM+f9jolgoUZbFcm1DgHZ4cq9AgVEgUym2au5Ad/TDLN8lg83D+M10ycw==} + engines: {node: '>=18.18'} + hasBin: true + peerDependencies: + typescript: '>=5.1.0' + peerDependenciesMeta: + typescript: + optional: true + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + proxy-from-env@1.0.0: + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + + pump@3.0.3: + resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + pure-rand@7.0.1: + resolution: {integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==} + + qs@6.14.0: + resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} + engines: {node: '>=0.6'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + raf-schd@4.0.3: + resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + rc9@2.1.2: + resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} + + react-aria-components@1.13.0: + resolution: {integrity: sha512-t1mm3AVy/MjUJBZ7zrb+sFC5iya8Vvw3go3mGKtTm269bXGZho7BLA4IgT+0nOS3j+ku6ChVi8NEoQVFoYzJJA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + react-aria@3.44.0: + resolution: {integrity: sha512-2Pq3GQxBgM4/2BlpKYXeaZ47a3tdIcYSW/AYvKgypE3XipxOdQMDG5Sr/NBn7zuJq+thzmtfRb0lB9bTbsmaRw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + react-dom@19.2.3: + resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==} + peerDependencies: + react: ^19.2.3 + + react-error-boundary@4.1.2: + resolution: {integrity: sha512-GQDxZ5Jd+Aq/qUxbCm1UtzmL/s++V7zKgE8yMktJiCQXCCFZnMZh9ng+6/Ne6PjNSXH0L9CjeOEREfRnq6Duag==} + peerDependencies: + react: '>=16.13.1' + + react-hook-form@7.67.0: + resolution: {integrity: sha512-E55EOwKJHHIT/I6J9DmQbCWToAYSw9nN5R57MZw9rMtjh+YQreMDxRLfdjfxQbiJ3/qbg3Z02wGzBX4M+5fMtQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 || ^19 + + react-icons@5.5.0: + resolution: {integrity: sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==} + peerDependencies: + react: '*' + + react-intl@7.1.14: + resolution: {integrity: sha512-VE/0Wi/lHJlBC7APQpCzLUdIt3GB5B0GZrRW8Q+ACbkHI4j+Wwgg9J1TniN6zmLHmPH5gxXcMy+fkSPfw5p1WQ==} + peerDependencies: + react: 16 || 17 || 18 || 19 + typescript: ^5.6.0 + peerDependenciesMeta: + typescript: + optional: true + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-redux@9.2.0: + resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==} + peerDependencies: + '@types/react': ^18.2.25 || ^19 + react: ^18.0 || ^19 + redux: ^5.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + redux: + optional: true + + react-simple-maps@2.3.0: + resolution: {integrity: sha512-IZVeiPSRZKwD6I/2NvXpQ2uENYGDGZp8DvZjkapcxuJ/LQHTfl+Byb+KNgY7s+iatRA2ad8LnZ3AgqcjziCCsw==} + peerDependencies: + prop-types: ^15.7.2 + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + react-stately@3.42.0: + resolution: {integrity: sha512-lYt2o1dd6dK8Bb4GRh08RG/2u64bSA1cqtRqtw4jEMgxC7Q17RFcIumBbChErndSdLzafEG/UBwV6shOfig6yw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + react-use-measure@2.1.7: + resolution: {integrity: sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==} + peerDependencies: + react: '>=16.13' + react-dom: '>=16.13' + peerDependenciesMeta: + react-dom: + optional: true + + react-window@1.8.11: + resolution: {integrity: sha512-+SRbUVT2scadgFSWx+R1P754xHPEqvcfSfVX10QYg6POOz+WNgkN48pS+BtZNIMGiL1HYrSEiCkwsMS15QogEQ==} + engines: {node: '>8.0.0'} + peerDependencies: + react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + react@19.2.3: + resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==} + engines: {node: '>=0.10.0'} + + read-babelrc-up@1.1.0: + resolution: {integrity: sha512-fcl0JeI85Ss3//kfC3z2rsG2VxSiHl1bJgpjQWrne2YuQEewZpAgAjb17A6q/Q3ozWeZsUSroiIBVsnjmOU8vw==} + engines: {node: '>=10'} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg-up@8.0.0: + resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==} + engines: {node: '>=12'} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + read-pkg@6.0.0: + resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==} + engines: {node: '>=12'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + redent@4.0.0: + resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==} + engines: {node: '>=12'} + + redis@4.7.1: + resolution: {integrity: sha512-S1bJDnqLftzHXHP8JsT5II/CtHWQrASX5K96REjWjlmWKrviSOLWmM7QnRLstAWsu1VBBV1ffV6DzCvxNP0UJQ==} + + redux@5.0.1: + resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + request-ip@3.3.0: + resolution: {integrity: sha512-cA6Xh6e0fDBBBwH77SLJaJPBmD3nWVAcF9/XAcsrIHdjhFzFiB5aNQFytdjCGPezU3ROwrR11IddKAM08vohxA==} + + request-progress@3.0.0: + resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve.exports@2.0.3: + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} + + rollup-plugin-delete@3.0.1: + resolution: {integrity: sha512-4tyijMQFwSDLA04DAHwbI2TrRwPiRwAqBQ17dxyr9CgHeHXLdgk8IDVWHFWPrL3UZJWrAmHohQ2MgmVghQDrlg==} + engines: {node: '>=18'} + peerDependencies: + rollup: '*' + + rollup-plugin-dts@6.3.0: + resolution: {integrity: sha512-d0UrqxYd8KyZ6i3M2Nx7WOMy708qsV/7fTHMHxCMCBOAe3V/U7OMPu5GkX8hC+cmkHhzGnfeYongl1IgiooddA==} + engines: {node: '>=16'} + peerDependencies: + rollup: ^3.29.4 || ^4 + typescript: ^4.5 || ^5.0 + + rollup-plugin-node-externals@8.1.2: + resolution: {integrity: sha512-EuB6/lolkMLK16gvibUjikERq5fCRVIGwD2xue/CrM8D0pz5GXD2V6N8IrgxegwbcUoKkUFI8VYCEEv8MMvgpA==} + engines: {node: '>= 21 || ^20.6.0 || ^18.19.0'} + peerDependencies: + rollup: ^4.0.0 + + rollup-plugin-peer-deps-external@2.2.4: + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + + rollup-plugin-postcss@4.0.2: + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + + rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + + rollup@4.53.3: + resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + scheduler@0.27.0: + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} + + schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + + serialize-error@12.0.0: + resolution: {integrity: sha512-ZYkZLAvKTKQXWuh5XpBw7CdbSzagarX39WyZ2H07CDLC5/KfsRGlIXV8d4+tfqX1M7916mRqR1QfNHSij+c9Pw==} + engines: {node: '>=18'} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + + sharp@0.34.3: + resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + sharp@0.34.5: + resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.3: + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} + + slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + + slice-ansi@7.1.2: + resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==} + engines: {node: '>=18'} + + smob@1.5.0: + resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} + + snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + + sort-keys@4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.22: + resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string-width@8.1.0: + resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==} + engines: {node: '>=20'} + + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.2: + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-indent@4.0.0: + resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + style-search@0.1.0: + resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} + + styled-jsx@5.1.6: + resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + stylelint-config-css-modules@4.5.1: + resolution: {integrity: sha512-xRMvAOVWa8h3Dw2NmanJHuPqMUInmMoBy14kkJDT2xs2xevxl7WnQOe/nDAMvgf9NkodzKrhKZ97E61yQOKkDA==} + peerDependencies: + stylelint: ^14.5.1 || ^15.0.0 || ^16.0.0 + + stylelint-config-prettier@9.0.5: + resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==} + engines: {node: '>= 12'} + hasBin: true + peerDependencies: + stylelint: '>= 11.x < 15' + + stylelint-config-recommended@14.0.1: + resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==} + engines: {node: '>=18.12.0'} + peerDependencies: + stylelint: ^16.1.0 + + stylelint-scss@6.12.1: + resolution: {integrity: sha512-UJUfBFIvXfly8WKIgmqfmkGKPilKB4L5j38JfsDd+OCg2GBdU0vGUV08Uw82tsRZzd4TbsUURVVNGeOhJVF7pA==} + engines: {node: '>=18.12.0'} + peerDependencies: + stylelint: ^16.0.2 + + stylelint@15.11.0: + resolution: {integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==} + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-hyperlinks@3.2.0: + resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==} + engines: {node: '>=14.18'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + + svg-tags@1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + table@6.9.0: + resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} + engines: {node: '>=10.0.0'} + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + terser@5.43.1: + resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + thenby@1.3.4: + resolution: {integrity: sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + throttleit@1.0.1: + resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tiny-lru@11.4.5: + resolution: {integrity: sha512-hkcz3FjNJfKXjV4mjQ1OrXSLAehg8Hw+cEZclOVT+5c/cWQWImQ9wolzTjth+dmmDe++p3bme3fTxz6Q4Etsqw==} + engines: {node: '>=12'} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tldts-core@6.1.86: + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + + tldts@6.1.86: + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} + hasBin: true + + tmp@0.2.5: + resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} + engines: {node: '>=14.14'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + topojson-client@3.1.0: + resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==} + hasBin: true + + tough-cookie@5.1.2: + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + trim-newlines@4.1.1: + resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} + engines: {node: '>=12'} + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + ts-jest@29.4.6: + resolution: {integrity: sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 || ^30.0.0 + '@jest/types': ^29.0.0 || ^30.0.0 + babel-jest: ^29.0.0 || ^30.0.0 + esbuild: '*' + jest: ^29.0.0 || ^30.0.0 + jest-util: ^29.0.0 || ^30.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + jest-util: + optional: true + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsup@8.5.1: + resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@microsoft/api-extractor': ^7.36.0 + '@swc/core': ^1 + postcss: ^8.4.12 + typescript: '>=4.5.0' + peerDependenciesMeta: + '@microsoft/api-extractor': + optional: true + '@swc/core': + optional: true + postcss: + optional: true + typescript: + optional: true + + tsx@4.21.0: + resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==} + engines: {node: '>=18.0.0'} + hasBin: true + + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + type-fest@4.41.0: + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + engines: {node: '>=16'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + + ua-is-frozen@0.1.2: + resolution: {integrity: sha512-RwKDW2p3iyWn4UbaxpP2+VxwqXh0jpvdxsYpZ5j/MLLiQOfbsV5shpgQiw93+KMYQPcteeMQ289MaAFzs3G9pw==} + + ua-parser-js@2.0.6: + resolution: {integrity: sha512-EmaxXfltJaDW75SokrY4/lXMrVyXomE/0FpIIqP2Ctic93gK7rlme55Cwkz8l3YZ6gqf94fCU7AnIkidd/KXPg==} + hasBin: true + + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + + unicorn-magic@0.3.0: + resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} + engines: {node: '>=18'} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + use-memo-one@1.1.3: + resolution: {integrity: sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-sync-external-store@1.5.0: + resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + use-sync-external-store@1.6.0: + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + uuid@11.1.0: + resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} + hasBin: true + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + + vue@3.5.18: + resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + web-streams-polyfill@3.3.3: + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrap-ansi@9.0.2: + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} + engines: {node: '>=18'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + write-file-atomic@5.0.1: + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + write-json-file@4.3.0: + resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} + engines: {node: '>=8.3'} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.8.1: + resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zod@4.1.13: + resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==} + + zustand@5.0.9: + resolution: {integrity: sha512-ALBtUj0AfjJt3uNRQoL1tL2tMvj6Gp/6e39dnfT6uzpelGru8v1tPOGBzayOWbPJvujM8JojDk3E1LxeFisBNg==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=18.0.0' + immer: '>=9.0.6' + react: '>=18.0.0' + use-sync-external-store: '>=1.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + use-sync-external-store: + optional: true + +snapshots: + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.0': {} + + '@babel/core@7.28.3': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3) + '@babel/helpers': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + convert-source-map: 2.0.0 + debug: 4.4.3(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.28.3': + dependencies: + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + jsesc: 3.1.0 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.25.2 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.28.3': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + + '@babel/parser@7.28.3': + dependencies: + '@babel/types': 7.28.2 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/runtime@7.28.3': {} + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + + '@babel/traverse@7.28.3': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.3(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + '@babel/types@7.28.2': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@bcoe/v8-coverage@0.2.3': {} + + '@biomejs/biome@2.3.8': + optionalDependencies: + '@biomejs/cli-darwin-arm64': 2.3.8 + '@biomejs/cli-darwin-x64': 2.3.8 + '@biomejs/cli-linux-arm64': 2.3.8 + '@biomejs/cli-linux-arm64-musl': 2.3.8 + '@biomejs/cli-linux-x64': 2.3.8 + '@biomejs/cli-linux-x64-musl': 2.3.8 + '@biomejs/cli-win32-arm64': 2.3.8 + '@biomejs/cli-win32-x64': 2.3.8 + + '@biomejs/cli-darwin-arm64@2.3.8': + optional: true + + '@biomejs/cli-darwin-x64@2.3.8': + optional: true + + '@biomejs/cli-linux-arm64-musl@2.3.8': + optional: true + + '@biomejs/cli-linux-arm64@2.3.8': + optional: true + + '@biomejs/cli-linux-x64-musl@2.3.8': + optional: true + + '@biomejs/cli-linux-x64@2.3.8': + optional: true + + '@biomejs/cli-win32-arm64@2.3.8': + optional: true + + '@biomejs/cli-win32-x64@2.3.8': + optional: true + + '@clickhouse/client-common@1.14.0': {} + + '@clickhouse/client@1.14.0': + dependencies: + '@clickhouse/client-common': 1.14.0 + + '@colors/colors@1.5.0': + optional: true + + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + + '@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1)': + dependencies: + '@csstools/css-tokenizer': 2.4.1 + + '@csstools/css-tokenizer@2.4.1': {} + + '@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': + dependencies: + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + + '@csstools/postcss-cascade-layers@1.1.1(postcss@8.5.6)': + dependencies: + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + '@csstools/postcss-color-function@1.1.1(postcss@8.5.6)': + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-hwb-function@1.0.2(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-ic-unit@1.0.1(postcss@8.5.6)': + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.5.6)': + dependencies: + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + '@csstools/postcss-nested-calc@1.0.0(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-oklab-function@1.1.1(postcss@8.5.6)': + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-unset-value@1.0.2(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + + '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)': + dependencies: + postcss-selector-parser: 6.1.2 + + '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.2)': + dependencies: + postcss-selector-parser: 6.1.2 + + '@cypress/request@3.0.9': + dependencies: + aws-sign2: 0.7.0 + aws4: 1.13.2 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 4.0.4 + http-signature: 1.4.0 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + performance-now: 2.1.0 + qs: 6.14.0 + safe-buffer: 5.2.1 + tough-cookie: 5.1.2 + tunnel-agent: 0.6.0 + uuid: 8.3.2 + + '@cypress/xvfb@1.2.4(supports-color@8.1.1)': + dependencies: + debug: 3.2.7(supports-color@8.1.1) + lodash.once: 4.1.1 + transitivePeerDependencies: + - supports-color + + '@date-fns/utc@1.2.0': {} + + '@dicebear/adventurer-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/adventurer@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/avataaars-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/avataaars@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/big-ears-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/big-ears@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/big-smile@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/bottts-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/bottts@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/collection@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/adventurer': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/adventurer-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/avataaars': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/avataaars-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/big-ears': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/big-ears-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/big-smile': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/bottts': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/bottts-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/core': 9.2.4 + '@dicebear/croodles': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/croodles-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/dylan': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/fun-emoji': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/glass': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/icons': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/identicon': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/initials': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/lorelei': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/lorelei-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/micah': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/miniavs': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/notionists': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/notionists-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/open-peeps': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/personas': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/pixel-art': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/pixel-art-neutral': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/rings': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/shapes': 9.2.4(@dicebear/core@9.2.4) + '@dicebear/thumbs': 9.2.4(@dicebear/core@9.2.4) + + '@dicebear/core@9.2.4': + dependencies: + '@types/json-schema': 7.0.15 + + '@dicebear/croodles-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/croodles@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/dylan@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/fun-emoji@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/glass@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/icons@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/identicon@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/initials@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/lorelei-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/lorelei@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/micah@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/miniavs@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/notionists-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/notionists@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/open-peeps@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/personas@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/pixel-art-neutral@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/pixel-art@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/rings@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/shapes@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@dicebear/thumbs@9.2.4(@dicebear/core@9.2.4)': + dependencies: + '@dicebear/core': 9.2.4 + + '@emnapi/runtime@1.5.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.7.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@epic-web/invariant@1.0.0': {} + + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/aix-ppc64@0.27.0': + optional: true + + '@esbuild/android-arm64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.27.0': + optional: true + + '@esbuild/android-arm@0.25.12': + optional: true + + '@esbuild/android-arm@0.27.0': + optional: true + + '@esbuild/android-x64@0.25.12': + optional: true + + '@esbuild/android-x64@0.27.0': + optional: true + + '@esbuild/darwin-arm64@0.25.12': + optional: true + + '@esbuild/darwin-arm64@0.27.0': + optional: true + + '@esbuild/darwin-x64@0.25.12': + optional: true + + '@esbuild/darwin-x64@0.27.0': + optional: true + + '@esbuild/freebsd-arm64@0.25.12': + optional: true + + '@esbuild/freebsd-arm64@0.27.0': + optional: true + + '@esbuild/freebsd-x64@0.25.12': + optional: true + + '@esbuild/freebsd-x64@0.27.0': + optional: true + + '@esbuild/linux-arm64@0.25.12': + optional: true + + '@esbuild/linux-arm64@0.27.0': + optional: true + + '@esbuild/linux-arm@0.25.12': + optional: true + + '@esbuild/linux-arm@0.27.0': + optional: true + + '@esbuild/linux-ia32@0.25.12': + optional: true + + '@esbuild/linux-ia32@0.27.0': + optional: true + + '@esbuild/linux-loong64@0.25.12': + optional: true + + '@esbuild/linux-loong64@0.27.0': + optional: true + + '@esbuild/linux-mips64el@0.25.12': + optional: true + + '@esbuild/linux-mips64el@0.27.0': + optional: true + + '@esbuild/linux-ppc64@0.25.12': + optional: true + + '@esbuild/linux-ppc64@0.27.0': + optional: true + + '@esbuild/linux-riscv64@0.25.12': + optional: true + + '@esbuild/linux-riscv64@0.27.0': + optional: true + + '@esbuild/linux-s390x@0.25.12': + optional: true + + '@esbuild/linux-s390x@0.27.0': + optional: true + + '@esbuild/linux-x64@0.25.12': + optional: true + + '@esbuild/linux-x64@0.27.0': + optional: true + + '@esbuild/netbsd-arm64@0.25.12': + optional: true + + '@esbuild/netbsd-arm64@0.27.0': + optional: true + + '@esbuild/netbsd-x64@0.25.12': + optional: true + + '@esbuild/netbsd-x64@0.27.0': + optional: true + + '@esbuild/openbsd-arm64@0.25.12': + optional: true + + '@esbuild/openbsd-arm64@0.27.0': + optional: true + + '@esbuild/openbsd-x64@0.25.12': + optional: true + + '@esbuild/openbsd-x64@0.27.0': + optional: true + + '@esbuild/openharmony-arm64@0.25.12': + optional: true + + '@esbuild/openharmony-arm64@0.27.0': + optional: true + + '@esbuild/sunos-x64@0.25.12': + optional: true + + '@esbuild/sunos-x64@0.27.0': + optional: true + + '@esbuild/win32-arm64@0.25.12': + optional: true + + '@esbuild/win32-arm64@0.27.0': + optional: true + + '@esbuild/win32-ia32@0.25.12': + optional: true + + '@esbuild/win32-ia32@0.27.0': + optional: true + + '@esbuild/win32-x64@0.25.12': + optional: true + + '@esbuild/win32-x64@0.27.0': + optional: true + + '@fontsource/inter@5.2.8': {} + + '@fontsource/jetbrains-mono@5.2.8': {} + + '@formatjs/cli@4.8.4(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3))': + dependencies: + '@formatjs/icu-messageformat-parser': 2.1.0 + '@formatjs/ts-transformer': 3.9.4(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)) + '@types/estree': 0.0.50 + '@types/fs-extra': 9.0.13 + '@types/json-stable-stringify': 1.2.0 + '@types/node': 14.18.63 + '@vue/compiler-core': 3.5.18 + chalk: 4.1.2 + commander: 8.3.0 + fast-glob: 3.3.3 + fs-extra: 10.1.0 + json-stable-stringify: 1.3.0 + loud-rejection: 2.2.0 + tslib: 2.8.1 + typescript: 4.9.5 + vue: 3.5.18(typescript@4.9.5) + transitivePeerDependencies: + - ts-jest + + '@formatjs/ecma402-abstract@1.11.4': + dependencies: + '@formatjs/intl-localematcher': 0.2.25 + tslib: 2.8.1 + + '@formatjs/ecma402-abstract@1.4.0': + dependencies: + tslib: 2.8.1 + + '@formatjs/ecma402-abstract@1.5.0': + dependencies: + tslib: 2.8.1 + + '@formatjs/ecma402-abstract@2.3.6': + dependencies: + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/intl-localematcher': 0.6.2 + decimal.js: 10.6.0 + tslib: 2.8.1 + + '@formatjs/fast-memoize@2.2.7': + dependencies: + tslib: 2.8.1 + + '@formatjs/icu-messageformat-parser@2.1.0': + dependencies: + '@formatjs/ecma402-abstract': 1.11.4 + '@formatjs/icu-skeleton-parser': 1.3.6 + tslib: 2.8.1 + + '@formatjs/icu-messageformat-parser@2.11.4': + dependencies: + '@formatjs/ecma402-abstract': 2.3.6 + '@formatjs/icu-skeleton-parser': 1.8.16 + tslib: 2.8.1 + + '@formatjs/icu-skeleton-parser@1.3.6': + dependencies: + '@formatjs/ecma402-abstract': 1.11.4 + tslib: 2.8.1 + + '@formatjs/icu-skeleton-parser@1.8.16': + dependencies: + '@formatjs/ecma402-abstract': 2.3.6 + tslib: 2.8.1 + + '@formatjs/intl-localematcher@0.2.25': + dependencies: + tslib: 2.8.1 + + '@formatjs/intl-localematcher@0.6.2': + dependencies: + tslib: 2.8.1 + + '@formatjs/intl-numberformat@5.7.6': + dependencies: + '@formatjs/ecma402-abstract': 1.4.0 + tslib: 2.8.1 + + '@formatjs/intl@3.1.8(typescript@5.9.3)': + dependencies: + '@formatjs/ecma402-abstract': 2.3.6 + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/icu-messageformat-parser': 2.11.4 + intl-messageformat: 10.7.18 + tslib: 2.8.1 + optionalDependencies: + typescript: 5.9.3 + + '@formatjs/ts-transformer@2.13.0(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3))': + dependencies: + intl-messageformat-parser: 6.1.2 + tslib: 2.8.1 + typescript: 4.9.5 + optionalDependencies: + ts-jest: 29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3) + + '@formatjs/ts-transformer@3.9.4(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3))': + dependencies: + '@formatjs/icu-messageformat-parser': 2.1.0 + '@types/node': 14.18.63 + chalk: 4.1.2 + tslib: 2.8.1 + typescript: 4.9.5 + optionalDependencies: + ts-jest: 29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3) + + '@hello-pangea/dnd@17.0.0(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@babel/runtime': 7.28.3 + css-box-model: 1.2.1 + memoize-one: 6.0.0 + raf-schd: 4.0.3 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + react-redux: 9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1) + redux: 5.0.1 + use-memo-one: 1.1.3(react@19.2.3) + transitivePeerDependencies: + - '@types/react' + + '@img/colour@1.0.0': + optional: true + + '@img/sharp-darwin-arm64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.2.0 + optional: true + + '@img/sharp-darwin-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.2.4 + optional: true + + '@img/sharp-darwin-x64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.2.0 + optional: true + + '@img/sharp-darwin-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.2.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.2.0': + optional: true + + '@img/sharp-libvips-darwin-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.2.0': + optional: true + + '@img/sharp-libvips-darwin-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.2.0': + optional: true + + '@img/sharp-libvips-linux-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.2.0': + optional: true + + '@img/sharp-libvips-linux-arm@1.2.4': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.2.0': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-riscv64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-s390x@1.2.0': + optional: true + + '@img/sharp-libvips-linux-s390x@1.2.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.2.0': + optional: true + + '@img/sharp-libvips-linux-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.2.0': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.2.0': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + optional: true + + '@img/sharp-linux-arm64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.2.0 + optional: true + + '@img/sharp-linux-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.2.4 + optional: true + + '@img/sharp-linux-arm@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.0 + optional: true + + '@img/sharp-linux-arm@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.4 + optional: true + + '@img/sharp-linux-ppc64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linux-ppc64': 1.2.0 + optional: true + + '@img/sharp-linux-ppc64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-ppc64': 1.2.4 + optional: true + + '@img/sharp-linux-riscv64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-riscv64': 1.2.4 + optional: true + + '@img/sharp-linux-s390x@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.2.0 + optional: true + + '@img/sharp-linux-s390x@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.2.4 + optional: true + + '@img/sharp-linux-x64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.2.0 + optional: true + + '@img/sharp-linux-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 + optional: true + + '@img/sharp-linuxmusl-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.34.3': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.2.0 + optional: true + + '@img/sharp-linuxmusl-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + optional: true + + '@img/sharp-wasm32@0.34.3': + dependencies: + '@emnapi/runtime': 1.5.0 + optional: true + + '@img/sharp-wasm32@0.34.5': + dependencies: + '@emnapi/runtime': 1.7.1 + optional: true + + '@img/sharp-win32-arm64@0.34.3': + optional: true + + '@img/sharp-win32-arm64@0.34.5': + optional: true + + '@img/sharp-win32-ia32@0.34.3': + optional: true + + '@img/sharp-win32-ia32@0.34.5': + optional: true + + '@img/sharp-win32-x64@0.34.3': + optional: true + + '@img/sharp-win32-x64@0.34.5': + optional: true + + '@internationalized/date@3.10.0': + dependencies: + '@swc/helpers': 0.5.17 + + '@internationalized/message@3.1.8': + dependencies: + '@swc/helpers': 0.5.17 + intl-messageformat: 10.7.18 + + '@internationalized/number@3.6.5': + dependencies: + '@swc/helpers': 0.5.17 + + '@internationalized/string@3.2.7': + dependencies: + '@swc/helpers': 0.5.17 + + '@isaacs/balanced-match@4.0.1': {} + + '@isaacs/brace-expansion@5.0.0': + dependencies: + '@isaacs/balanced-match': 4.0.1 + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.2 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jest/console@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/diff-sequences@30.0.1': {} + + '@jest/environment@29.7.0': + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + jest-mock: 29.7.0 + + '@jest/expect-utils@29.7.0': + dependencies: + jest-get-type: 29.6.3 + + '@jest/expect-utils@30.1.1': + dependencies: + '@jest/get-type': 30.1.0 + + '@jest/expect@29.7.0': + dependencies: + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/fake-timers@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 24.10.1 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + '@jest/get-type@30.1.0': {} + + '@jest/globals@29.7.0': + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/pattern@30.0.1': + dependencies: + '@types/node': 24.10.1 + jest-regex-util: 30.0.1 + + '@jest/reporters@29.7.0': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.30 + '@types/node': 24.10.1 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.3.0 + transitivePeerDependencies: + - supports-color + + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 + + '@jest/schemas@30.0.5': + dependencies: + '@sinclair/typebox': 0.34.40 + + '@jest/source-map@29.6.3': + dependencies: + '@jridgewell/trace-mapping': 0.3.30 + callsites: 3.1.0 + graceful-fs: 4.2.11 + + '@jest/test-result@29.7.0': + dependencies: + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-sequencer@29.7.0': + dependencies: + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + + '@jest/transform@29.7.0': + dependencies: + '@babel/core': 7.28.3 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.30 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.8 + pirates: 4.0.7 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + '@jest/types@29.6.3': + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 24.10.1 + '@types/yargs': 17.0.33 + chalk: 4.1.2 + + '@jest/types@30.0.5': + dependencies: + '@jest/pattern': 30.0.1 + '@jest/schemas': 30.0.5 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 24.10.1 + '@types/yargs': 17.0.33 + chalk: 4.1.2 + + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.30 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/source-map@0.3.11': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.30': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@kurkle/color@0.3.4': {} + + '@netlify/plugin-nextjs@5.15.1': {} + + '@next/env@15.5.9': {} + + '@next/env@16.0.10': {} + + '@next/swc-darwin-arm64@15.5.7': + optional: true + + '@next/swc-darwin-arm64@16.0.10': + optional: true + + '@next/swc-darwin-x64@15.5.7': + optional: true + + '@next/swc-darwin-x64@16.0.10': + optional: true + + '@next/swc-linux-arm64-gnu@15.5.7': + optional: true + + '@next/swc-linux-arm64-gnu@16.0.10': + optional: true + + '@next/swc-linux-arm64-musl@15.5.7': + optional: true + + '@next/swc-linux-arm64-musl@16.0.10': + optional: true + + '@next/swc-linux-x64-gnu@15.5.7': + optional: true + + '@next/swc-linux-x64-gnu@16.0.10': + optional: true + + '@next/swc-linux-x64-musl@15.5.7': + optional: true + + '@next/swc-linux-x64-musl@16.0.10': + optional: true + + '@next/swc-win32-arm64-msvc@15.5.7': + optional: true + + '@next/swc-win32-arm64-msvc@16.0.10': + optional: true + + '@next/swc-win32-x64-msvc@15.5.7': + optional: true + + '@next/swc-win32-x64-msvc@16.0.10': + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@prisma/adapter-pg@6.19.0': + dependencies: + '@prisma/driver-adapter-utils': 6.19.0 + pg: 8.16.3 + postgres-array: 3.0.4 + transitivePeerDependencies: + - pg-native + + '@prisma/client@6.19.0(prisma@6.19.0(typescript@5.9.3))(typescript@5.9.3)': + optionalDependencies: + prisma: 6.19.0(typescript@5.9.3) + typescript: 5.9.3 + + '@prisma/config@6.19.0': + dependencies: + c12: 3.1.0 + deepmerge-ts: 7.1.5 + effect: 3.18.4 + empathic: 2.0.0 + transitivePeerDependencies: + - magicast + + '@prisma/debug@6.19.0': {} + + '@prisma/driver-adapter-utils@6.19.0': + dependencies: + '@prisma/debug': 6.19.0 + + '@prisma/engines-version@6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773': {} + + '@prisma/engines@6.19.0': + dependencies: + '@prisma/debug': 6.19.0 + '@prisma/engines-version': 6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773 + '@prisma/fetch-engine': 6.19.0 + '@prisma/get-platform': 6.19.0 + + '@prisma/extension-read-replicas@0.4.1(@prisma/client@6.19.0(prisma@6.19.0(typescript@5.9.3))(typescript@5.9.3))': + dependencies: + '@prisma/client': 6.19.0(prisma@6.19.0(typescript@5.9.3))(typescript@5.9.3) + + '@prisma/fetch-engine@6.19.0': + dependencies: + '@prisma/debug': 6.19.0 + '@prisma/engines-version': 6.19.0-26.2ba551f319ab1df4bc874a89965d8b3641056773 + '@prisma/get-platform': 6.19.0 + + '@prisma/get-platform@6.19.0': + dependencies: + '@prisma/debug': 6.19.0 + + '@react-aria/autocomplete@3.0.0-rc.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/combobox': 3.14.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/listbox': 3.15.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/searchfield': 3.8.9(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/autocomplete': 3.0.0-beta.3(react@19.2.3) + '@react-stately/combobox': 3.12.0(react@19.2.3) + '@react-types/autocomplete': 3.0.0-alpha.35(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/breadcrumbs@3.5.29(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/link': 3.8.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/breadcrumbs': 3.7.17(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/button@3.14.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/toolbar': 3.0.0-beta.21(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/toggle': 3.9.2(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/calendar@3.9.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/calendar': 3.9.0(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/calendar': 3.8.0(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/checkbox@3.16.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/form': 3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/toggle': 3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/checkbox': 3.7.2(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/toggle': 3.9.2(react@19.2.3) + '@react-types/checkbox': 3.10.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/collections@3.0.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + use-sync-external-store: 1.6.0(react@19.2.3) + + '@react-aria/color@3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/numberfield': 3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/slider': 3.8.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/spinbutton': 3.6.19(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/visually-hidden': 3.8.28(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/color': 3.9.2(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-types/color': 3.1.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/combobox@3.14.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/listbox': 3.15.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/menu': 3.19.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/overlays': 3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/combobox': 3.12.0(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/combobox': 3.13.9(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/datepicker@3.15.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@internationalized/number': 3.6.5 + '@internationalized/string': 3.2.7 + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/form': 3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/spinbutton': 3.6.19(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/datepicker': 3.15.2(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/calendar': 3.8.0(react@19.2.3) + '@react-types/datepicker': 3.13.2(react@19.2.3) + '@react-types/dialog': 3.5.22(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/dialog@3.5.31(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/overlays': 3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/dialog': 3.5.22(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/disclosure@3.1.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/disclosure': 3.0.8(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/dnd@3.11.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@internationalized/string': 3.2.7 + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/overlays': 3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/dnd': 3.7.1(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/focus@3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + clsx: 2.1.1 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/form@3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/grid@3.14.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/grid': 3.11.6(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-types/checkbox': 3.10.2(react@19.2.3) + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/gridlist@3.14.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/grid': 3.14.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-stately/tree': 3.9.3(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/i18n@3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@internationalized/message': 3.1.8 + '@internationalized/number': 3.6.5 + '@internationalized/string': 3.2.7 + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/interactions@3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/flags': 3.1.2 + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/label@3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/landmark@3.0.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + use-sync-external-store: 1.6.0(react@19.2.3) + + '@react-aria/link@3.8.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/link': 3.6.5(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/listbox@3.15.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-types/listbox': 3.7.4(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/live-announcer@3.4.4': + dependencies: + '@swc/helpers': 0.5.17 + + '@react-aria/menu@3.19.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/overlays': 3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/menu': 3.9.8(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-stately/tree': 3.9.3(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/menu': 3.10.5(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/meter@3.4.27(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/progress': 3.4.27(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/meter': 3.4.13(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/numberfield@3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/spinbutton': 3.6.19(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/numberfield': 3.10.2(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/numberfield': 3.8.15(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/overlays@3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/visually-hidden': 3.8.28(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/overlays': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/progress@3.4.27(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/progress': 3.5.16(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/radio@3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/form': 3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/radio': 3.11.2(react@19.2.3) + '@react-types/radio': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/searchfield@3.8.9(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/searchfield': 3.5.16(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/searchfield': 3.6.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/select@3.17.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/form': 3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/listbox': 3.15.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/menu': 3.19.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/visually-hidden': 3.8.28(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/select': 3.8.0(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/select': 3.11.0(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/selection@3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/separator@3.4.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/slider@3.8.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/slider': 3.7.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/slider': 3.8.2(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/spinbutton@3.6.19(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/ssr@3.9.10(react@19.2.3)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-aria/switch@3.7.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/toggle': 3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/toggle': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/switch': 3.5.15(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/table@3.17.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/grid': 3.14.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/visually-hidden': 3.8.28(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/flags': 3.1.2 + '@react-stately/table': 3.15.1(react@19.2.3) + '@react-types/checkbox': 3.10.2(react@19.2.3) + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/table': 3.13.4(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/tabs@3.10.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/tabs': 3.8.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/tabs': 3.3.19(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/tag@3.7.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/gridlist': 3.14.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/textfield@3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/form': 3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/textfield': 3.12.6(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/toast@3.0.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/landmark': 3.0.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/toast': 3.1.2(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/toggle@3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/toggle': 3.9.2(react@19.2.3) + '@react-types/checkbox': 3.10.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/toolbar@3.0.0-beta.21(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/tooltip@3.8.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/tooltip': 3.5.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/tooltip': 3.4.21(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/tree@3.1.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/gridlist': 3.14.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/tree': 3.9.3(react@19.2.3) + '@react-types/button': 3.14.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/utils@3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-stately/flags': 3.1.2 + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + clsx: 2.1.1 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/virtualizer@4.1.10(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/virtualizer': 4.4.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-aria/visually-hidden@3.8.28(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-spring/animated@10.0.3(react@19.2.3)': + dependencies: + '@react-spring/shared': 10.0.3(react@19.2.3) + '@react-spring/types': 10.0.3 + react: 19.2.3 + + '@react-spring/animated@9.7.5(react@19.2.3)': + dependencies: + '@react-spring/shared': 9.7.5(react@19.2.3) + '@react-spring/types': 9.7.5 + react: 19.2.3 + + '@react-spring/core@10.0.3(react@19.2.3)': + dependencies: + '@react-spring/animated': 10.0.3(react@19.2.3) + '@react-spring/shared': 10.0.3(react@19.2.3) + '@react-spring/types': 10.0.3 + react: 19.2.3 + + '@react-spring/core@9.7.5(react@19.2.3)': + dependencies: + '@react-spring/animated': 9.7.5(react@19.2.3) + '@react-spring/shared': 9.7.5(react@19.2.3) + '@react-spring/types': 9.7.5 + react: 19.2.3 + + '@react-spring/rafz@10.0.3': {} + + '@react-spring/rafz@9.7.5': {} + + '@react-spring/shared@10.0.3(react@19.2.3)': + dependencies: + '@react-spring/rafz': 10.0.3 + '@react-spring/types': 10.0.3 + react: 19.2.3 + + '@react-spring/shared@9.7.5(react@19.2.3)': + dependencies: + '@react-spring/rafz': 9.7.5 + '@react-spring/types': 9.7.5 + react: 19.2.3 + + '@react-spring/types@10.0.3': {} + + '@react-spring/types@9.7.5': {} + + '@react-spring/web@10.0.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-spring/animated': 10.0.3(react@19.2.3) + '@react-spring/core': 10.0.3(react@19.2.3) + '@react-spring/shared': 10.0.3(react@19.2.3) + '@react-spring/types': 10.0.3 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-spring/web@9.7.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-spring/animated': 9.7.5(react@19.2.3) + '@react-spring/core': 9.7.5(react@19.2.3) + '@react-spring/shared': 9.7.5(react@19.2.3) + '@react-spring/types': 9.7.5 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-stately/autocomplete@3.0.0-beta.3(react@19.2.3)': + dependencies: + '@react-stately/utils': 3.10.8(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/calendar@3.9.0(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/calendar': 3.8.0(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/checkbox@3.7.2(react@19.2.3)': + dependencies: + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/checkbox': 3.10.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/collections@3.12.8(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/color@3.9.2(react@19.2.3)': + dependencies: + '@internationalized/number': 3.6.5 + '@internationalized/string': 3.2.7 + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/numberfield': 3.10.2(react@19.2.3) + '@react-stately/slider': 3.7.2(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/color': 3.1.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/combobox@3.12.0(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/combobox': 3.13.9(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/data@3.14.1(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/datepicker@3.15.2(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@internationalized/string': 3.2.7 + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/datepicker': 3.13.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/disclosure@3.0.8(react@19.2.3)': + dependencies: + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/dnd@3.7.1(react@19.2.3)': + dependencies: + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/flags@3.1.2': + dependencies: + '@swc/helpers': 0.5.17 + + '@react-stately/form@3.2.2(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/grid@3.11.6(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/layout@4.5.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/table': 3.15.1(react@19.2.3) + '@react-stately/virtualizer': 4.4.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/table': 3.13.4(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-stately/list@3.13.1(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/menu@3.9.8(react@19.2.3)': + dependencies: + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-types/menu': 3.10.5(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/numberfield@3.10.2(react@19.2.3)': + dependencies: + '@internationalized/number': 3.6.5 + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/numberfield': 3.8.15(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/overlays@3.6.20(react@19.2.3)': + dependencies: + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/overlays': 3.9.2(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/radio@3.11.2(react@19.2.3)': + dependencies: + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/radio': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/searchfield@3.5.16(react@19.2.3)': + dependencies: + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/searchfield': 3.6.6(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/select@3.8.0(react@19.2.3)': + dependencies: + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/select': 3.11.0(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/selection@3.20.6(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/slider@3.7.2(react@19.2.3)': + dependencies: + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/slider': 3.8.2(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/table@3.15.1(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/flags': 3.1.2 + '@react-stately/grid': 3.11.6(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/table': 3.13.4(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/tabs@3.8.6(react@19.2.3)': + dependencies: + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/tabs': 3.3.19(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/toast@3.1.2(react@19.2.3)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.2.3 + use-sync-external-store: 1.6.0(react@19.2.3) + + '@react-stately/toggle@3.9.2(react@19.2.3)': + dependencies: + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/checkbox': 3.10.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/tooltip@3.5.8(react@19.2.3)': + dependencies: + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-types/tooltip': 3.4.21(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/tree@3.9.3(react@19.2.3)': + dependencies: + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/utils@3.10.8(react@19.2.3)': + dependencies: + '@swc/helpers': 0.5.17 + react: 19.2.3 + + '@react-stately/virtualizer@4.4.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + '@swc/helpers': 0.5.17 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + '@react-types/autocomplete@3.0.0-alpha.35(react@19.2.3)': + dependencies: + '@react-types/combobox': 3.13.9(react@19.2.3) + '@react-types/searchfield': 3.6.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/breadcrumbs@3.7.17(react@19.2.3)': + dependencies: + '@react-types/link': 3.6.5(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/button@3.14.1(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/calendar@3.8.0(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/checkbox@3.10.2(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/color@3.1.2(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/slider': 3.8.2(react@19.2.3) + react: 19.2.3 + + '@react-types/combobox@3.13.9(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/datepicker@3.13.2(react@19.2.3)': + dependencies: + '@internationalized/date': 3.10.0 + '@react-types/calendar': 3.8.0(react@19.2.3) + '@react-types/overlays': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/dialog@3.5.22(react@19.2.3)': + dependencies: + '@react-types/overlays': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/form@3.7.16(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/grid@3.3.6(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/link@3.6.5(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/listbox@3.7.4(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/menu@3.10.5(react@19.2.3)': + dependencies: + '@react-types/overlays': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/meter@3.4.13(react@19.2.3)': + dependencies: + '@react-types/progress': 3.5.16(react@19.2.3) + react: 19.2.3 + + '@react-types/numberfield@3.8.15(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/overlays@3.9.2(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/progress@3.5.16(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/radio@3.9.2(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/searchfield@3.6.6(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/textfield': 3.12.6(react@19.2.3) + react: 19.2.3 + + '@react-types/select@3.11.0(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/shared@3.32.1(react@19.2.3)': + dependencies: + react: 19.2.3 + + '@react-types/slider@3.8.2(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/switch@3.5.15(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/table@3.13.4(react@19.2.3)': + dependencies: + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/tabs@3.3.19(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/textfield@3.12.6(react@19.2.3)': + dependencies: + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@react-types/tooltip@3.4.21(react@19.2.3)': + dependencies: + '@react-types/overlays': 3.9.2(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + '@redis/bloom@1.2.0(@redis/client@1.6.1)': + dependencies: + '@redis/client': 1.6.1 + + '@redis/client@1.6.1': + dependencies: + cluster-key-slot: 1.1.2 + generic-pool: 3.9.0 + yallist: 4.0.0 + + '@redis/graph@1.1.1(@redis/client@1.6.1)': + dependencies: + '@redis/client': 1.6.1 + + '@redis/json@1.0.7(@redis/client@1.6.1)': + dependencies: + '@redis/client': 1.6.1 + + '@redis/search@1.2.0(@redis/client@1.6.1)': + dependencies: + '@redis/client': 1.6.1 + + '@redis/time-series@1.1.0(@redis/client@1.6.1)': + dependencies: + '@redis/client': 1.6.1 + + '@rollup/plugin-alias@5.1.1(rollup@4.53.3)': + optionalDependencies: + rollup: 4.53.3 + + '@rollup/plugin-commonjs@25.0.8(rollup@4.53.3)': + dependencies: + '@rollup/pluginutils': 5.2.0(rollup@4.53.3) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 8.1.0 + is-reference: 1.2.1 + magic-string: 0.30.17 + optionalDependencies: + rollup: 4.53.3 + + '@rollup/plugin-json@6.1.0(rollup@4.53.3)': + dependencies: + '@rollup/pluginutils': 5.2.0(rollup@4.53.3) + optionalDependencies: + rollup: 4.53.3 + + '@rollup/plugin-node-resolve@15.3.1(rollup@4.53.3)': + dependencies: + '@rollup/pluginutils': 5.2.0(rollup@4.53.3) + '@types/resolve': 1.20.2 + deepmerge: 4.3.1 + is-module: 1.0.0 + resolve: 1.22.10 + optionalDependencies: + rollup: 4.53.3 + + '@rollup/plugin-replace@5.0.7(rollup@4.53.3)': + dependencies: + '@rollup/pluginutils': 5.2.0(rollup@4.53.3) + magic-string: 0.30.17 + optionalDependencies: + rollup: 4.53.3 + + '@rollup/plugin-terser@0.4.4(rollup@4.53.3)': + dependencies: + serialize-javascript: 6.0.2 + smob: 1.5.0 + terser: 5.43.1 + optionalDependencies: + rollup: 4.53.3 + + '@rollup/plugin-typescript@12.3.0(rollup@4.53.3)(tslib@2.8.1)(typescript@5.9.3)': + dependencies: + '@rollup/pluginutils': 5.2.0(rollup@4.53.3) + resolve: 1.22.10 + typescript: 5.9.3 + optionalDependencies: + rollup: 4.53.3 + tslib: 2.8.1 + + '@rollup/pluginutils@5.2.0(rollup@4.53.3)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.3 + optionalDependencies: + rollup: 4.53.3 + + '@rollup/rollup-android-arm-eabi@4.53.3': + optional: true + + '@rollup/rollup-android-arm64@4.53.3': + optional: true + + '@rollup/rollup-darwin-arm64@4.53.3': + optional: true + + '@rollup/rollup-darwin-x64@4.53.3': + optional: true + + '@rollup/rollup-freebsd-arm64@4.53.3': + optional: true + + '@rollup/rollup-freebsd-x64@4.53.3': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.53.3': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.53.3': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-x64-musl@4.53.3': + optional: true + + '@rollup/rollup-openharmony-arm64@4.53.3': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.53.3': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.53.3': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.53.3': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.53.3': + optional: true + + '@sinclair/typebox@0.27.8': {} + + '@sinclair/typebox@0.34.40': {} + + '@sindresorhus/merge-streams@2.3.0': {} + + '@sinonjs/commons@3.0.1': + dependencies: + type-detect: 4.0.8 + + '@sinonjs/fake-timers@10.3.0': + dependencies: + '@sinonjs/commons': 3.0.1 + + '@standard-schema/spec@1.0.0': {} + + '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + + '@svgr/babel-preset@8.1.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.28.3) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.28.3) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.28.3) + '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.28.3) + '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.28.3) + '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.28.3) + '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.3) + '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.3) + + '@svgr/cli@8.1.0(typescript@5.9.3)': + dependencies: + '@svgr/core': 8.1.0(typescript@5.9.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3)) + '@svgr/plugin-prettier': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3) + camelcase: 6.3.0 + chalk: 4.1.2 + commander: 9.5.0 + dashify: 2.0.0 + glob: 8.1.0 + snake-case: 3.0.4 + transitivePeerDependencies: + - supports-color + - typescript + + '@svgr/core@8.1.0(typescript@5.9.3)': + dependencies: + '@babel/core': 7.28.3 + '@svgr/babel-preset': 8.1.0(@babel/core@7.28.3) + camelcase: 6.3.0 + cosmiconfig: 8.3.6(typescript@5.9.3) + snake-case: 3.0.4 + transitivePeerDependencies: + - supports-color + - typescript + + '@svgr/hast-util-to-babel-ast@8.0.0': + dependencies: + '@babel/types': 7.28.2 + entities: 4.5.0 + + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))': + dependencies: + '@babel/core': 7.28.3 + '@svgr/babel-preset': 8.1.0(@babel/core@7.28.3) + '@svgr/core': 8.1.0(typescript@5.9.3) + '@svgr/hast-util-to-babel-ast': 8.0.0 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + + '@svgr/plugin-prettier@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))': + dependencies: + '@svgr/core': 8.1.0(typescript@5.9.3) + deepmerge: 4.3.1 + prettier: 2.8.8 + + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3)': + dependencies: + '@svgr/core': 8.1.0(typescript@5.9.3) + cosmiconfig: 8.3.6(typescript@5.9.3) + deepmerge: 4.3.1 + svgo: 3.3.2 + transitivePeerDependencies: + - typescript + + '@swc/helpers@0.5.15': + dependencies: + tslib: 2.8.1 + + '@swc/helpers@0.5.17': + dependencies: + tslib: 2.8.1 + + '@tanstack/query-core@5.90.11': {} + + '@tanstack/react-query@5.90.11(react@19.2.3)': + dependencies: + '@tanstack/query-core': 5.90.11 + react: 19.2.3 + + '@trysound/sax@0.2.0': {} + + '@tsconfig/node10@1.0.11': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.28.0 + + '@types/babel__generator@7.27.0': + dependencies: + '@babel/types': 7.28.2 + + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + + '@types/babel__traverse@7.28.0': + dependencies: + '@babel/types': 7.28.2 + + '@types/estree@0.0.50': {} + + '@types/estree@1.0.8': {} + + '@types/fs-extra@8.1.5': + dependencies: + '@types/node': 24.10.1 + + '@types/fs-extra@9.0.13': + dependencies: + '@types/node': 24.10.1 + + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 6.0.0 + '@types/node': 24.10.1 + + '@types/graceful-fs@4.1.9': + dependencies: + '@types/node': 24.10.1 + + '@types/hoist-non-react-statics@3.3.7(@types/react@19.2.7)': + dependencies: + '@types/react': 19.2.7 + hoist-non-react-statics: 3.3.2 + + '@types/istanbul-lib-coverage@2.0.6': {} + + '@types/istanbul-lib-report@3.0.3': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + + '@types/istanbul-reports@3.0.4': + dependencies: + '@types/istanbul-lib-report': 3.0.3 + + '@types/jest@30.0.0': + dependencies: + expect: 30.1.1 + pretty-format: 30.0.5 + + '@types/json-schema@7.0.15': {} + + '@types/json-stable-stringify@1.2.0': + dependencies: + json-stable-stringify: 1.3.0 + + '@types/minimatch@6.0.0': + dependencies: + minimatch: 10.0.3 + + '@types/minimist@1.2.5': {} + + '@types/node@14.18.63': {} + + '@types/node@24.10.1': + dependencies: + undici-types: 7.16.0 + + '@types/normalize-package-data@2.4.4': {} + + '@types/react-dom@19.2.3(@types/react@19.2.7)': + dependencies: + '@types/react': 19.2.7 + + '@types/react-window@1.8.8': + dependencies: + '@types/react': 19.2.7 + + '@types/react@19.2.7': + dependencies: + csstype: 3.2.3 + + '@types/resolve@1.20.2': {} + + '@types/schema-utils@2.4.0': + dependencies: + schema-utils: 2.7.1 + + '@types/sinonjs__fake-timers@8.1.1': {} + + '@types/sizzle@2.3.9': {} + + '@types/stack-utils@2.0.3': {} + + '@types/use-sync-external-store@0.0.6': {} + + '@types/yargs-parser@21.0.3': {} + + '@types/yargs@17.0.33': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@types/yauzl@2.10.3': + dependencies: + '@types/node': 24.10.1 + optional: true + + '@umami/react-zen@0.211.0(@babel/core@7.28.3)(@types/react@19.2.7)(babel-plugin-react-compiler@19.1.0-rc.2)(immer@10.2.0)(use-sync-external-store@1.6.0(react@19.2.3))': + dependencies: + '@fontsource/jetbrains-mono': 5.2.8 + '@internationalized/date': 3.10.0 + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-spring/web': 9.7.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + classnames: 2.5.1 + glob: 13.0.0 + highlight.js: 11.11.1 + lucide-react: 0.555.0(react@19.2.3) + next: 16.0.10(@babel/core@7.28.3)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + react: 19.2.3 + react-aria-components: 1.13.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + react-dom: 19.2.3(react@19.2.3) + react-hook-form: 7.67.0(react@19.2.3) + react-icons: 5.5.0(react@19.2.3) + thenby: 1.3.4 + zustand: 5.0.9(@types/react@19.2.7)(immer@10.2.0)(react@19.2.3)(use-sync-external-store@1.6.0(react@19.2.3)) + transitivePeerDependencies: + - '@babel/core' + - '@opentelemetry/api' + - '@playwright/test' + - '@types/react' + - babel-plugin-macros + - babel-plugin-react-compiler + - immer + - sass + - use-sync-external-store + + '@umami/redis-client@0.29.0': + dependencies: + debug: 4.4.3(supports-color@8.1.1) + redis: 4.7.1 + transitivePeerDependencies: + - supports-color + + '@vue/compiler-core@3.5.18': + dependencies: + '@babel/parser': 7.28.3 + '@vue/shared': 3.5.18 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.18': + dependencies: + '@vue/compiler-core': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-sfc@3.5.18': + dependencies: + '@babel/parser': 7.28.3 + '@vue/compiler-core': 3.5.18 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + estree-walker: 2.0.2 + magic-string: 0.30.21 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.18': + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/reactivity@3.5.18': + dependencies: + '@vue/shared': 3.5.18 + + '@vue/runtime-core@3.5.18': + dependencies: + '@vue/reactivity': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/runtime-dom@3.5.18': + dependencies: + '@vue/reactivity': 3.5.18 + '@vue/runtime-core': 3.5.18 + '@vue/shared': 3.5.18 + csstype: 3.2.3 + + '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.3))': + dependencies: + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + vue: 3.5.18(typescript@4.9.5) + + '@vue/shared@3.5.18': {} + + acorn-walk@8.3.4: + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + + ajv-keywords@3.5.2(ajv@6.12.6): + dependencies: + ajv: 6.12.6 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.6 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-colors@4.1.3: {} + + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + + ansi-escapes@7.1.1: + dependencies: + environment: 1.1.0 + + ansi-regex@5.0.1: {} + + ansi-regex@6.2.2: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@5.2.0: {} + + ansi-styles@6.2.3: {} + + any-promise@1.3.0: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + arch@2.2.0: {} + + arg@4.1.3: {} + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + argparse@2.0.1: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-find-index@1.0.2: {} + + array-union@2.1.0: {} + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + arrify@1.0.1: {} + + asn1@0.2.6: + dependencies: + safer-buffer: 2.1.2 + + assert-plus@1.0.0: {} + + astral-regex@2.0.0: {} + + async-function@1.0.0: {} + + async@3.2.6: {} + + asynckit@0.4.0: {} + + at-least-node@1.0.0: {} + + autoprefixer@10.4.21(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + caniuse-lite: 1.0.30001735 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + aws-sign2@0.7.0: {} + + aws4@1.13.2: {} + + babel-jest@29.7.0(@babel/core@7.28.3): + dependencies: + '@babel/core': 7.28.3 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.28.3) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-istanbul@6.1.1: + dependencies: + '@babel/helper-plugin-utils': 7.27.1 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-jest-hoist@29.6.3: + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.28.0 + + babel-plugin-react-compiler@19.1.0-rc.2: + dependencies: + '@babel/types': 7.28.2 + + babel-plugin-react-intl@7.9.4(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)): + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/types': 7.28.2 + '@formatjs/ts-transformer': 2.13.0(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)) + '@types/babel__core': 7.20.5 + '@types/fs-extra': 9.0.13 + '@types/schema-utils': 2.4.0 + fs-extra: 9.1.0 + intl-messageformat-parser: 5.5.1 + schema-utils: 2.7.1 + transitivePeerDependencies: + - supports-color + - ts-jest + + babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.3): + dependencies: + '@babel/core': 7.28.3 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.3) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.3) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.3) + + babel-preset-jest@29.6.3(@babel/core@7.28.3): + dependencies: + '@babel/core': 7.28.3 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.3) + + balanced-match@1.0.2: {} + + balanced-match@2.0.0: {} + + base64-js@1.5.1: {} + + bcrypt-pbkdf@1.0.2: + dependencies: + tweetnacl: 0.14.5 + + bcryptjs@3.0.3: {} + + blob-util@2.0.2: {} + + bluebird@3.7.2: {} + + boolbase@1.0.0: {} + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.2: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.25.2: + dependencies: + caniuse-lite: 1.0.30001735 + electron-to-chromium: 1.5.202 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.2) + + bs-logger@0.2.6: + dependencies: + fast-json-stable-stringify: 2.1.0 + + bser@2.1.1: + dependencies: + node-int64: 0.4.0 + + buffer-crc32@0.2.13: {} + + buffer-equal-constant-time@1.0.1: {} + + buffer-from@1.1.2: {} + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + bundle-require@5.1.0(esbuild@0.27.0): + dependencies: + esbuild: 0.27.0 + load-tsconfig: 0.2.5 + + c12@3.1.0: + dependencies: + chokidar: 4.0.3 + confbox: 0.2.2 + defu: 6.1.4 + dotenv: 16.6.1 + exsolve: 1.0.8 + giget: 2.0.0 + jiti: 2.6.1 + ohash: 2.0.11 + pathe: 2.0.3 + perfect-debounce: 1.0.0 + pkg-types: 2.3.0 + rc9: 2.1.2 + + cac@6.7.14: {} + + cachedir@2.4.0: {} + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + callsites@3.1.0: {} + + camelcase-keys@6.2.2: + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + + camelcase-keys@7.0.2: + dependencies: + camelcase: 6.3.0 + map-obj: 4.3.0 + quick-lru: 5.1.1 + type-fest: 1.4.0 + + camelcase@5.3.1: {} + + camelcase@6.3.0: {} + + caniuse-api@3.0.0: + dependencies: + browserslist: 4.25.2 + caniuse-lite: 1.0.30001741 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 + + caniuse-lite@1.0.30001735: {} + + caniuse-lite@1.0.30001741: {} + + caniuse-lite@1.0.30001759: {} + + caseless@0.12.0: {} + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.6.2: {} + + char-regex@1.0.2: {} + + chart.js@4.5.1: + dependencies: + '@kurkle/color': 0.3.4 + + chartjs-adapter-date-fns@3.0.0(chart.js@4.5.1)(date-fns@2.30.0): + dependencies: + chart.js: 4.5.1 + date-fns: 2.30.0 + + check-more-types@2.24.0: {} + + chokidar@4.0.3: + dependencies: + readdirp: 4.1.2 + + chownr@2.0.0: {} + + ci-info@3.9.0: {} + + ci-info@4.3.0: {} + + citty@0.1.6: + dependencies: + consola: 3.4.2 + + cjs-module-lexer@1.4.3: {} + + classnames@2.5.1: {} + + clean-stack@2.2.0: {} + + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-cursor@5.0.0: + dependencies: + restore-cursor: 5.1.0 + + cli-table3@0.6.5: + dependencies: + string-width: 4.2.3 + optionalDependencies: + '@colors/colors': 1.5.0 + + cli-truncate@2.1.0: + dependencies: + slice-ansi: 3.0.0 + string-width: 4.2.3 + + cli-truncate@5.1.1: + dependencies: + slice-ansi: 7.1.2 + string-width: 8.1.0 + + client-only@0.0.1: {} + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + clsx@2.1.1: {} + + cluster-key-slot@1.1.2: {} + + co@4.6.0: {} + + collect-v8-coverage@1.0.2: {} + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + optional: true + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + optional: true + + colord@2.9.3: {} + + colorette@1.4.0: {} + + colorette@2.0.20: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + commander@14.0.2: {} + + commander@2.20.3: {} + + commander@4.1.1: {} + + commander@6.2.1: {} + + commander@7.2.0: {} + + commander@8.3.0: {} + + commander@9.5.0: {} + + common-tags@1.8.2: {} + + commondir@1.0.1: {} + + concat-map@0.0.1: {} + + concat-with-sourcemaps@1.1.0: + dependencies: + source-map: 0.6.1 + + confbox@0.1.8: {} + + confbox@0.2.2: {} + + consola@3.4.2: {} + + convert-source-map@2.0.0: {} + + core-util-is@1.0.2: {} + + core-util-is@1.0.3: {} + + cors@2.8.5: + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + + cosmiconfig@8.3.6(typescript@5.9.3): + dependencies: + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + optionalDependencies: + typescript: 5.9.3 + + create-jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + create-require@1.1.1: {} + + cross-env@10.1.0: + dependencies: + '@epic-web/invariant': 1.0.0 + cross-spawn: 7.0.6 + + cross-spawn@6.0.6: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + css-blank-pseudo@3.0.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + css-box-model@1.2.1: + dependencies: + tiny-invariant: 1.3.3 + + css-declaration-sorter@6.4.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + css-functions-list@3.2.3: {} + + css-has-pseudo@3.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + css-prefers-color-scheme@6.0.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + css-select@4.3.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + css-select@5.2.2: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-tree@2.2.1: + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.2.1 + + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.1 + + css-tree@3.1.0: + dependencies: + mdn-data: 2.12.2 + source-map-js: 1.2.1 + optional: true + + css-what@6.2.2: {} + + cssdb@7.11.2: {} + + cssesc@3.0.0: {} + + cssnano-preset-default@5.2.14(postcss@8.5.6): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.5.6) + cssnano-utils: 3.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-calc: 8.2.4(postcss@8.5.6) + postcss-colormin: 5.3.1(postcss@8.5.6) + postcss-convert-values: 5.1.3(postcss@8.5.6) + postcss-discard-comments: 5.1.2(postcss@8.5.6) + postcss-discard-duplicates: 5.1.0(postcss@8.5.6) + postcss-discard-empty: 5.1.1(postcss@8.5.6) + postcss-discard-overridden: 5.1.0(postcss@8.5.6) + postcss-merge-longhand: 5.1.7(postcss@8.5.6) + postcss-merge-rules: 5.1.4(postcss@8.5.6) + postcss-minify-font-values: 5.1.0(postcss@8.5.6) + postcss-minify-gradients: 5.1.1(postcss@8.5.6) + postcss-minify-params: 5.1.4(postcss@8.5.6) + postcss-minify-selectors: 5.2.1(postcss@8.5.6) + postcss-normalize-charset: 5.1.0(postcss@8.5.6) + postcss-normalize-display-values: 5.1.0(postcss@8.5.6) + postcss-normalize-positions: 5.1.1(postcss@8.5.6) + postcss-normalize-repeat-style: 5.1.1(postcss@8.5.6) + postcss-normalize-string: 5.1.0(postcss@8.5.6) + postcss-normalize-timing-functions: 5.1.0(postcss@8.5.6) + postcss-normalize-unicode: 5.1.1(postcss@8.5.6) + postcss-normalize-url: 5.1.0(postcss@8.5.6) + postcss-normalize-whitespace: 5.1.1(postcss@8.5.6) + postcss-ordered-values: 5.1.3(postcss@8.5.6) + postcss-reduce-initial: 5.1.2(postcss@8.5.6) + postcss-reduce-transforms: 5.1.0(postcss@8.5.6) + postcss-svgo: 5.1.0(postcss@8.5.6) + postcss-unique-selectors: 5.1.1(postcss@8.5.6) + + cssnano-utils@3.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + cssnano@5.1.15(postcss@8.5.6): + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.5.6) + lilconfig: 2.1.0 + postcss: 8.5.6 + yaml: 1.10.2 + + csso@4.2.0: + dependencies: + css-tree: 1.1.3 + + csso@5.0.5: + dependencies: + css-tree: 2.2.1 + + csstype@3.2.3: {} + + currently-unhandled@0.4.1: + dependencies: + array-find-index: 1.0.2 + + cypress@13.17.0: + dependencies: + '@cypress/request': 3.0.9 + '@cypress/xvfb': 1.2.4(supports-color@8.1.1) + '@types/sinonjs__fake-timers': 8.1.1 + '@types/sizzle': 2.3.9 + arch: 2.2.0 + blob-util: 2.0.2 + bluebird: 3.7.2 + buffer: 5.7.1 + cachedir: 2.4.0 + chalk: 4.1.2 + check-more-types: 2.24.0 + ci-info: 4.3.0 + cli-cursor: 3.1.0 + cli-table3: 0.6.5 + commander: 6.2.1 + common-tags: 1.8.2 + dayjs: 1.11.13 + debug: 4.4.3(supports-color@8.1.1) + enquirer: 2.4.1 + eventemitter2: 6.4.7 + execa: 4.1.0 + executable: 4.1.1 + extract-zip: 2.0.1(supports-color@8.1.1) + figures: 3.2.0 + fs-extra: 9.1.0 + getos: 3.2.1 + is-installed-globally: 0.4.0 + lazy-ass: 1.6.0 + listr2: 3.14.0(enquirer@2.4.1) + lodash: 4.17.21 + log-symbols: 4.1.0 + minimist: 1.2.8 + ospath: 1.2.2 + pretty-bytes: 5.6.0 + process: 0.11.10 + proxy-from-env: 1.0.0 + request-progress: 3.0.0 + semver: 7.7.3 + supports-color: 8.1.1 + tmp: 0.2.5 + tree-kill: 1.2.2 + untildify: 4.0.0 + yauzl: 2.10.0 + + d3-array@2.12.1: + dependencies: + internmap: 1.0.1 + + d3-color@2.0.0: {} + + d3-dispatch@2.0.0: {} + + d3-drag@2.0.0: + dependencies: + d3-dispatch: 2.0.0 + d3-selection: 2.0.0 + + d3-ease@2.0.0: {} + + d3-geo@2.0.2: + dependencies: + d3-array: 2.12.1 + + d3-interpolate@2.0.1: + dependencies: + d3-color: 2.0.0 + + d3-selection@2.0.0: {} + + d3-timer@2.0.0: {} + + d3-transition@2.0.0(d3-selection@2.0.0): + dependencies: + d3-color: 2.0.0 + d3-dispatch: 2.0.0 + d3-ease: 2.0.0 + d3-interpolate: 2.0.1 + d3-selection: 2.0.0 + d3-timer: 2.0.0 + + d3-zoom@2.0.0: + dependencies: + d3-dispatch: 2.0.0 + d3-drag: 2.0.0 + d3-interpolate: 2.0.1 + d3-selection: 2.0.0 + d3-transition: 2.0.0(d3-selection@2.0.0) + + dashdash@1.14.1: + dependencies: + assert-plus: 1.0.0 + + dashify@2.0.0: {} + + data-uri-to-buffer@4.0.1: {} + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + date-fns-tz@1.3.8(date-fns@2.30.0): + dependencies: + date-fns: 2.30.0 + + date-fns@2.30.0: + dependencies: + '@babel/runtime': 7.28.3 + + dayjs@1.11.13: {} + + debug@3.2.7(supports-color@8.1.1): + dependencies: + ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 + + debug@4.4.3(supports-color@8.1.1): + dependencies: + ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 + + decamelize-keys@1.1.1: + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + + decamelize@1.2.0: {} + + decamelize@5.0.1: {} + + decimal.js@10.6.0: {} + + dedent@1.6.0: {} + + deepmerge-ts@7.1.5: {} + + deepmerge@4.3.1: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + defu@6.1.4: {} + + del@6.1.1: + dependencies: + globby: 11.1.0 + graceful-fs: 4.2.11 + is-glob: 4.0.3 + is-path-cwd: 2.2.0 + is-path-inside: 3.0.3 + p-map: 4.0.0 + rimraf: 3.0.2 + slash: 3.0.0 + + del@8.0.0: + dependencies: + globby: 14.1.0 + is-glob: 4.0.3 + is-path-cwd: 3.0.0 + is-path-inside: 4.0.0 + p-map: 7.0.3 + slash: 5.1.0 + + delayed-stream@1.0.0: {} + + destr@2.0.5: {} + + detect-browser@5.3.0: {} + + detect-europe-js@0.1.2: {} + + detect-indent@6.1.0: {} + + detect-libc@2.0.4: + optional: true + + detect-libc@2.1.2: + optional: true + + detect-newline@3.1.0: {} + + diff-sequences@29.6.3: {} + + diff@4.0.2: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dom-serializer@1.4.1: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + + domelementtype@2.3.0: {} + + domhandler@4.3.1: + dependencies: + domelementtype: 2.3.0 + + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + domutils@2.8.0: + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + + dot-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.8.1 + + dotenv@16.6.1: {} + + dotenv@17.2.3: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + eastasianwidth@0.2.0: {} + + ecc-jsbn@0.1.2: + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + + ecdsa-sig-formatter@1.0.11: + dependencies: + safe-buffer: 5.2.1 + + effect@3.18.4: + dependencies: + '@standard-schema/spec': 1.0.0 + fast-check: 3.23.2 + + electron-to-chromium@1.5.202: {} + + emittery@0.13.1: {} + + emoji-regex@10.6.0: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + empathic@2.0.0: {} + + end-of-stream@1.4.5: + dependencies: + once: 1.4.0 + + enquirer@2.4.1: + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + + entities@2.2.0: {} + + entities@4.5.0: {} + + environment@1.1.0: {} + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + esbuild@0.25.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 + + esbuild@0.27.0: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.0 + '@esbuild/android-arm': 0.27.0 + '@esbuild/android-arm64': 0.27.0 + '@esbuild/android-x64': 0.27.0 + '@esbuild/darwin-arm64': 0.27.0 + '@esbuild/darwin-x64': 0.27.0 + '@esbuild/freebsd-arm64': 0.27.0 + '@esbuild/freebsd-x64': 0.27.0 + '@esbuild/linux-arm': 0.27.0 + '@esbuild/linux-arm64': 0.27.0 + '@esbuild/linux-ia32': 0.27.0 + '@esbuild/linux-loong64': 0.27.0 + '@esbuild/linux-mips64el': 0.27.0 + '@esbuild/linux-ppc64': 0.27.0 + '@esbuild/linux-riscv64': 0.27.0 + '@esbuild/linux-s390x': 0.27.0 + '@esbuild/linux-x64': 0.27.0 + '@esbuild/netbsd-arm64': 0.27.0 + '@esbuild/netbsd-x64': 0.27.0 + '@esbuild/openbsd-arm64': 0.27.0 + '@esbuild/openbsd-x64': 0.27.0 + '@esbuild/openharmony-arm64': 0.27.0 + '@esbuild/sunos-x64': 0.27.0 + '@esbuild/win32-arm64': 0.27.0 + '@esbuild/win32-ia32': 0.27.0 + '@esbuild/win32-x64': 0.27.0 + + escalade@3.2.0: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@2.0.0: {} + + esprima@4.0.1: {} + + estree-walker@0.6.1: {} + + estree-walker@2.0.2: {} + + eventemitter2@6.4.7: {} + + eventemitter3@4.0.7: {} + + eventemitter3@5.0.1: {} + + execa@4.1.0: + dependencies: + cross-spawn: 7.0.6 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + executable@4.1.1: + dependencies: + pify: 2.3.0 + + exit@0.1.2: {} + + expect@29.7.0: + dependencies: + '@jest/expect-utils': 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + + expect@30.1.1: + dependencies: + '@jest/expect-utils': 30.1.1 + '@jest/get-type': 30.1.0 + jest-matcher-utils: 30.1.1 + jest-message-util: 30.1.0 + jest-mock: 30.0.5 + jest-util: 30.0.5 + + exsolve@1.0.8: {} + + extend@3.0.2: {} + + extract-react-intl-messages@4.1.1(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)): + dependencies: + '@babel/core': 7.28.3 + babel-plugin-react-intl: 7.9.4(ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)) + flat: 5.0.2 + glob: 7.2.3 + js-yaml: 3.14.1 + load-json-file: 6.2.0 + lodash.merge: 4.6.2 + lodash.mergewith: 4.6.2 + lodash.pick: 4.4.0 + meow: 6.1.1 + mkdirp: 1.0.4 + pify: 5.0.0 + read-babelrc-up: 1.1.0 + sort-keys: 4.2.0 + write-json-file: 4.3.0 + transitivePeerDependencies: + - supports-color + - ts-jest + + extract-zip@2.0.1(supports-color@8.1.1): + dependencies: + debug: 4.4.3(supports-color@8.1.1) + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + '@types/yauzl': 2.10.3 + transitivePeerDependencies: + - supports-color + + extsprintf@1.3.0: {} + + fast-check@3.23.2: + dependencies: + pure-rand: 6.1.0 + + fast-deep-equal@3.1.3: {} + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-uri@3.0.6: {} + + fastest-levenshtein@1.0.16: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fb-watchman@2.0.2: + dependencies: + bser: 2.1.1 + + fd-slicer@1.1.0: + dependencies: + pend: 1.2.0 + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + fetch-blob@3.2.0: + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.3 + + figures@3.2.0: + dependencies: + escape-string-regexp: 1.0.5 + + file-entry-cache@7.0.2: + dependencies: + flat-cache: 3.2.0 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + fix-dts-default-cjs-exports@1.0.1: + dependencies: + magic-string: 0.30.21 + mlly: 1.8.0 + rollup: 4.53.3 + + flat-cache@3.2.0: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + rimraf: 3.0.2 + + flat@5.0.2: {} + + flatted@3.3.3: {} + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + foreground-child@3.3.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + forever-agent@0.6.1: {} + + form-data@4.0.4: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + + formdata-polyfill@4.0.10: + dependencies: + fetch-blob: 3.2.0 + + fraction.js@4.3.7: {} + + fs-extra@10.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.2.0 + universalify: 2.0.1 + + fs-extra@11.3.2: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.2.0 + universalify: 2.0.1 + + fs-extra@8.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-extra@9.1.0: + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.2.0 + universalify: 2.0.1 + + fs-minipass@2.1.0: + dependencies: + minipass: 3.3.6 + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + generic-names@4.0.0: + dependencies: + loader-utils: 3.3.1 + + generic-pool@3.9.0: {} + + gensync@1.0.0-beta.2: {} + + get-caller-file@2.0.5: {} + + get-east-asian-width@1.4.0: {} + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-package-type@0.1.0: {} + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-stream@5.2.0: + dependencies: + pump: 3.0.3 + + get-stream@6.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + get-tsconfig@4.13.0: + dependencies: + resolve-pkg-maps: 1.0.0 + + getos@3.2.1: + dependencies: + async: 3.2.6 + + getpass@0.1.7: + dependencies: + assert-plus: 1.0.0 + + giget@2.0.0: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + defu: 6.1.4 + node-fetch-native: 1.6.7 + nypm: 0.6.2 + pathe: 2.0.3 + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob@10.5.0: + dependencies: + foreground-child: 3.3.1 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@13.0.0: + dependencies: + minimatch: 10.1.1 + minipass: 7.1.2 + path-scurry: 2.0.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + glob@8.1.0: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + + global-dirs@3.0.1: + dependencies: + ini: 2.0.0 + + global-modules@2.0.0: + dependencies: + global-prefix: 3.0.0 + + global-prefix@3.0.0: + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globby@10.0.1: + dependencies: + '@types/glob': 7.2.0 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + glob: 7.2.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + globby@14.1.0: + dependencies: + '@sindresorhus/merge-streams': 2.3.0 + fast-glob: 3.3.3 + ignore: 7.0.5 + path-type: 6.0.0 + slash: 5.1.0 + unicorn-magic: 0.3.0 + + globjoin@0.1.4: {} + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + handlebars@4.7.8: + dependencies: + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.19.3 + + hard-rejection@2.1.0: {} + + has-bigints@1.1.0: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + highlight.js@11.11.1: {} + + hoist-non-react-statics@3.3.2: + dependencies: + react-is: 16.13.1 + + hosted-git-info@2.8.9: {} + + hosted-git-info@4.1.0: + dependencies: + lru-cache: 6.0.0 + + html-escaper@2.0.2: {} + + html-tags@3.3.1: {} + + http-signature@1.4.0: + dependencies: + assert-plus: 1.0.0 + jsprim: 2.0.2 + sshpk: 1.18.0 + + human-signals@1.1.1: {} + + human-signals@2.1.0: {} + + husky@9.1.7: {} + + icss-replace-symbols@1.1.0: {} + + icss-utils@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + immediate@3.0.6: {} + + immer@10.2.0: {} + + import-cwd@3.0.0: + dependencies: + import-from: 3.0.0 + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + import-from@3.0.0: + dependencies: + resolve-from: 5.0.0 + + import-lazy@4.0.0: {} + + import-local@3.2.0: + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + indent-string@5.0.0: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ini@1.3.8: {} + + ini@2.0.0: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + internmap@1.0.1: {} + + intl-messageformat-parser@5.5.1: + dependencies: + '@formatjs/intl-numberformat': 5.7.6 + + intl-messageformat-parser@6.1.2: + dependencies: + '@formatjs/ecma402-abstract': 1.5.0 + tslib: 2.8.1 + + intl-messageformat@10.7.18: + dependencies: + '@formatjs/ecma402-abstract': 2.3.6 + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/icu-messageformat-parser': 2.11.4 + tslib: 2.8.1 + + ipaddr.js@2.3.0: {} + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-arrayish@0.2.1: {} + + is-arrayish@0.3.2: + optional: true + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-callable@1.2.7: {} + + is-ci@3.0.1: + dependencies: + ci-info: 3.9.0 + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-docker@3.0.0: {} + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@5.1.0: + dependencies: + get-east-asian-width: 1.4.0 + + is-generator-fn@2.1.0: {} + + is-generator-function@1.1.0: + dependencies: + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-installed-globally@0.4.0: + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + + is-localhost-ip@2.0.0: {} + + is-map@2.0.3: {} + + is-module@1.0.0: {} + + is-negative-zero@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-path-cwd@2.2.0: {} + + is-path-cwd@3.0.0: {} + + is-path-inside@3.0.3: {} + + is-path-inside@4.0.0: {} + + is-plain-obj@1.1.0: {} + + is-plain-obj@2.1.0: {} + + is-plain-object@3.0.1: {} + + is-plain-object@5.0.0: {} + + is-reference@1.2.1: + dependencies: + '@types/estree': 1.0.8 + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-standalone-pwa@0.1.1: {} + + is-stream@2.0.1: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.19 + + is-typedarray@1.0.0: {} + + is-unicode-supported@0.1.0: {} + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isbot@5.1.32: {} + + isexe@2.0.0: {} + + isstream@0.1.2: {} + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-instrument@5.2.1: + dependencies: + '@babel/core': 7.28.3 + '@babel/parser': 7.28.3 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + istanbul-lib-instrument@6.0.3: + dependencies: + '@babel/core': 7.28.3 + '@babel/parser': 7.28.3 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 7.7.3 + transitivePeerDependencies: + - supports-color + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-lib-source-maps@4.0.1: + dependencies: + debug: 4.4.3(supports-color@8.1.1) + istanbul-lib-coverage: 3.2.2 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jest-changed-files@29.7.0: + dependencies: + execa: 5.1.1 + jest-util: 29.7.0 + p-limit: 3.1.0 + + jest-circus@29.7.0: + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + chalk: 4.1.2 + co: 4.6.0 + dedent: 1.6.0 + is-generator-fn: 2.1.0 + jest-each: 29.7.0 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + p-limit: 3.1.0 + pretty-format: 29.7.0 + pure-rand: 6.1.0 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-cli@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + exit: 0.1.2 + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + jest-config@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)): + dependencies: + '@babel/core': 7.28.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.28.3) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 24.10.1 + ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.9.3) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-diff@29.7.0: + dependencies: + chalk: 4.1.2 + diff-sequences: 29.6.3 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-diff@30.1.1: + dependencies: + '@jest/diff-sequences': 30.0.1 + '@jest/get-type': 30.1.0 + chalk: 4.1.2 + pretty-format: 30.0.5 + + jest-docblock@29.7.0: + dependencies: + detect-newline: 3.1.0 + + jest-each@29.7.0: + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + jest-get-type: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 + + jest-environment-node@29.7.0: + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + jest-get-type@29.6.3: {} + + jest-haste-map@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 24.10.1 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 + micromatch: 4.0.8 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + + jest-leak-detector@29.7.0: + dependencies: + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-matcher-utils@29.7.0: + dependencies: + chalk: 4.1.2 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-matcher-utils@30.1.1: + dependencies: + '@jest/get-type': 30.1.0 + chalk: 4.1.2 + jest-diff: 30.1.1 + pretty-format: 30.0.5 + + jest-message-util@29.7.0: + dependencies: + '@babel/code-frame': 7.27.1 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 + + jest-message-util@30.1.0: + dependencies: + '@babel/code-frame': 7.27.1 + '@jest/types': 30.0.5 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.8 + pretty-format: 30.0.5 + slash: 3.0.0 + stack-utils: 2.0.6 + + jest-mock@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + jest-util: 29.7.0 + + jest-mock@30.0.5: + dependencies: + '@jest/types': 30.0.5 + '@types/node': 24.10.1 + jest-util: 30.0.5 + + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + optionalDependencies: + jest-resolve: 29.7.0 + + jest-regex-util@29.6.3: {} + + jest-regex-util@30.0.1: {} + + jest-resolve-dependencies@29.7.0: + dependencies: + jest-regex-util: 29.6.3 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + + jest-resolve@29.7.0: + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.10 + resolve.exports: 2.0.3 + slash: 3.0.0 + + jest-runner@29.7.0: + dependencies: + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + chalk: 4.1.2 + emittery: 0.13.1 + graceful-fs: 4.2.11 + jest-docblock: 29.7.0 + jest-environment-node: 29.7.0 + jest-haste-map: 29.7.0 + jest-leak-detector: 29.7.0 + jest-message-util: 29.7.0 + jest-resolve: 29.7.0 + jest-runtime: 29.7.0 + jest-util: 29.7.0 + jest-watcher: 29.7.0 + jest-worker: 29.7.0 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + + jest-runtime@29.7.0: + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + chalk: 4.1.2 + cjs-module-lexer: 1.4.3 + collect-v8-coverage: 1.0.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + + jest-snapshot@29.7.0: + dependencies: + '@babel/core': 7.28.3 + '@babel/generator': 7.28.3 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3) + '@babel/types': 7.28.2 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.3) + chalk: 4.1.2 + expect: 29.7.0 + graceful-fs: 4.2.11 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + natural-compare: 1.4.0 + pretty-format: 29.7.0 + semver: 7.7.3 + transitivePeerDependencies: + - supports-color + + jest-util@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + chalk: 4.1.2 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + + jest-util@30.0.5: + dependencies: + '@jest/types': 30.0.5 + '@types/node': 24.10.1 + chalk: 4.1.2 + ci-info: 4.3.0 + graceful-fs: 4.2.11 + picomatch: 4.0.3 + + jest-validate@29.7.0: + dependencies: + '@jest/types': 29.6.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 + + jest-watcher@29.7.0: + dependencies: + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 24.10.1 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.7.0 + string-length: 4.0.2 + + jest-worker@29.7.0: + dependencies: + '@types/node': 24.10.1 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + '@jest/types': 29.6.3 + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + jiti@2.6.1: {} + + joycon@3.1.1: {} + + js-tokens@4.0.0: {} + + js-yaml@3.14.1: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsbn@0.1.1: {} + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-parse-better-errors@1.0.2: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-schema@0.4.0: {} + + json-stable-stringify@1.3.0: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + isarray: 2.0.5 + jsonify: 0.0.1 + object-keys: 1.1.1 + + json-stringify-safe@5.0.1: {} + + json5@2.2.3: {} + + jsonfile@4.0.0: + optionalDependencies: + graceful-fs: 4.2.11 + + jsonfile@6.2.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsonify@0.0.1: {} + + jsonwebtoken@9.0.2: + dependencies: + jws: 3.2.2 + lodash.includes: 4.3.0 + lodash.isboolean: 3.0.3 + lodash.isinteger: 4.0.4 + lodash.isnumber: 3.0.3 + lodash.isplainobject: 4.0.6 + lodash.isstring: 4.0.1 + lodash.once: 4.1.1 + ms: 2.1.3 + semver: 7.7.3 + + jsprim@2.0.2: + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + + jszip@3.10.1: + dependencies: + lie: 3.3.0 + pako: 1.0.11 + readable-stream: 2.3.8 + setimmediate: 1.0.5 + + jwa@1.4.2: + dependencies: + buffer-equal-constant-time: 1.0.1 + ecdsa-sig-formatter: 1.0.11 + safe-buffer: 5.2.1 + + jws@3.2.2: + dependencies: + jwa: 1.4.2 + safe-buffer: 5.2.1 + + kafkajs@2.2.4: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@6.0.3: {} + + kleur@3.0.3: {} + + known-css-properties@0.29.0: {} + + known-css-properties@0.36.0: + optional: true + + lazy-ass@1.6.0: {} + + leven@3.1.0: {} + + lie@3.3.0: + dependencies: + immediate: 3.0.6 + + lilconfig@2.1.0: {} + + lilconfig@3.1.3: {} + + lines-and-columns@1.2.4: {} + + lint-staged@16.2.7: + dependencies: + commander: 14.0.2 + listr2: 9.0.5 + micromatch: 4.0.8 + nano-spawn: 2.0.0 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.8.1 + + listr2@3.14.0(enquirer@2.4.1): + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.20 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.4.1 + rxjs: 7.8.2 + through: 2.3.8 + wrap-ansi: 7.0.0 + optionalDependencies: + enquirer: 2.4.1 + + listr2@9.0.5: + dependencies: + cli-truncate: 5.1.1 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 6.1.0 + rfdc: 1.4.1 + wrap-ansi: 9.0.2 + + load-json-file@4.0.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + + load-json-file@6.2.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 5.2.0 + strip-bom: 4.0.0 + type-fest: 0.6.0 + + load-tsconfig@0.2.5: {} + + loader-utils@3.3.1: {} + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.camelcase@4.3.0: {} + + lodash.includes@4.3.0: {} + + lodash.isboolean@3.0.3: {} + + lodash.isinteger@4.0.4: {} + + lodash.isnumber@3.0.3: {} + + lodash.isplainobject@4.0.6: {} + + lodash.isstring@4.0.1: {} + + lodash.memoize@4.1.2: {} + + lodash.merge@4.6.2: {} + + lodash.mergewith@4.6.2: {} + + lodash.once@4.1.1: {} + + lodash.pick@4.4.0: {} + + lodash.truncate@4.4.2: {} + + lodash.uniq@4.5.0: {} + + lodash@4.17.21: {} + + log-symbols@4.1.0: + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + + log-update@4.0.0: + dependencies: + ansi-escapes: 4.3.2 + cli-cursor: 3.1.0 + slice-ansi: 4.0.0 + wrap-ansi: 6.2.0 + + log-update@6.1.0: + dependencies: + ansi-escapes: 7.1.1 + cli-cursor: 5.0.0 + slice-ansi: 7.1.2 + strip-ansi: 7.1.2 + wrap-ansi: 9.0.2 + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + loud-rejection@2.2.0: + dependencies: + currently-unhandled: 0.4.1 + signal-exit: 3.0.7 + + lower-case@2.0.2: + dependencies: + tslib: 2.8.1 + + lru-cache@10.4.3: {} + + lru-cache@11.2.4: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + + lucide-react@0.543.0(react@19.2.3): + dependencies: + react: 19.2.3 + + lucide-react@0.555.0(react@19.2.3): + dependencies: + react: 19.2.3 + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + make-dir@3.1.0: + dependencies: + semver: 6.3.1 + + make-dir@4.0.0: + dependencies: + semver: 7.7.3 + + make-error@1.3.6: {} + + makeerror@1.0.12: + dependencies: + tmpl: 1.0.5 + + map-obj@1.0.1: {} + + map-obj@4.3.0: {} + + math-intrinsics@1.1.0: {} + + mathml-tag-names@2.1.3: {} + + maxmind@5.0.1: + dependencies: + mmdb-lib: 3.0.1 + tiny-lru: 11.4.5 + + mdn-data@2.0.14: {} + + mdn-data@2.0.28: {} + + mdn-data@2.0.30: {} + + mdn-data@2.12.2: + optional: true + + mdn-data@2.24.0: + optional: true + + memoize-one@5.2.1: {} + + memoize-one@6.0.0: {} + + memorystream@0.3.1: {} + + meow@10.1.5: + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 7.0.2 + decamelize: 5.0.1 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 8.0.0 + redent: 4.0.0 + trim-newlines: 4.1.1 + type-fest: 1.4.0 + yargs-parser: 20.2.9 + + meow@6.1.1: + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 2.5.0 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.13.1 + yargs-parser: 18.1.3 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mimic-fn@2.1.0: {} + + mimic-function@5.0.1: {} + + min-indent@1.0.1: {} + + minimatch@10.0.3: + dependencies: + '@isaacs/brace-expansion': 5.0.0 + + minimatch@10.1.1: + dependencies: + '@isaacs/brace-expansion': 5.0.0 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimatch@5.1.6: + dependencies: + brace-expansion: 2.0.2 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.2 + + minimist-options@4.1.0: + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + + minimist@1.2.8: {} + + minipass@3.3.6: + dependencies: + yallist: 4.0.0 + + minipass@5.0.0: {} + + minipass@7.1.2: {} + + minizlib@2.1.2: + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + + mkdirp@1.0.4: {} + + mlly@1.8.0: + dependencies: + acorn: 8.15.0 + pathe: 2.0.3 + pkg-types: 1.3.1 + ufo: 1.6.1 + + mmdb-lib@3.0.1: {} + + ms@2.1.3: {} + + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + + nano-spawn@2.0.0: {} + + nanoid@3.3.11: {} + + natural-compare@1.4.0: {} + + neo-async@2.6.2: {} + + next@15.5.9(@babel/core@7.28.3)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + '@next/env': 15.5.9 + '@swc/helpers': 0.5.15 + caniuse-lite: 1.0.30001741 + postcss: 8.4.31 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + styled-jsx: 5.1.6(@babel/core@7.28.3)(react@19.2.3) + optionalDependencies: + '@next/swc-darwin-arm64': 15.5.7 + '@next/swc-darwin-x64': 15.5.7 + '@next/swc-linux-arm64-gnu': 15.5.7 + '@next/swc-linux-arm64-musl': 15.5.7 + '@next/swc-linux-x64-gnu': 15.5.7 + '@next/swc-linux-x64-musl': 15.5.7 + '@next/swc-win32-arm64-msvc': 15.5.7 + '@next/swc-win32-x64-msvc': 15.5.7 + babel-plugin-react-compiler: 19.1.0-rc.2 + sharp: 0.34.3 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + next@16.0.10(@babel/core@7.28.3)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + '@next/env': 16.0.10 + '@swc/helpers': 0.5.15 + caniuse-lite: 1.0.30001759 + postcss: 8.4.31 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + styled-jsx: 5.1.6(@babel/core@7.28.3)(react@19.2.3) + optionalDependencies: + '@next/swc-darwin-arm64': 16.0.10 + '@next/swc-darwin-x64': 16.0.10 + '@next/swc-linux-arm64-gnu': 16.0.10 + '@next/swc-linux-arm64-musl': 16.0.10 + '@next/swc-linux-x64-gnu': 16.0.10 + '@next/swc-linux-x64-musl': 16.0.10 + '@next/swc-win32-arm64-msvc': 16.0.10 + '@next/swc-win32-x64-msvc': 16.0.10 + babel-plugin-react-compiler: 19.1.0-rc.2 + sharp: 0.34.5 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + nice-try@1.0.5: {} + + no-case@3.0.4: + dependencies: + lower-case: 2.0.2 + tslib: 2.8.1 + + node-domexception@1.0.0: {} + + node-fetch-native@1.6.7: {} + + node-fetch@3.3.2: + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + + node-int64@0.4.0: {} + + node-releases@2.0.19: {} + + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.10 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-package-data@3.0.3: + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.16.1 + semver: 7.7.3 + validate-npm-package-license: 3.0.4 + + normalize-path@3.0.0: {} + + normalize-range@0.1.2: {} + + normalize-url@6.1.0: {} + + npm-run-all@4.1.5: + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.6 + memorystream: 0.3.1 + minimatch: 3.1.2 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.3 + string.prototype.padend: 3.1.6 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + nypm@0.6.2: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + pathe: 2.0.3 + pkg-types: 2.3.0 + tinyexec: 1.0.2 + + object-assign@4.1.1: {} + + object-inspect@1.13.4: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + ohash@2.0.11: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + ospath@1.2.2: {} + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-finally@1.0.0: {} + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-map@4.0.0: + dependencies: + aggregate-error: 3.1.0 + + p-map@7.0.3: {} + + p-queue@6.6.2: + dependencies: + eventemitter3: 4.0.7 + p-timeout: 3.2.0 + + p-timeout@3.2.0: + dependencies: + p-finally: 1.0.0 + + p-try@2.2.0: {} + + package-json-from-dist@1.0.1: {} + + pako@1.0.11: {} + + papaparse@5.5.3: {} + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-json@4.0.0: + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.27.1 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-scurry@2.0.1: + dependencies: + lru-cache: 11.2.4 + minipass: 7.1.2 + + path-type@3.0.0: + dependencies: + pify: 3.0.0 + + path-type@4.0.0: {} + + path-type@6.0.0: {} + + pathe@2.0.3: {} + + pend@1.2.0: {} + + perfect-debounce@1.0.0: {} + + performance-now@2.1.0: {} + + pg-cloudflare@1.2.7: + optional: true + + pg-connection-string@2.9.1: {} + + pg-int8@1.0.1: {} + + pg-pool@3.10.1(pg@8.16.3): + dependencies: + pg: 8.16.3 + + pg-protocol@1.10.3: {} + + pg-types@2.2.0: + dependencies: + pg-int8: 1.0.1 + postgres-array: 2.0.0 + postgres-bytea: 1.0.0 + postgres-date: 1.0.7 + postgres-interval: 1.2.0 + + pg@8.16.3: + dependencies: + pg-connection-string: 2.9.1 + pg-pool: 3.10.1(pg@8.16.3) + pg-protocol: 1.10.3 + pg-types: 2.2.0 + pgpass: 1.0.5 + optionalDependencies: + pg-cloudflare: 1.2.7 + + pgpass@1.0.5: + dependencies: + split2: 4.2.0 + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.3: {} + + pidtree@0.3.1: {} + + pidtree@0.6.0: {} + + pify@2.3.0: {} + + pify@3.0.0: {} + + pify@5.0.0: {} + + pirates@4.0.7: {} + + pkg-dir@4.2.0: + dependencies: + find-up: 4.1.0 + + pkg-types@1.3.1: + dependencies: + confbox: 0.1.8 + mlly: 1.8.0 + pathe: 2.0.3 + + pkg-types@2.3.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.8 + pathe: 2.0.3 + + possible-typed-array-names@1.1.0: {} + + postcss-attribute-case-insensitive@5.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-calc@8.2.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + postcss-value-parser: 4.2.0 + + postcss-clamp@4.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-color-functional-notation@4.2.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-color-hex-alpha@8.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-color-rebeccapurple@7.1.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-colormin@5.3.1(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-convert-values@5.1.3(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-custom-media@8.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-custom-properties@12.1.11(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-custom-selectors@6.0.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-dir-pseudo-class@6.0.5(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-discard-comments@5.1.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-discard-duplicates@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-discard-empty@5.1.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-discard-overridden@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-double-position-gradients@3.1.2(postcss@8.5.6): + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-env-function@4.0.6(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-flexbugs-fixes@5.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-focus-visible@6.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-focus-within@5.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-font-variant@5.0.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-gap-properties@3.0.5(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-image-set-function@4.0.7(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-import@15.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.10 + + postcss-initial@4.0.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-lab-function@4.2.1(postcss@8.5.6): + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-load-config@3.1.4(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.5.6 + ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.9.3) + + postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.1): + dependencies: + lilconfig: 3.1.3 + optionalDependencies: + jiti: 2.6.1 + postcss: 8.5.6 + tsx: 4.21.0 + yaml: 2.8.1 + + postcss-logical@5.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-media-minmax@5.0.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-media-query-parser@0.2.3: + optional: true + + postcss-merge-longhand@5.1.7(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.1(postcss@8.5.6) + + postcss-merge-rules@5.1.4(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-minify-font-values@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-minify-gradients@5.1.1(postcss@8.5.6): + dependencies: + colord: 2.9.3 + cssnano-utils: 3.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-minify-params@5.1.4(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + cssnano-utils: 3.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-minify-selectors@5.2.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-modules-extract-imports@3.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-modules-local-by-default@4.2.0(postcss@8.5.6): + dependencies: + icss-utils: 5.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-selector-parser: 7.1.0 + postcss-value-parser: 4.2.0 + + postcss-modules-scope@3.2.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 7.1.0 + + postcss-modules-values@4.0.0(postcss@8.5.6): + dependencies: + icss-utils: 5.1.0(postcss@8.5.6) + postcss: 8.5.6 + + postcss-modules@4.3.1(postcss@8.5.6): + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.5.6 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.6) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.6) + postcss-modules-scope: 3.2.1(postcss@8.5.6) + postcss-modules-values: 4.0.0(postcss@8.5.6) + string-hash: 1.1.3 + + postcss-nesting@10.2.0(postcss@8.5.6): + dependencies: + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-normalize-charset@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-normalize-display-values@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-positions@5.1.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-repeat-style@5.1.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-string@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-timing-functions@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-unicode@5.1.1(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-url@5.1.0(postcss@8.5.6): + dependencies: + normalize-url: 6.1.0 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-normalize-whitespace@5.1.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-opacity-percentage@1.1.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-ordered-values@5.1.3(postcss@8.5.6): + dependencies: + cssnano-utils: 3.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-overflow-shorthand@3.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-page-break@3.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-place@7.0.5(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-preset-env@7.8.3(postcss@8.5.6): + dependencies: + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.5.6) + '@csstools/postcss-color-function': 1.1.1(postcss@8.5.6) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.5.6) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.5.6) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.5.6) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.5.6) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.5.6) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.5.6) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.5.6) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.5.6) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.5.6) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.5.6) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.5.6) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.5.6) + autoprefixer: 10.4.21(postcss@8.5.6) + browserslist: 4.25.2 + css-blank-pseudo: 3.0.3(postcss@8.5.6) + css-has-pseudo: 3.0.4(postcss@8.5.6) + css-prefers-color-scheme: 6.0.3(postcss@8.5.6) + cssdb: 7.11.2 + postcss: 8.5.6 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.5.6) + postcss-clamp: 4.1.0(postcss@8.5.6) + postcss-color-functional-notation: 4.2.4(postcss@8.5.6) + postcss-color-hex-alpha: 8.0.4(postcss@8.5.6) + postcss-color-rebeccapurple: 7.1.1(postcss@8.5.6) + postcss-custom-media: 8.0.2(postcss@8.5.6) + postcss-custom-properties: 12.1.11(postcss@8.5.6) + postcss-custom-selectors: 6.0.3(postcss@8.5.6) + postcss-dir-pseudo-class: 6.0.5(postcss@8.5.6) + postcss-double-position-gradients: 3.1.2(postcss@8.5.6) + postcss-env-function: 4.0.6(postcss@8.5.6) + postcss-focus-visible: 6.0.4(postcss@8.5.6) + postcss-focus-within: 5.0.4(postcss@8.5.6) + postcss-font-variant: 5.0.0(postcss@8.5.6) + postcss-gap-properties: 3.0.5(postcss@8.5.6) + postcss-image-set-function: 4.0.7(postcss@8.5.6) + postcss-initial: 4.0.1(postcss@8.5.6) + postcss-lab-function: 4.2.1(postcss@8.5.6) + postcss-logical: 5.0.4(postcss@8.5.6) + postcss-media-minmax: 5.0.0(postcss@8.5.6) + postcss-nesting: 10.2.0(postcss@8.5.6) + postcss-opacity-percentage: 1.1.3(postcss@8.5.6) + postcss-overflow-shorthand: 3.0.4(postcss@8.5.6) + postcss-page-break: 3.0.4(postcss@8.5.6) + postcss-place: 7.0.5(postcss@8.5.6) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.5.6) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.6) + postcss-selector-not: 6.0.1(postcss@8.5.6) + postcss-value-parser: 4.2.0 + + postcss-pseudo-class-any-link@7.1.6(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-reduce-initial@5.1.2(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + caniuse-api: 3.0.0 + postcss: 8.5.6 + + postcss-reduce-transforms@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + + postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-resolve-nested-selector@0.1.6: {} + + postcss-safe-parser@6.0.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + + postcss-selector-not@6.0.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-selector-parser@7.1.0: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-svgo@5.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + + postcss-unique-selectors@5.1.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-value-parser@4.2.0: {} + + postcss@8.4.31: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postgres-array@2.0.0: {} + + postgres-array@3.0.4: {} + + postgres-bytea@1.0.0: {} + + postgres-date@1.0.7: {} + + postgres-interval@1.2.0: + dependencies: + xtend: 4.0.2 + + prettier@2.8.8: {} + + pretty-bytes@5.6.0: {} + + pretty-format@29.7.0: + dependencies: + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.3.1 + + pretty-format@30.0.5: + dependencies: + '@jest/schemas': 30.0.5 + ansi-styles: 5.2.0 + react-is: 18.3.1 + + prisma@6.19.0(typescript@5.9.3): + dependencies: + '@prisma/config': 6.19.0 + '@prisma/engines': 6.19.0 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - magicast + + process-nextick-args@2.0.1: {} + + process@0.11.10: {} + + promise.series@0.2.0: {} + + prompts@2.4.2: + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + + prop-types@15.8.1: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + proxy-from-env@1.0.0: {} + + pump@3.0.3: + dependencies: + end-of-stream: 1.4.5 + once: 1.4.0 + + punycode@2.3.1: {} + + pure-rand@6.1.0: {} + + pure-rand@7.0.1: {} + + qs@6.14.0: + dependencies: + side-channel: 1.1.0 + + queue-microtask@1.2.3: {} + + quick-lru@4.0.1: {} + + quick-lru@5.1.1: {} + + raf-schd@4.0.3: {} + + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + rc9@2.1.2: + dependencies: + defu: 6.1.4 + destr: 2.0.5 + + react-aria-components@1.13.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + '@internationalized/date': 3.10.0 + '@internationalized/string': 3.2.7 + '@react-aria/autocomplete': 3.0.0-rc.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/collections': 3.0.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/dnd': 3.11.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/live-announcer': 3.4.4 + '@react-aria/overlays': 3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/toolbar': 3.0.0-beta.21(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/virtualizer': 4.1.10(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/autocomplete': 3.0.0-beta.3(react@19.2.3) + '@react-stately/layout': 4.5.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-stately/table': 3.15.1(react@19.2.3) + '@react-stately/utils': 3.10.8(react@19.2.3) + '@react-stately/virtualizer': 4.4.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/form': 3.7.16(react@19.2.3) + '@react-types/grid': 3.3.6(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + '@react-types/table': 3.13.4(react@19.2.3) + '@swc/helpers': 0.5.17 + client-only: 0.0.1 + react: 19.2.3 + react-aria: 3.44.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + react-dom: 19.2.3(react@19.2.3) + react-stately: 3.42.0(react@19.2.3) + use-sync-external-store: 1.6.0(react@19.2.3) + + react-aria@3.44.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + '@internationalized/string': 3.2.7 + '@react-aria/breadcrumbs': 3.5.29(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/button': 3.14.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/calendar': 3.9.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/checkbox': 3.16.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/color': 3.1.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/combobox': 3.14.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/datepicker': 3.15.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/dialog': 3.5.31(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/disclosure': 3.1.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/dnd': 3.11.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/focus': 3.21.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/gridlist': 3.14.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/i18n': 3.12.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/interactions': 3.25.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/label': 3.7.22(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/landmark': 3.0.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/link': 3.8.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/listbox': 3.15.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/menu': 3.19.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/meter': 3.4.27(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/numberfield': 3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/overlays': 3.30.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/progress': 3.4.27(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/radio': 3.12.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/searchfield': 3.8.9(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/select': 3.17.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/selection': 3.26.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/separator': 3.4.13(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/slider': 3.8.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/ssr': 3.9.10(react@19.2.3) + '@react-aria/switch': 3.7.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/table': 3.17.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/tabs': 3.10.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/tag': 3.7.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/textfield': 3.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/toast': 3.0.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/tooltip': 3.8.8(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/tree': 3.1.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/utils': 3.31.0(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-aria/visually-hidden': 3.8.28(react-dom@19.2.3(react@19.2.3))(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + react-dom@19.2.3(react@19.2.3): + dependencies: + react: 19.2.3 + scheduler: 0.27.0 + + react-error-boundary@4.1.2(react@19.2.3): + dependencies: + '@babel/runtime': 7.28.3 + react: 19.2.3 + + react-hook-form@7.67.0(react@19.2.3): + dependencies: + react: 19.2.3 + + react-icons@5.5.0(react@19.2.3): + dependencies: + react: 19.2.3 + + react-intl@7.1.14(react@19.2.3)(typescript@5.9.3): + dependencies: + '@formatjs/ecma402-abstract': 2.3.6 + '@formatjs/icu-messageformat-parser': 2.11.4 + '@formatjs/intl': 3.1.8(typescript@5.9.3) + '@types/hoist-non-react-statics': 3.3.7(@types/react@19.2.7) + '@types/react': 19.2.7 + hoist-non-react-statics: 3.3.2 + intl-messageformat: 10.7.18 + react: 19.2.3 + tslib: 2.8.1 + optionalDependencies: + typescript: 5.9.3 + + react-is@16.13.1: {} + + react-is@18.3.1: {} + + react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1): + dependencies: + '@types/use-sync-external-store': 0.0.6 + react: 19.2.3 + use-sync-external-store: 1.5.0(react@19.2.3) + optionalDependencies: + '@types/react': 19.2.7 + redux: 5.0.1 + + react-simple-maps@2.3.0(prop-types@15.8.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + d3-geo: 2.0.2 + d3-selection: 2.0.0 + d3-zoom: 2.0.0 + prop-types: 15.8.1 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + topojson-client: 3.1.0 + + react-stately@3.42.0(react@19.2.3): + dependencies: + '@react-stately/calendar': 3.9.0(react@19.2.3) + '@react-stately/checkbox': 3.7.2(react@19.2.3) + '@react-stately/collections': 3.12.8(react@19.2.3) + '@react-stately/color': 3.9.2(react@19.2.3) + '@react-stately/combobox': 3.12.0(react@19.2.3) + '@react-stately/data': 3.14.1(react@19.2.3) + '@react-stately/datepicker': 3.15.2(react@19.2.3) + '@react-stately/disclosure': 3.0.8(react@19.2.3) + '@react-stately/dnd': 3.7.1(react@19.2.3) + '@react-stately/form': 3.2.2(react@19.2.3) + '@react-stately/list': 3.13.1(react@19.2.3) + '@react-stately/menu': 3.9.8(react@19.2.3) + '@react-stately/numberfield': 3.10.2(react@19.2.3) + '@react-stately/overlays': 3.6.20(react@19.2.3) + '@react-stately/radio': 3.11.2(react@19.2.3) + '@react-stately/searchfield': 3.5.16(react@19.2.3) + '@react-stately/select': 3.8.0(react@19.2.3) + '@react-stately/selection': 3.20.6(react@19.2.3) + '@react-stately/slider': 3.7.2(react@19.2.3) + '@react-stately/table': 3.15.1(react@19.2.3) + '@react-stately/tabs': 3.8.6(react@19.2.3) + '@react-stately/toast': 3.1.2(react@19.2.3) + '@react-stately/toggle': 3.9.2(react@19.2.3) + '@react-stately/tooltip': 3.5.8(react@19.2.3) + '@react-stately/tree': 3.9.3(react@19.2.3) + '@react-types/shared': 3.32.1(react@19.2.3) + react: 19.2.3 + + react-use-measure@2.1.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + react: 19.2.3 + optionalDependencies: + react-dom: 19.2.3(react@19.2.3) + + react-window@1.8.11(react-dom@19.2.3(react@19.2.3))(react@19.2.3): + dependencies: + '@babel/runtime': 7.28.3 + memoize-one: 5.2.1 + react: 19.2.3 + react-dom: 19.2.3(react@19.2.3) + + react@19.2.3: {} + + read-babelrc-up@1.1.0: + dependencies: + find-up: 4.1.0 + json5: 2.2.3 + + read-cache@1.0.0: + dependencies: + pify: 2.3.0 + + read-pkg-up@7.0.1: + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + + read-pkg-up@8.0.0: + dependencies: + find-up: 5.0.0 + read-pkg: 6.0.0 + type-fest: 1.4.0 + + read-pkg@3.0.0: + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + + read-pkg@5.2.0: + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + + read-pkg@6.0.0: + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 3.0.3 + parse-json: 5.2.0 + type-fest: 1.4.0 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readdirp@4.1.2: {} + + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + + redent@4.0.0: + dependencies: + indent-string: 5.0.0 + strip-indent: 4.0.0 + + redis@4.7.1: + dependencies: + '@redis/bloom': 1.2.0(@redis/client@1.6.1) + '@redis/client': 1.6.1 + '@redis/graph': 1.1.1(@redis/client@1.6.1) + '@redis/json': 1.0.7(@redis/client@1.6.1) + '@redis/search': 1.2.0(@redis/client@1.6.1) + '@redis/time-series': 1.1.0(@redis/client@1.6.1) + + redux@5.0.1: {} + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + request-ip@3.3.0: {} + + request-progress@3.0.0: + dependencies: + throttleit: 1.0.1 + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + resolve-cwd@3.0.0: + dependencies: + resolve-from: 5.0.0 + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-pkg-maps@1.0.0: {} + + resolve.exports@2.0.3: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 + + reusify@1.1.0: {} + + rfdc@1.4.1: {} + + rimraf@3.0.2: + dependencies: + glob: 7.2.3 + + rollup-plugin-copy@3.5.0: + dependencies: + '@types/fs-extra': 8.1.5 + colorette: 1.4.0 + fs-extra: 8.1.0 + globby: 10.0.1 + is-plain-object: 3.0.1 + + rollup-plugin-delete@3.0.1(rollup@4.53.3): + dependencies: + del: 8.0.0 + rollup: 4.53.3 + + rollup-plugin-dts@6.3.0(rollup@4.53.3)(typescript@5.9.3): + dependencies: + magic-string: 0.30.21 + rollup: 4.53.3 + typescript: 5.9.3 + optionalDependencies: + '@babel/code-frame': 7.27.1 + + rollup-plugin-node-externals@8.1.2(rollup@4.53.3): + dependencies: + rollup: 4.53.3 + + rollup-plugin-peer-deps-external@2.2.4(rollup@4.53.3): + dependencies: + rollup: 4.53.3 + + rollup-plugin-postcss@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)): + dependencies: + chalk: 4.1.2 + concat-with-sourcemaps: 1.1.0 + cssnano: 5.1.15(postcss@8.5.6) + import-cwd: 3.0.0 + p-queue: 6.6.2 + pify: 5.0.0 + postcss: 8.5.6 + postcss-load-config: 3.1.4(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + postcss-modules: 4.3.1(postcss@8.5.6) + promise.series: 0.2.0 + resolve: 1.22.10 + rollup-pluginutils: 2.8.2 + safe-identifier: 0.4.2 + style-inject: 0.3.0 + transitivePeerDependencies: + - ts-node + + rollup-pluginutils@2.8.2: + dependencies: + estree-walker: 0.6.1 + + rollup@4.53.3: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.53.3 + '@rollup/rollup-android-arm64': 4.53.3 + '@rollup/rollup-darwin-arm64': 4.53.3 + '@rollup/rollup-darwin-x64': 4.53.3 + '@rollup/rollup-freebsd-arm64': 4.53.3 + '@rollup/rollup-freebsd-x64': 4.53.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.3 + '@rollup/rollup-linux-arm-musleabihf': 4.53.3 + '@rollup/rollup-linux-arm64-gnu': 4.53.3 + '@rollup/rollup-linux-arm64-musl': 4.53.3 + '@rollup/rollup-linux-loong64-gnu': 4.53.3 + '@rollup/rollup-linux-ppc64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-musl': 4.53.3 + '@rollup/rollup-linux-s390x-gnu': 4.53.3 + '@rollup/rollup-linux-x64-gnu': 4.53.3 + '@rollup/rollup-linux-x64-musl': 4.53.3 + '@rollup/rollup-openharmony-arm64': 4.53.3 + '@rollup/rollup-win32-arm64-msvc': 4.53.3 + '@rollup/rollup-win32-ia32-msvc': 4.53.3 + '@rollup/rollup-win32-x64-gnu': 4.53.3 + '@rollup/rollup-win32-x64-msvc': 4.53.3 + fsevents: 2.3.3 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rxjs@7.8.2: + dependencies: + tslib: 2.8.1 + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-identifier@0.4.2: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safer-buffer@2.1.2: {} + + scheduler@0.27.0: {} + + schema-utils@2.7.1: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.7.3: {} + + serialize-error@12.0.0: + dependencies: + type-fest: 4.41.0 + + serialize-javascript@6.0.2: + dependencies: + randombytes: 2.1.0 + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + + setimmediate@1.0.5: {} + + sharp@0.34.3: + dependencies: + color: 4.2.3 + detect-libc: 2.0.4 + semver: 7.7.3 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.34.3 + '@img/sharp-darwin-x64': 0.34.3 + '@img/sharp-libvips-darwin-arm64': 1.2.0 + '@img/sharp-libvips-darwin-x64': 1.2.0 + '@img/sharp-libvips-linux-arm': 1.2.0 + '@img/sharp-libvips-linux-arm64': 1.2.0 + '@img/sharp-libvips-linux-ppc64': 1.2.0 + '@img/sharp-libvips-linux-s390x': 1.2.0 + '@img/sharp-libvips-linux-x64': 1.2.0 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 + '@img/sharp-libvips-linuxmusl-x64': 1.2.0 + '@img/sharp-linux-arm': 0.34.3 + '@img/sharp-linux-arm64': 0.34.3 + '@img/sharp-linux-ppc64': 0.34.3 + '@img/sharp-linux-s390x': 0.34.3 + '@img/sharp-linux-x64': 0.34.3 + '@img/sharp-linuxmusl-arm64': 0.34.3 + '@img/sharp-linuxmusl-x64': 0.34.3 + '@img/sharp-wasm32': 0.34.3 + '@img/sharp-win32-arm64': 0.34.3 + '@img/sharp-win32-ia32': 0.34.3 + '@img/sharp-win32-x64': 0.34.3 + optional: true + + sharp@0.34.5: + dependencies: + '@img/colour': 1.0.0 + detect-libc: 2.1.2 + semver: 7.7.3 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.34.5 + '@img/sharp-darwin-x64': 0.34.5 + '@img/sharp-libvips-darwin-arm64': 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.2.4 + '@img/sharp-libvips-linux-arm': 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 + '@img/sharp-libvips-linux-x64': 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + '@img/sharp-linux-arm': 0.34.5 + '@img/sharp-linux-arm64': 0.34.5 + '@img/sharp-linux-ppc64': 0.34.5 + '@img/sharp-linux-riscv64': 0.34.5 + '@img/sharp-linux-s390x': 0.34.5 + '@img/sharp-linux-x64': 0.34.5 + '@img/sharp-linuxmusl-arm64': 0.34.5 + '@img/sharp-linuxmusl-x64': 0.34.5 + '@img/sharp-wasm32': 0.34.5 + '@img/sharp-win32-arm64': 0.34.5 + '@img/sharp-win32-ia32': 0.34.5 + '@img/sharp-win32-x64': 0.34.5 + optional: true + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + shell-quote@1.8.3: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + optional: true + + sisteransi@1.0.5: {} + + slash@3.0.0: {} + + slash@5.1.0: {} + + slice-ansi@3.0.0: + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + + slice-ansi@4.0.0: + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + + slice-ansi@7.1.2: + dependencies: + ansi-styles: 6.2.3 + is-fullwidth-code-point: 5.1.0 + + smob@1.5.0: {} + + snake-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.8.1 + + sort-keys@4.2.0: + dependencies: + is-plain-obj: 2.1.0 + + source-map-js@1.2.1: {} + + source-map-support@0.5.13: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.6.1: {} + + source-map@0.7.6: {} + + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.22 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.22 + + spdx-license-ids@3.0.22: {} + + split2@4.2.0: {} + + sprintf-js@1.0.3: {} + + sshpk@1.18.0: + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + + stable@0.1.8: {} + + stack-utils@2.0.6: + dependencies: + escape-string-regexp: 2.0.0 + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + + string-argv@0.3.2: {} + + string-hash@1.1.3: {} + + string-length@4.0.2: + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.2 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.6.0 + get-east-asian-width: 1.4.0 + strip-ansi: 7.1.2 + + string-width@8.1.0: + dependencies: + get-east-asian-width: 1.4.0 + strip-ansi: 7.1.2 + + string.prototype.padend@3.1.6: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.2: + dependencies: + ansi-regex: 6.2.2 + + strip-bom@3.0.0: {} + + strip-bom@4.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + + strip-indent@4.0.0: + dependencies: + min-indent: 1.0.1 + + strip-json-comments@3.1.1: {} + + style-inject@0.3.0: {} + + style-search@0.1.0: {} + + styled-jsx@5.1.6(@babel/core@7.28.3)(react@19.2.3): + dependencies: + client-only: 0.0.1 + react: 19.2.3 + optionalDependencies: + '@babel/core': 7.28.3 + + stylehacks@5.1.1(postcss@8.5.6): + dependencies: + browserslist: 4.25.2 + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + stylelint-config-css-modules@4.5.1(stylelint@15.11.0(typescript@5.9.3)): + dependencies: + stylelint: 15.11.0(typescript@5.9.3) + optionalDependencies: + stylelint-scss: 6.12.1(stylelint@15.11.0(typescript@5.9.3)) + + stylelint-config-prettier@9.0.5(stylelint@15.11.0(typescript@5.9.3)): + dependencies: + stylelint: 15.11.0(typescript@5.9.3) + + stylelint-config-recommended@14.0.1(stylelint@15.11.0(typescript@5.9.3)): + dependencies: + stylelint: 15.11.0(typescript@5.9.3) + + stylelint-scss@6.12.1(stylelint@15.11.0(typescript@5.9.3)): + dependencies: + css-tree: 3.1.0 + is-plain-object: 5.0.0 + known-css-properties: 0.36.0 + mdn-data: 2.24.0 + postcss-media-query-parser: 0.2.3 + postcss-resolve-nested-selector: 0.1.6 + postcss-selector-parser: 7.1.0 + postcss-value-parser: 4.2.0 + stylelint: 15.11.0(typescript@5.9.3) + optional: true + + stylelint@15.11.0(typescript@5.9.3): + dependencies: + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) + balanced-match: 2.0.0 + colord: 2.9.3 + cosmiconfig: 8.3.6(typescript@5.9.3) + css-functions-list: 3.2.3 + css-tree: 2.3.1 + debug: 4.4.3(supports-color@8.1.1) + fast-glob: 3.3.3 + fastest-levenshtein: 1.0.16 + file-entry-cache: 7.0.2 + global-modules: 2.0.0 + globby: 11.1.0 + globjoin: 0.1.4 + html-tags: 3.3.1 + ignore: 5.3.2 + import-lazy: 4.0.0 + imurmurhash: 0.1.4 + is-plain-object: 5.0.0 + known-css-properties: 0.29.0 + mathml-tag-names: 2.1.3 + meow: 10.1.5 + micromatch: 4.0.8 + normalize-path: 3.0.0 + picocolors: 1.1.1 + postcss: 8.5.6 + postcss-resolve-nested-selector: 0.1.6 + postcss-safe-parser: 6.0.0(postcss@8.5.6) + postcss-selector-parser: 6.1.2 + postcss-value-parser: 4.2.0 + resolve-from: 5.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + style-search: 0.1.0 + supports-hyperlinks: 3.2.0 + svg-tags: 1.0.0 + table: 6.9.0 + write-file-atomic: 5.0.1 + transitivePeerDependencies: + - supports-color + - typescript + + sucrase@3.35.0: + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + commander: 4.1.1 + glob: 10.5.0 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.7 + ts-interface-checker: 0.1.13 + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-color@8.1.1: + dependencies: + has-flag: 4.0.0 + + supports-hyperlinks@3.2.0: + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + svg-parser@2.0.4: {} + + svg-tags@1.0.0: {} + + svgo@2.8.0: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.1.1 + stable: 0.1.8 + + svgo@3.3.2: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.2.2 + css-tree: 2.3.1 + css-what: 6.2.2 + csso: 5.0.5 + picocolors: 1.1.1 + + table@6.9.0: + dependencies: + ajv: 8.17.1 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + tar@6.2.1: + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + + terser@5.43.1: + dependencies: + '@jridgewell/source-map': 0.3.11 + acorn: 8.15.0 + commander: 2.20.3 + source-map-support: 0.5.21 + + test-exclude@6.0.0: + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + + thenby@1.3.4: {} + + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 + + throttleit@1.0.1: {} + + through@2.3.8: {} + + tiny-invariant@1.3.3: {} + + tiny-lru@11.4.5: {} + + tinyexec@0.3.2: {} + + tinyexec@1.0.2: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + tldts-core@6.1.86: {} + + tldts@6.1.86: + dependencies: + tldts-core: 6.1.86 + + tmp@0.2.5: {} + + tmpl@1.0.5: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + topojson-client@3.1.0: + dependencies: + commander: 2.20.3 + + tough-cookie@5.1.2: + dependencies: + tldts: 6.1.86 + + tree-kill@1.2.2: {} + + trim-newlines@3.0.1: {} + + trim-newlines@4.1.1: {} + + ts-interface-checker@0.1.13: {} + + ts-jest@29.4.6(@babel/core@7.28.3)(@jest/transform@29.7.0)(@jest/types@30.0.5)(babel-jest@29.7.0(@babel/core@7.28.3))(esbuild@0.25.12)(jest-util@30.0.5)(jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3): + dependencies: + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + handlebars: 4.7.8 + jest: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)) + json5: 2.2.3 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.7.3 + type-fest: 4.41.0 + typescript: 5.9.3 + yargs-parser: 21.1.1 + optionalDependencies: + '@babel/core': 7.28.3 + '@jest/transform': 29.7.0 + '@jest/types': 30.0.5 + babel-jest: 29.7.0(@babel/core@7.28.3) + esbuild: 0.25.12 + jest-util: 30.0.5 + + ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 24.10.1 + acorn: 8.15.0 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.9.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + tslib@2.8.1: {} + + tsup@8.5.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1): + dependencies: + bundle-require: 5.1.0(esbuild@0.27.0) + cac: 6.7.14 + chokidar: 4.0.3 + consola: 3.4.2 + debug: 4.4.3(supports-color@8.1.1) + esbuild: 0.27.0 + fix-dts-default-cjs-exports: 1.0.1 + joycon: 3.1.1 + picocolors: 1.1.1 + postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.1) + resolve-from: 5.0.0 + rollup: 4.53.3 + source-map: 0.7.6 + sucrase: 3.35.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tree-kill: 1.2.2 + optionalDependencies: + postcss: 8.5.6 + typescript: 5.9.3 + transitivePeerDependencies: + - jiti + - supports-color + - tsx + - yaml + + tsx@4.21.0: + dependencies: + esbuild: 0.27.0 + get-tsconfig: 4.13.0 + optionalDependencies: + fsevents: 2.3.3 + + tunnel-agent@0.6.0: + dependencies: + safe-buffer: 5.2.1 + + tweetnacl@0.14.5: {} + + type-detect@4.0.8: {} + + type-fest@0.13.1: {} + + type-fest@0.21.3: {} + + type-fest@0.6.0: {} + + type-fest@0.8.1: {} + + type-fest@1.4.0: {} + + type-fest@4.41.0: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + typedarray-to-buffer@3.1.5: + dependencies: + is-typedarray: 1.0.0 + + typescript@4.9.5: {} + + typescript@5.9.3: {} + + ua-is-frozen@0.1.2: {} + + ua-parser-js@2.0.6: + dependencies: + detect-europe-js: 0.1.2 + is-standalone-pwa: 0.1.1 + ua-is-frozen: 0.1.2 + + ufo@1.6.1: {} + + uglify-js@3.19.3: + optional: true + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + undici-types@7.16.0: {} + + unicorn-magic@0.3.0: {} + + universalify@0.1.2: {} + + universalify@2.0.1: {} + + untildify@4.0.0: {} + + update-browserslist-db@1.1.3(browserslist@4.25.2): + dependencies: + browserslist: 4.25.2 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + use-memo-one@1.1.3(react@19.2.3): + dependencies: + react: 19.2.3 + + use-sync-external-store@1.5.0(react@19.2.3): + dependencies: + react: 19.2.3 + + use-sync-external-store@1.6.0(react@19.2.3): + dependencies: + react: 19.2.3 + + util-deprecate@1.0.2: {} + + uuid@11.1.0: {} + + uuid@8.3.2: {} + + v8-compile-cache-lib@3.0.1: {} + + v8-to-istanbul@9.3.0: + dependencies: + '@jridgewell/trace-mapping': 0.3.30 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 + + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + + vary@1.1.2: {} + + verror@1.10.0: + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + + vue@3.5.18(typescript@4.9.5): + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-sfc': 3.5.18 + '@vue/runtime-dom': 3.5.18 + '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.3)) + '@vue/shared': 3.5.18 + optionalDependencies: + typescript: 4.9.5 + + walker@1.0.8: + dependencies: + makeerror: 1.0.12 + + web-streams-polyfill@3.3.3: {} + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + wordwrap@1.0.0: {} + + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.3 + string-width: 5.1.2 + strip-ansi: 7.1.2 + + wrap-ansi@9.0.2: + dependencies: + ansi-styles: 6.2.3 + string-width: 7.2.0 + strip-ansi: 7.1.2 + + wrappy@1.0.2: {} + + write-file-atomic@3.0.3: + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + + write-file-atomic@4.0.2: + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + + write-file-atomic@5.0.1: + dependencies: + imurmurhash: 0.1.4 + signal-exit: 4.1.0 + + write-json-file@4.3.0: + dependencies: + detect-indent: 6.1.0 + graceful-fs: 4.2.11 + is-plain-obj: 2.1.0 + make-dir: 3.1.0 + sort-keys: 4.2.0 + write-file-atomic: 3.0.3 + + xtend@4.0.2: {} + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yallist@4.0.0: {} + + yaml@1.10.2: {} + + yaml@2.8.1: {} + + yargs-parser@18.1.3: + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + + yargs-parser@20.2.9: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yauzl@2.10.0: + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + + yn@3.1.1: {} + + yocto-queue@0.1.0: {} + + zod@4.1.13: {} + + zustand@5.0.9(@types/react@19.2.7)(immer@10.2.0)(react@19.2.3)(use-sync-external-store@1.6.0(react@19.2.3)): + optionalDependencies: + '@types/react': 19.2.7 + immer: 10.2.0 + react: 19.2.3 + use-sync-external-store: 1.6.0(react@19.2.3) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..5e236fb --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,10 @@ +packages: + - '**' +ignoredBuiltDependencies: + - cypress + - esbuild + - sharp +onlyBuiltDependencies: + - '@prisma/client' + - '@prisma/engines' + - prisma diff --git a/podman/README.md b/podman/README.md new file mode 100644 index 0000000..92d030a --- /dev/null +++ b/podman/README.md @@ -0,0 +1,50 @@ +# How to deploy umami on podman + + +## How to use + +1. Rename `env.sample` to `.env` +2. Edit `.env` file. At the minimum set the passwords. +3. Start umami by running `podman-compose up -d`. + +If you need to stop umami, you can do so by running `podman-compose down`. + + +### Install systemd service (optional) + +If you want to install a systemd service to run umami, you can use the provided +systemd service. + +Edit `umami.service` and change these two variables: + + + WorkingDirectory=/opt/apps/umami + EnvironmentFile=/opt/apps/umami/.env + +`WorkingDirectory` should be changed to the path in which `podman-compose.yml` +is located. + +`EnvironmentFile` should be changed to the path in which your `.env`file is +located. + +You can run the script `install-systemd-user-service` to install the systemd +service under the current user. + + + ./install-systemd-user-service + +Note: this script will enable the service and also start it. So it will assume +that umami is not currently running. If you started it previously, bring it +down using: + + podman-compose down + + + +## Compatibility + +These files should be compatible with podman 4.3+. + +I have tested this on Debian GNU/Linux 12 (bookworm) and with the podman that +is distributed with the official Debian stable mirrors (podman +v4.3.1+ds1-8+deb12u1, podman-compose v1.0.3-3). diff --git a/podman/env.sample b/podman/env.sample new file mode 100644 index 0000000..06435e5 --- /dev/null +++ b/podman/env.sample @@ -0,0 +1,16 @@ +# Rename this file to .env and modify the values +# +# Connection string for Umami’s database. +# If you use the bundled DB container, "db" is the hostname. +DATABASE_URL=postgresql://umami:replace-me-with-a-random-string@db:5432/umami + +# Database type (e.g. postgresql) +DATABASE_TYPE=postgresql + +# A secret string used by Umami (replace with a strong random string) +APP_SECRET=replace-me-with-a-random-string + +# Postgres container defaults. +POSTGRES_DB=umami +POSTGRES_USER=umami +POSTGRES_PASSWORD=replace-me-with-a-random-string diff --git a/podman/install-systemd-user-service b/podman/install-systemd-user-service new file mode 100755 index 0000000..948a04c --- /dev/null +++ b/podman/install-systemd-user-service @@ -0,0 +1,10 @@ +#!/bin/bash +set -e +service_name="umami" +mkdir -p ~/.config/systemd/user +cp $service_name.service ~/.config/systemd/user + + +systemctl --user daemon-reload +systemctl --user enable $service_name.service +systemctl --user start $service_name.service diff --git a/podman/podman-compose.yml b/podman/podman-compose.yml new file mode 100644 index 0000000..fcd4b3a --- /dev/null +++ b/podman/podman-compose.yml @@ -0,0 +1,41 @@ +version: "3.8" + +services: + umami: + container_name: umami + image: ghcr.io/umami-software/umami:postgresql-latest + ports: + - "127.0.0.1:3000:3000" + environment: + DATABASE_URL: ${DATABASE_URL} + DATABASE_TYPE: ${DATABASE_TYPE} + APP_SECRET: ${APP_SECRET} + depends_on: + db: + condition: service_healthy + init: true + restart: always + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:3000/api/heartbeat || exit 1"] + interval: 5s + timeout: 5s + retries: 5 + + db: + container_name: umami-db + image: docker.io/library/postgres:15-alpine + environment: + POSTGRES_DB: ${POSTGRES_DB} + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + volumes: + - umami-db-data:/var/lib/postgresql/data:Z + restart: always + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] + interval: 5s + timeout: 5s + retries: 5 + +volumes: + umami-db-data: diff --git a/podman/umami.service b/podman/umami.service new file mode 100644 index 0000000..4292a8b --- /dev/null +++ b/podman/umami.service @@ -0,0 +1,14 @@ +[Unit] +Description=Umami Container Stack via Podman-Compose +After=network.target + +[Service] +Type=simple +WorkingDirectory=/opt/apps/umami +EnvironmentFile=/opt/apps/umami/.env +ExecStart=/usr/bin/podman-compose -f podman-compose.yml up -d +ExecStop=/usr/bin/podman-compose -f podman-compose.yml down +RemainAfterExit=yes + +[Install] +WantedBy=default.target diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..fc1bf98 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,17 @@ +export default { + plugins: [ + 'postcss-flexbugs-fixes', + [ + 'postcss-preset-env', + { + autoprefixer: { + flexbox: 'no-2009', + }, + stage: 3, + features: { + 'custom-properties': false, + }, + }, + ], + ], +}; diff --git a/prisma.config.ts b/prisma.config.ts new file mode 100644 index 0000000..8ce899a --- /dev/null +++ b/prisma.config.ts @@ -0,0 +1,8 @@ +import 'dotenv/config'; +import { defineConfig, env } from 'prisma/config'; + +export default defineConfig({ + datasource: { + url: env('DATABASE_URL'), + }, +}); diff --git a/prisma/migrations/01_init/migration.sql b/prisma/migrations/01_init/migration.sql new file mode 100644 index 0000000..1307432 --- /dev/null +++ b/prisma/migrations/01_init/migration.sql @@ -0,0 +1,199 @@ +-- CreateExtension +CREATE EXTENSION IF NOT EXISTS "pgcrypto"; + +-- CreateTable +CREATE TABLE "user" ( + "user_id" UUID NOT NULL, + "username" VARCHAR(255) NOT NULL, + "password" VARCHAR(60) NOT NULL, + "role" VARCHAR(50) NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + "deleted_at" TIMESTAMPTZ(6), + + CONSTRAINT "user_pkey" PRIMARY KEY ("user_id") +); + +-- CreateTable +CREATE TABLE "session" ( + "session_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "hostname" VARCHAR(100), + "browser" VARCHAR(20), + "os" VARCHAR(20), + "device" VARCHAR(20), + "screen" VARCHAR(11), + "language" VARCHAR(35), + "country" CHAR(2), + "subdivision1" VARCHAR(20), + "subdivision2" VARCHAR(50), + "city" VARCHAR(50), + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "session_pkey" PRIMARY KEY ("session_id") +); + +-- CreateTable +CREATE TABLE "website" ( + "website_id" UUID NOT NULL, + "name" VARCHAR(100) NOT NULL, + "domain" VARCHAR(500), + "share_id" VARCHAR(50), + "reset_at" TIMESTAMPTZ(6), + "user_id" UUID, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + "deleted_at" TIMESTAMPTZ(6), + + CONSTRAINT "website_pkey" PRIMARY KEY ("website_id") +); + +-- CreateTable +CREATE TABLE "website_event" ( + "event_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "session_id" UUID NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "url_path" VARCHAR(500) NOT NULL, + "url_query" VARCHAR(500), + "referrer_path" VARCHAR(500), + "referrer_query" VARCHAR(500), + "referrer_domain" VARCHAR(500), + "page_title" VARCHAR(500), + "event_type" INTEGER NOT NULL DEFAULT 1, + "event_name" VARCHAR(50), + + CONSTRAINT "website_event_pkey" PRIMARY KEY ("event_id") +); + +-- CreateTable +CREATE TABLE "event_data" ( + "event_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "website_event_id" UUID NOT NULL, + "event_key" VARCHAR(500) NOT NULL, + "event_string_value" VARCHAR(500), + "event_numeric_value" DECIMAL(19,4), + "event_date_value" TIMESTAMPTZ(6), + "event_data_type" INTEGER NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "event_data_pkey" PRIMARY KEY ("event_id") +); + +-- CreateTable +CREATE TABLE "team" ( + "team_id" UUID NOT NULL, + "name" VARCHAR(50) NOT NULL, + "access_code" VARCHAR(50), + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + + CONSTRAINT "team_pkey" PRIMARY KEY ("team_id") +); + +-- CreateTable +CREATE TABLE "team_user" ( + "team_user_id" UUID NOT NULL, + "team_id" UUID NOT NULL, + "user_id" UUID NOT NULL, + "role" VARCHAR(50) NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + + CONSTRAINT "team_user_pkey" PRIMARY KEY ("team_user_id") +); + +-- CreateTable +CREATE TABLE "team_website" ( + "team_website_id" UUID NOT NULL, + "team_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "team_website_pkey" PRIMARY KEY ("team_website_id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "user_user_id_key" ON "user"("user_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "user_username_key" ON "user"("username"); + +-- CreateIndex +CREATE UNIQUE INDEX "session_session_id_key" ON "session"("session_id"); + +-- CreateIndex +CREATE INDEX "session_created_at_idx" ON "session"("created_at"); + +-- CreateIndex +CREATE INDEX "session_website_id_idx" ON "session"("website_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "website_website_id_key" ON "website"("website_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "website_share_id_key" ON "website"("share_id"); + +-- CreateIndex +CREATE INDEX "website_user_id_idx" ON "website"("user_id"); + +-- CreateIndex +CREATE INDEX "website_created_at_idx" ON "website"("created_at"); + +-- CreateIndex +CREATE INDEX "website_share_id_idx" ON "website"("share_id"); + +-- CreateIndex +CREATE INDEX "website_event_created_at_idx" ON "website_event"("created_at"); + +-- CreateIndex +CREATE INDEX "website_event_session_id_idx" ON "website_event"("session_id"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_idx" ON "website_event"("website_id"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_idx" ON "website_event"("website_id", "created_at"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_session_id_created_at_idx" ON "website_event"("website_id", "session_id", "created_at"); + +-- CreateIndex +CREATE INDEX "event_data_created_at_idx" ON "event_data"("created_at"); + +-- CreateIndex +CREATE INDEX "event_data_website_id_idx" ON "event_data"("website_id"); + +-- CreateIndex +CREATE INDEX "event_data_website_event_id_idx" ON "event_data"("website_event_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "team_team_id_key" ON "team"("team_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "team_access_code_key" ON "team"("access_code"); + +-- CreateIndex +CREATE INDEX "team_access_code_idx" ON "team"("access_code"); + +-- CreateIndex +CREATE UNIQUE INDEX "team_user_team_user_id_key" ON "team_user"("team_user_id"); + +-- CreateIndex +CREATE INDEX "team_user_team_id_idx" ON "team_user"("team_id"); + +-- CreateIndex +CREATE INDEX "team_user_user_id_idx" ON "team_user"("user_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "team_website_team_website_id_key" ON "team_website"("team_website_id"); + +-- CreateIndex +CREATE INDEX "team_website_team_id_idx" ON "team_website"("team_id"); + +-- CreateIndex +CREATE INDEX "team_website_website_id_idx" ON "team_website"("website_id"); + +-- AddSystemUser +INSERT INTO "user" (user_id, username, role, password) VALUES ('41e2b680-648e-4b09-bcd7-3e2b10c06264' , 'admin', 'admin', '$2b$10$BUli0c.muyCW1ErNJc3jL.vFRFtFJWrT8/GcR4A.sUdCznaXiqFXa'); \ No newline at end of file diff --git a/prisma/migrations/02_report_schema_session_data/migration.sql b/prisma/migrations/02_report_schema_session_data/migration.sql new file mode 100644 index 0000000..5fe6ef9 --- /dev/null +++ b/prisma/migrations/02_report_schema_session_data/migration.sql @@ -0,0 +1,70 @@ +-- AlterTable +ALTER TABLE "event_data" RENAME COLUMN "event_data_type" TO "data_type"; +ALTER TABLE "event_data" RENAME COLUMN "event_date_value" TO "date_value"; +ALTER TABLE "event_data" RENAME COLUMN "event_id" TO "event_data_id"; +ALTER TABLE "event_data" RENAME COLUMN "event_numeric_value" TO "number_value"; +ALTER TABLE "event_data" RENAME COLUMN "event_string_value" TO "string_value"; + +-- CreateTable +CREATE TABLE "session_data" ( + "session_data_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "session_id" UUID NOT NULL, + "session_key" VARCHAR(500) NOT NULL, + "string_value" VARCHAR(500), + "number_value" DECIMAL(19,4), + "date_value" TIMESTAMPTZ(6), + "data_type" INTEGER NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "deleted_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "session_data_pkey" PRIMARY KEY ("session_data_id") +); + +-- CreateTable +CREATE TABLE "report" ( + "report_id" UUID NOT NULL, + "user_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "type" VARCHAR(200) NOT NULL, + "name" VARCHAR(200) NOT NULL, + "description" VARCHAR(500) NOT NULL, + "parameters" VARCHAR(6000) NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + + CONSTRAINT "report_pkey" PRIMARY KEY ("report_id") +); + +-- CreateIndex +CREATE INDEX "session_data_created_at_idx" ON "session_data"("created_at"); + +-- CreateIndex +CREATE INDEX "session_data_website_id_idx" ON "session_data"("website_id"); + +-- CreateIndex +CREATE INDEX "session_data_session_id_idx" ON "session_data"("session_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "report_report_id_key" ON "report"("report_id"); + +-- CreateIndex +CREATE INDEX "report_user_id_idx" ON "report"("user_id"); + +-- CreateIndex +CREATE INDEX "report_website_id_idx" ON "report"("website_id"); + +-- CreateIndex +CREATE INDEX "report_type_idx" ON "report"("type"); + +-- CreateIndex +CREATE INDEX "report_name_idx" ON "report"("name"); + +-- EventData migration +UPDATE "event_data" +SET string_value = number_value +WHERE data_type = 2; + +UPDATE "event_data" +SET string_value = CONCAT(REPLACE(TO_CHAR(date_value, 'YYYY-MM-DD HH24:MI:SS'), ' ', 'T'), 'Z') +WHERE data_type = 4; \ No newline at end of file diff --git a/prisma/migrations/03_metric_performance_index/migration.sql b/prisma/migrations/03_metric_performance_index/migration.sql new file mode 100644 index 0000000..5db7aa5 --- /dev/null +++ b/prisma/migrations/03_metric_performance_index/migration.sql @@ -0,0 +1,50 @@ +-- CreateIndex +CREATE INDEX "event_data_website_id_created_at_idx" ON "event_data"("website_id", "created_at"); + +-- CreateIndex +CREATE INDEX "event_data_website_id_created_at_event_key_idx" ON "event_data"("website_id", "created_at", "event_key"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_idx" ON "session"("website_id", "created_at"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_hostname_idx" ON "session"("website_id", "created_at", "hostname"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_browser_idx" ON "session"("website_id", "created_at", "browser"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_os_idx" ON "session"("website_id", "created_at", "os"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_device_idx" ON "session"("website_id", "created_at", "device"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_screen_idx" ON "session"("website_id", "created_at", "screen"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_language_idx" ON "session"("website_id", "created_at", "language"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_country_idx" ON "session"("website_id", "created_at", "country"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_subdivision1_idx" ON "session"("website_id", "created_at", "subdivision1"); + +-- CreateIndex +CREATE INDEX "session_website_id_created_at_city_idx" ON "session"("website_id", "created_at", "city"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_url_path_idx" ON "website_event"("website_id", "created_at", "url_path"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_url_query_idx" ON "website_event"("website_id", "created_at", "url_query"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_referrer_domain_idx" ON "website_event"("website_id", "created_at", "referrer_domain"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_page_title_idx" ON "website_event"("website_id", "created_at", "page_title"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_event_name_idx" ON "website_event"("website_id", "created_at", "event_name"); diff --git a/prisma/migrations/04_team_redesign/migration.sql b/prisma/migrations/04_team_redesign/migration.sql new file mode 100644 index 0000000..9172631 --- /dev/null +++ b/prisma/migrations/04_team_redesign/migration.sql @@ -0,0 +1,29 @@ +/* + Warnings: + + - You are about to drop the `team_website` table. If the table is not empty, all the data it contains will be lost. + +*/ +-- AlterTable +ALTER TABLE "team" ADD COLUMN "deleted_at" TIMESTAMPTZ(6), +ADD COLUMN "logo_url" VARCHAR(2183); + +-- AlterTable +ALTER TABLE "user" ADD COLUMN "display_name" VARCHAR(255), +ADD COLUMN "logo_url" VARCHAR(2183); + +-- AlterTable +ALTER TABLE "website" ADD COLUMN "created_by" UUID, +ADD COLUMN "team_id" UUID; + +-- MigrateData +UPDATE "website" SET created_by = user_id WHERE team_id IS NULL; + +-- DropTable +DROP TABLE "team_website"; + +-- CreateIndex +CREATE INDEX "website_team_id_idx" ON "website"("team_id"); + +-- CreateIndex +CREATE INDEX "website_created_by_idx" ON "website"("created_by"); \ No newline at end of file diff --git a/prisma/migrations/05_add_visit_id/migration.sql b/prisma/migrations/05_add_visit_id/migration.sql new file mode 100644 index 0000000..fd2f1b9 --- /dev/null +++ b/prisma/migrations/05_add_visit_id/migration.sql @@ -0,0 +1,22 @@ +-- AlterTable +ALTER TABLE "website_event" ADD COLUMN "visit_id" UUID NULL; + +UPDATE "website_event" we +SET visit_id = a.uuid +FROM (SELECT DISTINCT + s.session_id, + s.visit_time, + gen_random_uuid() uuid + FROM (SELECT DISTINCT session_id, + date_trunc('hour', created_at) visit_time + FROM "website_event") s) a +WHERE we.session_id = a.session_id + and date_trunc('hour', we.created_at) = a.visit_time; + +ALTER TABLE "website_event" ALTER COLUMN "visit_id" SET NOT NULL; + +-- CreateIndex +CREATE INDEX "website_event_visit_id_idx" ON "website_event"("visit_id"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_visit_id_created_at_idx" ON "website_event"("website_id", "visit_id", "created_at"); \ No newline at end of file diff --git a/prisma/migrations/06_session_data/migration.sql b/prisma/migrations/06_session_data/migration.sql new file mode 100644 index 0000000..e15b260 --- /dev/null +++ b/prisma/migrations/06_session_data/migration.sql @@ -0,0 +1,18 @@ +-- DropIndex +DROP INDEX IF EXISTS "event_data_website_id_created_at_event_key_idx"; + +-- AlterTable +ALTER TABLE "event_data" RENAME COLUMN "event_key" TO "data_key"; + +-- AlterTable +ALTER TABLE "session_data" DROP COLUMN "deleted_at"; +ALTER TABLE "session_data" RENAME COLUMN "session_key" TO "data_key"; + +-- CreateIndex +CREATE INDEX "event_data_website_id_created_at_data_key_idx" ON "event_data"("website_id", "created_at", "data_key"); + +-- CreateIndex +CREATE INDEX "session_data_session_id_created_at_idx" ON "session_data"("session_id", "created_at"); + +-- CreateIndex +CREATE INDEX "session_data_website_id_created_at_data_key_idx" ON "session_data"("website_id", "created_at", "data_key"); diff --git a/prisma/migrations/07_add_tag/migration.sql b/prisma/migrations/07_add_tag/migration.sql new file mode 100644 index 0000000..ef465f8 --- /dev/null +++ b/prisma/migrations/07_add_tag/migration.sql @@ -0,0 +1,5 @@ +-- AlterTable +ALTER TABLE "website_event" ADD COLUMN "tag" VARCHAR(50); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_tag_idx" ON "website_event"("website_id", "created_at", "tag"); diff --git a/prisma/migrations/08_add_utm_clid/migration.sql b/prisma/migrations/08_add_utm_clid/migration.sql new file mode 100644 index 0000000..7c2d115 --- /dev/null +++ b/prisma/migrations/08_add_utm_clid/migration.sql @@ -0,0 +1,13 @@ +-- AlterTable +ALTER TABLE "website_event" +ADD COLUMN "fbclid" VARCHAR(255), +ADD COLUMN "gclid" VARCHAR(255), +ADD COLUMN "li_fat_id" VARCHAR(255), +ADD COLUMN "msclkid" VARCHAR(255), +ADD COLUMN "ttclid" VARCHAR(255), +ADD COLUMN "twclid" VARCHAR(255), +ADD COLUMN "utm_campaign" VARCHAR(255), +ADD COLUMN "utm_content" VARCHAR(255), +ADD COLUMN "utm_medium" VARCHAR(255), +ADD COLUMN "utm_source" VARCHAR(255), +ADD COLUMN "utm_term" VARCHAR(255); diff --git a/prisma/migrations/09_update_hostname_region/migration.sql b/prisma/migrations/09_update_hostname_region/migration.sql new file mode 100644 index 0000000..191a131 --- /dev/null +++ b/prisma/migrations/09_update_hostname_region/migration.sql @@ -0,0 +1,25 @@ +-- AlterTable +ALTER TABLE "website_event" ADD COLUMN "hostname" VARCHAR(100); + +-- DataMigration +UPDATE "website_event" w +SET hostname = s.hostname +FROM "session" s +WHERE s.website_id = w.website_id + and s.session_id = w.session_id; + +-- DropIndex +DROP INDEX IF EXISTS "session_website_id_created_at_hostname_idx"; +DROP INDEX IF EXISTS "session_website_id_created_at_subdivision1_idx"; + +-- AlterTable +ALTER TABLE "session" RENAME COLUMN "subdivision1" TO "region"; +ALTER TABLE "session" DROP COLUMN "subdivision2"; +ALTER TABLE "session" DROP COLUMN "hostname"; + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_hostname_idx" ON "website_event"("website_id", "created_at", "hostname"); +CREATE INDEX "session_website_id_created_at_region_idx" ON "session"("website_id", "created_at", "region"); + + + diff --git a/prisma/migrations/10_add_distinct_id/migration.sql b/prisma/migrations/10_add_distinct_id/migration.sql new file mode 100644 index 0000000..654c23b --- /dev/null +++ b/prisma/migrations/10_add_distinct_id/migration.sql @@ -0,0 +1,5 @@ +-- AlterTable +ALTER TABLE "session" ADD COLUMN "distinct_id" VARCHAR(50); + +-- AlterTable +ALTER TABLE "session_data" ADD COLUMN "distinct_id" VARCHAR(50); diff --git a/prisma/migrations/11_add_segment/migration.sql b/prisma/migrations/11_add_segment/migration.sql new file mode 100644 index 0000000..1ae66ec --- /dev/null +++ b/prisma/migrations/11_add_segment/migration.sql @@ -0,0 +1,18 @@ +-- CreateTable +CREATE TABLE "segment" ( + "segment_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "type" VARCHAR(200) NOT NULL, + "name" VARCHAR(200) NOT NULL, + "parameters" JSONB NOT NULL, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + + CONSTRAINT "segment_pkey" PRIMARY KEY ("segment_id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "segment_segment_id_key" ON "segment"("segment_id"); + +-- CreateIndex +CREATE INDEX "segment_website_id_idx" ON "segment"("website_id"); diff --git a/prisma/migrations/12_update_report_parameter/migration.sql b/prisma/migrations/12_update_report_parameter/migration.sql new file mode 100644 index 0000000..19b663f --- /dev/null +++ b/prisma/migrations/12_update_report_parameter/migration.sql @@ -0,0 +1,3 @@ +-- AlterTable +ALTER TABLE "report" +ALTER COLUMN "parameters" SET DATA TYPE JSONB USING parameters::JSONB; diff --git a/prisma/migrations/13_add_revenue/migration.sql b/prisma/migrations/13_add_revenue/migration.sql new file mode 100644 index 0000000..47f5db2 --- /dev/null +++ b/prisma/migrations/13_add_revenue/migration.sql @@ -0,0 +1,28 @@ +-- CreateTable +CREATE TABLE "revenue" ( + "revenue_id" UUID NOT NULL, + "website_id" UUID NOT NULL, + "session_id" UUID NOT NULL, + "event_id" UUID NOT NULL, + "event_name" VARCHAR(50) NOT NULL, + "currency" VARCHAR(100) NOT NULL, + "revenue" DECIMAL(19,4), + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "revenue_pkey" PRIMARY KEY ("revenue_id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "revenue_revenue_id_key" ON "revenue"("revenue_id"); + +-- CreateIndex +CREATE INDEX "revenue_website_id_idx" ON "revenue"("website_id"); + +-- CreateIndex +CREATE INDEX "revenue_session_id_idx" ON "revenue"("session_id"); + +-- CreateIndex +CREATE INDEX "revenue_website_id_created_at_idx" ON "revenue"("website_id", "created_at"); + +-- CreateIndex +CREATE INDEX "revenue_website_id_session_id_created_at_idx" ON "revenue"("website_id", "session_id", "created_at"); diff --git a/prisma/migrations/14_add_link_and_pixel/migration.sql b/prisma/migrations/14_add_link_and_pixel/migration.sql new file mode 100644 index 0000000..29d9e30 --- /dev/null +++ b/prisma/migrations/14_add_link_and_pixel/migration.sql @@ -0,0 +1,119 @@ +-- AlterTable +ALTER TABLE "report" ALTER COLUMN "type" SET DATA TYPE VARCHAR(50); + +-- AlterTable +ALTER TABLE "revenue" ALTER COLUMN "currency" SET DATA TYPE VARCHAR(10); + +-- AlterTable +ALTER TABLE "segment" ALTER COLUMN "type" SET DATA TYPE VARCHAR(50); + +-- CreateTable +CREATE TABLE "link" ( + "link_id" UUID NOT NULL, + "name" VARCHAR(100) NOT NULL, + "url" VARCHAR(500) NOT NULL, + "slug" VARCHAR(100) NOT NULL, + "user_id" UUID, + "team_id" UUID, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + "deleted_at" TIMESTAMPTZ(6), + + CONSTRAINT "link_pkey" PRIMARY KEY ("link_id") +); + +-- CreateTable +CREATE TABLE "pixel" ( + "pixel_id" UUID NOT NULL, + "name" VARCHAR(100) NOT NULL, + "slug" VARCHAR(100) NOT NULL, + "user_id" UUID, + "team_id" UUID, + "created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP, + "updated_at" TIMESTAMPTZ(6), + "deleted_at" TIMESTAMPTZ(6), + + CONSTRAINT "pixel_pkey" PRIMARY KEY ("pixel_id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "link_link_id_key" ON "link"("link_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "link_slug_key" ON "link"("slug"); + +-- CreateIndex +CREATE INDEX "link_slug_idx" ON "link"("slug"); + +-- CreateIndex +CREATE INDEX "link_user_id_idx" ON "link"("user_id"); + +-- CreateIndex +CREATE INDEX "link_team_id_idx" ON "link"("team_id"); + +-- CreateIndex +CREATE INDEX "link_created_at_idx" ON "link"("created_at"); + +-- CreateIndex +CREATE UNIQUE INDEX "pixel_pixel_id_key" ON "pixel"("pixel_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "pixel_slug_key" ON "pixel"("slug"); + +-- CreateIndex +CREATE INDEX "pixel_slug_idx" ON "pixel"("slug"); + +-- CreateIndex +CREATE INDEX "pixel_user_id_idx" ON "pixel"("user_id"); + +-- CreateIndex +CREATE INDEX "pixel_team_id_idx" ON "pixel"("team_id"); + +-- CreateIndex +CREATE INDEX "pixel_created_at_idx" ON "pixel"("created_at"); + +-- DataMigration Funnel +DELETE FROM "report" WHERE type = 'funnel' and jsonb_array_length(parameters->'steps') = 1; +UPDATE "report" SET parameters = parameters - 'websiteId' - 'dateRange' - 'urls' WHERE type = 'funnel'; + +UPDATE "report" +SET parameters = jsonb_set( + parameters, + '{steps}', + ( + SELECT jsonb_agg( + CASE + WHEN step->>'type' = 'url' + THEN jsonb_set(step, '{type}', '"path"') + ELSE step + END + ) + FROM jsonb_array_elements(parameters->'steps') step + ) +) +WHERE type = 'funnel' + and parameters @> '{"steps":[{"type":"url"}]}'; + +-- DataMigration Goals +UPDATE "report" SET type = 'goal' WHERE type = 'goals'; + +INSERT INTO "report" (report_id, user_id, website_id, type, name, description, parameters, created_at, updated_at) +SELECT gen_random_uuid(), + user_id, + website_id, + 'goal', + concat(name, ' - ', elem ->> 'value'), + description, + jsonb_build_object( + 'type', CASE WHEN elem ->> 'type' = 'url' THEN 'path' + ELSE elem ->> 'type' END, + 'value', elem ->> 'value' + ) AS parameters, + created_at, + updated_at +FROM "report" +CROSS JOIN LATERAL jsonb_array_elements(parameters -> 'goals') elem +WHERE type = 'goal' + and elem ->> 'type' IN ('event', 'url'); + +DELETE FROM "report" WHERE type = 'goal' and parameters ? 'goals'; \ No newline at end of file diff --git a/prisma/migrations/migration_lock.toml b/prisma/migrations/migration_lock.toml new file mode 100644 index 0000000..044d57c --- /dev/null +++ b/prisma/migrations/migration_lock.toml @@ -0,0 +1,3 @@ +# Please do not edit this file manually +# It should be added in your version-control system (e.g., Git) +provider = "postgresql" diff --git a/prisma/schema.prisma b/prisma/schema.prisma new file mode 100644 index 0000000..aeb1164 --- /dev/null +++ b/prisma/schema.prisma @@ -0,0 +1,318 @@ +generator client { + provider = "prisma-client" + output = "../src/generated/prisma" + engineType = "client" +} + +datasource db { + provider = "postgresql" + url = env("DATABASE_URL") + relationMode = "prisma" +} + +model User { + id String @id @unique @map("user_id") @db.Uuid + username String @unique @db.VarChar(255) + password String @db.VarChar(60) + role String @map("role") @db.VarChar(50) + logoUrl String? @map("logo_url") @db.VarChar(2183) + displayName String? @map("display_name") @db.VarChar(255) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) + + websites Website[] @relation("user") + createdBy Website[] @relation("createUser") + links Link[] @relation("user") + pixels Pixel[] @relation("user") + teams TeamUser[] + reports Report[] + + @@map("user") +} + +model Session { + id String @id @unique @map("session_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + browser String? @db.VarChar(20) + os String? @db.VarChar(20) + device String? @db.VarChar(20) + screen String? @db.VarChar(11) + language String? @db.VarChar(35) + country String? @db.Char(2) + region String? @db.VarChar(20) + city String? @db.VarChar(50) + distinctId String? @map("distinct_id") @db.VarChar(50) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + + websiteEvents WebsiteEvent[] + sessionData SessionData[] + revenue Revenue[] + + @@index([createdAt]) + @@index([websiteId]) + @@index([websiteId, createdAt]) + @@index([websiteId, createdAt, browser]) + @@index([websiteId, createdAt, os]) + @@index([websiteId, createdAt, device]) + @@index([websiteId, createdAt, screen]) + @@index([websiteId, createdAt, language]) + @@index([websiteId, createdAt, country]) + @@index([websiteId, createdAt, region]) + @@index([websiteId, createdAt, city]) + @@map("session") +} + +model Website { + id String @id @unique @map("website_id") @db.Uuid + name String @db.VarChar(100) + domain String? @db.VarChar(500) + shareId String? @unique @map("share_id") @db.VarChar(50) + resetAt DateTime? @map("reset_at") @db.Timestamptz(6) + userId String? @map("user_id") @db.Uuid + teamId String? @map("team_id") @db.Uuid + createdBy String? @map("created_by") @db.Uuid + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) + + user User? @relation("user", fields: [userId], references: [id]) + createUser User? @relation("createUser", fields: [createdBy], references: [id]) + team Team? @relation(fields: [teamId], references: [id]) + eventData EventData[] + reports Report[] + revenue Revenue[] + segments Segment[] + sessionData SessionData[] + + @@index([userId]) + @@index([teamId]) + @@index([createdAt]) + @@index([shareId]) + @@index([createdBy]) + @@map("website") +} + +model WebsiteEvent { + id String @id() @map("event_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + sessionId String @map("session_id") @db.Uuid + visitId String @map("visit_id") @db.Uuid + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + urlPath String @map("url_path") @db.VarChar(500) + urlQuery String? @map("url_query") @db.VarChar(500) + utmSource String? @map("utm_source") @db.VarChar(255) + utmMedium String? @map("utm_medium") @db.VarChar(255) + utmCampaign String? @map("utm_campaign") @db.VarChar(255) + utmContent String? @map("utm_content") @db.VarChar(255) + utmTerm String? @map("utm_term") @db.VarChar(255) + referrerPath String? @map("referrer_path") @db.VarChar(500) + referrerQuery String? @map("referrer_query") @db.VarChar(500) + referrerDomain String? @map("referrer_domain") @db.VarChar(500) + pageTitle String? @map("page_title") @db.VarChar(500) + gclid String? @db.VarChar(255) + fbclid String? @db.VarChar(255) + msclkid String? @db.VarChar(255) + ttclid String? @db.VarChar(255) + lifatid String? @map("li_fat_id") @db.VarChar(255) + twclid String? @db.VarChar(255) + eventType Int @default(1) @map("event_type") @db.Integer + eventName String? @map("event_name") @db.VarChar(50) + tag String? @db.VarChar(50) + hostname String? @db.VarChar(100) + + eventData EventData[] + session Session @relation(fields: [sessionId], references: [id]) + + @@index([createdAt]) + @@index([sessionId]) + @@index([visitId]) + @@index([websiteId]) + @@index([websiteId, createdAt]) + @@index([websiteId, createdAt, urlPath]) + @@index([websiteId, createdAt, urlQuery]) + @@index([websiteId, createdAt, referrerDomain]) + @@index([websiteId, createdAt, pageTitle]) + @@index([websiteId, createdAt, eventName]) + @@index([websiteId, createdAt, tag]) + @@index([websiteId, sessionId, createdAt]) + @@index([websiteId, visitId, createdAt]) + @@index([websiteId, createdAt, hostname]) + @@map("website_event") +} + +model EventData { + id String @id() @map("event_data_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + websiteEventId String @map("website_event_id") @db.Uuid + dataKey String @map("data_key") @db.VarChar(500) + stringValue String? @map("string_value") @db.VarChar(500) + numberValue Decimal? @map("number_value") @db.Decimal(19, 4) + dateValue DateTime? @map("date_value") @db.Timestamptz(6) + dataType Int @map("data_type") @db.Integer + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + + website Website @relation(fields: [websiteId], references: [id]) + websiteEvent WebsiteEvent @relation(fields: [websiteEventId], references: [id]) + + @@index([createdAt]) + @@index([websiteId]) + @@index([websiteEventId]) + @@index([websiteId, createdAt]) + @@index([websiteId, createdAt, dataKey]) + @@map("event_data") +} + +model SessionData { + id String @id() @map("session_data_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + sessionId String @map("session_id") @db.Uuid + dataKey String @map("data_key") @db.VarChar(500) + stringValue String? @map("string_value") @db.VarChar(500) + numberValue Decimal? @map("number_value") @db.Decimal(19, 4) + dateValue DateTime? @map("date_value") @db.Timestamptz(6) + dataType Int @map("data_type") @db.Integer + distinctId String? @map("distinct_id") @db.VarChar(50) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + + website Website @relation(fields: [websiteId], references: [id]) + session Session @relation(fields: [sessionId], references: [id]) + + @@index([createdAt]) + @@index([websiteId]) + @@index([sessionId]) + @@index([sessionId, createdAt]) + @@index([websiteId, createdAt, dataKey]) + @@map("session_data") +} + +model Team { + id String @id() @unique() @map("team_id") @db.Uuid + name String @db.VarChar(50) + accessCode String? @unique @map("access_code") @db.VarChar(50) + logoUrl String? @map("logo_url") @db.VarChar(2183) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) + + websites Website[] + members TeamUser[] + links Link[] + pixels Pixel[] + + @@index([accessCode]) + @@map("team") +} + +model TeamUser { + id String @id() @unique() @map("team_user_id") @db.Uuid + teamId String @map("team_id") @db.Uuid + userId String @map("user_id") @db.Uuid + role String @db.VarChar(50) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + + team Team @relation(fields: [teamId], references: [id]) + user User @relation(fields: [userId], references: [id]) + + @@index([teamId]) + @@index([userId]) + @@map("team_user") +} + +model Report { + id String @id() @unique() @map("report_id") @db.Uuid + userId String @map("user_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + type String @db.VarChar(50) + name String @db.VarChar(200) + description String @db.VarChar(500) + parameters Json + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + + user User @relation(fields: [userId], references: [id]) + website Website @relation(fields: [websiteId], references: [id]) + + @@index([userId]) + @@index([websiteId]) + @@index([type]) + @@index([name]) + @@map("report") +} + +model Segment { + id String @id() @unique() @map("segment_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + type String @db.VarChar(50) + name String @db.VarChar(200) + parameters Json + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + + website Website @relation(fields: [websiteId], references: [id]) + + @@index([websiteId]) + @@map("segment") +} + +model Revenue { + id String @id() @unique() @map("revenue_id") @db.Uuid + websiteId String @map("website_id") @db.Uuid + sessionId String @map("session_id") @db.Uuid + eventId String @map("event_id") @db.Uuid + eventName String @map("event_name") @db.VarChar(50) + currency String @db.VarChar(10) + revenue Decimal? @db.Decimal(19, 4) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + + website Website @relation(fields: [websiteId], references: [id]) + session Session @relation(fields: [sessionId], references: [id]) + + @@index([websiteId]) + @@index([sessionId]) + @@index([websiteId, createdAt]) + @@index([websiteId, sessionId, createdAt]) + @@map("revenue") +} + +model Link { + id String @id() @unique() @map("link_id") @db.Uuid + name String @db.VarChar(100) + url String @db.VarChar(500) + slug String @unique() @db.VarChar(100) + userId String? @map("user_id") @db.Uuid + teamId String? @map("team_id") @db.Uuid + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) + + user User? @relation("user", fields: [userId], references: [id]) + team Team? @relation(fields: [teamId], references: [id]) + + @@index([slug]) + @@index([userId]) + @@index([teamId]) + @@index([createdAt]) + @@map("link") +} + +model Pixel { + id String @id() @unique() @map("pixel_id") @db.Uuid + name String @db.VarChar(100) + slug String @unique() @db.VarChar(100) + userId String? @map("user_id") @db.Uuid + teamId String? @map("team_id") @db.Uuid + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) + + user User? @relation("user", fields: [userId], references: [id]) + team Team? @relation(fields: [teamId], references: [id]) + + @@index([slug]) + @@index([userId]) + @@index([teamId]) + @@index([createdAt]) + @@map("pixel") +} diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000..29d134e Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000..e925320 Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..575bba7 Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/browserconfig.xml b/public/browserconfig.xml new file mode 100644 index 0000000..b3930d0 --- /dev/null +++ b/public/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #da532c + + + diff --git a/public/datamaps.world.json b/public/datamaps.world.json new file mode 100644 index 0000000..2c0040c --- /dev/null +++ b/public/datamaps.world.json @@ -0,0 +1,13191 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { "name": "Afghanistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [61.210817, 35.650072], + [62.230651, 35.270664], + [62.984662, 35.404041], + [63.193538, 35.857166], + [63.982896, 36.007957], + [64.546479, 36.312073], + [64.746105, 37.111818], + [65.588948, 37.305217], + [65.745631, 37.661164], + [66.217385, 37.39379], + [66.518607, 37.362784], + [67.075782, 37.356144], + [67.83, 37.144994], + [68.135562, 37.023115], + [68.859446, 37.344336], + [69.196273, 37.151144], + [69.518785, 37.608997], + [70.116578, 37.588223], + [70.270574, 37.735165], + [70.376304, 38.138396], + [70.806821, 38.486282], + [71.348131, 38.258905], + [71.239404, 37.953265], + [71.541918, 37.905774], + [71.448693, 37.065645], + [71.844638, 36.738171], + [72.193041, 36.948288], + [72.63689, 37.047558], + [73.260056, 37.495257], + [73.948696, 37.421566], + [74.980002, 37.41999], + [75.158028, 37.133031], + [74.575893, 37.020841], + [74.067552, 36.836176], + [72.920025, 36.720007], + [71.846292, 36.509942], + [71.262348, 36.074388], + [71.498768, 35.650563], + [71.613076, 35.153203], + [71.115019, 34.733126], + [71.156773, 34.348911], + [70.881803, 33.988856], + [69.930543, 34.02012], + [70.323594, 33.358533], + [69.687147, 33.105499], + [69.262522, 32.501944], + [69.317764, 31.901412], + [68.926677, 31.620189], + [68.556932, 31.71331], + [67.792689, 31.58293], + [67.683394, 31.303154], + [66.938891, 31.304911], + [66.381458, 30.738899], + [66.346473, 29.887943], + [65.046862, 29.472181], + [64.350419, 29.560031], + [64.148002, 29.340819], + [63.550261, 29.468331], + [62.549857, 29.318572], + [60.874248, 29.829239], + [61.781222, 30.73585], + [61.699314, 31.379506], + [60.941945, 31.548075], + [60.863655, 32.18292], + [60.536078, 32.981269], + [60.9637, 33.528832], + [60.52843, 33.676446], + [60.803193, 34.404102], + [61.210817, 35.650072] + ] + ] + }, + "id": "AFG" + }, + { + "type": "Feature", + "properties": { "name": "Angola" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [16.326528, -5.87747], + [16.57318, -6.622645], + [16.860191, -7.222298], + [17.089996, -7.545689], + [17.47297, -8.068551], + [18.134222, -7.987678], + [18.464176, -7.847014], + [19.016752, -7.988246], + [19.166613, -7.738184], + [19.417502, -7.155429], + [20.037723, -7.116361], + [20.091622, -6.94309], + [20.601823, -6.939318], + [20.514748, -7.299606], + [21.728111, -7.290872], + [21.746456, -7.920085], + [21.949131, -8.305901], + [21.801801, -8.908707], + [21.875182, -9.523708], + [22.208753, -9.894796], + [22.155268, -11.084801], + [22.402798, -10.993075], + [22.837345, -11.017622], + [23.456791, -10.867863], + [23.912215, -10.926826], + [24.017894, -11.237298], + [23.904154, -11.722282], + [24.079905, -12.191297], + [23.930922, -12.565848], + [24.016137, -12.911046], + [21.933886, -12.898437], + [21.887843, -16.08031], + [22.562478, -16.898451], + [23.215048, -17.523116], + [21.377176, -17.930636], + [18.956187, -17.789095], + [18.263309, -17.309951], + [14.209707, -17.353101], + [14.058501, -17.423381], + [13.462362, -16.971212], + [12.814081, -16.941343], + [12.215461, -17.111668], + [11.734199, -17.301889], + [11.640096, -16.673142], + [11.778537, -15.793816], + [12.123581, -14.878316], + [12.175619, -14.449144], + [12.500095, -13.5477], + [12.738479, -13.137906], + [13.312914, -12.48363], + [13.633721, -12.038645], + [13.738728, -11.297863], + [13.686379, -10.731076], + [13.387328, -10.373578], + [13.120988, -9.766897], + [12.87537, -9.166934], + [12.929061, -8.959091], + [13.236433, -8.562629], + [12.93304, -7.596539], + [12.728298, -6.927122], + [12.227347, -6.294448], + [12.322432, -6.100092], + [12.735171, -5.965682], + [13.024869, -5.984389], + [13.375597, -5.864241], + [16.326528, -5.87747] + ] + ], + [ + [ + [12.436688, -5.684304], + [12.182337, -5.789931], + [11.914963, -5.037987], + [12.318608, -4.60623], + [12.62076, -4.438023], + [12.995517, -4.781103], + [12.631612, -4.991271], + [12.468004, -5.248362], + [12.436688, -5.684304] + ] + ] + ] + }, + "id": "AGO" + }, + { + "type": "Feature", + "properties": { "name": "Albania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.590247, 41.855404], + [20.463175, 41.515089], + [20.605182, 41.086226], + [21.02004, 40.842727], + [20.99999, 40.580004], + [20.674997, 40.435], + [20.615, 40.110007], + [20.150016, 39.624998], + [19.98, 39.694993], + [19.960002, 39.915006], + [19.406082, 40.250773], + [19.319059, 40.72723], + [19.40355, 41.409566], + [19.540027, 41.719986], + [19.371769, 41.877548], + [19.304486, 42.195745], + [19.738051, 42.688247], + [19.801613, 42.500093], + [20.0707, 42.58863], + [20.283755, 42.32026], + [20.52295, 42.21787], + [20.590247, 41.855404] + ] + ] + }, + "id": "ALB" + }, + { + "type": "Feature", + "properties": { "name": "United Arab Emirates" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [51.579519, 24.245497], + [51.757441, 24.294073], + [51.794389, 24.019826], + [52.577081, 24.177439], + [53.404007, 24.151317], + [54.008001, 24.121758], + [54.693024, 24.797892], + [55.439025, 25.439145], + [56.070821, 26.055464], + [56.261042, 25.714606], + [56.396847, 24.924732], + [55.886233, 24.920831], + [55.804119, 24.269604], + [55.981214, 24.130543], + [55.528632, 23.933604], + [55.525841, 23.524869], + [55.234489, 23.110993], + [55.208341, 22.70833], + [55.006803, 22.496948], + [52.000733, 23.001154], + [51.617708, 24.014219], + [51.579519, 24.245497] + ] + ] + }, + "id": "ARE" + }, + { + "type": "Feature", + "properties": { "name": "Argentina" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-65.5, -55.2], + [-66.45, -55.25], + [-66.95992, -54.89681], + [-67.56244, -54.87001], + [-68.63335, -54.8695], + [-68.63401, -52.63637], + [-68.25, -53.1], + [-67.75, -53.85], + [-66.45, -54.45], + [-65.05, -54.7], + [-65.5, -55.2] + ] + ], + [ + [ + [-64.964892, -22.075862], + [-64.377021, -22.798091], + [-63.986838, -21.993644], + [-62.846468, -22.034985], + [-62.685057, -22.249029], + [-60.846565, -23.880713], + [-60.028966, -24.032796], + [-58.807128, -24.771459], + [-57.777217, -25.16234], + [-57.63366, -25.603657], + [-58.618174, -27.123719], + [-57.60976, -27.395899], + [-56.486702, -27.548499], + [-55.695846, -27.387837], + [-54.788795, -26.621786], + [-54.625291, -25.739255], + [-54.13005, -25.547639], + [-53.628349, -26.124865], + [-53.648735, -26.923473], + [-54.490725, -27.474757], + [-55.162286, -27.881915], + [-56.2909, -28.852761], + [-57.625133, -30.216295], + [-57.874937, -31.016556], + [-58.14244, -32.044504], + [-58.132648, -33.040567], + [-58.349611, -33.263189], + [-58.427074, -33.909454], + [-58.495442, -34.43149], + [-57.22583, -35.288027], + [-57.362359, -35.97739], + [-56.737487, -36.413126], + [-56.788285, -36.901572], + [-57.749157, -38.183871], + [-59.231857, -38.72022], + [-61.237445, -38.928425], + [-62.335957, -38.827707], + [-62.125763, -39.424105], + [-62.330531, -40.172586], + [-62.145994, -40.676897], + [-62.745803, -41.028761], + [-63.770495, -41.166789], + [-64.73209, -40.802677], + [-65.118035, -41.064315], + [-64.978561, -42.058001], + [-64.303408, -42.359016], + [-63.755948, -42.043687], + [-63.458059, -42.563138], + [-64.378804, -42.873558], + [-65.181804, -43.495381], + [-65.328823, -44.501366], + [-65.565269, -45.036786], + [-66.509966, -45.039628], + [-67.293794, -45.551896], + [-67.580546, -46.301773], + [-66.597066, -47.033925], + [-65.641027, -47.236135], + [-65.985088, -48.133289], + [-67.166179, -48.697337], + [-67.816088, -49.869669], + [-68.728745, -50.264218], + [-69.138539, -50.73251], + [-68.815561, -51.771104], + [-68.149995, -52.349983], + [-68.571545, -52.299444], + [-69.498362, -52.142761], + [-71.914804, -52.009022], + [-72.329404, -51.425956], + [-72.309974, -50.67701], + [-72.975747, -50.74145], + [-73.328051, -50.378785], + [-73.415436, -49.318436], + [-72.648247, -48.878618], + [-72.331161, -48.244238], + [-72.447355, -47.738533], + [-71.917258, -46.884838], + [-71.552009, -45.560733], + [-71.659316, -44.973689], + [-71.222779, -44.784243], + [-71.329801, -44.407522], + [-71.793623, -44.207172], + [-71.464056, -43.787611], + [-71.915424, -43.408565], + [-72.148898, -42.254888], + [-71.746804, -42.051386], + [-71.915734, -40.832339], + [-71.680761, -39.808164], + [-71.413517, -38.916022], + [-70.814664, -38.552995], + [-71.118625, -37.576827], + [-71.121881, -36.658124], + [-70.364769, -36.005089], + [-70.388049, -35.169688], + [-69.817309, -34.193571], + [-69.814777, -33.273886], + [-70.074399, -33.09121], + [-70.535069, -31.36501], + [-69.919008, -30.336339], + [-70.01355, -29.367923], + [-69.65613, -28.459141], + [-69.001235, -27.521214], + [-68.295542, -26.89934], + [-68.5948, -26.506909], + [-68.386001, -26.185016], + [-68.417653, -24.518555], + [-67.328443, -24.025303], + [-66.985234, -22.986349], + [-67.106674, -22.735925], + [-66.273339, -21.83231], + [-64.964892, -22.075862] + ] + ] + ] + }, + "id": "ARG" + }, + { + "type": "Feature", + "properties": { "name": "Armenia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [43.582746, 41.092143], + [44.97248, 41.248129], + [45.179496, 40.985354], + [45.560351, 40.81229], + [45.359175, 40.561504], + [45.891907, 40.218476], + [45.610012, 39.899994], + [46.034534, 39.628021], + [46.483499, 39.464155], + [46.50572, 38.770605], + [46.143623, 38.741201], + [45.735379, 39.319719], + [45.739978, 39.473999], + [45.298145, 39.471751], + [45.001987, 39.740004], + [44.79399, 39.713003], + [44.400009, 40.005], + [43.656436, 40.253564], + [43.752658, 40.740201], + [43.582746, 41.092143] + ] + ] + }, + "id": "ARM" + }, + { + "type": "Feature", + "properties": { "name": "Antarctica" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-59.572095, -80.040179], + [-59.865849, -80.549657], + [-60.159656, -81.000327], + [-62.255393, -80.863178], + [-64.488125, -80.921934], + [-65.741666, -80.588827], + [-65.741666, -80.549657], + [-66.290031, -80.255773], + [-64.037688, -80.294944], + [-61.883246, -80.39287], + [-61.138976, -79.981371], + [-60.610119, -79.628679], + [-59.572095, -80.040179] + ] + ], + [ + [ + [-159.208184, -79.497059], + [-161.127601, -79.634209], + [-162.439847, -79.281465], + [-163.027408, -78.928774], + [-163.066604, -78.869966], + [-163.712896, -78.595667], + [-163.712896, -78.595667], + [-163.105801, -78.223338], + [-161.245113, -78.380176], + [-160.246208, -78.693645], + [-159.482405, -79.046338], + [-159.208184, -79.497059] + ] + ], + [ + [ + [-45.154758, -78.04707], + [-43.920828, -78.478103], + [-43.48995, -79.08556], + [-43.372438, -79.516645], + [-43.333267, -80.026123], + [-44.880537, -80.339644], + [-46.506174, -80.594357], + [-48.386421, -80.829485], + [-50.482107, -81.025442], + [-52.851988, -80.966685], + [-54.164259, -80.633528], + [-53.987991, -80.222028], + [-51.853134, -79.94773], + [-50.991326, -79.614623], + [-50.364595, -79.183487], + [-49.914131, -78.811209], + [-49.306959, -78.458569], + [-48.660616, -78.047018], + [-48.660616, -78.047019], + [-48.151396, -78.04707], + [-46.662857, -77.831476], + [-45.154758, -78.04707] + ] + ], + [ + [ + [-121.211511, -73.50099], + [-119.918851, -73.657725], + [-118.724143, -73.481353], + [-119.292119, -73.834097], + [-120.232217, -74.08881], + [-121.62283, -74.010468], + [-122.621735, -73.657778], + [-122.621735, -73.657777], + [-122.406245, -73.324619], + [-121.211511, -73.50099] + ] + ], + [ + [ + [-125.559566, -73.481353], + [-124.031882, -73.873268], + [-124.619469, -73.834097], + [-125.912181, -73.736118], + [-127.28313, -73.461769], + [-127.28313, -73.461768], + [-126.558472, -73.246226], + [-125.559566, -73.481353] + ] + ], + [ + [ + [-98.98155, -71.933334], + [-97.884743, -72.070535], + [-96.787937, -71.952971], + [-96.20035, -72.521205], + [-96.983765, -72.442864], + [-98.198083, -72.482035], + [-99.432013, -72.442864], + [-100.783455, -72.50162], + [-101.801868, -72.305663], + [-102.330725, -71.894164], + [-102.330725, -71.894164], + [-101.703967, -71.717792], + [-100.430919, -71.854993], + [-98.98155, -71.933334] + ] + ], + [ + [ + [-68.451346, -70.955823], + [-68.333834, -71.406493], + [-68.510128, -71.798407], + [-68.784297, -72.170736], + [-69.959471, -72.307885], + [-71.075889, -72.503842], + [-72.388134, -72.484257], + [-71.8985, -72.092343], + [-73.073622, -72.229492], + [-74.19004, -72.366693], + [-74.953895, -72.072757], + [-75.012625, -71.661258], + [-73.915819, -71.269345], + [-73.915819, -71.269344], + [-73.230331, -71.15178], + [-72.074717, -71.190951], + [-71.780962, -70.681473], + [-71.72218, -70.309196], + [-71.741791, -69.505782], + [-71.173815, -69.035475], + [-70.253252, -68.87874], + [-69.724447, -69.251017], + [-69.489422, -69.623346], + [-69.058518, -70.074016], + [-68.725541, -70.505153], + [-68.451346, -70.955823] + ] + ], + [ + [ + [-58.614143, -64.152467], + [-59.045073, -64.36801], + [-59.789342, -64.211223], + [-60.611928, -64.309202], + [-61.297416, -64.54433], + [-62.0221, -64.799094], + [-62.51176, -65.09303], + [-62.648858, -65.484942], + [-62.590128, -65.857219], + [-62.120079, -66.190326], + [-62.805567, -66.425505], + [-63.74569, -66.503847], + [-64.294106, -66.837004], + [-64.881693, -67.150474], + [-65.508425, -67.58161], + [-65.665082, -67.953887], + [-65.312545, -68.365335], + [-64.783715, -68.678908], + [-63.961103, -68.913984], + [-63.1973, -69.227556], + [-62.785955, -69.619419], + [-62.570516, -69.991747], + [-62.276736, -70.383661], + [-61.806661, -70.716768], + [-61.512906, -71.089045], + [-61.375809, -72.010074], + [-61.081977, -72.382351], + [-61.003661, -72.774265], + [-60.690269, -73.166179], + [-60.827367, -73.695242], + [-61.375809, -74.106742], + [-61.96337, -74.439848], + [-63.295201, -74.576997], + [-63.74569, -74.92974], + [-64.352836, -75.262847], + [-65.860987, -75.635124], + [-67.192818, -75.79191], + [-68.446282, -76.007452], + [-69.797724, -76.222995], + [-70.600724, -76.634494], + [-72.206776, -76.673665], + [-73.969536, -76.634494], + [-75.555977, -76.712887], + [-77.24037, -76.712887], + [-76.926979, -77.104802], + [-75.399294, -77.28107], + [-74.282876, -77.55542], + [-73.656119, -77.908112], + [-74.772536, -78.221633], + [-76.4961, -78.123654], + [-77.925858, -78.378419], + [-77.984666, -78.789918], + [-78.023785, -79.181833], + [-76.848637, -79.514939], + [-76.633224, -79.887216], + [-75.360097, -80.259545], + [-73.244852, -80.416331], + [-71.442946, -80.69063], + [-70.013163, -81.004151], + [-68.191646, -81.317672], + [-65.704279, -81.474458], + [-63.25603, -81.748757], + [-61.552026, -82.042692], + [-59.691416, -82.37585], + [-58.712121, -82.846106], + [-58.222487, -83.218434], + [-57.008117, -82.865691], + [-55.362894, -82.571755], + [-53.619771, -82.258235], + [-51.543644, -82.003521], + [-49.76135, -81.729171], + [-47.273931, -81.709586], + [-44.825708, -81.846735], + [-42.808363, -82.081915], + [-42.16202, -81.65083], + [-40.771433, -81.356894], + [-38.244818, -81.337309], + [-36.26667, -81.121715], + [-34.386397, -80.906172], + [-32.310296, -80.769023], + [-30.097098, -80.592651], + [-28.549802, -80.337938], + [-29.254901, -79.985195], + [-29.685805, -79.632503], + [-29.685805, -79.260226], + [-31.624808, -79.299397], + [-33.681324, -79.456132], + [-35.639912, -79.456132], + [-35.914107, -79.083855], + [-35.77701, -78.339248], + [-35.326546, -78.123654], + [-33.896763, -77.888526], + [-32.212369, -77.65345], + [-30.998051, -77.359515], + [-29.783732, -77.065579], + [-28.882779, -76.673665], + [-27.511752, -76.497345], + [-26.160336, -76.360144], + [-25.474822, -76.281803], + [-23.927552, -76.24258], + [-22.458598, -76.105431], + [-21.224694, -75.909474], + [-20.010375, -75.674346], + [-18.913543, -75.439218], + [-17.522982, -75.125698], + [-16.641589, -74.79254], + [-15.701491, -74.498604], + [-15.40771, -74.106742], + [-16.46532, -73.871614], + [-16.112784, -73.460114], + [-15.446855, -73.146542], + [-14.408805, -72.950585], + [-13.311973, -72.715457], + [-12.293508, -72.401936], + [-11.510067, -72.010074], + [-11.020433, -71.539767], + [-10.295774, -71.265416], + [-9.101015, -71.324224], + [-8.611381, -71.65733], + [-7.416622, -71.696501], + [-7.377451, -71.324224], + [-6.868232, -70.93231], + [-5.790985, -71.030289], + [-5.536375, -71.402617], + [-4.341667, -71.461373], + [-3.048981, -71.285053], + [-1.795492, -71.167438], + [-0.659489, -71.226246], + [-0.228637, -71.637745], + [0.868195, -71.304639], + [1.886686, -71.128267], + [3.022638, -70.991118], + [4.139055, -70.853917], + [5.157546, -70.618789], + [6.273912, -70.462055], + [7.13572, -70.246512], + [7.742866, -69.893769], + [8.48711, -70.148534], + [9.525135, -70.011333], + [10.249845, -70.48164], + [10.817821, -70.834332], + [11.953824, -70.638375], + [12.404287, -70.246512], + [13.422778, -69.972162], + [14.734998, -70.030918], + [15.126757, -70.403247], + [15.949342, -70.030918], + [17.026589, -69.913354], + [18.201711, -69.874183], + [19.259373, -69.893769], + [20.375739, -70.011333], + [21.452985, -70.07014], + [21.923034, -70.403247], + [22.569403, -70.697182], + [23.666184, -70.520811], + [24.841357, -70.48164], + [25.977309, -70.48164], + [27.093726, -70.462055], + [28.09258, -70.324854], + [29.150242, -70.20729], + [30.031583, -69.93294], + [30.971733, -69.75662], + [31.990172, -69.658641], + [32.754053, -69.384291], + [33.302443, -68.835642], + [33.870419, -68.502588], + [34.908495, -68.659271], + [35.300202, -69.012014], + [36.16201, -69.247142], + [37.200035, -69.168748], + [37.905108, -69.52144], + [38.649404, -69.776205], + [39.667894, -69.541077], + [40.020431, -69.109941], + [40.921358, -68.933621], + [41.959434, -68.600514], + [42.938702, -68.463313], + [44.113876, -68.267408], + [44.897291, -68.051866], + [45.719928, -67.816738], + [46.503343, -67.601196], + [47.44344, -67.718759], + [48.344419, -67.366068], + [48.990736, -67.091718], + [49.930885, -67.111303], + [50.753471, -66.876175], + [50.949325, -66.523484], + [51.791547, -66.249133], + [52.614133, -66.053176], + [53.613038, -65.89639], + [54.53355, -65.818049], + [55.414943, -65.876805], + [56.355041, -65.974783], + [57.158093, -66.249133], + [57.255968, -66.680218], + [58.137361, -67.013324], + [58.744508, -67.287675], + [59.939318, -67.405239], + [60.605221, -67.679589], + [61.427806, -67.953887], + [62.387489, -68.012695], + [63.19049, -67.816738], + [64.052349, -67.405239], + [64.992447, -67.620729], + [65.971715, -67.738345], + [66.911864, -67.855909], + [67.891133, -67.934302], + [68.890038, -67.934302], + [69.712624, -68.972791], + [69.673453, -69.227556], + [69.555941, -69.678226], + [68.596258, -69.93294], + [67.81274, -70.305268], + [67.949889, -70.697182], + [69.066307, -70.677545], + [68.929157, -71.069459], + [68.419989, -71.441788], + [67.949889, -71.853287], + [68.71377, -72.166808], + [69.869307, -72.264787], + [71.024895, -72.088415], + [71.573285, -71.696501], + [71.906288, -71.324224], + [72.454627, -71.010703], + [73.08141, -70.716768], + [73.33602, -70.364024], + [73.864877, -69.874183], + [74.491557, -69.776205], + [75.62756, -69.737034], + [76.626465, -69.619419], + [77.644904, -69.462684], + [78.134539, -69.07077], + [78.428371, -68.698441], + [79.113859, -68.326216], + [80.093127, -68.071503], + [80.93535, -67.875546], + [81.483792, -67.542388], + [82.051767, -67.366068], + [82.776426, -67.209282], + [83.775331, -67.30726], + [84.676206, -67.209282], + [85.655527, -67.091718], + [86.752359, -67.150474], + [87.477017, -66.876175], + [87.986289, -66.209911], + [88.358411, -66.484261], + [88.828408, -66.954568], + [89.67063, -67.150474], + [90.630365, -67.228867], + [91.5901, -67.111303], + [92.608539, -67.189696], + [93.548637, -67.209282], + [94.17542, -67.111303], + [95.017591, -67.170111], + [95.781472, -67.385653], + [96.682399, -67.248504], + [97.759646, -67.248504], + [98.68021, -67.111303], + [99.718182, -67.248504], + [100.384188, -66.915346], + [100.893356, -66.58224], + [101.578896, -66.30789], + [102.832411, -65.563284], + [103.478676, -65.700485], + [104.242557, -65.974783], + [104.90846, -66.327527], + [106.181561, -66.934931], + [107.160881, -66.954568], + [108.081393, -66.954568], + [109.15864, -66.837004], + [110.235835, -66.699804], + [111.058472, -66.425505], + [111.74396, -66.13157], + [112.860378, -66.092347], + [113.604673, -65.876805], + [114.388088, -66.072762], + [114.897308, -66.386283], + [115.602381, -66.699804], + [116.699161, -66.660633], + [117.384701, -66.915346], + [118.57946, -67.170111], + [119.832924, -67.268089], + [120.871, -67.189696], + [121.654415, -66.876175], + [122.320369, -66.562654], + [123.221296, -66.484261], + [124.122274, -66.621462], + [125.160247, -66.719389], + [126.100396, -66.562654], + [127.001427, -66.562654], + [127.882768, -66.660633], + [128.80328, -66.758611], + [129.704259, -66.58224], + [130.781454, -66.425505], + [131.799945, -66.386283], + [132.935896, -66.386283], + [133.85646, -66.288304], + [134.757387, -66.209963], + [135.031582, -65.72007], + [135.070753, -65.308571], + [135.697485, -65.582869], + [135.873805, -66.033591], + [136.206705, -66.44509], + [136.618049, -66.778197], + [137.460271, -66.954568], + [138.596223, -66.895761], + [139.908442, -66.876175], + [140.809421, -66.817367], + [142.121692, -66.817367], + [143.061842, -66.797782], + [144.374061, -66.837004], + [145.490427, -66.915346], + [146.195552, -67.228867], + [145.999699, -67.601196], + [146.646067, -67.895131], + [147.723263, -68.130259], + [148.839629, -68.385024], + [150.132314, -68.561292], + [151.483705, -68.71813], + [152.502247, -68.874813], + [153.638199, -68.894502], + [154.284567, -68.561292], + [155.165857, -68.835642], + [155.92979, -69.149215], + [156.811132, -69.384291], + [158.025528, -69.482269], + [159.181013, -69.599833], + [159.670699, -69.991747], + [160.80665, -70.226875], + [161.570479, -70.579618], + [162.686897, -70.736353], + [163.842434, -70.716768], + [164.919681, -70.775524], + [166.11444, -70.755938], + [167.309095, -70.834332], + [168.425616, -70.971481], + [169.463589, -71.20666], + [170.501665, -71.402617], + [171.20679, -71.696501], + [171.089227, -72.088415], + [170.560422, -72.441159], + [170.109958, -72.891829], + [169.75737, -73.24452], + [169.287321, -73.65602], + [167.975101, -73.812806], + [167.387489, -74.165498], + [166.094803, -74.38104], + [165.644391, -74.772954], + [164.958851, -75.145283], + [164.234193, -75.458804], + [163.822797, -75.870303], + [163.568239, -76.24258], + [163.47026, -76.693302], + [163.489897, -77.065579], + [164.057873, -77.457442], + [164.273363, -77.82977], + [164.743464, -78.182514], + [166.604126, -78.319611], + [166.995781, -78.750748], + [165.193876, -78.907483], + [163.666217, -79.123025], + [161.766385, -79.162248], + [160.924162, -79.730482], + [160.747894, -80.200737], + [160.316964, -80.573066], + [159.788211, -80.945395], + [161.120016, -81.278501], + [161.629287, -81.690001], + [162.490992, -82.062278], + [163.705336, -82.395435], + [165.095949, -82.708956], + [166.604126, -83.022477], + [168.895665, -83.335998], + [169.404782, -83.825891], + [172.283934, -84.041433], + [172.477049, -84.117914], + [173.224083, -84.41371], + [175.985672, -84.158997], + [178.277212, -84.472518], + [180, -84.71338], + [-179.942499, -84.721443], + [-179.058677, -84.139412], + [-177.256772, -84.452933], + [-177.140807, -84.417941], + [-176.084673, -84.099259], + [-175.947235, -84.110449], + [-175.829882, -84.117914], + [-174.382503, -84.534323], + [-173.116559, -84.117914], + [-172.889106, -84.061019], + [-169.951223, -83.884647], + [-168.999989, -84.117914], + [-168.530199, -84.23739], + [-167.022099, -84.570497], + [-164.182144, -84.82521], + [-161.929775, -85.138731], + [-158.07138, -85.37391], + [-155.192253, -85.09956], + [-150.942099, -85.295517], + [-148.533073, -85.609038], + [-145.888918, -85.315102], + [-143.107718, -85.040752], + [-142.892279, -84.570497], + [-146.829068, -84.531274], + [-150.060732, -84.296146], + [-150.902928, -83.904232], + [-153.586201, -83.68869], + [-153.409907, -83.23802], + [-153.037759, -82.82652], + [-152.665637, -82.454192], + [-152.861517, -82.042692], + [-154.526299, -81.768394], + [-155.29018, -81.41565], + [-156.83745, -81.102129], + [-154.408787, -81.160937], + [-152.097662, -81.004151], + [-150.648293, -81.337309], + [-148.865998, -81.043373], + [-147.22075, -80.671045], + [-146.417749, -80.337938], + [-146.770286, -79.926439], + [-148.062947, -79.652089], + [-149.531901, -79.358205], + [-151.588416, -79.299397], + [-153.390322, -79.162248], + [-155.329376, -79.064269], + [-155.975668, -78.69194], + [-157.268302, -78.378419], + [-158.051768, -78.025676], + [-158.365134, -76.889207], + [-157.875474, -76.987238], + [-156.974573, -77.300759], + [-155.329376, -77.202728], + [-153.742832, -77.065579], + [-152.920247, -77.496664], + [-151.33378, -77.398737], + [-150.00195, -77.183143], + [-148.748486, -76.908845], + [-147.612483, -76.575738], + [-146.104409, -76.47776], + [-146.143528, -76.105431], + [-146.496091, -75.733154], + [-146.20231, -75.380411], + [-144.909624, -75.204039], + [-144.322037, -75.537197], + [-142.794353, -75.34124], + [-141.638764, -75.086475], + [-140.209007, -75.06689], + [-138.85759, -74.968911], + [-137.5062, -74.733783], + [-136.428901, -74.518241], + [-135.214583, -74.302699], + [-134.431194, -74.361455], + [-133.745654, -74.439848], + [-132.257168, -74.302699], + [-130.925311, -74.479019], + [-129.554284, -74.459433], + [-128.242038, -74.322284], + [-126.890622, -74.420263], + [-125.402082, -74.518241], + [-124.011496, -74.479019], + [-122.562152, -74.498604], + [-121.073613, -74.518241], + [-119.70256, -74.479019], + [-118.684145, -74.185083], + [-117.469801, -74.028348], + [-116.216312, -74.243891], + [-115.021552, -74.067519], + [-113.944331, -73.714828], + [-113.297988, -74.028348], + [-112.945452, -74.38104], + [-112.299083, -74.714198], + [-111.261059, -74.420263], + [-110.066325, -74.79254], + [-108.714909, -74.910103], + [-107.559346, -75.184454], + [-106.149148, -75.125698], + [-104.876074, -74.949326], + [-103.367949, -74.988497], + [-102.016507, -75.125698], + [-100.645531, -75.302018], + [-100.1167, -74.870933], + [-100.763043, -74.537826], + [-101.252703, -74.185083], + [-102.545337, -74.106742], + [-103.113313, -73.734413], + [-103.328752, -73.362084], + [-103.681289, -72.61753], + [-102.917485, -72.754679], + [-101.60524, -72.813436], + [-100.312528, -72.754679], + [-99.13738, -72.911414], + [-98.118889, -73.20535], + [-97.688037, -73.558041], + [-96.336595, -73.616849], + [-95.043961, -73.4797], + [-93.672907, -73.283743], + [-92.439003, -73.166179], + [-91.420564, -73.401307], + [-90.088733, -73.322914], + [-89.226951, -72.558722], + [-88.423951, -73.009393], + [-87.268337, -73.185764], + [-86.014822, -73.087786], + [-85.192236, -73.4797], + [-83.879991, -73.518871], + [-82.665646, -73.636434], + [-81.470913, -73.851977], + [-80.687447, -73.4797], + [-80.295791, -73.126956], + [-79.296886, -73.518871], + [-77.925858, -73.420892], + [-76.907367, -73.636434], + [-76.221879, -73.969541], + [-74.890049, -73.871614], + [-73.852024, -73.65602], + [-72.833533, -73.401307], + [-71.619215, -73.264157], + [-70.209042, -73.146542], + [-68.935916, -73.009393], + [-67.956622, -72.79385], + [-67.369061, -72.480329], + [-67.134036, -72.049244], + [-67.251548, -71.637745], + [-67.56494, -71.245831], + [-67.917477, -70.853917], + [-68.230843, -70.462055], + [-68.485452, -70.109311], + [-68.544209, -69.717397], + [-68.446282, -69.325535], + [-67.976233, -68.953206], + [-67.5845, -68.541707], + [-67.427843, -68.149844], + [-67.62367, -67.718759], + [-67.741183, -67.326845], + [-67.251548, -66.876175], + [-66.703184, -66.58224], + [-66.056815, -66.209963], + [-65.371327, -65.89639], + [-64.568276, -65.602506], + [-64.176542, -65.171423], + [-63.628152, -64.897073], + [-63.001394, -64.642308], + [-62.041686, -64.583552], + [-61.414928, -64.270031], + [-60.709855, -64.074074], + [-59.887269, -63.95651], + [-59.162585, -63.701745], + [-58.594557, -63.388224], + [-57.811143, -63.27066], + [-57.223582, -63.525425], + [-57.59573, -63.858532], + [-58.614143, -64.152467] + ] + ] + ] + }, + "id": "ATA" + }, + { + "type": "Feature", + "properties": { "name": "French Southern and Antarctic Lands" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [68.935, -48.625], + [69.58, -48.94], + [70.525, -49.065], + [70.56, -49.255], + [70.28, -49.71], + [68.745, -49.775], + [68.72, -49.2425], + [68.8675, -48.83], + [68.935, -48.625] + ] + ] + }, + "id": "ATF" + }, + { + "type": "Feature", + "properties": { "name": "Australia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [145.397978, -40.792549], + [146.364121, -41.137695], + [146.908584, -41.000546], + [147.689259, -40.808258], + [148.289068, -40.875438], + [148.359865, -42.062445], + [148.017301, -42.407024], + [147.914052, -43.211522], + [147.564564, -42.937689], + [146.870343, -43.634597], + [146.663327, -43.580854], + [146.048378, -43.549745], + [145.43193, -42.693776], + [145.29509, -42.03361], + [144.718071, -41.162552], + [144.743755, -40.703975], + [145.397978, -40.792549] + ] + ], + [ + [ + [143.561811, -13.763656], + [143.922099, -14.548311], + [144.563714, -14.171176], + [144.894908, -14.594458], + [145.374724, -14.984976], + [145.271991, -15.428205], + [145.48526, -16.285672], + [145.637033, -16.784918], + [145.888904, -16.906926], + [146.160309, -17.761655], + [146.063674, -18.280073], + [146.387478, -18.958274], + [147.471082, -19.480723], + [148.177602, -19.955939], + [148.848414, -20.39121], + [148.717465, -20.633469], + [149.28942, -21.260511], + [149.678337, -22.342512], + [150.077382, -22.122784], + [150.482939, -22.556142], + [150.727265, -22.402405], + [150.899554, -23.462237], + [151.609175, -24.076256], + [152.07354, -24.457887], + [152.855197, -25.267501], + [153.136162, -26.071173], + [153.161949, -26.641319], + [153.092909, -27.2603], + [153.569469, -28.110067], + [153.512108, -28.995077], + [153.339095, -29.458202], + [153.069241, -30.35024], + [153.089602, -30.923642], + [152.891578, -31.640446], + [152.450002, -32.550003], + [151.709117, -33.041342], + [151.343972, -33.816023], + [151.010555, -34.31036], + [150.714139, -35.17346], + [150.32822, -35.671879], + [150.075212, -36.420206], + [149.946124, -37.109052], + [149.997284, -37.425261], + [149.423882, -37.772681], + [148.304622, -37.809061], + [147.381733, -38.219217], + [146.922123, -38.606532], + [146.317922, -39.035757], + [145.489652, -38.593768], + [144.876976, -38.417448], + [145.032212, -37.896188], + [144.485682, -38.085324], + [143.609974, -38.809465], + [142.745427, -38.538268], + [142.17833, -38.380034], + [141.606582, -38.308514], + [140.638579, -38.019333], + [139.992158, -37.402936], + [139.806588, -36.643603], + [139.574148, -36.138362], + [139.082808, -35.732754], + [138.120748, -35.612296], + [138.449462, -35.127261], + [138.207564, -34.384723], + [137.71917, -35.076825], + [136.829406, -35.260535], + [137.352371, -34.707339], + [137.503886, -34.130268], + [137.890116, -33.640479], + [137.810328, -32.900007], + [136.996837, -33.752771], + [136.372069, -34.094766], + [135.989043, -34.890118], + [135.208213, -34.47867], + [135.239218, -33.947953], + [134.613417, -33.222778], + [134.085904, -32.848072], + [134.273903, -32.617234], + [132.990777, -32.011224], + [132.288081, -31.982647], + [131.326331, -31.495803], + [129.535794, -31.590423], + [128.240938, -31.948489], + [127.102867, -32.282267], + [126.148714, -32.215966], + [125.088623, -32.728751], + [124.221648, -32.959487], + [124.028947, -33.483847], + [123.659667, -33.890179], + [122.811036, -33.914467], + [122.183064, -34.003402], + [121.299191, -33.821036], + [120.580268, -33.930177], + [119.893695, -33.976065], + [119.298899, -34.509366], + [119.007341, -34.464149], + [118.505718, -34.746819], + [118.024972, -35.064733], + [117.295507, -35.025459], + [116.625109, -35.025097], + [115.564347, -34.386428], + [115.026809, -34.196517], + [115.048616, -33.623425], + [115.545123, -33.487258], + [115.714674, -33.259572], + [115.679379, -32.900369], + [115.801645, -32.205062], + [115.689611, -31.612437], + [115.160909, -30.601594], + [114.997043, -30.030725], + [115.040038, -29.461095], + [114.641974, -28.810231], + [114.616498, -28.516399], + [114.173579, -28.118077], + [114.048884, -27.334765], + [113.477498, -26.543134], + [113.338953, -26.116545], + [113.778358, -26.549025], + [113.440962, -25.621278], + [113.936901, -25.911235], + [114.232852, -26.298446], + [114.216161, -25.786281], + [113.721255, -24.998939], + [113.625344, -24.683971], + [113.393523, -24.384764], + [113.502044, -23.80635], + [113.706993, -23.560215], + [113.843418, -23.059987], + [113.736552, -22.475475], + [114.149756, -21.755881], + [114.225307, -22.517488], + [114.647762, -21.82952], + [115.460167, -21.495173], + [115.947373, -21.068688], + [116.711615, -20.701682], + [117.166316, -20.623599], + [117.441545, -20.746899], + [118.229559, -20.374208], + [118.836085, -20.263311], + [118.987807, -20.044203], + [119.252494, -19.952942], + [119.805225, -19.976506], + [120.85622, -19.683708], + [121.399856, -19.239756], + [121.655138, -18.705318], + [122.241665, -18.197649], + [122.286624, -17.798603], + [122.312772, -17.254967], + [123.012574, -16.4052], + [123.433789, -17.268558], + [123.859345, -17.069035], + [123.503242, -16.596506], + [123.817073, -16.111316], + [124.258287, -16.327944], + [124.379726, -15.56706], + [124.926153, -15.0751], + [125.167275, -14.680396], + [125.670087, -14.51007], + [125.685796, -14.230656], + [126.125149, -14.347341], + [126.142823, -14.095987], + [126.582589, -13.952791], + [127.065867, -13.817968], + [127.804633, -14.276906], + [128.35969, -14.86917], + [128.985543, -14.875991], + [129.621473, -14.969784], + [129.4096, -14.42067], + [129.888641, -13.618703], + [130.339466, -13.357376], + [130.183506, -13.10752], + [130.617795, -12.536392], + [131.223495, -12.183649], + [131.735091, -12.302453], + [132.575298, -12.114041], + [132.557212, -11.603012], + [131.824698, -11.273782], + [132.357224, -11.128519], + [133.019561, -11.376411], + [133.550846, -11.786515], + [134.393068, -12.042365], + [134.678632, -11.941183], + [135.298491, -12.248606], + [135.882693, -11.962267], + [136.258381, -12.049342], + [136.492475, -11.857209], + [136.95162, -12.351959], + [136.685125, -12.887223], + [136.305407, -13.29123], + [135.961758, -13.324509], + [136.077617, -13.724278], + [135.783836, -14.223989], + [135.428664, -14.715432], + [135.500184, -14.997741], + [136.295175, -15.550265], + [137.06536, -15.870762], + [137.580471, -16.215082], + [138.303217, -16.807604], + [138.585164, -16.806622], + [139.108543, -17.062679], + [139.260575, -17.371601], + [140.215245, -17.710805], + [140.875463, -17.369069], + [141.07111, -16.832047], + [141.274095, -16.38887], + [141.398222, -15.840532], + [141.702183, -15.044921], + [141.56338, -14.561333], + [141.63552, -14.270395], + [141.519869, -13.698078], + [141.65092, -12.944688], + [141.842691, -12.741548], + [141.68699, -12.407614], + [141.928629, -11.877466], + [142.118488, -11.328042], + [142.143706, -11.042737], + [142.51526, -10.668186], + [142.79731, -11.157355], + [142.866763, -11.784707], + [143.115947, -11.90563], + [143.158632, -12.325656], + [143.522124, -12.834358], + [143.597158, -13.400422], + [143.561811, -13.763656] + ] + ] + ] + }, + "id": "AUS" + }, + { + "type": "Feature", + "properties": { "name": "Austria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.979667, 48.123497], + [16.903754, 47.714866], + [16.340584, 47.712902], + [16.534268, 47.496171], + [16.202298, 46.852386], + [16.011664, 46.683611], + [15.137092, 46.658703], + [14.632472, 46.431817], + [13.806475, 46.509306], + [12.376485, 46.767559], + [12.153088, 47.115393], + [11.164828, 46.941579], + [11.048556, 46.751359], + [10.442701, 46.893546], + [9.932448, 46.920728], + [9.47997, 47.10281], + [9.632932, 47.347601], + [9.594226, 47.525058], + [9.896068, 47.580197], + [10.402084, 47.302488], + [10.544504, 47.566399], + [11.426414, 47.523766], + [12.141357, 47.703083], + [12.62076, 47.672388], + [12.932627, 47.467646], + [13.025851, 47.637584], + [12.884103, 48.289146], + [13.243357, 48.416115], + [13.595946, 48.877172], + [14.338898, 48.555305], + [14.901447, 48.964402], + [15.253416, 49.039074], + [16.029647, 48.733899], + [16.499283, 48.785808], + [16.960288, 48.596982], + [16.879983, 48.470013], + [16.979667, 48.123497] + ] + ] + }, + "id": "AUT" + }, + { + "type": "Feature", + "properties": { "name": "Azerbaijan" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [45.001987, 39.740004], + [45.298145, 39.471751], + [45.739978, 39.473999], + [45.735379, 39.319719], + [46.143623, 38.741201], + [45.457722, 38.874139], + [44.952688, 39.335765], + [44.79399, 39.713003], + [45.001987, 39.740004] + ] + ], + [ + [ + [47.373315, 41.219732], + [47.815666, 41.151416], + [47.987283, 41.405819], + [48.584353, 41.80887], + [49.110264, 41.282287], + [49.618915, 40.572924], + [50.08483, 40.526157], + [50.392821, 40.256561], + [49.569202, 40.176101], + [49.395259, 39.399482], + [49.223228, 39.049219], + [48.856532, 38.815486], + [48.883249, 38.320245], + [48.634375, 38.270378], + [48.010744, 38.794015], + [48.355529, 39.288765], + [48.060095, 39.582235], + [47.685079, 39.508364], + [46.50572, 38.770605], + [46.483499, 39.464155], + [46.034534, 39.628021], + [45.610012, 39.899994], + [45.891907, 40.218476], + [45.359175, 40.561504], + [45.560351, 40.81229], + [45.179496, 40.985354], + [44.97248, 41.248129], + [45.217426, 41.411452], + [45.962601, 41.123873], + [46.501637, 41.064445], + [46.637908, 41.181673], + [46.145432, 41.722802], + [46.404951, 41.860675], + [46.686071, 41.827137], + [47.373315, 41.219732] + ] + ] + ] + }, + "id": "AZE" + }, + { + "type": "Feature", + "properties": { "name": "Burundi" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.339998, -4.499983], + [29.276384, -3.293907], + [29.024926, -2.839258], + [29.632176, -2.917858], + [29.938359, -2.348487], + [30.469696, -2.413858], + [30.527677, -2.807632], + [30.743013, -3.034285], + [30.752263, -3.35933], + [30.50556, -3.568567], + [30.116333, -4.090138], + [29.753512, -4.452389], + [29.339998, -4.499983] + ] + ] + }, + "id": "BDI" + }, + { + "type": "Feature", + "properties": { "name": "Belgium" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [3.314971, 51.345781], + [4.047071, 51.267259], + [4.973991, 51.475024], + [5.606976, 51.037298], + [6.156658, 50.803721], + [6.043073, 50.128052], + [5.782417, 50.090328], + [5.674052, 49.529484], + [4.799222, 49.985373], + [4.286023, 49.907497], + [3.588184, 50.378992], + [3.123252, 50.780363], + [2.658422, 50.796848], + [2.513573, 51.148506], + [3.314971, 51.345781] + ] + ] + }, + "id": "BEL" + }, + { + "type": "Feature", + "properties": { "name": "Benin" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.691702, 6.258817], + [1.865241, 6.142158], + [1.618951, 6.832038], + [1.664478, 9.12859], + [1.463043, 9.334624], + [1.425061, 9.825395], + [1.077795, 10.175607], + [0.772336, 10.470808], + [0.899563, 10.997339], + [1.24347, 11.110511], + [1.447178, 11.547719], + [1.935986, 11.64115], + [2.154474, 11.94015], + [2.490164, 12.233052], + [2.848643, 12.235636], + [3.61118, 11.660167], + [3.572216, 11.327939], + [3.797112, 10.734746], + [3.60007, 10.332186], + [3.705438, 10.06321], + [3.220352, 9.444153], + [2.912308, 9.137608], + [2.723793, 8.506845], + [2.749063, 7.870734], + [2.691702, 6.258817] + ] + ] + }, + "id": "BEN" + }, + { + "type": "Feature", + "properties": { "name": "Burkina Faso" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.827496, 9.642461], + [-3.511899, 9.900326], + [-3.980449, 9.862344], + [-4.330247, 9.610835], + [-4.779884, 9.821985], + [-4.954653, 10.152714], + [-5.404342, 10.370737], + [-5.470565, 10.95127], + [-5.197843, 11.375146], + [-5.220942, 11.713859], + [-4.427166, 12.542646], + [-4.280405, 13.228444], + [-4.006391, 13.472485], + [-3.522803, 13.337662], + [-3.103707, 13.541267], + [-2.967694, 13.79815], + [-2.191825, 14.246418], + [-2.001035, 14.559008], + [-1.066363, 14.973815], + [-0.515854, 15.116158], + [-0.266257, 14.924309], + [0.374892, 14.928908], + [0.295646, 14.444235], + [0.429928, 13.988733], + [0.993046, 13.33575], + [1.024103, 12.851826], + [2.177108, 12.625018], + [2.154474, 11.94015], + [1.935986, 11.64115], + [1.447178, 11.547719], + [1.24347, 11.110511], + [0.899563, 10.997339], + [0.023803, 11.018682], + [-0.438702, 11.098341], + [-0.761576, 10.93693], + [-1.203358, 11.009819], + [-2.940409, 10.96269], + [-2.963896, 10.395335], + [-2.827496, 9.642461] + ] + ] + }, + "id": "BFA" + }, + { + "type": "Feature", + "properties": { "name": "Bangladesh" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [92.672721, 22.041239], + [92.652257, 21.324048], + [92.303234, 21.475485], + [92.368554, 20.670883], + [92.082886, 21.192195], + [92.025215, 21.70157], + [91.834891, 22.182936], + [91.417087, 22.765019], + [90.496006, 22.805017], + [90.586957, 22.392794], + [90.272971, 21.836368], + [89.847467, 22.039146], + [89.70205, 21.857116], + [89.418863, 21.966179], + [89.031961, 22.055708], + [88.876312, 22.879146], + [88.52977, 23.631142], + [88.69994, 24.233715], + [88.084422, 24.501657], + [88.306373, 24.866079], + [88.931554, 25.238692], + [88.209789, 25.768066], + [88.563049, 26.446526], + [89.355094, 26.014407], + [89.832481, 25.965082], + [89.920693, 25.26975], + [90.872211, 25.132601], + [91.799596, 25.147432], + [92.376202, 24.976693], + [91.915093, 24.130414], + [91.46773, 24.072639], + [91.158963, 23.503527], + [91.706475, 22.985264], + [91.869928, 23.624346], + [92.146035, 23.627499], + [92.672721, 22.041239] + ] + ] + }, + "id": "BGD" + }, + { + "type": "Feature", + "properties": { "name": "Bulgaria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.65715, 44.234923], + [22.944832, 43.823785], + [23.332302, 43.897011], + [24.100679, 43.741051], + [25.569272, 43.688445], + [26.065159, 43.943494], + [27.2424, 44.175986], + [27.970107, 43.812468], + [28.558081, 43.707462], + [28.039095, 43.293172], + [27.673898, 42.577892], + [27.99672, 42.007359], + [27.135739, 42.141485], + [26.117042, 41.826905], + [26.106138, 41.328899], + [25.197201, 41.234486], + [24.492645, 41.583896], + [23.692074, 41.309081], + [22.952377, 41.337994], + [22.881374, 41.999297], + [22.380526, 42.32026], + [22.545012, 42.461362], + [22.436595, 42.580321], + [22.604801, 42.898519], + [22.986019, 43.211161], + [22.500157, 43.642814], + [22.410446, 44.008063], + [22.65715, 44.234923] + ] + ] + }, + "id": "BGR" + }, + { + "type": "Feature", + "properties": { "name": "The Bahamas" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-77.53466, 23.75975], + [-77.78, 23.71], + [-78.03405, 24.28615], + [-78.40848, 24.57564], + [-78.19087, 25.2103], + [-77.89, 25.17], + [-77.54, 24.34], + [-77.53466, 23.75975] + ] + ], + [ + [ + [-77.82, 26.58], + [-78.91, 26.42], + [-78.98, 26.79], + [-78.51, 26.87], + [-77.85, 26.84], + [-77.82, 26.58] + ] + ], + [ + [ + [-77, 26.59], + [-77.17255, 25.87918], + [-77.35641, 26.00735], + [-77.34, 26.53], + [-77.78802, 26.92516], + [-77.79, 27.04], + [-77, 26.59] + ] + ] + ] + }, + "id": "BHS" + }, + { + "type": "Feature", + "properties": { "name": "Bosnia and Herzegovina" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [19.005486, 44.860234], + [19.36803, 44.863], + [19.11761, 44.42307], + [19.59976, 44.03847], + [19.454, 43.5681], + [19.21852, 43.52384], + [19.03165, 43.43253], + [18.70648, 43.20011], + [18.56, 42.65], + [17.674922, 43.028563], + [17.297373, 43.446341], + [16.916156, 43.667722], + [16.456443, 44.04124], + [16.23966, 44.351143], + [15.750026, 44.818712], + [15.959367, 45.233777], + [16.318157, 45.004127], + [16.534939, 45.211608], + [17.002146, 45.233777], + [17.861783, 45.06774], + [18.553214, 45.08159], + [19.005486, 44.860234] + ] + ] + }, + "id": "BIH" + }, + { + "type": "Feature", + "properties": { "name": "Belarus" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.484128, 53.912498], + [24.450684, 53.905702], + [25.536354, 54.282423], + [25.768433, 54.846963], + [26.588279, 55.167176], + [26.494331, 55.615107], + [27.10246, 55.783314], + [28.176709, 56.16913], + [29.229513, 55.918344], + [29.371572, 55.670091], + [29.896294, 55.789463], + [30.873909, 55.550976], + [30.971836, 55.081548], + [30.757534, 54.811771], + [31.384472, 54.157056], + [31.791424, 53.974639], + [31.731273, 53.794029], + [32.405599, 53.618045], + [32.693643, 53.351421], + [32.304519, 53.132726], + [31.497644, 53.167427], + [31.305201, 53.073996], + [31.540018, 52.742052], + [31.785998, 52.101678], + [30.927549, 52.042353], + [30.619454, 51.822806], + [30.555117, 51.319503], + [30.157364, 51.416138], + [29.254938, 51.368234], + [28.992835, 51.602044], + [28.617613, 51.427714], + [28.241615, 51.572227], + [27.454066, 51.592303], + [26.337959, 51.832289], + [25.327788, 51.910656], + [24.553106, 51.888461], + [24.005078, 51.617444], + [23.527071, 51.578454], + [23.508002, 52.023647], + [23.199494, 52.486977], + [23.799199, 52.691099], + [23.804935, 53.089731], + [23.527536, 53.470122], + [23.484128, 53.912498] + ] + ] + }, + "id": "BLR" + }, + { + "type": "Feature", + "properties": { "name": "Belize" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.14308, 17.808319], + [-89.150909, 17.955468], + [-89.029857, 18.001511], + [-88.848344, 17.883198], + [-88.490123, 18.486831], + [-88.300031, 18.499982], + [-88.296336, 18.353273], + [-88.106813, 18.348674], + [-88.123479, 18.076675], + [-88.285355, 17.644143], + [-88.197867, 17.489475], + [-88.302641, 17.131694], + [-88.239518, 17.036066], + [-88.355428, 16.530774], + [-88.551825, 16.265467], + [-88.732434, 16.233635], + [-88.930613, 15.887273], + [-89.229122, 15.886938], + [-89.150806, 17.015577], + [-89.14308, 17.808319] + ] + ] + }, + "id": "BLZ" + }, + { + "type": "Feature", + "properties": { "name": "Bolivia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.846468, -22.034985], + [-63.986838, -21.993644], + [-64.377021, -22.798091], + [-64.964892, -22.075862], + [-66.273339, -21.83231], + [-67.106674, -22.735925], + [-67.82818, -22.872919], + [-68.219913, -21.494347], + [-68.757167, -20.372658], + [-68.442225, -19.405068], + [-68.966818, -18.981683], + [-69.100247, -18.260125], + [-69.590424, -17.580012], + [-68.959635, -16.500698], + [-69.389764, -15.660129], + [-69.160347, -15.323974], + [-69.339535, -14.953195], + [-68.948887, -14.453639], + [-68.929224, -13.602684], + [-68.88008, -12.899729], + [-68.66508, -12.5613], + [-69.529678, -10.951734], + [-68.786158, -11.03638], + [-68.271254, -11.014521], + [-68.048192, -10.712059], + [-67.173801, -10.306812], + [-66.646908, -9.931331], + [-65.338435, -9.761988], + [-65.444837, -10.511451], + [-65.321899, -10.895872], + [-65.402281, -11.56627], + [-64.316353, -12.461978], + [-63.196499, -12.627033], + [-62.80306, -13.000653], + [-62.127081, -13.198781], + [-61.713204, -13.489202], + [-61.084121, -13.479384], + [-60.503304, -13.775955], + [-60.459198, -14.354007], + [-60.264326, -14.645979], + [-60.251149, -15.077219], + [-60.542966, -15.09391], + [-60.15839, -16.258284], + [-58.24122, -16.299573], + [-58.388058, -16.877109], + [-58.280804, -17.27171], + [-57.734558, -17.552468], + [-57.498371, -18.174188], + [-57.676009, -18.96184], + [-57.949997, -19.400004], + [-57.853802, -19.969995], + [-58.166392, -20.176701], + [-58.183471, -19.868399], + [-59.115042, -19.356906], + [-60.043565, -19.342747], + [-61.786326, -19.633737], + [-62.265961, -20.513735], + [-62.291179, -21.051635], + [-62.685057, -22.249029], + [-62.846468, -22.034985] + ] + ] + }, + "id": "BOL" + }, + { + "type": "Feature", + "properties": { "name": "Brazil" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.625133, -30.216295], + [-56.2909, -28.852761], + [-55.162286, -27.881915], + [-54.490725, -27.474757], + [-53.648735, -26.923473], + [-53.628349, -26.124865], + [-54.13005, -25.547639], + [-54.625291, -25.739255], + [-54.428946, -25.162185], + [-54.293476, -24.5708], + [-54.29296, -24.021014], + [-54.652834, -23.839578], + [-55.027902, -24.001274], + [-55.400747, -23.956935], + [-55.517639, -23.571998], + [-55.610683, -22.655619], + [-55.797958, -22.35693], + [-56.473317, -22.0863], + [-56.88151, -22.282154], + [-57.937156, -22.090176], + [-57.870674, -20.732688], + [-58.166392, -20.176701], + [-57.853802, -19.969995], + [-57.949997, -19.400004], + [-57.676009, -18.96184], + [-57.498371, -18.174188], + [-57.734558, -17.552468], + [-58.280804, -17.27171], + [-58.388058, -16.877109], + [-58.24122, -16.299573], + [-60.15839, -16.258284], + [-60.542966, -15.09391], + [-60.251149, -15.077219], + [-60.264326, -14.645979], + [-60.459198, -14.354007], + [-60.503304, -13.775955], + [-61.084121, -13.479384], + [-61.713204, -13.489202], + [-62.127081, -13.198781], + [-62.80306, -13.000653], + [-63.196499, -12.627033], + [-64.316353, -12.461978], + [-65.402281, -11.56627], + [-65.321899, -10.895872], + [-65.444837, -10.511451], + [-65.338435, -9.761988], + [-66.646908, -9.931331], + [-67.173801, -10.306812], + [-68.048192, -10.712059], + [-68.271254, -11.014521], + [-68.786158, -11.03638], + [-69.529678, -10.951734], + [-70.093752, -11.123972], + [-70.548686, -11.009147], + [-70.481894, -9.490118], + [-71.302412, -10.079436], + [-72.184891, -10.053598], + [-72.563033, -9.520194], + [-73.226713, -9.462213], + [-73.015383, -9.032833], + [-73.571059, -8.424447], + [-73.987235, -7.52383], + [-73.723401, -7.340999], + [-73.724487, -6.918595], + [-73.120027, -6.629931], + [-73.219711, -6.089189], + [-72.964507, -5.741251], + [-72.891928, -5.274561], + [-71.748406, -4.593983], + [-70.928843, -4.401591], + [-70.794769, -4.251265], + [-69.893635, -4.298187], + [-69.444102, -1.556287], + [-69.420486, -1.122619], + [-69.577065, -0.549992], + [-70.020656, -0.185156], + [-70.015566, 0.541414], + [-69.452396, 0.706159], + [-69.252434, 0.602651], + [-69.218638, 0.985677], + [-69.804597, 1.089081], + [-69.816973, 1.714805], + [-67.868565, 1.692455], + [-67.53781, 2.037163], + [-67.259998, 1.719999], + [-67.065048, 1.130112], + [-66.876326, 1.253361], + [-66.325765, 0.724452], + [-65.548267, 0.789254], + [-65.354713, 1.095282], + [-64.611012, 1.328731], + [-64.199306, 1.492855], + [-64.083085, 1.916369], + [-63.368788, 2.2009], + [-63.422867, 2.411068], + [-64.269999, 2.497006], + [-64.408828, 3.126786], + [-64.368494, 3.79721], + [-64.816064, 4.056445], + [-64.628659, 4.148481], + [-63.888343, 4.02053], + [-63.093198, 3.770571], + [-62.804533, 4.006965], + [-62.08543, 4.162124], + [-60.966893, 4.536468], + [-60.601179, 4.918098], + [-60.733574, 5.200277], + [-60.213683, 5.244486], + [-59.980959, 5.014061], + [-60.111002, 4.574967], + [-59.767406, 4.423503], + [-59.53804, 3.958803], + [-59.815413, 3.606499], + [-59.974525, 2.755233], + [-59.718546, 2.24963], + [-59.646044, 1.786894], + [-59.030862, 1.317698], + [-58.540013, 1.268088], + [-58.429477, 1.463942], + [-58.11345, 1.507195], + [-57.660971, 1.682585], + [-57.335823, 1.948538], + [-56.782704, 1.863711], + [-56.539386, 1.899523], + [-55.995698, 1.817667], + [-55.9056, 2.021996], + [-56.073342, 2.220795], + [-55.973322, 2.510364], + [-55.569755, 2.421506], + [-55.097587, 2.523748], + [-54.524754, 2.311849], + [-54.088063, 2.105557], + [-53.778521, 2.376703], + [-53.554839, 2.334897], + [-53.418465, 2.053389], + [-52.939657, 2.124858], + [-52.556425, 2.504705], + [-52.249338, 3.241094], + [-51.657797, 4.156232], + [-51.317146, 4.203491], + [-51.069771, 3.650398], + [-50.508875, 1.901564], + [-49.974076, 1.736483], + [-49.947101, 1.04619], + [-50.699251, 0.222984], + [-50.388211, -0.078445], + [-48.620567, -0.235489], + [-48.584497, -1.237805], + [-47.824956, -0.581618], + [-46.566584, -0.941028], + [-44.905703, -1.55174], + [-44.417619, -2.13775], + [-44.581589, -2.691308], + [-43.418791, -2.38311], + [-41.472657, -2.912018], + [-39.978665, -2.873054], + [-38.500383, -3.700652], + [-37.223252, -4.820946], + [-36.452937, -5.109404], + [-35.597796, -5.149504], + [-35.235389, -5.464937], + [-34.89603, -6.738193], + [-34.729993, -7.343221], + [-35.128212, -8.996401], + [-35.636967, -9.649282], + [-37.046519, -11.040721], + [-37.683612, -12.171195], + [-38.423877, -13.038119], + [-38.673887, -13.057652], + [-38.953276, -13.79337], + [-38.882298, -15.667054], + [-39.161092, -17.208407], + [-39.267339, -17.867746], + [-39.583521, -18.262296], + [-39.760823, -19.599113], + [-40.774741, -20.904512], + [-40.944756, -21.937317], + [-41.754164, -22.370676], + [-41.988284, -22.97007], + [-43.074704, -22.967693], + [-44.647812, -23.351959], + [-45.352136, -23.796842], + [-46.472093, -24.088969], + [-47.648972, -24.885199], + [-48.495458, -25.877025], + [-48.641005, -26.623698], + [-48.474736, -27.175912], + [-48.66152, -28.186135], + [-48.888457, -28.674115], + [-49.587329, -29.224469], + [-50.696874, -30.984465], + [-51.576226, -31.777698], + [-52.256081, -32.24537], + [-52.7121, -33.196578], + [-53.373662, -33.768378], + [-53.650544, -33.202004], + [-53.209589, -32.727666], + [-53.787952, -32.047243], + [-54.572452, -31.494511], + [-55.60151, -30.853879], + [-55.973245, -30.883076], + [-56.976026, -30.109686], + [-57.625133, -30.216295] + ] + ] + }, + "id": "BRA" + }, + { + "type": "Feature", + "properties": { "name": "Brunei" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [114.204017, 4.525874], + [114.599961, 4.900011], + [115.45071, 5.44773], + [115.4057, 4.955228], + [115.347461, 4.316636], + [114.869557, 4.348314], + [114.659596, 4.007637], + [114.204017, 4.525874] + ] + ] + }, + "id": "BRN" + }, + { + "type": "Feature", + "properties": { "name": "Bhutan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [91.696657, 27.771742], + [92.103712, 27.452614], + [92.033484, 26.83831], + [91.217513, 26.808648], + [90.373275, 26.875724], + [89.744528, 26.719403], + [88.835643, 27.098966], + [88.814248, 27.299316], + [89.47581, 28.042759], + [90.015829, 28.296439], + [90.730514, 28.064954], + [91.258854, 28.040614], + [91.696657, 27.771742] + ] + ] + }, + "id": "BTN" + }, + { + "type": "Feature", + "properties": { "name": "Botswana" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [25.649163, -18.536026], + [25.850391, -18.714413], + [26.164791, -19.293086], + [27.296505, -20.39152], + [27.724747, -20.499059], + [27.727228, -20.851802], + [28.02137, -21.485975], + [28.794656, -21.639454], + [29.432188, -22.091313], + [28.017236, -22.827754], + [27.11941, -23.574323], + [26.786407, -24.240691], + [26.485753, -24.616327], + [25.941652, -24.696373], + [25.765849, -25.174845], + [25.664666, -25.486816], + [25.025171, -25.71967], + [24.211267, -25.670216], + [23.73357, -25.390129], + [23.312097, -25.26869], + [22.824271, -25.500459], + [22.579532, -25.979448], + [22.105969, -26.280256], + [21.605896, -26.726534], + [20.889609, -26.828543], + [20.66647, -26.477453], + [20.758609, -25.868136], + [20.165726, -24.917962], + [19.895768, -24.76779], + [19.895458, -21.849157], + [20.881134, -21.814327], + [20.910641, -18.252219], + [21.65504, -18.219146], + [23.196858, -17.869038], + [23.579006, -18.281261], + [24.217365, -17.889347], + [24.520705, -17.887125], + [25.084443, -17.661816], + [25.264226, -17.73654], + [25.649163, -18.536026] + ] + ] + }, + "id": "BWA" + }, + { + "type": "Feature", + "properties": { "name": "Central African Republic" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [15.27946, 7.421925], + [16.106232, 7.497088], + [16.290562, 7.754307], + [16.456185, 7.734774], + [16.705988, 7.508328], + [17.96493, 7.890914], + [18.389555, 8.281304], + [18.911022, 8.630895], + [18.81201, 8.982915], + [19.094008, 9.074847], + [20.059685, 9.012706], + [21.000868, 9.475985], + [21.723822, 10.567056], + [22.231129, 10.971889], + [22.864165, 11.142395], + [22.977544, 10.714463], + [23.554304, 10.089255], + [23.55725, 9.681218], + [23.394779, 9.265068], + [23.459013, 8.954286], + [23.805813, 8.666319], + [24.567369, 8.229188], + [25.114932, 7.825104], + [25.124131, 7.500085], + [25.796648, 6.979316], + [26.213418, 6.546603], + [26.465909, 5.946717], + [27.213409, 5.550953], + [27.374226, 5.233944], + [27.044065, 5.127853], + [26.402761, 5.150875], + [25.650455, 5.256088], + [25.278798, 5.170408], + [25.128833, 4.927245], + [24.805029, 4.897247], + [24.410531, 5.108784], + [23.297214, 4.609693], + [22.84148, 4.710126], + [22.704124, 4.633051], + [22.405124, 4.02916], + [21.659123, 4.224342], + [20.927591, 4.322786], + [20.290679, 4.691678], + [19.467784, 5.031528], + [18.932312, 4.709506], + [18.542982, 4.201785], + [18.453065, 3.504386], + [17.8099, 3.560196], + [17.133042, 3.728197], + [16.537058, 3.198255], + [16.012852, 2.26764], + [15.907381, 2.557389], + [15.862732, 3.013537], + [15.405396, 3.335301], + [15.03622, 3.851367], + [14.950953, 4.210389], + [14.478372, 4.732605], + [14.558936, 5.030598], + [14.459407, 5.451761], + [14.53656, 6.226959], + [14.776545, 6.408498], + [15.27946, 7.421925] + ] + ] + }, + "id": "CAF" + }, + { + "type": "Feature", + "properties": { "name": "Canada" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-63.6645, 46.55001], + [-62.9393, 46.41587], + [-62.01208, 46.44314], + [-62.50391, 46.03339], + [-62.87433, 45.96818], + [-64.1428, 46.39265], + [-64.39261, 46.72747], + [-64.01486, 47.03601], + [-63.6645, 46.55001] + ] + ], + [ + [ + [-61.806305, 49.10506], + [-62.29318, 49.08717], + [-63.58926, 49.40069], + [-64.51912, 49.87304], + [-64.17322, 49.95718], + [-62.85829, 49.70641], + [-61.835585, 49.28855], + [-61.806305, 49.10506] + ] + ], + [ + [ + [-123.510002, 48.510011], + [-124.012891, 48.370846], + [-125.655013, 48.825005], + [-125.954994, 49.179996], + [-126.850004, 49.53], + [-127.029993, 49.814996], + [-128.059336, 49.994959], + [-128.444584, 50.539138], + [-128.358414, 50.770648], + [-127.308581, 50.552574], + [-126.695001, 50.400903], + [-125.755007, 50.295018], + [-125.415002, 49.950001], + [-124.920768, 49.475275], + [-123.922509, 49.062484], + [-123.510002, 48.510011] + ] + ], + [ + [ + [-56.134036, 50.68701], + [-56.795882, 49.812309], + [-56.143105, 50.150117], + [-55.471492, 49.935815], + [-55.822401, 49.587129], + [-54.935143, 49.313011], + [-54.473775, 49.556691], + [-53.476549, 49.249139], + [-53.786014, 48.516781], + [-53.086134, 48.687804], + [-52.958648, 48.157164], + [-52.648099, 47.535548], + [-53.069158, 46.655499], + [-53.521456, 46.618292], + [-54.178936, 46.807066], + [-53.961869, 47.625207], + [-54.240482, 47.752279], + [-55.400773, 46.884994], + [-55.997481, 46.91972], + [-55.291219, 47.389562], + [-56.250799, 47.632545], + [-57.325229, 47.572807], + [-59.266015, 47.603348], + [-59.419494, 47.899454], + [-58.796586, 48.251525], + [-59.231625, 48.523188], + [-58.391805, 49.125581], + [-57.35869, 50.718274], + [-56.73865, 51.287438], + [-55.870977, 51.632094], + [-55.406974, 51.588273], + [-55.600218, 51.317075], + [-56.134036, 50.68701] + ] + ], + [ + [ + [-132.710008, 54.040009], + [-132.710009, 54.040009], + [-132.710008, 54.040009], + [-132.710008, 54.040009], + [-131.74999, 54.120004], + [-132.04948, 52.984621], + [-131.179043, 52.180433], + [-131.57783, 52.182371], + [-132.180428, 52.639707], + [-132.549992, 53.100015], + [-133.054611, 53.411469], + [-133.239664, 53.85108], + [-133.180004, 54.169975], + [-132.710008, 54.040009] + ] + ], + [ + [ + [-79.26582, 62.158675], + [-79.65752, 61.63308], + [-80.09956, 61.7181], + [-80.36215, 62.01649], + [-80.315395, 62.085565], + [-79.92939, 62.3856], + [-79.52002, 62.36371], + [-79.26582, 62.158675] + ] + ], + [ + [ + [-81.89825, 62.7108], + [-83.06857, 62.15922], + [-83.77462, 62.18231], + [-83.99367, 62.4528], + [-83.25048, 62.91409], + [-81.87699, 62.90458], + [-81.89825, 62.7108] + ] + ], + [ + [ + [-85.161308, 65.657285], + [-84.975764, 65.217518], + [-84.464012, 65.371772], + [-83.882626, 65.109618], + [-82.787577, 64.766693], + [-81.642014, 64.455136], + [-81.55344, 63.979609], + [-80.817361, 64.057486], + [-80.103451, 63.725981], + [-80.99102, 63.411246], + [-82.547178, 63.651722], + [-83.108798, 64.101876], + [-84.100417, 63.569712], + [-85.523405, 63.052379], + [-85.866769, 63.637253], + [-87.221983, 63.541238], + [-86.35276, 64.035833], + [-86.224886, 64.822917], + [-85.883848, 65.738778], + [-85.161308, 65.657285] + ] + ], + [ + [ + [-75.86588, 67.14886], + [-76.98687, 67.09873], + [-77.2364, 67.58809], + [-76.81166, 68.14856], + [-75.89521, 68.28721], + [-75.1145, 68.01036], + [-75.10333, 67.58202], + [-75.21597, 67.44425], + [-75.86588, 67.14886] + ] + ], + [ + [ + [-95.647681, 69.10769], + [-96.269521, 68.75704], + [-97.617401, 69.06003], + [-98.431801, 68.9507], + [-99.797401, 69.40003], + [-98.917401, 69.71003], + [-98.218261, 70.14354], + [-97.157401, 69.86003], + [-96.557401, 69.68003], + [-96.257401, 69.49003], + [-95.647681, 69.10769] + ] + ], + [ + [ + [-90.5471, 69.49766], + [-90.55151, 68.47499], + [-89.21515, 69.25873], + [-88.01966, 68.61508], + [-88.31749, 67.87338], + [-87.35017, 67.19872], + [-86.30607, 67.92146], + [-85.57664, 68.78456], + [-85.52197, 69.88211], + [-84.10081, 69.80539], + [-82.62258, 69.65826], + [-81.28043, 69.16202], + [-81.2202, 68.66567], + [-81.96436, 68.13253], + [-81.25928, 67.59716], + [-81.38653, 67.11078], + [-83.34456, 66.41154], + [-84.73542, 66.2573], + [-85.76943, 66.55833], + [-86.0676, 66.05625], + [-87.03143, 65.21297], + [-87.32324, 64.77563], + [-88.48296, 64.09897], + [-89.91444, 64.03273], + [-90.70398, 63.61017], + [-90.77004, 62.96021], + [-91.93342, 62.83508], + [-93.15698, 62.02469], + [-94.24153, 60.89865], + [-94.62931, 60.11021], + [-94.6846, 58.94882], + [-93.21502, 58.78212], + [-92.76462, 57.84571], + [-92.29703, 57.08709], + [-90.89769, 57.28468], + [-89.03953, 56.85172], + [-88.03978, 56.47162], + [-87.32421, 55.99914], + [-86.07121, 55.72383], + [-85.01181, 55.3026], + [-83.36055, 55.24489], + [-82.27285, 55.14832], + [-82.4362, 54.28227], + [-82.12502, 53.27703], + [-81.40075, 52.15788], + [-79.91289, 51.20842], + [-79.14301, 51.53393], + [-78.60191, 52.56208], + [-79.12421, 54.14145], + [-79.82958, 54.66772], + [-78.22874, 55.13645], + [-77.0956, 55.83741], + [-76.54137, 56.53423], + [-76.62319, 57.20263], + [-77.30226, 58.05209], + [-78.51688, 58.80458], + [-77.33676, 59.85261], + [-77.77272, 60.75788], + [-78.10687, 62.31964], + [-77.41067, 62.55053], + [-75.69621, 62.2784], + [-74.6682, 62.18111], + [-73.83988, 62.4438], + [-72.90853, 62.10507], + [-71.67708, 61.52535], + [-71.37369, 61.13717], + [-69.59042, 61.06141], + [-69.62033, 60.22125], + [-69.2879, 58.95736], + [-68.37455, 58.80106], + [-67.64976, 58.21206], + [-66.20178, 58.76731], + [-65.24517, 59.87071], + [-64.58352, 60.33558], + [-63.80475, 59.4426], + [-62.50236, 58.16708], + [-61.39655, 56.96745], + [-61.79866, 56.33945], + [-60.46853, 55.77548], + [-59.56962, 55.20407], + [-57.97508, 54.94549], + [-57.3332, 54.6265], + [-56.93689, 53.78032], + [-56.15811, 53.64749], + [-55.75632, 53.27036], + [-55.68338, 52.14664], + [-56.40916, 51.7707], + [-57.12691, 51.41972], + [-58.77482, 51.0643], + [-60.03309, 50.24277], + [-61.72366, 50.08046], + [-63.86251, 50.29099], + [-65.36331, 50.2982], + [-66.39905, 50.22897], + [-67.23631, 49.51156], + [-68.51114, 49.06836], + [-69.95362, 47.74488], + [-71.10458, 46.82171], + [-70.25522, 46.98606], + [-68.65, 48.3], + [-66.55243, 49.1331], + [-65.05626, 49.23278], + [-64.17099, 48.74248], + [-65.11545, 48.07085], + [-64.79854, 46.99297], + [-64.47219, 46.23849], + [-63.17329, 45.73902], + [-61.52072, 45.88377], + [-60.51815, 47.00793], + [-60.4486, 46.28264], + [-59.80287, 45.9204], + [-61.03988, 45.26525], + [-63.25471, 44.67014], + [-64.24656, 44.26553], + [-65.36406, 43.54523], + [-66.1234, 43.61867], + [-66.16173, 44.46512], + [-64.42549, 45.29204], + [-66.02605, 45.25931], + [-67.13741, 45.13753], + [-67.79134, 45.70281], + [-67.79046, 47.06636], + [-68.23444, 47.35486], + [-68.905, 47.185], + [-69.237216, 47.447781], + [-69.99997, 46.69307], + [-70.305, 45.915], + [-70.66, 45.46], + [-71.08482, 45.30524], + [-71.405, 45.255], + [-71.50506, 45.0082], + [-73.34783, 45.00738], + [-74.867, 45.00048], + [-75.31821, 44.81645], + [-76.375, 44.09631], + [-76.5, 44.018459], + [-76.820034, 43.628784], + [-77.737885, 43.629056], + [-78.72028, 43.625089], + [-79.171674, 43.466339], + [-79.01, 43.27], + [-78.92, 42.965], + [-78.939362, 42.863611], + [-80.247448, 42.3662], + [-81.277747, 42.209026], + [-82.439278, 41.675105], + [-82.690089, 41.675105], + [-83.02981, 41.832796], + [-83.142, 41.975681], + [-83.12, 42.08], + [-82.9, 42.43], + [-82.43, 42.98], + [-82.137642, 43.571088], + [-82.337763, 44.44], + [-82.550925, 45.347517], + [-83.592851, 45.816894], + [-83.469551, 45.994686], + [-83.616131, 46.116927], + [-83.890765, 46.116927], + [-84.091851, 46.275419], + [-84.14212, 46.512226], + [-84.3367, 46.40877], + [-84.6049, 46.4396], + [-84.543749, 46.538684], + [-84.779238, 46.637102], + [-84.87608, 46.900083], + [-85.652363, 47.220219], + [-86.461991, 47.553338], + [-87.439793, 47.94], + [-88.378114, 48.302918], + [-89.272917, 48.019808], + [-89.6, 48.01], + [-90.83, 48.27], + [-91.64, 48.14], + [-92.61, 48.45], + [-93.63087, 48.60926], + [-94.32914, 48.67074], + [-94.64, 48.84], + [-94.81758, 49.38905], + [-95.15609, 49.38425], + [-95.15907, 49], + [-97.22872, 49.0007], + [-100.65, 49], + [-104.04826, 48.99986], + [-107.05, 49], + [-110.05, 49], + [-113, 49], + [-116.04818, 49], + [-117.03121, 49], + [-120, 49], + [-122.84, 49], + [-122.97421, 49.002538], + [-124.91024, 49.98456], + [-125.62461, 50.41656], + [-127.43561, 50.83061], + [-127.99276, 51.71583], + [-127.85032, 52.32961], + [-129.12979, 52.75538], + [-129.30523, 53.56159], + [-130.51497, 54.28757], + [-130.53611, 54.80278], + [-129.98, 55.285], + [-130.00778, 55.91583], + [-131.70781, 56.55212], + [-132.73042, 57.69289], + [-133.35556, 58.41028], + [-134.27111, 58.86111], + [-134.945, 59.27056], + [-135.47583, 59.78778], + [-136.47972, 59.46389], + [-137.4525, 58.905], + [-138.34089, 59.56211], + [-139.039, 60], + [-140.013, 60.27682], + [-140.99778, 60.30639], + [-140.9925, 66.00003], + [-140.986, 69.712], + [-139.12052, 69.47102], + [-137.54636, 68.99002], + [-136.50358, 68.89804], + [-135.62576, 69.31512], + [-134.41464, 69.62743], + [-132.92925, 69.50534], + [-131.43136, 69.94451], + [-129.79471, 70.19369], + [-129.10773, 69.77927], + [-128.36156, 70.01286], + [-128.13817, 70.48384], + [-127.44712, 70.37721], + [-125.75632, 69.48058], + [-124.42483, 70.1584], + [-124.28968, 69.39969], + [-123.06108, 69.56372], + [-122.6835, 69.85553], + [-121.47226, 69.79778], + [-119.94288, 69.37786], + [-117.60268, 69.01128], + [-116.22643, 68.84151], + [-115.2469, 68.90591], + [-113.89794, 68.3989], + [-115.30489, 67.90261], + [-113.49727, 67.68815], + [-110.798, 67.80612], + [-109.94619, 67.98104], + [-108.8802, 67.38144], + [-107.79239, 67.88736], + [-108.81299, 68.31164], + [-108.16721, 68.65392], + [-106.95, 68.7], + [-106.15, 68.8], + [-105.34282, 68.56122], + [-104.33791, 68.018], + [-103.22115, 68.09775], + [-101.45433, 67.64689], + [-99.90195, 67.80566], + [-98.4432, 67.78165], + [-98.5586, 68.40394], + [-97.66948, 68.57864], + [-96.11991, 68.23939], + [-96.12588, 67.29338], + [-95.48943, 68.0907], + [-94.685, 68.06383], + [-94.23282, 69.06903], + [-95.30408, 69.68571], + [-96.47131, 70.08976], + [-96.39115, 71.19482], + [-95.2088, 71.92053], + [-93.88997, 71.76015], + [-92.87818, 71.31869], + [-91.51964, 70.19129], + [-92.40692, 69.69997], + [-90.5471, 69.49766] + ] + ], + [ + [ + [-114.16717, 73.12145], + [-114.66634, 72.65277], + [-112.44102, 72.9554], + [-111.05039, 72.4504], + [-109.92035, 72.96113], + [-109.00654, 72.63335], + [-108.18835, 71.65089], + [-107.68599, 72.06548], + [-108.39639, 73.08953], + [-107.51645, 73.23598], + [-106.52259, 73.07601], + [-105.40246, 72.67259], + [-104.77484, 71.6984], + [-104.46476, 70.99297], + [-102.78537, 70.49776], + [-100.98078, 70.02432], + [-101.08929, 69.58447], + [-102.73116, 69.50402], + [-102.09329, 69.11962], + [-102.43024, 68.75282], + [-104.24, 68.91], + [-105.96, 69.18], + [-107.12254, 69.11922], + [-109, 68.78], + [-111.534149, 68.630059], + [-113.3132, 68.53554], + [-113.85496, 69.00744], + [-115.22, 69.28], + [-116.10794, 69.16821], + [-117.34, 69.96], + [-116.67473, 70.06655], + [-115.13112, 70.2373], + [-113.72141, 70.19237], + [-112.4161, 70.36638], + [-114.35, 70.6], + [-116.48684, 70.52045], + [-117.9048, 70.54056], + [-118.43238, 70.9092], + [-116.11311, 71.30918], + [-117.65568, 71.2952], + [-119.40199, 71.55859], + [-118.56267, 72.30785], + [-117.86642, 72.70594], + [-115.18909, 73.31459], + [-114.16717, 73.12145] + ] + ], + [ + [ + [-104.5, 73.42], + [-105.38, 72.76], + [-106.94, 73.46], + [-106.6, 73.6], + [-105.26, 73.64], + [-104.5, 73.42] + ] + ], + [ + [ + [-76.34, 73.102685], + [-76.251404, 72.826385], + [-77.314438, 72.855545], + [-78.39167, 72.876656], + [-79.486252, 72.742203], + [-79.775833, 72.802902], + [-80.876099, 73.333183], + [-80.833885, 73.693184], + [-80.353058, 73.75972], + [-78.064438, 73.651932], + [-76.34, 73.102685] + ] + ], + [ + [ + [-86.562179, 73.157447], + [-85.774371, 72.534126], + [-84.850112, 73.340278], + [-82.31559, 73.750951], + [-80.600088, 72.716544], + [-80.748942, 72.061907], + [-78.770639, 72.352173], + [-77.824624, 72.749617], + [-75.605845, 72.243678], + [-74.228616, 71.767144], + [-74.099141, 71.33084], + [-72.242226, 71.556925], + [-71.200015, 70.920013], + [-68.786054, 70.525024], + [-67.91497, 70.121948], + [-66.969033, 69.186087], + [-68.805123, 68.720198], + [-66.449866, 68.067163], + [-64.862314, 67.847539], + [-63.424934, 66.928473], + [-61.851981, 66.862121], + [-62.163177, 66.160251], + [-63.918444, 64.998669], + [-65.14886, 65.426033], + [-66.721219, 66.388041], + [-68.015016, 66.262726], + [-68.141287, 65.689789], + [-67.089646, 65.108455], + [-65.73208, 64.648406], + [-65.320168, 64.382737], + [-64.669406, 63.392927], + [-65.013804, 62.674185], + [-66.275045, 62.945099], + [-68.783186, 63.74567], + [-67.369681, 62.883966], + [-66.328297, 62.280075], + [-66.165568, 61.930897], + [-68.877367, 62.330149], + [-71.023437, 62.910708], + [-72.235379, 63.397836], + [-71.886278, 63.679989], + [-73.378306, 64.193963], + [-74.834419, 64.679076], + [-74.818503, 64.389093], + [-77.70998, 64.229542], + [-78.555949, 64.572906], + [-77.897281, 65.309192], + [-76.018274, 65.326969], + [-73.959795, 65.454765], + [-74.293883, 65.811771], + [-73.944912, 66.310578], + [-72.651167, 67.284576], + [-72.92606, 67.726926], + [-73.311618, 68.069437], + [-74.843307, 68.554627], + [-76.869101, 68.894736], + [-76.228649, 69.147769], + [-77.28737, 69.76954], + [-78.168634, 69.826488], + [-78.957242, 70.16688], + [-79.492455, 69.871808], + [-81.305471, 69.743185], + [-84.944706, 69.966634], + [-87.060003, 70.260001], + [-88.681713, 70.410741], + [-89.51342, 70.762038], + [-88.467721, 71.218186], + [-89.888151, 71.222552], + [-90.20516, 72.235074], + [-89.436577, 73.129464], + [-88.408242, 73.537889], + [-85.826151, 73.803816], + [-86.562179, 73.157447] + ] + ], + [ + [ + [-100.35642, 73.84389], + [-99.16387, 73.63339], + [-97.38, 73.76], + [-97.12, 73.47], + [-98.05359, 72.99052], + [-96.54, 72.56], + [-96.72, 71.66], + [-98.35966, 71.27285], + [-99.32286, 71.35639], + [-100.01482, 71.73827], + [-102.5, 72.51], + [-102.48, 72.83], + [-100.43836, 72.70588], + [-101.54, 73.36], + [-100.35642, 73.84389] + ] + ], + [ + [ + [-93.196296, 72.771992], + [-94.269047, 72.024596], + [-95.409856, 72.061881], + [-96.033745, 72.940277], + [-96.018268, 73.43743], + [-95.495793, 73.862417], + [-94.503658, 74.134907], + [-92.420012, 74.100025], + [-90.509793, 73.856732], + [-92.003965, 72.966244], + [-93.196296, 72.771992] + ] + ], + [ + [ + [-120.46, 71.383602], + [-123.09219, 70.90164], + [-123.62, 71.34], + [-125.928949, 71.868688], + [-125.5, 72.292261], + [-124.80729, 73.02256], + [-123.94, 73.68], + [-124.91775, 74.29275], + [-121.53788, 74.44893], + [-120.10978, 74.24135], + [-117.55564, 74.18577], + [-116.58442, 73.89607], + [-115.51081, 73.47519], + [-116.76794, 73.22292], + [-119.22, 72.52], + [-120.46, 71.82], + [-120.46, 71.383602] + ] + ], + [ + [ + [-93.612756, 74.979997], + [-94.156909, 74.592347], + [-95.608681, 74.666864], + [-96.820932, 74.927623], + [-96.288587, 75.377828], + [-94.85082, 75.647218], + [-93.977747, 75.29649], + [-93.612756, 74.979997] + ] + ], + [ + [ + [-98.5, 76.72], + [-97.735585, 76.25656], + [-97.704415, 75.74344], + [-98.16, 75], + [-99.80874, 74.89744], + [-100.88366, 75.05736], + [-100.86292, 75.64075], + [-102.50209, 75.5638], + [-102.56552, 76.3366], + [-101.48973, 76.30537], + [-99.98349, 76.64634], + [-98.57699, 76.58859], + [-98.5, 76.72] + ] + ], + [ + [ + [-108.21141, 76.20168], + [-107.81943, 75.84552], + [-106.92893, 76.01282], + [-105.881, 75.9694], + [-105.70498, 75.47951], + [-106.31347, 75.00527], + [-109.7, 74.85], + [-112.22307, 74.41696], + [-113.74381, 74.39427], + [-113.87135, 74.72029], + [-111.79421, 75.1625], + [-116.31221, 75.04343], + [-117.7104, 75.2222], + [-116.34602, 76.19903], + [-115.40487, 76.47887], + [-112.59056, 76.14134], + [-110.81422, 75.54919], + [-109.0671, 75.47321], + [-110.49726, 76.42982], + [-109.5811, 76.79417], + [-108.54859, 76.67832], + [-108.21141, 76.20168] + ] + ], + [ + [ + [-94.684086, 77.097878], + [-93.573921, 76.776296], + [-91.605023, 76.778518], + [-90.741846, 76.449597], + [-90.969661, 76.074013], + [-89.822238, 75.847774], + [-89.187083, 75.610166], + [-87.838276, 75.566189], + [-86.379192, 75.482421], + [-84.789625, 75.699204], + [-82.753445, 75.784315], + [-81.128531, 75.713983], + [-80.057511, 75.336849], + [-79.833933, 74.923127], + [-80.457771, 74.657304], + [-81.948843, 74.442459], + [-83.228894, 74.564028], + [-86.097452, 74.410032], + [-88.15035, 74.392307], + [-89.764722, 74.515555], + [-92.422441, 74.837758], + [-92.768285, 75.38682], + [-92.889906, 75.882655], + [-93.893824, 76.319244], + [-95.962457, 76.441381], + [-97.121379, 76.751078], + [-96.745123, 77.161389], + [-94.684086, 77.097878] + ] + ], + [ + [ + [-116.198587, 77.645287], + [-116.335813, 76.876962], + [-117.106051, 76.530032], + [-118.040412, 76.481172], + [-119.899318, 76.053213], + [-121.499995, 75.900019], + [-122.854924, 76.116543], + [-122.854925, 76.116543], + [-121.157535, 76.864508], + [-119.103939, 77.51222], + [-117.570131, 77.498319], + [-116.198587, 77.645287] + ] + ], + [ + [ + [-93.840003, 77.519997], + [-94.295608, 77.491343], + [-96.169654, 77.555111], + [-96.436304, 77.834629], + [-94.422577, 77.820005], + [-93.720656, 77.634331], + [-93.840003, 77.519997] + ] + ], + [ + [ + [-110.186938, 77.697015], + [-112.051191, 77.409229], + [-113.534279, 77.732207], + [-112.724587, 78.05105], + [-111.264443, 78.152956], + [-109.854452, 77.996325], + [-110.186938, 77.697015] + ] + ], + [ + [ + [-109.663146, 78.601973], + [-110.881314, 78.40692], + [-112.542091, 78.407902], + [-112.525891, 78.550555], + [-111.50001, 78.849994], + [-110.963661, 78.804441], + [-109.663146, 78.601973] + ] + ], + [ + [ + [-95.830295, 78.056941], + [-97.309843, 77.850597], + [-98.124289, 78.082857], + [-98.552868, 78.458105], + [-98.631984, 78.87193], + [-97.337231, 78.831984], + [-96.754399, 78.765813], + [-95.559278, 78.418315], + [-95.830295, 78.056941] + ] + ], + [ + [ + [-100.060192, 78.324754], + [-99.670939, 77.907545], + [-101.30394, 78.018985], + [-102.949809, 78.343229], + [-105.176133, 78.380332], + [-104.210429, 78.67742], + [-105.41958, 78.918336], + [-105.492289, 79.301594], + [-103.529282, 79.165349], + [-100.825158, 78.800462], + [-100.060192, 78.324754] + ] + ], + [ + [ + [-87.02, 79.66], + [-85.81435, 79.3369], + [-87.18756, 79.0393], + [-89.03535, 78.28723], + [-90.80436, 78.21533], + [-92.87669, 78.34333], + [-93.95116, 78.75099], + [-93.93574, 79.11373], + [-93.14524, 79.3801], + [-94.974, 79.37248], + [-96.07614, 79.70502], + [-96.70972, 80.15777], + [-96.01644, 80.60233], + [-95.32345, 80.90729], + [-94.29843, 80.97727], + [-94.73542, 81.20646], + [-92.40984, 81.25739], + [-91.13289, 80.72345], + [-89.45, 80.509322], + [-87.81, 80.32], + [-87.02, 79.66] + ] + ], + [ + [ + [-68.5, 83.106322], + [-65.82735, 83.02801], + [-63.68, 82.9], + [-61.85, 82.6286], + [-61.89388, 82.36165], + [-64.334, 81.92775], + [-66.75342, 81.72527], + [-67.65755, 81.50141], + [-65.48031, 81.50657], + [-67.84, 80.9], + [-69.4697, 80.61683], + [-71.18, 79.8], + [-73.2428, 79.63415], + [-73.88, 79.430162], + [-76.90773, 79.32309], + [-75.52924, 79.19766], + [-76.22046, 79.01907], + [-75.39345, 78.52581], + [-76.34354, 78.18296], + [-77.88851, 77.89991], + [-78.36269, 77.50859], + [-79.75951, 77.20968], + [-79.61965, 76.98336], + [-77.91089, 77.022045], + [-77.88911, 76.777955], + [-80.56125, 76.17812], + [-83.17439, 76.45403], + [-86.11184, 76.29901], + [-87.6, 76.42], + [-89.49068, 76.47239], + [-89.6161, 76.95213], + [-87.76739, 77.17833], + [-88.26, 77.9], + [-87.65, 77.970222], + [-84.97634, 77.53873], + [-86.34, 78.18], + [-87.96192, 78.37181], + [-87.15198, 78.75867], + [-85.37868, 78.9969], + [-85.09495, 79.34543], + [-86.50734, 79.73624], + [-86.93179, 80.25145], + [-84.19844, 80.20836], + [-83.408696, 80.1], + [-81.84823, 80.46442], + [-84.1, 80.58], + [-87.59895, 80.51627], + [-89.36663, 80.85569], + [-90.2, 81.26], + [-91.36786, 81.5531], + [-91.58702, 81.89429], + [-90.1, 82.085], + [-88.93227, 82.11751], + [-86.97024, 82.27961], + [-85.5, 82.652273], + [-84.260005, 82.6], + [-83.18, 82.32], + [-82.42, 82.86], + [-81.1, 83.02], + [-79.30664, 83.13056], + [-76.25, 83.172059], + [-75.71878, 83.06404], + [-72.83153, 83.23324], + [-70.665765, 83.169781], + [-68.5, 83.106322] + ] + ] + ] + }, + "id": "CAN" + }, + { + "type": "Feature", + "properties": { "name": "Switzerland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.594226, 47.525058], + [9.632932, 47.347601], + [9.47997, 47.10281], + [9.932448, 46.920728], + [10.442701, 46.893546], + [10.363378, 46.483571], + [9.922837, 46.314899], + [9.182882, 46.440215], + [8.966306, 46.036932], + [8.489952, 46.005151], + [8.31663, 46.163642], + [7.755992, 45.82449], + [7.273851, 45.776948], + [6.843593, 45.991147], + [6.5001, 46.429673], + [6.022609, 46.27299], + [6.037389, 46.725779], + [6.768714, 47.287708], + [6.736571, 47.541801], + [7.192202, 47.449766], + [7.466759, 47.620582], + [8.317301, 47.61358], + [8.522612, 47.830828], + [9.594226, 47.525058] + ] + ] + }, + "id": "CHE" + }, + { + "type": "Feature", + "properties": { "name": "Chile" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-68.63401, -52.63637], + [-68.63335, -54.8695], + [-67.56244, -54.87001], + [-66.95992, -54.89681], + [-67.29103, -55.30124], + [-68.14863, -55.61183], + [-68.639991, -55.580018], + [-69.2321, -55.49906], + [-69.95809, -55.19843], + [-71.00568, -55.05383], + [-72.2639, -54.49514], + [-73.2852, -53.95752], + [-74.66253, -52.83749], + [-73.8381, -53.04743], + [-72.43418, -53.7154], + [-71.10773, -54.07433], + [-70.59178, -53.61583], + [-70.26748, -52.93123], + [-69.34565, -52.5183], + [-68.63401, -52.63637] + ] + ], + [ + [ + [-68.219913, -21.494347], + [-67.82818, -22.872919], + [-67.106674, -22.735925], + [-66.985234, -22.986349], + [-67.328443, -24.025303], + [-68.417653, -24.518555], + [-68.386001, -26.185016], + [-68.5948, -26.506909], + [-68.295542, -26.89934], + [-69.001235, -27.521214], + [-69.65613, -28.459141], + [-70.01355, -29.367923], + [-69.919008, -30.336339], + [-70.535069, -31.36501], + [-70.074399, -33.09121], + [-69.814777, -33.273886], + [-69.817309, -34.193571], + [-70.388049, -35.169688], + [-70.364769, -36.005089], + [-71.121881, -36.658124], + [-71.118625, -37.576827], + [-70.814664, -38.552995], + [-71.413517, -38.916022], + [-71.680761, -39.808164], + [-71.915734, -40.832339], + [-71.746804, -42.051386], + [-72.148898, -42.254888], + [-71.915424, -43.408565], + [-71.464056, -43.787611], + [-71.793623, -44.207172], + [-71.329801, -44.407522], + [-71.222779, -44.784243], + [-71.659316, -44.973689], + [-71.552009, -45.560733], + [-71.917258, -46.884838], + [-72.447355, -47.738533], + [-72.331161, -48.244238], + [-72.648247, -48.878618], + [-73.415436, -49.318436], + [-73.328051, -50.378785], + [-72.975747, -50.74145], + [-72.309974, -50.67701], + [-72.329404, -51.425956], + [-71.914804, -52.009022], + [-69.498362, -52.142761], + [-68.571545, -52.299444], + [-69.461284, -52.291951], + [-69.94278, -52.537931], + [-70.845102, -52.899201], + [-71.006332, -53.833252], + [-71.429795, -53.856455], + [-72.557943, -53.53141], + [-73.702757, -52.835069], + [-73.702757, -52.83507], + [-74.946763, -52.262754], + [-75.260026, -51.629355], + [-74.976632, -51.043396], + [-75.479754, -50.378372], + [-75.608015, -48.673773], + [-75.18277, -47.711919], + [-74.126581, -46.939253], + [-75.644395, -46.647643], + [-74.692154, -45.763976], + [-74.351709, -44.103044], + [-73.240356, -44.454961], + [-72.717804, -42.383356], + [-73.3889, -42.117532], + [-73.701336, -43.365776], + [-74.331943, -43.224958], + [-74.017957, -41.794813], + [-73.677099, -39.942213], + [-73.217593, -39.258689], + [-73.505559, -38.282883], + [-73.588061, -37.156285], + [-73.166717, -37.12378], + [-72.553137, -35.50884], + [-71.861732, -33.909093], + [-71.43845, -32.418899], + [-71.668721, -30.920645], + [-71.370083, -30.095682], + [-71.489894, -28.861442], + [-70.905124, -27.64038], + [-70.724954, -25.705924], + [-70.403966, -23.628997], + [-70.091246, -21.393319], + [-70.16442, -19.756468], + [-70.372572, -18.347975], + [-69.858444, -18.092694], + [-69.590424, -17.580012], + [-69.100247, -18.260125], + [-68.966818, -18.981683], + [-68.442225, -19.405068], + [-68.757167, -20.372658], + [-68.219913, -21.494347] + ] + ] + ] + }, + "id": "CHL" + }, + { + "type": "Feature", + "properties": { "name": "China" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.339188, 18.678395], + [109.47521, 18.197701], + [108.655208, 18.507682], + [108.626217, 19.367888], + [109.119056, 19.821039], + [110.211599, 20.101254], + [110.786551, 20.077534], + [111.010051, 19.69593], + [110.570647, 19.255879], + [110.339188, 18.678395] + ] + ], + [ + [ + [127.657407, 49.76027], + [129.397818, 49.4406], + [130.582293, 48.729687], + [130.987282, 47.790132], + [132.506672, 47.78897], + [133.373596, 48.183442], + [135.026311, 48.47823], + [134.500814, 47.57844], + [134.112362, 47.212467], + [133.769644, 46.116927], + [133.097127, 45.144066], + [131.883454, 45.321162], + [131.025212, 44.967953], + [131.288555, 44.11152], + [131.144688, 42.92999], + [130.633866, 42.903015], + [130.640016, 42.395009], + [129.994267, 42.985387], + [129.596669, 42.424982], + [128.052215, 41.994285], + [128.208433, 41.466772], + [127.343783, 41.503152], + [126.869083, 41.816569], + [126.182045, 41.107336], + [125.079942, 40.569824], + [124.265625, 39.928493], + [122.86757, 39.637788], + [122.131388, 39.170452], + [121.054554, 38.897471], + [121.585995, 39.360854], + [121.376757, 39.750261], + [122.168595, 40.422443], + [121.640359, 40.94639], + [120.768629, 40.593388], + [119.639602, 39.898056], + [119.023464, 39.252333], + [118.042749, 39.204274], + [117.532702, 38.737636], + [118.059699, 38.061476], + [118.87815, 37.897325], + [118.911636, 37.448464], + [119.702802, 37.156389], + [120.823457, 37.870428], + [121.711259, 37.481123], + [122.357937, 37.454484], + [122.519995, 36.930614], + [121.104164, 36.651329], + [120.637009, 36.11144], + [119.664562, 35.609791], + [119.151208, 34.909859], + [120.227525, 34.360332], + [120.620369, 33.376723], + [121.229014, 32.460319], + [121.908146, 31.692174], + [121.891919, 30.949352], + [121.264257, 30.676267], + [121.503519, 30.142915], + [122.092114, 29.83252], + [121.938428, 29.018022], + [121.684439, 28.225513], + [121.125661, 28.135673], + [120.395473, 27.053207], + [119.585497, 25.740781], + [118.656871, 24.547391], + [117.281606, 23.624501], + [115.890735, 22.782873], + [114.763827, 22.668074], + [114.152547, 22.22376], + [113.80678, 22.54834], + [113.241078, 22.051367], + [111.843592, 21.550494], + [110.785466, 21.397144], + [110.444039, 20.341033], + [109.889861, 20.282457], + [109.627655, 21.008227], + [109.864488, 21.395051], + [108.522813, 21.715212], + [108.05018, 21.55238], + [107.04342, 21.811899], + [106.567273, 22.218205], + [106.725403, 22.794268], + [105.811247, 22.976892], + [105.329209, 23.352063], + [104.476858, 22.81915], + [103.504515, 22.703757], + [102.706992, 22.708795], + [102.170436, 22.464753], + [101.652018, 22.318199], + [101.80312, 21.174367], + [101.270026, 21.201652], + [101.180005, 21.436573], + [101.150033, 21.849984], + [100.416538, 21.558839], + [99.983489, 21.742937], + [99.240899, 22.118314], + [99.531992, 22.949039], + [98.898749, 23.142722], + [98.660262, 24.063286], + [97.60472, 23.897405], + [97.724609, 25.083637], + [98.671838, 25.918703], + [98.712094, 26.743536], + [98.68269, 27.508812], + [98.246231, 27.747221], + [97.911988, 28.335945], + [97.327114, 28.261583], + [96.248833, 28.411031], + [96.586591, 28.83098], + [96.117679, 29.452802], + [95.404802, 29.031717], + [94.56599, 29.277438], + [93.413348, 28.640629], + [92.503119, 27.896876], + [91.696657, 27.771742], + [91.258854, 28.040614], + [90.730514, 28.064954], + [90.015829, 28.296439], + [89.47581, 28.042759], + [88.814248, 27.299316], + [88.730326, 28.086865], + [88.120441, 27.876542], + [86.954517, 27.974262], + [85.82332, 28.203576], + [85.011638, 28.642774], + [84.23458, 28.839894], + [83.898993, 29.320226], + [83.337115, 29.463732], + [82.327513, 30.115268], + [81.525804, 30.422717], + [81.111256, 30.183481], + [79.721367, 30.882715], + [78.738894, 31.515906], + [78.458446, 32.618164], + [79.176129, 32.48378], + [79.208892, 32.994395], + [78.811086, 33.506198], + [78.912269, 34.321936], + [77.837451, 35.49401], + [76.192848, 35.898403], + [75.896897, 36.666806], + [75.158028, 37.133031], + [74.980002, 37.41999], + [74.829986, 37.990007], + [74.864816, 38.378846], + [74.257514, 38.606507], + [73.928852, 38.505815], + [73.675379, 39.431237], + [73.960013, 39.660008], + [73.822244, 39.893973], + [74.776862, 40.366425], + [75.467828, 40.562072], + [76.526368, 40.427946], + [76.904484, 41.066486], + [78.187197, 41.185316], + [78.543661, 41.582243], + [80.11943, 42.123941], + [80.25999, 42.349999], + [80.18015, 42.920068], + [80.866206, 43.180362], + [79.966106, 44.917517], + [81.947071, 45.317027], + [82.458926, 45.53965], + [83.180484, 47.330031], + [85.16429, 47.000956], + [85.720484, 47.452969], + [85.768233, 48.455751], + [86.598776, 48.549182], + [87.35997, 49.214981], + [87.751264, 49.297198], + [88.013832, 48.599463], + [88.854298, 48.069082], + [90.280826, 47.693549], + [90.970809, 46.888146], + [90.585768, 45.719716], + [90.94554, 45.286073], + [92.133891, 45.115076], + [93.480734, 44.975472], + [94.688929, 44.352332], + [95.306875, 44.241331], + [95.762455, 43.319449], + [96.349396, 42.725635], + [97.451757, 42.74889], + [99.515817, 42.524691], + [100.845866, 42.663804], + [101.83304, 42.514873], + [103.312278, 41.907468], + [104.522282, 41.908347], + [104.964994, 41.59741], + [106.129316, 42.134328], + [107.744773, 42.481516], + [109.243596, 42.519446], + [110.412103, 42.871234], + [111.129682, 43.406834], + [111.829588, 43.743118], + [111.667737, 44.073176], + [111.348377, 44.457442], + [111.873306, 45.102079], + [112.436062, 45.011646], + [113.463907, 44.808893], + [114.460332, 45.339817], + [115.985096, 45.727235], + [116.717868, 46.388202], + [117.421701, 46.672733], + [118.874326, 46.805412], + [119.66327, 46.69268], + [119.772824, 47.048059], + [118.866574, 47.74706], + [118.064143, 48.06673], + [117.295507, 47.697709], + [116.308953, 47.85341], + [115.742837, 47.726545], + [115.485282, 48.135383], + [116.191802, 49.134598], + [116.678801, 49.888531], + [117.879244, 49.510983], + [119.288461, 50.142883], + [119.279366, 50.582908], + [120.18205, 51.643566], + [120.738191, 51.964115], + [120.725789, 52.516226], + [120.177089, 52.753886], + [121.003085, 53.251401], + [122.245748, 53.431726], + [123.571507, 53.458804], + [125.068211, 53.161045], + [125.946349, 52.792799], + [126.564399, 51.784255], + [126.939157, 51.353894], + [127.287456, 50.739797], + [127.657407, 49.76027] + ] + ] + ] + }, + "id": "CHN" + }, + { + "type": "Feature", + "properties": { "name": "Ivory Coast" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.856125, 4.994476], + [-3.311084, 4.984296], + [-4.00882, 5.179813], + [-4.649917, 5.168264], + [-5.834496, 4.993701], + [-6.528769, 4.705088], + [-7.518941, 4.338288], + [-7.712159, 4.364566], + [-7.635368, 5.188159], + [-7.539715, 5.313345], + [-7.570153, 5.707352], + [-7.993693, 6.12619], + [-8.311348, 6.193033], + [-8.60288, 6.467564], + [-8.385452, 6.911801], + [-8.485446, 7.395208], + [-8.439298, 7.686043], + [-8.280703, 7.68718], + [-8.221792, 8.123329], + [-8.299049, 8.316444], + [-8.203499, 8.455453], + [-7.8321, 8.575704], + [-8.079114, 9.376224], + [-8.309616, 9.789532], + [-8.229337, 10.12902], + [-8.029944, 10.206535], + [-7.89959, 10.297382], + [-7.622759, 10.147236], + [-6.850507, 10.138994], + [-6.666461, 10.430811], + [-6.493965, 10.411303], + [-6.205223, 10.524061], + [-6.050452, 10.096361], + [-5.816926, 10.222555], + [-5.404342, 10.370737], + [-4.954653, 10.152714], + [-4.779884, 9.821985], + [-4.330247, 9.610835], + [-3.980449, 9.862344], + [-3.511899, 9.900326], + [-2.827496, 9.642461], + [-2.56219, 8.219628], + [-2.983585, 7.379705], + [-3.24437, 6.250472], + [-2.810701, 5.389051], + [-2.856125, 4.994476] + ] + ] + }, + "id": "CIV" + }, + { + "type": "Feature", + "properties": { "name": "Cameroon" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.075822, 2.267097], + [12.951334, 2.321616], + [12.35938, 2.192812], + [11.751665, 2.326758], + [11.276449, 2.261051], + [9.649158, 2.283866], + [9.795196, 3.073404], + [9.404367, 3.734527], + [8.948116, 3.904129], + [8.744924, 4.352215], + [8.488816, 4.495617], + [8.500288, 4.771983], + [8.757533, 5.479666], + [9.233163, 6.444491], + [9.522706, 6.453482], + [10.118277, 7.03877], + [10.497375, 7.055358], + [11.058788, 6.644427], + [11.745774, 6.981383], + [11.839309, 7.397042], + [12.063946, 7.799808], + [12.218872, 8.305824], + [12.753672, 8.717763], + [12.955468, 9.417772], + [13.1676, 9.640626], + [13.308676, 10.160362], + [13.57295, 10.798566], + [14.415379, 11.572369], + [14.468192, 11.904752], + [14.577178, 12.085361], + [14.181336, 12.483657], + [14.213531, 12.802035], + [14.495787, 12.859396], + [14.893386, 12.219048], + [14.960152, 11.555574], + [14.923565, 10.891325], + [15.467873, 9.982337], + [14.909354, 9.992129], + [14.627201, 9.920919], + [14.171466, 10.021378], + [13.954218, 9.549495], + [14.544467, 8.965861], + [14.979996, 8.796104], + [15.120866, 8.38215], + [15.436092, 7.692812], + [15.27946, 7.421925], + [14.776545, 6.408498], + [14.53656, 6.226959], + [14.459407, 5.451761], + [14.558936, 5.030598], + [14.478372, 4.732605], + [14.950953, 4.210389], + [15.03622, 3.851367], + [15.405396, 3.335301], + [15.862732, 3.013537], + [15.907381, 2.557389], + [16.012852, 2.26764], + [15.940919, 1.727673], + [15.146342, 1.964015], + [14.337813, 2.227875], + [13.075822, 2.267097] + ] + ] + }, + "id": "CMR" + }, + { + "type": "Feature", + "properties": { "name": "Democratic Republic of the Congo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.83386, 3.509166], + [30.773347, 2.339883], + [31.174149, 2.204465], + [30.85267, 1.849396], + [30.468508, 1.583805], + [30.086154, 1.062313], + [29.875779, 0.59738], + [29.819503, -0.20531], + [29.587838, -0.587406], + [29.579466, -1.341313], + [29.291887, -1.620056], + [29.254835, -2.21511], + [29.117479, -2.292211], + [29.024926, -2.839258], + [29.276384, -3.293907], + [29.339998, -4.499983], + [29.519987, -5.419979], + [29.419993, -5.939999], + [29.620032, -6.520015], + [30.199997, -7.079981], + [30.740015, -8.340007], + [30.346086, -8.238257], + [29.002912, -8.407032], + [28.734867, -8.526559], + [28.449871, -9.164918], + [28.673682, -9.605925], + [28.49607, -10.789884], + [28.372253, -11.793647], + [28.642417, -11.971569], + [29.341548, -12.360744], + [29.616001, -12.178895], + [29.699614, -13.257227], + [28.934286, -13.248958], + [28.523562, -12.698604], + [28.155109, -12.272481], + [27.388799, -12.132747], + [27.16442, -11.608748], + [26.553088, -11.92444], + [25.75231, -11.784965], + [25.418118, -11.330936], + [24.78317, -11.238694], + [24.314516, -11.262826], + [24.257155, -10.951993], + [23.912215, -10.926826], + [23.456791, -10.867863], + [22.837345, -11.017622], + [22.402798, -10.993075], + [22.155268, -11.084801], + [22.208753, -9.894796], + [21.875182, -9.523708], + [21.801801, -8.908707], + [21.949131, -8.305901], + [21.746456, -7.920085], + [21.728111, -7.290872], + [20.514748, -7.299606], + [20.601823, -6.939318], + [20.091622, -6.94309], + [20.037723, -7.116361], + [19.417502, -7.155429], + [19.166613, -7.738184], + [19.016752, -7.988246], + [18.464176, -7.847014], + [18.134222, -7.987678], + [17.47297, -8.068551], + [17.089996, -7.545689], + [16.860191, -7.222298], + [16.57318, -6.622645], + [16.326528, -5.87747], + [13.375597, -5.864241], + [13.024869, -5.984389], + [12.735171, -5.965682], + [12.322432, -6.100092], + [12.182337, -5.789931], + [12.436688, -5.684304], + [12.468004, -5.248362], + [12.631612, -4.991271], + [12.995517, -4.781103], + [13.25824, -4.882957], + [13.600235, -4.500138], + [14.144956, -4.510009], + [14.209035, -4.793092], + [14.582604, -4.970239], + [15.170992, -4.343507], + [15.75354, -3.855165], + [16.00629, -3.535133], + [15.972803, -2.712392], + [16.407092, -1.740927], + [16.865307, -1.225816], + [17.523716, -0.74383], + [17.638645, -0.424832], + [17.663553, -0.058084], + [17.82654, 0.288923], + [17.774192, 0.855659], + [17.898835, 1.741832], + [18.094276, 2.365722], + [18.393792, 2.900443], + [18.453065, 3.504386], + [18.542982, 4.201785], + [18.932312, 4.709506], + [19.467784, 5.031528], + [20.290679, 4.691678], + [20.927591, 4.322786], + [21.659123, 4.224342], + [22.405124, 4.02916], + [22.704124, 4.633051], + [22.84148, 4.710126], + [23.297214, 4.609693], + [24.410531, 5.108784], + [24.805029, 4.897247], + [25.128833, 4.927245], + [25.278798, 5.170408], + [25.650455, 5.256088], + [26.402761, 5.150875], + [27.044065, 5.127853], + [27.374226, 5.233944], + [27.979977, 4.408413], + [28.428994, 4.287155], + [28.696678, 4.455077], + [29.159078, 4.389267], + [29.715995, 4.600805], + [29.9535, 4.173699], + [30.83386, 3.509166] + ] + ] + }, + "id": "COD" + }, + { + "type": "Feature", + "properties": { "name": "Republic of the Congo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [12.995517, -4.781103], + [12.62076, -4.438023], + [12.318608, -4.60623], + [11.914963, -5.037987], + [11.093773, -3.978827], + [11.855122, -3.426871], + [11.478039, -2.765619], + [11.820964, -2.514161], + [12.495703, -2.391688], + [12.575284, -1.948511], + [13.109619, -2.42874], + [13.992407, -2.470805], + [14.29921, -1.998276], + [14.425456, -1.333407], + [14.316418, -0.552627], + [13.843321, 0.038758], + [14.276266, 1.19693], + [14.026669, 1.395677], + [13.282631, 1.314184], + [13.003114, 1.830896], + [13.075822, 2.267097], + [14.337813, 2.227875], + [15.146342, 1.964015], + [15.940919, 1.727673], + [16.012852, 2.26764], + [16.537058, 3.198255], + [17.133042, 3.728197], + [17.8099, 3.560196], + [18.453065, 3.504386], + [18.393792, 2.900443], + [18.094276, 2.365722], + [17.898835, 1.741832], + [17.774192, 0.855659], + [17.82654, 0.288923], + [17.663553, -0.058084], + [17.638645, -0.424832], + [17.523716, -0.74383], + [16.865307, -1.225816], + [16.407092, -1.740927], + [15.972803, -2.712392], + [16.00629, -3.535133], + [15.75354, -3.855165], + [15.170992, -4.343507], + [14.582604, -4.970239], + [14.209035, -4.793092], + [14.144956, -4.510009], + [13.600235, -4.500138], + [13.25824, -4.882957], + [12.995517, -4.781103] + ] + ] + }, + "id": "COG" + }, + { + "type": "Feature", + "properties": { "name": "Colombia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-75.373223, -0.152032], + [-75.801466, 0.084801], + [-76.292314, 0.416047], + [-76.57638, 0.256936], + [-77.424984, 0.395687], + [-77.668613, 0.825893], + [-77.855061, 0.809925], + [-78.855259, 1.380924], + [-78.990935, 1.69137], + [-78.617831, 1.766404], + [-78.662118, 2.267355], + [-78.42761, 2.629556], + [-77.931543, 2.696606], + [-77.510431, 3.325017], + [-77.12769, 3.849636], + [-77.496272, 4.087606], + [-77.307601, 4.667984], + [-77.533221, 5.582812], + [-77.318815, 5.845354], + [-77.476661, 6.691116], + [-77.881571, 7.223771], + [-77.753414, 7.70984], + [-77.431108, 7.638061], + [-77.242566, 7.935278], + [-77.474723, 8.524286], + [-77.353361, 8.670505], + [-76.836674, 8.638749], + [-76.086384, 9.336821], + [-75.6746, 9.443248], + [-75.664704, 9.774003], + [-75.480426, 10.61899], + [-74.906895, 11.083045], + [-74.276753, 11.102036], + [-74.197223, 11.310473], + [-73.414764, 11.227015], + [-72.627835, 11.731972], + [-72.238195, 11.95555], + [-71.75409, 12.437303], + [-71.399822, 12.376041], + [-71.137461, 12.112982], + [-71.331584, 11.776284], + [-71.973922, 11.608672], + [-72.227575, 11.108702], + [-72.614658, 10.821975], + [-72.905286, 10.450344], + [-73.027604, 9.73677], + [-73.304952, 9.152], + [-72.78873, 9.085027], + [-72.660495, 8.625288], + [-72.439862, 8.405275], + [-72.360901, 8.002638], + [-72.479679, 7.632506], + [-72.444487, 7.423785], + [-72.198352, 7.340431], + [-71.960176, 6.991615], + [-70.674234, 7.087785], + [-70.093313, 6.960376], + [-69.38948, 6.099861], + [-68.985319, 6.206805], + [-68.265052, 6.153268], + [-67.695087, 6.267318], + [-67.34144, 6.095468], + [-67.521532, 5.55687], + [-67.744697, 5.221129], + [-67.823012, 4.503937], + [-67.621836, 3.839482], + [-67.337564, 3.542342], + [-67.303173, 3.318454], + [-67.809938, 2.820655], + [-67.447092, 2.600281], + [-67.181294, 2.250638], + [-66.876326, 1.253361], + [-67.065048, 1.130112], + [-67.259998, 1.719999], + [-67.53781, 2.037163], + [-67.868565, 1.692455], + [-69.816973, 1.714805], + [-69.804597, 1.089081], + [-69.218638, 0.985677], + [-69.252434, 0.602651], + [-69.452396, 0.706159], + [-70.015566, 0.541414], + [-70.020656, -0.185156], + [-69.577065, -0.549992], + [-69.420486, -1.122619], + [-69.444102, -1.556287], + [-69.893635, -4.298187], + [-70.394044, -3.766591], + [-70.692682, -3.742872], + [-70.047709, -2.725156], + [-70.813476, -2.256865], + [-71.413646, -2.342802], + [-71.774761, -2.16979], + [-72.325787, -2.434218], + [-73.070392, -2.308954], + [-73.659504, -1.260491], + [-74.122395, -1.002833], + [-74.441601, -0.53082], + [-75.106625, -0.057205], + [-75.373223, -0.152032] + ] + ] + }, + "id": "COL" + }, + { + "type": "Feature", + "properties": { "name": "Costa Rica" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-82.965783, 8.225028], + [-83.508437, 8.446927], + [-83.711474, 8.656836], + [-83.596313, 8.830443], + [-83.632642, 9.051386], + [-83.909886, 9.290803], + [-84.303402, 9.487354], + [-84.647644, 9.615537], + [-84.713351, 9.908052], + [-84.97566, 10.086723], + [-84.911375, 9.795992], + [-85.110923, 9.55704], + [-85.339488, 9.834542], + [-85.660787, 9.933347], + [-85.797445, 10.134886], + [-85.791709, 10.439337], + [-85.659314, 10.754331], + [-85.941725, 10.895278], + [-85.71254, 11.088445], + [-85.561852, 11.217119], + [-84.903003, 10.952303], + [-84.673069, 11.082657], + [-84.355931, 10.999226], + [-84.190179, 10.79345], + [-83.895054, 10.726839], + [-83.655612, 10.938764], + [-83.40232, 10.395438], + [-83.015677, 9.992982], + [-82.546196, 9.566135], + [-82.932891, 9.476812], + [-82.927155, 9.07433], + [-82.719183, 8.925709], + [-82.868657, 8.807266], + [-82.829771, 8.626295], + [-82.913176, 8.423517], + [-82.965783, 8.225028] + ] + ] + }, + "id": "CRI" + }, + { + "type": "Feature", + "properties": { "name": "Cuba" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-82.268151, 23.188611], + [-81.404457, 23.117271], + [-80.618769, 23.10598], + [-79.679524, 22.765303], + [-79.281486, 22.399202], + [-78.347434, 22.512166], + [-77.993296, 22.277194], + [-77.146422, 21.657851], + [-76.523825, 21.20682], + [-76.19462, 21.220565], + [-75.598222, 21.016624], + [-75.67106, 20.735091], + [-74.933896, 20.693905], + [-74.178025, 20.284628], + [-74.296648, 20.050379], + [-74.961595, 19.923435], + [-75.63468, 19.873774], + [-76.323656, 19.952891], + [-77.755481, 19.855481], + [-77.085108, 20.413354], + [-77.492655, 20.673105], + [-78.137292, 20.739949], + [-78.482827, 21.028613], + [-78.719867, 21.598114], + [-79.285, 21.559175], + [-80.217475, 21.827324], + [-80.517535, 22.037079], + [-81.820943, 22.192057], + [-82.169992, 22.387109], + [-81.795002, 22.636965], + [-82.775898, 22.68815], + [-83.494459, 22.168518], + [-83.9088, 22.154565], + [-84.052151, 21.910575], + [-84.54703, 21.801228], + [-84.974911, 21.896028], + [-84.447062, 22.20495], + [-84.230357, 22.565755], + [-83.77824, 22.788118], + [-83.267548, 22.983042], + [-82.510436, 23.078747], + [-82.268151, 23.188611] + ] + ] + }, + "id": "CUB" + }, + { + "type": "Feature", + "properties": { "name": "Cyprus" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.973617, 35.058506], + [34.004881, 34.978098], + [32.979827, 34.571869], + [32.490296, 34.701655], + [32.256667, 35.103232], + [32.73178, 35.140026], + [32.919572, 35.087833], + [33.190977, 35.173125], + [33.383833, 35.162712], + [33.455922, 35.101424], + [33.475817, 35.000345], + [33.525685, 35.038688], + [33.675392, 35.017863], + [33.86644, 35.093595], + [33.973617, 35.058506] + ] + ] + }, + "id": "CYP" + }, + { + "type": "Feature", + "properties": { "name": "Czech Republic" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.960288, 48.596982], + [16.499283, 48.785808], + [16.029647, 48.733899], + [15.253416, 49.039074], + [14.901447, 48.964402], + [14.338898, 48.555305], + [13.595946, 48.877172], + [13.031329, 49.307068], + [12.521024, 49.547415], + [12.415191, 49.969121], + [12.240111, 50.266338], + [12.966837, 50.484076], + [13.338132, 50.733234], + [14.056228, 50.926918], + [14.307013, 51.117268], + [14.570718, 51.002339], + [15.016996, 51.106674], + [15.490972, 50.78473], + [16.238627, 50.697733], + [16.176253, 50.422607], + [16.719476, 50.215747], + [16.868769, 50.473974], + [17.554567, 50.362146], + [17.649445, 50.049038], + [18.392914, 49.988629], + [18.853144, 49.49623], + [18.554971, 49.495015], + [18.399994, 49.315001], + [18.170498, 49.271515], + [18.104973, 49.043983], + [17.913512, 48.996493], + [17.886485, 48.903475], + [17.545007, 48.800019], + [17.101985, 48.816969], + [16.960288, 48.596982] + ] + ] + }, + "id": "CZE" + }, + { + "type": "Feature", + "properties": { "name": "Germany" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.921906, 54.983104], + [9.93958, 54.596642], + [10.950112, 54.363607], + [10.939467, 54.008693], + [11.956252, 54.196486], + [12.51844, 54.470371], + [13.647467, 54.075511], + [14.119686, 53.757029], + [14.353315, 53.248171], + [14.074521, 52.981263], + [14.4376, 52.62485], + [14.685026, 52.089947], + [14.607098, 51.745188], + [15.016996, 51.106674], + [14.570718, 51.002339], + [14.307013, 51.117268], + [14.056228, 50.926918], + [13.338132, 50.733234], + [12.966837, 50.484076], + [12.240111, 50.266338], + [12.415191, 49.969121], + [12.521024, 49.547415], + [13.031329, 49.307068], + [13.595946, 48.877172], + [13.243357, 48.416115], + [12.884103, 48.289146], + [13.025851, 47.637584], + [12.932627, 47.467646], + [12.62076, 47.672388], + [12.141357, 47.703083], + [11.426414, 47.523766], + [10.544504, 47.566399], + [10.402084, 47.302488], + [9.896068, 47.580197], + [9.594226, 47.525058], + [8.522612, 47.830828], + [8.317301, 47.61358], + [7.466759, 47.620582], + [7.593676, 48.333019], + [8.099279, 49.017784], + [6.65823, 49.201958], + [6.18632, 49.463803], + [6.242751, 49.902226], + [6.043073, 50.128052], + [6.156658, 50.803721], + [5.988658, 51.851616], + [6.589397, 51.852029], + [6.84287, 52.22844], + [7.092053, 53.144043], + [6.90514, 53.482162], + [7.100425, 53.693932], + [7.936239, 53.748296], + [8.121706, 53.527792], + [8.800734, 54.020786], + [8.572118, 54.395646], + [8.526229, 54.962744], + [9.282049, 54.830865], + [9.921906, 54.983104] + ] + ] + }, + "id": "DEU" + }, + { + "type": "Feature", + "properties": { "name": "Djibouti" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [43.081226, 12.699639], + [43.317852, 12.390148], + [43.286381, 11.974928], + [42.715874, 11.735641], + [43.145305, 11.46204], + [42.776852, 10.926879], + [42.55493, 11.10511], + [42.31414, 11.0342], + [41.75557, 11.05091], + [41.73959, 11.35511], + [41.66176, 11.6312], + [42, 12.1], + [42.35156, 12.54223], + [42.779642, 12.455416], + [43.081226, 12.699639] + ] + ] + }, + "id": "DJI" + }, + { + "type": "Feature", + "properties": { "name": "Denmark" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [12.690006, 55.609991], + [12.089991, 54.800015], + [11.043543, 55.364864], + [10.903914, 55.779955], + [12.370904, 56.111407], + [12.690006, 55.609991] + ] + ], + [ + [ + [10.912182, 56.458621], + [10.667804, 56.081383], + [10.369993, 56.190007], + [9.649985, 55.469999], + [9.921906, 54.983104], + [9.282049, 54.830865], + [8.526229, 54.962744], + [8.120311, 55.517723], + [8.089977, 56.540012], + [8.256582, 56.809969], + [8.543438, 57.110003], + [9.424469, 57.172066], + [9.775559, 57.447941], + [10.580006, 57.730017], + [10.546106, 57.215733], + [10.25, 56.890016], + [10.369993, 56.609982], + [10.912182, 56.458621] + ] + ] + ] + }, + "id": "DNK" + }, + { + "type": "Feature", + "properties": { "name": "Dominican Republic" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.712361, 19.714456], + [-71.587304, 19.884911], + [-70.806706, 19.880286], + [-70.214365, 19.622885], + [-69.950815, 19.648], + [-69.76925, 19.293267], + [-69.222126, 19.313214], + [-69.254346, 19.015196], + [-68.809412, 18.979074], + [-68.317943, 18.612198], + [-68.689316, 18.205142], + [-69.164946, 18.422648], + [-69.623988, 18.380713], + [-69.952934, 18.428307], + [-70.133233, 18.245915], + [-70.517137, 18.184291], + [-70.669298, 18.426886], + [-70.99995, 18.283329], + [-71.40021, 17.598564], + [-71.657662, 17.757573], + [-71.708305, 18.044997], + [-71.687738, 18.31666], + [-71.945112, 18.6169], + [-71.701303, 18.785417], + [-71.624873, 19.169838], + [-71.712361, 19.714456] + ] + ] + }, + "id": "DOM" + }, + { + "type": "Feature", + "properties": { "name": "Algeria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.999506, 23.471668], + [8.572893, 21.565661], + [5.677566, 19.601207], + [4.267419, 19.155265], + [3.158133, 19.057364], + [3.146661, 19.693579], + [2.683588, 19.85623], + [2.060991, 20.142233], + [1.823228, 20.610809], + [-1.550055, 22.792666], + [-4.923337, 24.974574], + [-8.6844, 27.395744], + [-8.665124, 27.589479], + [-8.66559, 27.656426], + [-8.674116, 28.841289], + [-7.059228, 29.579228], + [-6.060632, 29.7317], + [-5.242129, 30.000443], + [-4.859646, 30.501188], + [-3.690441, 30.896952], + [-3.647498, 31.637294], + [-3.06898, 31.724498], + [-2.616605, 32.094346], + [-1.307899, 32.262889], + [-1.124551, 32.651522], + [-1.388049, 32.864015], + [-1.733455, 33.919713], + [-1.792986, 34.527919], + [-2.169914, 35.168396], + [-1.208603, 35.714849], + [-0.127454, 35.888662], + [0.503877, 36.301273], + [1.466919, 36.605647], + [3.161699, 36.783905], + [4.815758, 36.865037], + [5.32012, 36.716519], + [6.26182, 37.110655], + [7.330385, 37.118381], + [7.737078, 36.885708], + [8.420964, 36.946427], + [8.217824, 36.433177], + [8.376368, 35.479876], + [8.140981, 34.655146], + [7.524482, 34.097376], + [7.612642, 33.344115], + [8.430473, 32.748337], + [8.439103, 32.506285], + [9.055603, 32.102692], + [9.48214, 30.307556], + [9.805634, 29.424638], + [9.859998, 28.95999], + [9.683885, 28.144174], + [9.756128, 27.688259], + [9.629056, 27.140953], + [9.716286, 26.512206], + [9.319411, 26.094325], + [9.910693, 25.365455], + [9.948261, 24.936954], + [10.303847, 24.379313], + [10.771364, 24.562532], + [11.560669, 24.097909], + [11.999506, 23.471668] + ] + ] + }, + "id": "DZA" + }, + { + "type": "Feature", + "properties": { "name": "Ecuador" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80.302561, -3.404856], + [-79.770293, -2.657512], + [-79.986559, -2.220794], + [-80.368784, -2.685159], + [-80.967765, -2.246943], + [-80.764806, -1.965048], + [-80.933659, -1.057455], + [-80.58337, -0.906663], + [-80.399325, -0.283703], + [-80.020898, 0.36034], + [-80.09061, 0.768429], + [-79.542762, 0.982938], + [-78.855259, 1.380924], + [-77.855061, 0.809925], + [-77.668613, 0.825893], + [-77.424984, 0.395687], + [-76.57638, 0.256936], + [-76.292314, 0.416047], + [-75.801466, 0.084801], + [-75.373223, -0.152032], + [-75.233723, -0.911417], + [-75.544996, -1.56161], + [-76.635394, -2.608678], + [-77.837905, -3.003021], + [-78.450684, -3.873097], + [-78.639897, -4.547784], + [-79.205289, -4.959129], + [-79.624979, -4.454198], + [-80.028908, -4.346091], + [-80.442242, -4.425724], + [-80.469295, -4.059287], + [-80.184015, -3.821162], + [-80.302561, -3.404856] + ] + ] + }, + "id": "ECU" + }, + { + "type": "Feature", + "properties": { "name": "Egypt" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.9226, 29.50133], + [34.64174, 29.09942], + [34.42655, 28.34399], + [34.15451, 27.8233], + [33.92136, 27.6487], + [33.58811, 27.97136], + [33.13676, 28.41765], + [32.42323, 29.85108], + [32.32046, 29.76043], + [32.73482, 28.70523], + [33.34876, 27.69989], + [34.10455, 26.14227], + [34.47387, 25.59856], + [34.79507, 25.03375], + [35.69241, 23.92671], + [35.49372, 23.75237], + [35.52598, 23.10244], + [36.69069, 22.20485], + [36.86623, 22], + [32.9, 22], + [29.02, 22], + [25, 22], + [25, 25.6825], + [25, 29.238655], + [24.70007, 30.04419], + [24.95762, 30.6616], + [24.80287, 31.08929], + [25.16482, 31.56915], + [26.49533, 31.58568], + [27.45762, 31.32126], + [28.45048, 31.02577], + [28.91353, 30.87005], + [29.68342, 31.18686], + [30.09503, 31.4734], + [30.97693, 31.55586], + [31.68796, 31.4296], + [31.96041, 30.9336], + [32.19247, 31.26034], + [32.99392, 31.02407], + [33.7734, 30.96746], + [34.26544, 31.21936], + [34.9226, 29.50133] + ] + ] + }, + "id": "EGY" + }, + { + "type": "Feature", + "properties": { "name": "Eritrea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.35156, 12.54223], + [42.00975, 12.86582], + [41.59856, 13.45209], + [41.155194, 13.77332], + [40.8966, 14.11864], + [40.026219, 14.519579], + [39.34061, 14.53155], + [39.0994, 14.74064], + [38.51295, 14.50547], + [37.90607, 14.95943], + [37.59377, 14.2131], + [36.42951, 14.42211], + [36.323189, 14.822481], + [36.75386, 16.291874], + [36.85253, 16.95655], + [37.16747, 17.26314], + [37.904, 17.42754], + [38.41009, 17.998307], + [38.990623, 16.840626], + [39.26611, 15.922723], + [39.814294, 15.435647], + [41.179275, 14.49108], + [41.734952, 13.921037], + [42.276831, 13.343992], + [42.589576, 13.000421], + [43.081226, 12.699639], + [42.779642, 12.455416], + [42.35156, 12.54223] + ] + ] + }, + "id": "ERI" + }, + { + "type": "Feature", + "properties": { "name": "Spain" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-9.034818, 41.880571], + [-8.984433, 42.592775], + [-9.392884, 43.026625], + [-7.97819, 43.748338], + [-6.754492, 43.567909], + [-5.411886, 43.57424], + [-4.347843, 43.403449], + [-3.517532, 43.455901], + [-1.901351, 43.422802], + [-1.502771, 43.034014], + [0.338047, 42.579546], + [0.701591, 42.795734], + [1.826793, 42.343385], + [2.985999, 42.473015], + [3.039484, 41.89212], + [2.091842, 41.226089], + [0.810525, 41.014732], + [0.721331, 40.678318], + [0.106692, 40.123934], + [-0.278711, 39.309978], + [0.111291, 38.738514], + [-0.467124, 38.292366], + [-0.683389, 37.642354], + [-1.438382, 37.443064], + [-2.146453, 36.674144], + [-3.415781, 36.6589], + [-4.368901, 36.677839], + [-4.995219, 36.324708], + [-5.37716, 35.94685], + [-5.866432, 36.029817], + [-6.236694, 36.367677], + [-6.520191, 36.942913], + [-7.453726, 37.097788], + [-7.537105, 37.428904], + [-7.166508, 37.803894], + [-7.029281, 38.075764], + [-7.374092, 38.373059], + [-7.098037, 39.030073], + [-7.498632, 39.629571], + [-7.066592, 39.711892], + [-7.026413, 40.184524], + [-6.86402, 40.330872], + [-6.851127, 41.111083], + [-6.389088, 41.381815], + [-6.668606, 41.883387], + [-7.251309, 41.918346], + [-7.422513, 41.792075], + [-8.013175, 41.790886], + [-8.263857, 42.280469], + [-8.671946, 42.134689], + [-9.034818, 41.880571] + ] + ] + }, + "id": "ESP" + }, + { + "type": "Feature", + "properties": { "name": "Estonia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [24.312863, 57.793424], + [24.428928, 58.383413], + [24.061198, 58.257375], + [23.42656, 58.612753], + [23.339795, 59.18724], + [24.604214, 59.465854], + [25.864189, 59.61109], + [26.949136, 59.445803], + [27.981114, 59.475388], + [28.131699, 59.300825], + [27.420166, 58.724581], + [27.716686, 57.791899], + [27.288185, 57.474528], + [26.463532, 57.476389], + [25.60281, 57.847529], + [25.164594, 57.970157], + [24.312863, 57.793424] + ] + ] + }, + "id": "EST" + }, + { + "type": "Feature", + "properties": { "name": "Ethiopia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.90607, 14.95943], + [38.51295, 14.50547], + [39.0994, 14.74064], + [39.34061, 14.53155], + [40.02625, 14.51959], + [40.8966, 14.11864], + [41.1552, 13.77333], + [41.59856, 13.45209], + [42.00975, 12.86582], + [42.35156, 12.54223], + [42, 12.1], + [41.66176, 11.6312], + [41.73959, 11.35511], + [41.75557, 11.05091], + [42.31414, 11.0342], + [42.55493, 11.10511], + [42.776852, 10.926879], + [42.55876, 10.57258], + [42.92812, 10.02194], + [43.29699, 9.54048], + [43.67875, 9.18358], + [46.94834, 7.99688], + [47.78942, 8.003], + [44.9636, 5.00162], + [43.66087, 4.95755], + [42.76967, 4.25259], + [42.12861, 4.23413], + [41.855083, 3.918912], + [41.1718, 3.91909], + [40.76848, 4.25702], + [39.85494, 3.83879], + [39.559384, 3.42206], + [38.89251, 3.50074], + [38.67114, 3.61607], + [38.43697, 3.58851], + [38.120915, 3.598605], + [36.855093, 4.447864], + [36.159079, 4.447864], + [35.817448, 4.776966], + [35.817448, 5.338232], + [35.298007, 5.506], + [34.70702, 6.59422], + [34.25032, 6.82607], + [34.0751, 7.22595], + [33.56829, 7.71334], + [32.95418, 7.78497], + [33.2948, 8.35458], + [33.8255, 8.37916], + [33.97498, 8.68456], + [33.96162, 9.58358], + [34.25745, 10.63009], + [34.73115, 10.91017], + [34.83163, 11.31896], + [35.26049, 12.08286], + [35.86363, 12.57828], + [36.27022, 13.56333], + [36.42951, 14.42211], + [37.59377, 14.2131], + [37.90607, 14.95943] + ] + ] + }, + "id": "ETH" + }, + { + "type": "Feature", + "properties": { "name": "Finland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.59193, 69.064777], + [28.445944, 68.364613], + [29.977426, 67.698297], + [29.054589, 66.944286], + [30.21765, 65.80598], + [29.54443, 64.948672], + [30.444685, 64.204453], + [30.035872, 63.552814], + [31.516092, 62.867687], + [31.139991, 62.357693], + [30.211107, 61.780028], + [28.069998, 60.503517], + [26.255173, 60.423961], + [24.496624, 60.057316], + [22.869695, 59.846373], + [22.290764, 60.391921], + [21.322244, 60.72017], + [21.544866, 61.705329], + [21.059211, 62.607393], + [21.536029, 63.189735], + [22.442744, 63.81781], + [24.730512, 64.902344], + [25.398068, 65.111427], + [25.294043, 65.534346], + [23.903379, 66.006927], + [23.56588, 66.396051], + [23.539473, 67.936009], + [21.978535, 68.616846], + [20.645593, 69.106247], + [21.244936, 69.370443], + [22.356238, 68.841741], + [23.66205, 68.891247], + [24.735679, 68.649557], + [25.689213, 69.092114], + [26.179622, 69.825299], + [27.732292, 70.164193], + [29.015573, 69.766491], + [28.59193, 69.064777] + ] + ] + }, + "id": "FIN" + }, + { + "type": "Feature", + "properties": { "name": "Fiji" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [178.3736, -17.33992], + [178.71806, -17.62846], + [178.55271, -18.15059], + [177.93266, -18.28799], + [177.38146, -18.16432], + [177.28504, -17.72465], + [177.67087, -17.38114], + [178.12557, -17.50481], + [178.3736, -17.33992] + ] + ], + [ + [ + [179.364143, -16.801354], + [178.725059, -17.012042], + [178.596839, -16.63915], + [179.096609, -16.433984], + [179.413509, -16.379054], + [180, -16.067133], + [180, -16.555217], + [179.364143, -16.801354] + ] + ], + [ + [ + [-179.917369, -16.501783], + [-180, -16.555217], + [-180, -16.067133], + [-179.79332, -16.020882], + [-179.917369, -16.501783] + ] + ] + ] + }, + "id": "FJI" + }, + { + "type": "Feature", + "properties": { "name": "Falkland Islands" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.2, -51.85], + [-60, -51.25], + [-59.15, -51.5], + [-58.55, -51.1], + [-57.75, -51.55], + [-58.05, -51.9], + [-59.4, -52.2], + [-59.85, -51.85], + [-60.7, -52.3], + [-61.2, -51.85] + ] + ] + }, + "id": "FLK" + }, + { + "type": "Feature", + "properties": { "name": "France" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [9.560016, 42.152492], + [9.229752, 41.380007], + [8.775723, 41.583612], + [8.544213, 42.256517], + [8.746009, 42.628122], + [9.390001, 43.009985], + [9.560016, 42.152492] + ] + ], + [ + [ + [3.588184, 50.378992], + [4.286023, 49.907497], + [4.799222, 49.985373], + [5.674052, 49.529484], + [5.897759, 49.442667], + [6.18632, 49.463803], + [6.65823, 49.201958], + [8.099279, 49.017784], + [7.593676, 48.333019], + [7.466759, 47.620582], + [7.192202, 47.449766], + [6.736571, 47.541801], + [6.768714, 47.287708], + [6.037389, 46.725779], + [6.022609, 46.27299], + [6.5001, 46.429673], + [6.843593, 45.991147], + [6.802355, 45.70858], + [7.096652, 45.333099], + [6.749955, 45.028518], + [7.007562, 44.254767], + [7.549596, 44.127901], + [7.435185, 43.693845], + [6.529245, 43.128892], + [4.556963, 43.399651], + [3.100411, 43.075201], + [2.985999, 42.473015], + [1.826793, 42.343385], + [0.701591, 42.795734], + [0.338047, 42.579546], + [-1.502771, 43.034014], + [-1.901351, 43.422802], + [-1.384225, 44.02261], + [-1.193798, 46.014918], + [-2.225724, 47.064363], + [-2.963276, 47.570327], + [-4.491555, 47.954954], + [-4.59235, 48.68416], + [-3.295814, 48.901692], + [-1.616511, 48.644421], + [-1.933494, 49.776342], + [-0.989469, 49.347376], + [1.338761, 50.127173], + [1.639001, 50.946606], + [2.513573, 51.148506], + [2.658422, 50.796848], + [3.123252, 50.780363], + [3.588184, 50.378992] + ] + ] + ] + }, + "id": "FRA" + }, + { + "type": "Feature", + "properties": { "name": "French Guiana" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-52.556425, 2.504705], + [-52.939657, 2.124858], + [-53.418465, 2.053389], + [-53.554839, 2.334897], + [-53.778521, 2.376703], + [-54.088063, 2.105557], + [-54.524754, 2.311849], + [-54.27123, 2.738748], + [-54.184284, 3.194172], + [-54.011504, 3.62257], + [-54.399542, 4.212611], + [-54.478633, 4.896756], + [-53.958045, 5.756548], + [-53.618453, 5.646529], + [-52.882141, 5.409851], + [-51.823343, 4.565768], + [-51.657797, 4.156232], + [-52.249338, 3.241094], + [-52.556425, 2.504705] + ] + ] + ] + }, + "id": "GUF" + }, + { + "type": "Feature", + "properties": { "name": "Gabon" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.093773, -3.978827], + [10.066135, -2.969483], + [9.405245, -2.144313], + [8.797996, -1.111301], + [8.830087, -0.779074], + [9.04842, -0.459351], + [9.291351, 0.268666], + [9.492889, 1.01012], + [9.830284, 1.067894], + [11.285079, 1.057662], + [11.276449, 2.261051], + [11.751665, 2.326758], + [12.35938, 2.192812], + [12.951334, 2.321616], + [13.075822, 2.267097], + [13.003114, 1.830896], + [13.282631, 1.314184], + [14.026669, 1.395677], + [14.276266, 1.19693], + [13.843321, 0.038758], + [14.316418, -0.552627], + [14.425456, -1.333407], + [14.29921, -1.998276], + [13.992407, -2.470805], + [13.109619, -2.42874], + [12.575284, -1.948511], + [12.495703, -2.391688], + [11.820964, -2.514161], + [11.478039, -2.765619], + [11.855122, -3.426871], + [11.093773, -3.978827] + ] + ] + }, + "id": "GAB" + }, + { + "type": "Feature", + "properties": { "name": "United Kingdom" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-5.661949, 54.554603], + [-6.197885, 53.867565], + [-6.95373, 54.073702], + [-7.572168, 54.059956], + [-7.366031, 54.595841], + [-7.572168, 55.131622], + [-6.733847, 55.17286], + [-5.661949, 54.554603] + ] + ], + [ + [ + [-3.005005, 58.635], + [-4.073828, 57.553025], + [-3.055002, 57.690019], + [-1.959281, 57.6848], + [-2.219988, 56.870017], + [-3.119003, 55.973793], + [-2.085009, 55.909998], + [-2.005676, 55.804903], + [-1.114991, 54.624986], + [-0.430485, 54.464376], + [0.184981, 53.325014], + [0.469977, 52.929999], + [1.681531, 52.73952], + [1.559988, 52.099998], + [1.050562, 51.806761], + [1.449865, 51.289428], + [0.550334, 50.765739], + [-0.787517, 50.774989], + [-2.489998, 50.500019], + [-2.956274, 50.69688], + [-3.617448, 50.228356], + [-4.542508, 50.341837], + [-5.245023, 49.96], + [-5.776567, 50.159678], + [-4.30999, 51.210001], + [-3.414851, 51.426009], + [-3.422719, 51.426848], + [-4.984367, 51.593466], + [-5.267296, 51.9914], + [-4.222347, 52.301356], + [-4.770013, 52.840005], + [-4.579999, 53.495004], + [-3.093831, 53.404547], + [-3.09208, 53.404441], + [-2.945009, 53.985], + [-3.614701, 54.600937], + [-3.630005, 54.615013], + [-4.844169, 54.790971], + [-5.082527, 55.061601], + [-4.719112, 55.508473], + [-5.047981, 55.783986], + [-5.586398, 55.311146], + [-5.644999, 56.275015], + [-6.149981, 56.78501], + [-5.786825, 57.818848], + [-5.009999, 58.630013], + [-4.211495, 58.550845], + [-3.005005, 58.635] + ] + ] + ] + }, + "id": "GBR" + }, + { + "type": "Feature", + "properties": { "name": "Georgia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [41.554084, 41.535656], + [41.703171, 41.962943], + [41.45347, 42.645123], + [40.875469, 43.013628], + [40.321394, 43.128634], + [39.955009, 43.434998], + [40.076965, 43.553104], + [40.922185, 43.382159], + [42.394395, 43.220308], + [43.756017, 42.740828], + [43.9312, 42.554974], + [44.537623, 42.711993], + [45.470279, 42.502781], + [45.77641, 42.092444], + [46.404951, 41.860675], + [46.145432, 41.722802], + [46.637908, 41.181673], + [46.501637, 41.064445], + [45.962601, 41.123873], + [45.217426, 41.411452], + [44.97248, 41.248129], + [43.582746, 41.092143], + [42.619549, 41.583173], + [41.554084, 41.535656] + ] + ] + }, + "id": "GEO" + }, + { + "type": "Feature", + "properties": { "name": "Ghana" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [1.060122, 5.928837], + [-0.507638, 5.343473], + [-1.063625, 5.000548], + [-1.964707, 4.710462], + [-2.856125, 4.994476], + [-2.810701, 5.389051], + [-3.24437, 6.250472], + [-2.983585, 7.379705], + [-2.56219, 8.219628], + [-2.827496, 9.642461], + [-2.963896, 10.395335], + [-2.940409, 10.96269], + [-1.203358, 11.009819], + [-0.761576, 10.93693], + [-0.438702, 11.098341], + [0.023803, 11.018682], + [-0.049785, 10.706918], + [0.36758, 10.191213], + [0.365901, 9.465004], + [0.461192, 8.677223], + [0.712029, 8.312465], + [0.490957, 7.411744], + [0.570384, 6.914359], + [0.836931, 6.279979], + [1.060122, 5.928837] + ] + ] + }, + "id": "GHA" + }, + { + "type": "Feature", + "properties": { "name": "Guinea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.439298, 7.686043], + [-8.722124, 7.711674], + [-8.926065, 7.309037], + [-9.208786, 7.313921], + [-9.403348, 7.526905], + [-9.33728, 7.928534], + [-9.755342, 8.541055], + [-10.016567, 8.428504], + [-10.230094, 8.406206], + [-10.505477, 8.348896], + [-10.494315, 8.715541], + [-10.65477, 8.977178], + [-10.622395, 9.26791], + [-10.839152, 9.688246], + [-11.117481, 10.045873], + [-11.917277, 10.046984], + [-12.150338, 9.858572], + [-12.425929, 9.835834], + [-12.596719, 9.620188], + [-12.711958, 9.342712], + [-13.24655, 8.903049], + [-13.685154, 9.494744], + [-14.074045, 9.886167], + [-14.330076, 10.01572], + [-14.579699, 10.214467], + [-14.693232, 10.656301], + [-14.839554, 10.876572], + [-15.130311, 11.040412], + [-14.685687, 11.527824], + [-14.382192, 11.509272], + [-14.121406, 11.677117], + [-13.9008, 11.678719], + [-13.743161, 11.811269], + [-13.828272, 12.142644], + [-13.718744, 12.247186], + [-13.700476, 12.586183], + [-13.217818, 12.575874], + [-12.499051, 12.33209], + [-12.278599, 12.35444], + [-12.203565, 12.465648], + [-11.658301, 12.386583], + [-11.513943, 12.442988], + [-11.456169, 12.076834], + [-11.297574, 12.077971], + [-11.036556, 12.211245], + [-10.87083, 12.177887], + [-10.593224, 11.923975], + [-10.165214, 11.844084], + [-9.890993, 12.060479], + [-9.567912, 12.194243], + [-9.327616, 12.334286], + [-9.127474, 12.30806], + [-8.905265, 12.088358], + [-8.786099, 11.812561], + [-8.376305, 11.393646], + [-8.581305, 11.136246], + [-8.620321, 10.810891], + [-8.407311, 10.909257], + [-8.282357, 10.792597], + [-8.335377, 10.494812], + [-8.029944, 10.206535], + [-8.229337, 10.12902], + [-8.309616, 9.789532], + [-8.079114, 9.376224], + [-7.8321, 8.575704], + [-8.203499, 8.455453], + [-8.299049, 8.316444], + [-8.221792, 8.123329], + [-8.280703, 7.68718], + [-8.439298, 7.686043] + ] + ] + }, + "id": "GIN" + }, + { + "type": "Feature", + "properties": { "name": "Gambia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.841525, 13.151394], + [-16.713729, 13.594959], + [-15.624596, 13.623587], + [-15.39877, 13.860369], + [-15.081735, 13.876492], + [-14.687031, 13.630357], + [-14.376714, 13.62568], + [-14.046992, 13.794068], + [-13.844963, 13.505042], + [-14.277702, 13.280585], + [-14.712197, 13.298207], + [-15.141163, 13.509512], + [-15.511813, 13.27857], + [-15.691001, 13.270353], + [-15.931296, 13.130284], + [-16.841525, 13.151394] + ] + ] + }, + "id": "GMB" + }, + { + "type": "Feature", + "properties": { "name": "Guinea Bissau" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-15.130311, 11.040412], + [-15.66418, 11.458474], + [-16.085214, 11.524594], + [-16.314787, 11.806515], + [-16.308947, 11.958702], + [-16.613838, 12.170911], + [-16.677452, 12.384852], + [-16.147717, 12.547762], + [-15.816574, 12.515567], + [-15.548477, 12.62817], + [-13.700476, 12.586183], + [-13.718744, 12.247186], + [-13.828272, 12.142644], + [-13.743161, 11.811269], + [-13.9008, 11.678719], + [-14.121406, 11.677117], + [-14.382192, 11.509272], + [-14.685687, 11.527824], + [-15.130311, 11.040412] + ] + ] + }, + "id": "GNB" + }, + { + "type": "Feature", + "properties": { "name": "Equatorial Guinea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.492889, 1.01012], + [9.305613, 1.160911], + [9.649158, 2.283866], + [11.276449, 2.261051], + [11.285079, 1.057662], + [9.830284, 1.067894], + [9.492889, 1.01012] + ] + ] + }, + "id": "GNQ" + }, + { + "type": "Feature", + "properties": { "name": "Greece" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [23.69998, 35.705004], + [24.246665, 35.368022], + [25.025015, 35.424996], + [25.769208, 35.354018], + [25.745023, 35.179998], + [26.290003, 35.29999], + [26.164998, 35.004995], + [24.724982, 34.919988], + [24.735007, 35.084991], + [23.514978, 35.279992], + [23.69998, 35.705004] + ] + ], + [ + [ + [26.604196, 41.562115], + [26.294602, 40.936261], + [26.056942, 40.824123], + [25.447677, 40.852545], + [24.925848, 40.947062], + [23.714811, 40.687129], + [24.407999, 40.124993], + [23.899968, 39.962006], + [23.342999, 39.960998], + [22.813988, 40.476005], + [22.626299, 40.256561], + [22.849748, 39.659311], + [23.350027, 39.190011], + [22.973099, 38.970903], + [23.530016, 38.510001], + [24.025025, 38.219993], + [24.040011, 37.655015], + [23.115003, 37.920011], + [23.409972, 37.409991], + [22.774972, 37.30501], + [23.154225, 36.422506], + [22.490028, 36.41], + [21.670026, 36.844986], + [21.295011, 37.644989], + [21.120034, 38.310323], + [20.730032, 38.769985], + [20.217712, 39.340235], + [20.150016, 39.624998], + [20.615, 40.110007], + [20.674997, 40.435], + [20.99999, 40.580004], + [21.02004, 40.842727], + [21.674161, 40.931275], + [22.055378, 41.149866], + [22.597308, 41.130487], + [22.76177, 41.3048], + [22.952377, 41.337994], + [23.692074, 41.309081], + [24.492645, 41.583896], + [25.197201, 41.234486], + [26.106138, 41.328899], + [26.117042, 41.826905], + [26.604196, 41.562115] + ] + ] + ] + }, + "id": "GRC" + }, + { + "type": "Feature", + "properties": { "name": "Greenland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-46.76379, 82.62796], + [-43.40644, 83.22516], + [-39.89753, 83.18018], + [-38.62214, 83.54905], + [-35.08787, 83.64513], + [-27.10046, 83.51966], + [-20.84539, 82.72669], + [-22.69182, 82.34165], + [-26.51753, 82.29765], + [-31.9, 82.2], + [-31.39646, 82.02154], + [-27.85666, 82.13178], + [-24.84448, 81.78697], + [-22.90328, 82.09317], + [-22.07175, 81.73449], + [-23.16961, 81.15271], + [-20.62363, 81.52462], + [-15.76818, 81.91245], + [-12.77018, 81.71885], + [-12.20855, 81.29154], + [-16.28533, 80.58004], + [-16.85, 80.35], + [-20.04624, 80.17708], + [-17.73035, 80.12912], + [-18.9, 79.4], + [-19.70499, 78.75128], + [-19.67353, 77.63859], + [-18.47285, 76.98565], + [-20.03503, 76.94434], + [-21.67944, 76.62795], + [-19.83407, 76.09808], + [-19.59896, 75.24838], + [-20.66818, 75.15585], + [-19.37281, 74.29561], + [-21.59422, 74.22382], + [-20.43454, 73.81713], + [-20.76234, 73.46436], + [-22.17221, 73.30955], + [-23.56593, 73.30663], + [-22.31311, 72.62928], + [-22.29954, 72.18409], + [-24.27834, 72.59788], + [-24.79296, 72.3302], + [-23.44296, 72.08016], + [-22.13281, 71.46898], + [-21.75356, 70.66369], + [-23.53603, 70.471], + [-24.30702, 70.85649], + [-25.54341, 71.43094], + [-25.20135, 70.75226], + [-26.36276, 70.22646], + [-23.72742, 70.18401], + [-22.34902, 70.12946], + [-25.02927, 69.2588], + [-27.74737, 68.47046], + [-30.67371, 68.12503], + [-31.77665, 68.12078], + [-32.81105, 67.73547], + [-34.20196, 66.67974], + [-36.35284, 65.9789], + [-37.04378, 65.93768], + [-38.37505, 65.69213], + [-39.81222, 65.45848], + [-40.66899, 64.83997], + [-40.68281, 64.13902], + [-41.1887, 63.48246], + [-42.81938, 62.68233], + [-42.41666, 61.90093], + [-42.86619, 61.07404], + [-43.3784, 60.09772], + [-44.7875, 60.03676], + [-46.26364, 60.85328], + [-48.26294, 60.85843], + [-49.23308, 61.40681], + [-49.90039, 62.38336], + [-51.63325, 63.62691], + [-52.14014, 64.27842], + [-52.27659, 65.1767], + [-53.66166, 66.09957], + [-53.30161, 66.8365], + [-53.96911, 67.18899], + [-52.9804, 68.35759], + [-51.47536, 68.72958], + [-51.08041, 69.14781], + [-50.87122, 69.9291], + [-52.013585, 69.574925], + [-52.55792, 69.42616], + [-53.45629, 69.283625], + [-54.68336, 69.61003], + [-54.75001, 70.28932], + [-54.35884, 70.821315], + [-53.431315, 70.835755], + [-51.39014, 70.56978], + [-53.10937, 71.20485], + [-54.00422, 71.54719], + [-55, 71.406537], + [-55.83468, 71.65444], + [-54.71819, 72.58625], + [-55.32634, 72.95861], + [-56.12003, 73.64977], + [-57.32363, 74.71026], + [-58.59679, 75.09861], + [-58.58516, 75.51727], + [-61.26861, 76.10238], + [-63.39165, 76.1752], + [-66.06427, 76.13486], + [-68.50438, 76.06141], + [-69.66485, 76.37975], + [-71.40257, 77.00857], + [-68.77671, 77.32312], + [-66.76397, 77.37595], + [-71.04293, 77.63595], + [-73.297, 78.04419], + [-73.15938, 78.43271], + [-69.37345, 78.91388], + [-65.7107, 79.39436], + [-65.3239, 79.75814], + [-68.02298, 80.11721], + [-67.15129, 80.51582], + [-63.68925, 81.21396], + [-62.23444, 81.3211], + [-62.65116, 81.77042], + [-60.28249, 82.03363], + [-57.20744, 82.19074], + [-54.13442, 82.19962], + [-53.04328, 81.88833], + [-50.39061, 82.43883], + [-48.00386, 82.06481], + [-46.59984, 81.985945], + [-44.523, 81.6607], + [-46.9007, 82.19979], + [-46.76379, 82.62796] + ] + ] + }, + "id": "GRL" + }, + { + "type": "Feature", + "properties": { "name": "Guatemala" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90.095555, 13.735338], + [-90.608624, 13.909771], + [-91.23241, 13.927832], + [-91.689747, 14.126218], + [-92.22775, 14.538829], + [-92.20323, 14.830103], + [-92.087216, 15.064585], + [-92.229249, 15.251447], + [-91.74796, 16.066565], + [-90.464473, 16.069562], + [-90.438867, 16.41011], + [-90.600847, 16.470778], + [-90.711822, 16.687483], + [-91.08167, 16.918477], + [-91.453921, 17.252177], + [-91.002269, 17.254658], + [-91.00152, 17.817595], + [-90.067934, 17.819326], + [-89.14308, 17.808319], + [-89.150806, 17.015577], + [-89.229122, 15.886938], + [-88.930613, 15.887273], + [-88.604586, 15.70638], + [-88.518364, 15.855389], + [-88.225023, 15.727722], + [-88.68068, 15.346247], + [-89.154811, 15.066419], + [-89.22522, 14.874286], + [-89.145535, 14.678019], + [-89.353326, 14.424133], + [-89.587343, 14.362586], + [-89.534219, 14.244816], + [-89.721934, 14.134228], + [-90.064678, 13.88197], + [-90.095555, 13.735338] + ] + ] + }, + "id": "GTM" + }, + { + "type": "Feature", + "properties": { "name": "Guyana" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-59.758285, 8.367035], + [-59.101684, 7.999202], + [-58.482962, 7.347691], + [-58.454876, 6.832787], + [-58.078103, 6.809094], + [-57.542219, 6.321268], + [-57.147436, 5.97315], + [-57.307246, 5.073567], + [-57.914289, 4.812626], + [-57.86021, 4.576801], + [-58.044694, 4.060864], + [-57.601569, 3.334655], + [-57.281433, 3.333492], + [-57.150098, 2.768927], + [-56.539386, 1.899523], + [-56.782704, 1.863711], + [-57.335823, 1.948538], + [-57.660971, 1.682585], + [-58.11345, 1.507195], + [-58.429477, 1.463942], + [-58.540013, 1.268088], + [-59.030862, 1.317698], + [-59.646044, 1.786894], + [-59.718546, 2.24963], + [-59.974525, 2.755233], + [-59.815413, 3.606499], + [-59.53804, 3.958803], + [-59.767406, 4.423503], + [-60.111002, 4.574967], + [-59.980959, 5.014061], + [-60.213683, 5.244486], + [-60.733574, 5.200277], + [-61.410303, 5.959068], + [-61.139415, 6.234297], + [-61.159336, 6.696077], + [-60.543999, 6.856584], + [-60.295668, 7.043911], + [-60.637973, 7.415], + [-60.550588, 7.779603], + [-59.758285, 8.367035] + ] + ] + }, + "id": "GUY" + }, + { + "type": "Feature", + "properties": { "name": "Honduras" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-87.316654, 12.984686], + [-87.489409, 13.297535], + [-87.793111, 13.38448], + [-87.723503, 13.78505], + [-87.859515, 13.893312], + [-88.065343, 13.964626], + [-88.503998, 13.845486], + [-88.541231, 13.980155], + [-88.843073, 14.140507], + [-89.058512, 14.340029], + [-89.353326, 14.424133], + [-89.145535, 14.678019], + [-89.22522, 14.874286], + [-89.154811, 15.066419], + [-88.68068, 15.346247], + [-88.225023, 15.727722], + [-88.121153, 15.688655], + [-87.901813, 15.864458], + [-87.61568, 15.878799], + [-87.522921, 15.797279], + [-87.367762, 15.84694], + [-86.903191, 15.756713], + [-86.440946, 15.782835], + [-86.119234, 15.893449], + [-86.001954, 16.005406], + [-85.683317, 15.953652], + [-85.444004, 15.885749], + [-85.182444, 15.909158], + [-84.983722, 15.995923], + [-84.52698, 15.857224], + [-84.368256, 15.835158], + [-84.063055, 15.648244], + [-83.773977, 15.424072], + [-83.410381, 15.270903], + [-83.147219, 14.995829], + [-83.489989, 15.016267], + [-83.628585, 14.880074], + [-83.975721, 14.749436], + [-84.228342, 14.748764], + [-84.449336, 14.621614], + [-84.649582, 14.666805], + [-84.820037, 14.819587], + [-84.924501, 14.790493], + [-85.052787, 14.551541], + [-85.148751, 14.560197], + [-85.165365, 14.35437], + [-85.514413, 14.079012], + [-85.698665, 13.960078], + [-85.801295, 13.836055], + [-86.096264, 14.038187], + [-86.312142, 13.771356], + [-86.520708, 13.778487], + [-86.755087, 13.754845], + [-86.733822, 13.263093], + [-86.880557, 13.254204], + [-87.005769, 13.025794], + [-87.316654, 12.984686] + ] + ] + }, + "id": "HND" + }, + { + "type": "Feature", + "properties": { "name": "Croatia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [18.829838, 45.908878], + [19.072769, 45.521511], + [19.390476, 45.236516], + [19.005486, 44.860234], + [18.553214, 45.08159], + [17.861783, 45.06774], + [17.002146, 45.233777], + [16.534939, 45.211608], + [16.318157, 45.004127], + [15.959367, 45.233777], + [15.750026, 44.818712], + [16.23966, 44.351143], + [16.456443, 44.04124], + [16.916156, 43.667722], + [17.297373, 43.446341], + [17.674922, 43.028563], + [18.56, 42.65], + [18.450016, 42.479991], + [17.50997, 42.849995], + [16.930006, 43.209998], + [16.015385, 43.507215], + [15.174454, 44.243191], + [15.37625, 44.317915], + [14.920309, 44.738484], + [14.901602, 45.07606], + [14.258748, 45.233777], + [13.952255, 44.802124], + [13.656976, 45.136935], + [13.679403, 45.484149], + [13.71506, 45.500324], + [14.411968, 45.466166], + [14.595109, 45.634941], + [14.935244, 45.471695], + [15.327675, 45.452316], + [15.323954, 45.731783], + [15.67153, 45.834154], + [15.768733, 46.238108], + [16.564808, 46.503751], + [16.882515, 46.380632], + [17.630066, 45.951769], + [18.456062, 45.759481], + [18.829838, 45.908878] + ] + ] + }, + "id": "HRV" + }, + { + "type": "Feature", + "properties": { "name": "Haiti" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-73.189791, 19.915684], + [-72.579673, 19.871501], + [-71.712361, 19.714456], + [-71.624873, 19.169838], + [-71.701303, 18.785417], + [-71.945112, 18.6169], + [-71.687738, 18.31666], + [-71.708305, 18.044997], + [-72.372476, 18.214961], + [-72.844411, 18.145611], + [-73.454555, 18.217906], + [-73.922433, 18.030993], + [-74.458034, 18.34255], + [-74.369925, 18.664908], + [-73.449542, 18.526053], + [-72.694937, 18.445799], + [-72.334882, 18.668422], + [-72.79165, 19.101625], + [-72.784105, 19.483591], + [-73.415022, 19.639551], + [-73.189791, 19.915684] + ] + ] + }, + "id": "HTI" + }, + { + "type": "Feature", + "properties": { "name": "Hungary" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.202298, 46.852386], + [16.534268, 47.496171], + [16.340584, 47.712902], + [16.903754, 47.714866], + [16.979667, 48.123497], + [17.488473, 47.867466], + [17.857133, 47.758429], + [18.696513, 47.880954], + [18.777025, 48.081768], + [19.174365, 48.111379], + [19.661364, 48.266615], + [19.769471, 48.202691], + [20.239054, 48.327567], + [20.473562, 48.56285], + [20.801294, 48.623854], + [21.872236, 48.319971], + [22.085608, 48.422264], + [22.64082, 48.15024], + [22.710531, 47.882194], + [22.099768, 47.672439], + [21.626515, 46.994238], + [21.021952, 46.316088], + [20.220192, 46.127469], + [19.596045, 46.17173], + [18.829838, 45.908878], + [18.456062, 45.759481], + [17.630066, 45.951769], + [16.882515, 46.380632], + [16.564808, 46.503751], + [16.370505, 46.841327], + [16.202298, 46.852386] + ] + ] + }, + "id": "HUN" + }, + { + "type": "Feature", + "properties": { "name": "Indonesia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [120.715609, -10.239581], + [120.295014, -10.25865], + [118.967808, -9.557969], + [119.90031, -9.36134], + [120.425756, -9.665921], + [120.775502, -9.969675], + [120.715609, -10.239581] + ] + ], + [ + [ + [124.43595, -10.140001], + [123.579982, -10.359987], + [123.459989, -10.239995], + [123.550009, -9.900016], + [123.980009, -9.290027], + [124.968682, -8.89279], + [125.07002, -9.089987], + [125.08852, -9.393173], + [124.43595, -10.140001] + ] + ], + [ + [ + [117.900018, -8.095681], + [118.260616, -8.362383], + [118.87846, -8.280683], + [119.126507, -8.705825], + [117.970402, -8.906639], + [117.277731, -9.040895], + [116.740141, -9.032937], + [117.083737, -8.457158], + [117.632024, -8.449303], + [117.900018, -8.095681] + ] + ], + [ + [ + [122.903537, -8.094234], + [122.756983, -8.649808], + [121.254491, -8.933666], + [119.924391, -8.810418], + [119.920929, -8.444859], + [120.715092, -8.236965], + [121.341669, -8.53674], + [122.007365, -8.46062], + [122.903537, -8.094234] + ] + ], + [ + [ + [108.623479, -6.777674], + [110.539227, -6.877358], + [110.759576, -6.465186], + [112.614811, -6.946036], + [112.978768, -7.594213], + [114.478935, -7.776528], + [115.705527, -8.370807], + [114.564511, -8.751817], + [113.464734, -8.348947], + [112.559672, -8.376181], + [111.522061, -8.302129], + [110.58615, -8.122605], + [109.427667, -7.740664], + [108.693655, -7.6416], + [108.277763, -7.766657], + [106.454102, -7.3549], + [106.280624, -6.9249], + [105.365486, -6.851416], + [106.051646, -5.895919], + [107.265009, -5.954985], + [108.072091, -6.345762], + [108.486846, -6.421985], + [108.623479, -6.777674] + ] + ], + [ + [ + [134.724624, -6.214401], + [134.210134, -6.895238], + [134.112776, -6.142467], + [134.290336, -5.783058], + [134.499625, -5.445042], + [134.727002, -5.737582], + [134.724624, -6.214401] + ] + ], + [ + [ + [127.249215, -3.459065], + [126.874923, -3.790983], + [126.183802, -3.607376], + [125.989034, -3.177273], + [127.000651, -3.129318], + [127.249215, -3.459065] + ] + ], + [ + [ + [130.471344, -3.093764], + [130.834836, -3.858472], + [129.990547, -3.446301], + [129.155249, -3.362637], + [128.590684, -3.428679], + [127.898891, -3.393436], + [128.135879, -2.84365], + [129.370998, -2.802154], + [130.471344, -3.093764] + ] + ], + [ + [ + [134.143368, -1.151867], + [134.422627, -2.769185], + [135.457603, -3.367753], + [136.293314, -2.307042], + [137.440738, -1.703513], + [138.329727, -1.702686], + [139.184921, -2.051296], + [139.926684, -2.409052], + [141.00021, -2.600151], + [141.017057, -5.859022], + [141.033852, -9.117893], + [140.143415, -8.297168], + [139.127767, -8.096043], + [138.881477, -8.380935], + [137.614474, -8.411683], + [138.039099, -7.597882], + [138.668621, -7.320225], + [138.407914, -6.232849], + [137.92784, -5.393366], + [135.98925, -4.546544], + [135.164598, -4.462931], + [133.66288, -3.538853], + [133.367705, -4.024819], + [132.983956, -4.112979], + [132.756941, -3.746283], + [132.753789, -3.311787], + [131.989804, -2.820551], + [133.066845, -2.460418], + [133.780031, -2.479848], + [133.696212, -2.214542], + [132.232373, -2.212526], + [131.836222, -1.617162], + [130.94284, -1.432522], + [130.519558, -0.93772], + [131.867538, -0.695461], + [132.380116, -0.369538], + [133.985548, -0.78021], + [134.143368, -1.151867] + ] + ], + [ + [ + [125.240501, 1.419836], + [124.437035, 0.427881], + [123.685505, 0.235593], + [122.723083, 0.431137], + [121.056725, 0.381217], + [120.183083, 0.237247], + [120.04087, -0.519658], + [120.935905, -1.408906], + [121.475821, -0.955962], + [123.340565, -0.615673], + [123.258399, -1.076213], + [122.822715, -0.930951], + [122.38853, -1.516858], + [121.508274, -1.904483], + [122.454572, -3.186058], + [122.271896, -3.5295], + [123.170963, -4.683693], + [123.162333, -5.340604], + [122.628515, -5.634591], + [122.236394, -5.282933], + [122.719569, -4.464172], + [121.738234, -4.851331], + [121.489463, -4.574553], + [121.619171, -4.188478], + [120.898182, -3.602105], + [120.972389, -2.627643], + [120.305453, -2.931604], + [120.390047, -4.097579], + [120.430717, -5.528241], + [119.796543, -5.6734], + [119.366906, -5.379878], + [119.653606, -4.459417], + [119.498835, -3.494412], + [119.078344, -3.487022], + [118.767769, -2.801999], + [119.180974, -2.147104], + [119.323394, -1.353147], + [119.825999, 0.154254], + [120.035702, 0.566477], + [120.885779, 1.309223], + [121.666817, 1.013944], + [122.927567, 0.875192], + [124.077522, 0.917102], + [125.065989, 1.643259], + [125.240501, 1.419836] + ] + ], + [ + [ + [128.688249, 1.132386], + [128.635952, 0.258486], + [128.12017, 0.356413], + [127.968034, -0.252077], + [128.379999, -0.780004], + [128.100016, -0.899996], + [127.696475, -0.266598], + [127.39949, 1.011722], + [127.600512, 1.810691], + [127.932378, 2.174596], + [128.004156, 1.628531], + [128.594559, 1.540811], + [128.688249, 1.132386] + ] + ], + [ + [ + [117.875627, 1.827641], + [118.996747, 0.902219], + [117.811858, 0.784242], + [117.478339, 0.102475], + [117.521644, -0.803723], + [116.560048, -1.487661], + [116.533797, -2.483517], + [116.148084, -4.012726], + [116.000858, -3.657037], + [114.864803, -4.106984], + [114.468652, -3.495704], + [113.755672, -3.43917], + [113.256994, -3.118776], + [112.068126, -3.478392], + [111.703291, -2.994442], + [111.04824, -3.049426], + [110.223846, -2.934032], + [110.070936, -1.592874], + [109.571948, -1.314907], + [109.091874, -0.459507], + [108.952658, 0.415375], + [109.069136, 1.341934], + [109.66326, 2.006467], + [109.830227, 1.338136], + [110.514061, 0.773131], + [111.159138, 0.976478], + [111.797548, 0.904441], + [112.380252, 1.410121], + [112.859809, 1.49779], + [113.80585, 1.217549], + [114.621355, 1.430688], + [115.134037, 2.821482], + [115.519078, 3.169238], + [115.865517, 4.306559], + [117.015214, 4.306094], + [117.882035, 4.137551], + [117.313232, 3.234428], + [118.04833, 2.28769], + [117.875627, 1.827641] + ] + ], + [ + [ + [105.817655, -5.852356], + [104.710384, -5.873285], + [103.868213, -5.037315], + [102.584261, -4.220259], + [102.156173, -3.614146], + [101.399113, -2.799777], + [100.902503, -2.050262], + [100.141981, -0.650348], + [99.26374, 0.183142], + [98.970011, 1.042882], + [98.601351, 1.823507], + [97.699598, 2.453184], + [97.176942, 3.308791], + [96.424017, 3.86886], + [95.380876, 4.970782], + [95.293026, 5.479821], + [95.936863, 5.439513], + [97.484882, 5.246321], + [98.369169, 4.26837], + [99.142559, 3.59035], + [99.693998, 3.174329], + [100.641434, 2.099381], + [101.658012, 2.083697], + [102.498271, 1.3987], + [103.07684, 0.561361], + [103.838396, 0.104542], + [103.437645, -0.711946], + [104.010789, -1.059212], + [104.369991, -1.084843], + [104.53949, -1.782372], + [104.887893, -2.340425], + [105.622111, -2.428844], + [106.108593, -3.061777], + [105.857446, -4.305525], + [105.817655, -5.852356] + ] + ] + ] + }, + "id": "IDN" + }, + { + "type": "Feature", + "properties": { "name": "India" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [77.837451, 35.49401], + [78.912269, 34.321936], + [78.811086, 33.506198], + [79.208892, 32.994395], + [79.176129, 32.48378], + [78.458446, 32.618164], + [78.738894, 31.515906], + [79.721367, 30.882715], + [81.111256, 30.183481], + [80.476721, 29.729865], + [80.088425, 28.79447], + [81.057203, 28.416095], + [81.999987, 27.925479], + [83.304249, 27.364506], + [84.675018, 27.234901], + [85.251779, 26.726198], + [86.024393, 26.630985], + [87.227472, 26.397898], + [88.060238, 26.414615], + [88.174804, 26.810405], + [88.043133, 27.445819], + [88.120441, 27.876542], + [88.730326, 28.086865], + [88.814248, 27.299316], + [88.835643, 27.098966], + [89.744528, 26.719403], + [90.373275, 26.875724], + [91.217513, 26.808648], + [92.033484, 26.83831], + [92.103712, 27.452614], + [91.696657, 27.771742], + [92.503119, 27.896876], + [93.413348, 28.640629], + [94.56599, 29.277438], + [95.404802, 29.031717], + [96.117679, 29.452802], + [96.586591, 28.83098], + [96.248833, 28.411031], + [97.327114, 28.261583], + [97.402561, 27.882536], + [97.051989, 27.699059], + [97.133999, 27.083774], + [96.419366, 27.264589], + [95.124768, 26.573572], + [95.155153, 26.001307], + [94.603249, 25.162495], + [94.552658, 24.675238], + [94.106742, 23.850741], + [93.325188, 24.078556], + [93.286327, 23.043658], + [93.060294, 22.703111], + [93.166128, 22.27846], + [92.672721, 22.041239], + [92.146035, 23.627499], + [91.869928, 23.624346], + [91.706475, 22.985264], + [91.158963, 23.503527], + [91.46773, 24.072639], + [91.915093, 24.130414], + [92.376202, 24.976693], + [91.799596, 25.147432], + [90.872211, 25.132601], + [89.920693, 25.26975], + [89.832481, 25.965082], + [89.355094, 26.014407], + [88.563049, 26.446526], + [88.209789, 25.768066], + [88.931554, 25.238692], + [88.306373, 24.866079], + [88.084422, 24.501657], + [88.69994, 24.233715], + [88.52977, 23.631142], + [88.876312, 22.879146], + [89.031961, 22.055708], + [88.888766, 21.690588], + [88.208497, 21.703172], + [86.975704, 21.495562], + [87.033169, 20.743308], + [86.499351, 20.151638], + [85.060266, 19.478579], + [83.941006, 18.30201], + [83.189217, 17.671221], + [82.192792, 17.016636], + [82.191242, 16.556664], + [81.692719, 16.310219], + [80.791999, 15.951972], + [80.324896, 15.899185], + [80.025069, 15.136415], + [80.233274, 13.835771], + [80.286294, 13.006261], + [79.862547, 12.056215], + [79.857999, 10.357275], + [79.340512, 10.308854], + [78.885345, 9.546136], + [79.18972, 9.216544], + [78.277941, 8.933047], + [77.941165, 8.252959], + [77.539898, 7.965535], + [76.592979, 8.899276], + [76.130061, 10.29963], + [75.746467, 11.308251], + [75.396101, 11.781245], + [74.864816, 12.741936], + [74.616717, 13.992583], + [74.443859, 14.617222], + [73.534199, 15.990652], + [73.119909, 17.92857], + [72.820909, 19.208234], + [72.824475, 20.419503], + [72.630533, 21.356009], + [71.175273, 20.757441], + [70.470459, 20.877331], + [69.16413, 22.089298], + [69.644928, 22.450775], + [69.349597, 22.84318], + [68.176645, 23.691965], + [68.842599, 24.359134], + [71.04324, 24.356524], + [70.844699, 25.215102], + [70.282873, 25.722229], + [70.168927, 26.491872], + [69.514393, 26.940966], + [70.616496, 27.989196], + [71.777666, 27.91318], + [72.823752, 28.961592], + [73.450638, 29.976413], + [74.42138, 30.979815], + [74.405929, 31.692639], + [75.258642, 32.271105], + [74.451559, 32.7649], + [74.104294, 33.441473], + [73.749948, 34.317699], + [74.240203, 34.748887], + [75.757061, 34.504923], + [76.871722, 34.653544], + [77.837451, 35.49401] + ] + ] + }, + "id": "IND" + }, + { + "type": "Feature", + "properties": { "name": "Ireland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.197885, 53.867565], + [-6.032985, 53.153164], + [-6.788857, 52.260118], + [-8.561617, 51.669301], + [-9.977086, 51.820455], + [-9.166283, 52.864629], + [-9.688525, 53.881363], + [-8.327987, 54.664519], + [-7.572168, 55.131622], + [-7.366031, 54.595841], + [-7.572168, 54.059956], + [-6.95373, 54.073702], + [-6.197885, 53.867565] + ] + ] + }, + "id": "IRL" + }, + { + "type": "Feature", + "properties": { "name": "Iran" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [53.921598, 37.198918], + [54.800304, 37.392421], + [55.511578, 37.964117], + [56.180375, 37.935127], + [56.619366, 38.121394], + [57.330434, 38.029229], + [58.436154, 37.522309], + [59.234762, 37.412988], + [60.377638, 36.527383], + [61.123071, 36.491597], + [61.210817, 35.650072], + [60.803193, 34.404102], + [60.52843, 33.676446], + [60.9637, 33.528832], + [60.536078, 32.981269], + [60.863655, 32.18292], + [60.941945, 31.548075], + [61.699314, 31.379506], + [61.781222, 30.73585], + [60.874248, 29.829239], + [61.369309, 29.303276], + [61.771868, 28.699334], + [62.72783, 28.259645], + [62.755426, 27.378923], + [63.233898, 27.217047], + [63.316632, 26.756532], + [61.874187, 26.239975], + [61.497363, 25.078237], + [59.616134, 25.380157], + [58.525761, 25.609962], + [57.397251, 25.739902], + [56.970766, 26.966106], + [56.492139, 27.143305], + [55.72371, 26.964633], + [54.71509, 26.480658], + [53.493097, 26.812369], + [52.483598, 27.580849], + [51.520763, 27.86569], + [50.852948, 28.814521], + [50.115009, 30.147773], + [49.57685, 29.985715], + [48.941333, 30.31709], + [48.567971, 29.926778], + [48.014568, 30.452457], + [48.004698, 30.985137], + [47.685286, 30.984853], + [47.849204, 31.709176], + [47.334661, 32.469155], + [46.109362, 33.017287], + [45.416691, 33.967798], + [45.64846, 34.748138], + [46.151788, 35.093259], + [46.07634, 35.677383], + [45.420618, 35.977546], + [44.77267, 37.17045], + [44.225756, 37.971584], + [44.421403, 38.281281], + [44.109225, 39.428136], + [44.79399, 39.713003], + [44.952688, 39.335765], + [45.457722, 38.874139], + [46.143623, 38.741201], + [46.50572, 38.770605], + [47.685079, 39.508364], + [48.060095, 39.582235], + [48.355529, 39.288765], + [48.010744, 38.794015], + [48.634375, 38.270378], + [48.883249, 38.320245], + [49.199612, 37.582874], + [50.147771, 37.374567], + [50.842354, 36.872814], + [52.264025, 36.700422], + [53.82579, 36.965031], + [53.921598, 37.198918] + ] + ] + }, + "id": "IRN" + }, + { + "type": "Feature", + "properties": { "name": "Iraq" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [45.420618, 35.977546], + [46.07634, 35.677383], + [46.151788, 35.093259], + [45.64846, 34.748138], + [45.416691, 33.967798], + [46.109362, 33.017287], + [47.334661, 32.469155], + [47.849204, 31.709176], + [47.685286, 30.984853], + [48.004698, 30.985137], + [48.014568, 30.452457], + [48.567971, 29.926778], + [47.974519, 29.975819], + [47.302622, 30.05907], + [46.568713, 29.099025], + [44.709499, 29.178891], + [41.889981, 31.190009], + [40.399994, 31.889992], + [39.195468, 32.161009], + [38.792341, 33.378686], + [41.006159, 34.419372], + [41.383965, 35.628317], + [41.289707, 36.358815], + [41.837064, 36.605854], + [42.349591, 37.229873], + [42.779126, 37.385264], + [43.942259, 37.256228], + [44.293452, 37.001514], + [44.772699, 37.170445], + [45.420618, 35.977546] + ] + ] + }, + "id": "IRQ" + }, + { + "type": "Feature", + "properties": { "name": "Iceland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-14.508695, 66.455892], + [-14.739637, 65.808748], + [-13.609732, 65.126671], + [-14.909834, 64.364082], + [-17.794438, 63.678749], + [-18.656246, 63.496383], + [-19.972755, 63.643635], + [-22.762972, 63.960179], + [-21.778484, 64.402116], + [-23.955044, 64.89113], + [-22.184403, 65.084968], + [-22.227423, 65.378594], + [-24.326184, 65.611189], + [-23.650515, 66.262519], + [-22.134922, 66.410469], + [-20.576284, 65.732112], + [-19.056842, 66.276601], + [-17.798624, 65.993853], + [-16.167819, 66.526792], + [-14.508695, 66.455892] + ] + ] + }, + "id": "ISL" + }, + { + "type": "Feature", + "properties": { "name": "Israel" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.719918, 32.709192], + [35.545665, 32.393992], + [35.18393, 32.532511], + [34.974641, 31.866582], + [35.225892, 31.754341], + [34.970507, 31.616778], + [34.927408, 31.353435], + [35.397561, 31.489086], + [35.420918, 31.100066], + [34.922603, 29.501326], + [34.265433, 31.219361], + [34.556372, 31.548824], + [34.488107, 31.605539], + [34.752587, 32.072926], + [34.955417, 32.827376], + [35.098457, 33.080539], + [35.126053, 33.0909], + [35.460709, 33.08904], + [35.552797, 33.264275], + [35.821101, 33.277426], + [35.836397, 32.868123], + [35.700798, 32.716014], + [35.719918, 32.709192] + ] + ] + }, + "id": "ISR" + }, + { + "type": "Feature", + "properties": { "name": "Italy" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [15.520376, 38.231155], + [15.160243, 37.444046], + [15.309898, 37.134219], + [15.099988, 36.619987], + [14.335229, 36.996631], + [13.826733, 37.104531], + [12.431004, 37.61295], + [12.570944, 38.126381], + [13.741156, 38.034966], + [14.761249, 38.143874], + [15.520376, 38.231155] + ] + ], + [ + [ + [9.210012, 41.209991], + [9.809975, 40.500009], + [9.669519, 39.177376], + [9.214818, 39.240473], + [8.806936, 38.906618], + [8.428302, 39.171847], + [8.388253, 40.378311], + [8.159998, 40.950007], + [8.709991, 40.899984], + [9.210012, 41.209991] + ] + ], + [ + [ + [12.376485, 46.767559], + [13.806475, 46.509306], + [13.69811, 46.016778], + [13.93763, 45.591016], + [13.141606, 45.736692], + [12.328581, 45.381778], + [12.383875, 44.885374], + [12.261453, 44.600482], + [12.589237, 44.091366], + [13.526906, 43.587727], + [14.029821, 42.761008], + [15.14257, 41.95514], + [15.926191, 41.961315], + [16.169897, 41.740295], + [15.889346, 41.541082], + [16.785002, 41.179606], + [17.519169, 40.877143], + [18.376687, 40.355625], + [18.480247, 40.168866], + [18.293385, 39.810774], + [17.73838, 40.277671], + [16.869596, 40.442235], + [16.448743, 39.795401], + [17.17149, 39.4247], + [17.052841, 38.902871], + [16.635088, 38.843572], + [16.100961, 37.985899], + [15.684087, 37.908849], + [15.687963, 38.214593], + [15.891981, 38.750942], + [16.109332, 38.964547], + [15.718814, 39.544072], + [15.413613, 40.048357], + [14.998496, 40.172949], + [14.703268, 40.60455], + [14.060672, 40.786348], + [13.627985, 41.188287], + [12.888082, 41.25309], + [12.106683, 41.704535], + [11.191906, 42.355425], + [10.511948, 42.931463], + [10.200029, 43.920007], + [9.702488, 44.036279], + [8.888946, 44.366336], + [8.428561, 44.231228], + [7.850767, 43.767148], + [7.435185, 43.693845], + [7.549596, 44.127901], + [7.007562, 44.254767], + [6.749955, 45.028518], + [7.096652, 45.333099], + [6.802355, 45.70858], + [6.843593, 45.991147], + [7.273851, 45.776948], + [7.755992, 45.82449], + [8.31663, 46.163642], + [8.489952, 46.005151], + [8.966306, 46.036932], + [9.182882, 46.440215], + [9.922837, 46.314899], + [10.363378, 46.483571], + [10.442701, 46.893546], + [11.048556, 46.751359], + [11.164828, 46.941579], + [12.153088, 47.115393], + [12.376485, 46.767559] + ] + ] + ] + }, + "id": "ITA" + }, + { + "type": "Feature", + "properties": { "name": "Jamaica" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.569601, 18.490525], + [-76.896619, 18.400867], + [-76.365359, 18.160701], + [-76.199659, 17.886867], + [-76.902561, 17.868238], + [-77.206341, 17.701116], + [-77.766023, 17.861597], + [-78.337719, 18.225968], + [-78.217727, 18.454533], + [-77.797365, 18.524218], + [-77.569601, 18.490525] + ] + ] + }, + "id": "JAM" + }, + { + "type": "Feature", + "properties": { "name": "Jordan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.545665, 32.393992], + [35.719918, 32.709192], + [36.834062, 32.312938], + [38.792341, 33.378686], + [39.195468, 32.161009], + [39.004886, 32.010217], + [37.002166, 31.508413], + [37.998849, 30.5085], + [37.66812, 30.338665], + [37.503582, 30.003776], + [36.740528, 29.865283], + [36.501214, 29.505254], + [36.068941, 29.197495], + [34.956037, 29.356555], + [34.922603, 29.501326], + [35.420918, 31.100066], + [35.397561, 31.489086], + [35.545252, 31.782505], + [35.545665, 32.393992] + ] + ] + }, + "id": "JOR" + }, + { + "type": "Feature", + "properties": { "name": "Japan" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [134.638428, 34.149234], + [134.766379, 33.806335], + [134.203416, 33.201178], + [133.79295, 33.521985], + [133.280268, 33.28957], + [133.014858, 32.704567], + [132.363115, 32.989382], + [132.371176, 33.463642], + [132.924373, 34.060299], + [133.492968, 33.944621], + [133.904106, 34.364931], + [134.638428, 34.149234] + ] + ], + [ + [ + [140.976388, 37.142074], + [140.59977, 36.343983], + [140.774074, 35.842877], + [140.253279, 35.138114], + [138.975528, 34.6676], + [137.217599, 34.606286], + [135.792983, 33.464805], + [135.120983, 33.849071], + [135.079435, 34.596545], + [133.340316, 34.375938], + [132.156771, 33.904933], + [130.986145, 33.885761], + [132.000036, 33.149992], + [131.33279, 31.450355], + [130.686318, 31.029579], + [130.20242, 31.418238], + [130.447676, 32.319475], + [129.814692, 32.61031], + [129.408463, 33.296056], + [130.353935, 33.604151], + [130.878451, 34.232743], + [131.884229, 34.749714], + [132.617673, 35.433393], + [134.608301, 35.731618], + [135.677538, 35.527134], + [136.723831, 37.304984], + [137.390612, 36.827391], + [138.857602, 37.827485], + [139.426405, 38.215962], + [140.05479, 39.438807], + [139.883379, 40.563312], + [140.305783, 41.195005], + [141.368973, 41.37856], + [141.914263, 39.991616], + [141.884601, 39.180865], + [140.959489, 38.174001], + [140.976388, 37.142074] + ] + ], + [ + [ + [143.910162, 44.1741], + [144.613427, 43.960883], + [145.320825, 44.384733], + [145.543137, 43.262088], + [144.059662, 42.988358], + [143.18385, 41.995215], + [141.611491, 42.678791], + [141.067286, 41.584594], + [139.955106, 41.569556], + [139.817544, 42.563759], + [140.312087, 43.333273], + [141.380549, 43.388825], + [141.671952, 44.772125], + [141.967645, 45.551483], + [143.14287, 44.510358], + [143.910162, 44.1741] + ] + ] + ] + }, + "id": "JPN" + }, + { + "type": "Feature", + "properties": { "name": "Kazakhstan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70.962315, 42.266154], + [70.388965, 42.081308], + [69.070027, 41.384244], + [68.632483, 40.668681], + [68.259896, 40.662325], + [67.985856, 41.135991], + [66.714047, 41.168444], + [66.510649, 41.987644], + [66.023392, 41.994646], + [66.098012, 42.99766], + [64.900824, 43.728081], + [63.185787, 43.650075], + [62.0133, 43.504477], + [61.05832, 44.405817], + [60.239972, 44.784037], + [58.689989, 45.500014], + [58.503127, 45.586804], + [55.928917, 44.995858], + [55.968191, 41.308642], + [55.455251, 41.259859], + [54.755345, 42.043971], + [54.079418, 42.324109], + [52.944293, 42.116034], + [52.50246, 41.783316], + [52.446339, 42.027151], + [52.692112, 42.443895], + [52.501426, 42.792298], + [51.342427, 43.132975], + [50.891292, 44.031034], + [50.339129, 44.284016], + [50.305643, 44.609836], + [51.278503, 44.514854], + [51.316899, 45.245998], + [52.16739, 45.408391], + [53.040876, 45.259047], + [53.220866, 46.234646], + [53.042737, 46.853006], + [52.042023, 46.804637], + [51.191945, 47.048705], + [50.034083, 46.60899], + [49.10116, 46.39933], + [48.593241, 46.561034], + [48.694734, 47.075628], + [48.057253, 47.743753], + [47.315231, 47.715847], + [46.466446, 48.394152], + [47.043672, 49.152039], + [46.751596, 49.356006], + [47.54948, 50.454698], + [48.577841, 49.87476], + [48.702382, 50.605128], + [50.766648, 51.692762], + [52.328724, 51.718652], + [54.532878, 51.02624], + [55.716941, 50.621717], + [56.777961, 51.043551], + [58.363291, 51.063653], + [59.642282, 50.545442], + [59.932807, 50.842194], + [61.337424, 50.79907], + [61.588003, 51.272659], + [59.967534, 51.96042], + [60.927269, 52.447548], + [60.739993, 52.719986], + [61.699986, 52.979996], + [60.978066, 53.664993], + [61.436591, 54.006265], + [65.178534, 54.354228], + [65.666876, 54.601267], + [68.1691, 54.970392], + [69.068167, 55.38525], + [70.865267, 55.169734], + [71.180131, 54.133285], + [72.22415, 54.376655], + [73.508516, 54.035617], + [73.425679, 53.48981], + [74.384845, 53.546861], + [76.8911, 54.490524], + [76.525179, 54.177003], + [77.800916, 53.404415], + [80.03556, 50.864751], + [80.568447, 51.388336], + [81.945986, 50.812196], + [83.383004, 51.069183], + [83.935115, 50.889246], + [84.416377, 50.3114], + [85.11556, 50.117303], + [85.54127, 49.692859], + [86.829357, 49.826675], + [87.35997, 49.214981], + [86.598776, 48.549182], + [85.768233, 48.455751], + [85.720484, 47.452969], + [85.16429, 47.000956], + [83.180484, 47.330031], + [82.458926, 45.53965], + [81.947071, 45.317027], + [79.966106, 44.917517], + [80.866206, 43.180362], + [80.18015, 42.920068], + [80.25999, 42.349999], + [79.643645, 42.496683], + [79.142177, 42.856092], + [77.658392, 42.960686], + [76.000354, 42.988022], + [75.636965, 42.8779], + [74.212866, 43.298339], + [73.645304, 43.091272], + [73.489758, 42.500894], + [71.844638, 42.845395], + [71.186281, 42.704293], + [70.962315, 42.266154] + ] + ] + }, + "id": "KAZ" + }, + { + "type": "Feature", + "properties": { "name": "Kenya" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40.993, -0.85829], + [41.58513, -1.68325], + [40.88477, -2.08255], + [40.63785, -2.49979], + [40.26304, -2.57309], + [40.12119, -3.27768], + [39.80006, -3.68116], + [39.60489, -4.34653], + [39.20222, -4.67677], + [37.7669, -3.67712], + [37.69869, -3.09699], + [34.07262, -1.05982], + [33.903711, -0.95], + [33.893569, 0.109814], + [34.18, 0.515], + [34.6721, 1.17694], + [35.03599, 1.90584], + [34.59607, 3.05374], + [34.47913, 3.5556], + [34.005, 4.249885], + [34.620196, 4.847123], + [35.298007, 5.506], + [35.817448, 5.338232], + [35.817448, 4.776966], + [36.159079, 4.447864], + [36.855093, 4.447864], + [38.120915, 3.598605], + [38.43697, 3.58851], + [38.67114, 3.61607], + [38.89251, 3.50074], + [39.559384, 3.42206], + [39.85494, 3.83879], + [40.76848, 4.25702], + [41.1718, 3.91909], + [41.855083, 3.918912], + [40.98105, 2.78452], + [40.993, -0.85829] + ] + ] + }, + "id": "KEN" + }, + { + "type": "Feature", + "properties": { "name": "Kyrgyzstan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70.962315, 42.266154], + [71.186281, 42.704293], + [71.844638, 42.845395], + [73.489758, 42.500894], + [73.645304, 43.091272], + [74.212866, 43.298339], + [75.636965, 42.8779], + [76.000354, 42.988022], + [77.658392, 42.960686], + [79.142177, 42.856092], + [79.643645, 42.496683], + [80.25999, 42.349999], + [80.11943, 42.123941], + [78.543661, 41.582243], + [78.187197, 41.185316], + [76.904484, 41.066486], + [76.526368, 40.427946], + [75.467828, 40.562072], + [74.776862, 40.366425], + [73.822244, 39.893973], + [73.960013, 39.660008], + [73.675379, 39.431237], + [71.784694, 39.279463], + [70.549162, 39.604198], + [69.464887, 39.526683], + [69.55961, 40.103211], + [70.648019, 39.935754], + [71.014198, 40.244366], + [71.774875, 40.145844], + [73.055417, 40.866033], + [71.870115, 41.3929], + [71.157859, 41.143587], + [70.420022, 41.519998], + [71.259248, 42.167711], + [70.962315, 42.266154] + ] + ] + }, + "id": "KGZ" + }, + { + "type": "Feature", + "properties": { "name": "Cambodia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [103.49728, 10.632555], + [103.09069, 11.153661], + [102.584932, 12.186595], + [102.348099, 13.394247], + [102.988422, 14.225721], + [104.281418, 14.416743], + [105.218777, 14.273212], + [106.043946, 13.881091], + [106.496373, 14.570584], + [107.382727, 14.202441], + [107.614548, 13.535531], + [107.491403, 12.337206], + [105.810524, 11.567615], + [106.24967, 10.961812], + [105.199915, 10.88931], + [104.334335, 10.486544], + [103.49728, 10.632555] + ] + ] + }, + "id": "KHM" + }, + { + "type": "Feature", + "properties": { "name": "South Korea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [128.349716, 38.612243], + [129.21292, 37.432392], + [129.46045, 36.784189], + [129.468304, 35.632141], + [129.091377, 35.082484], + [128.18585, 34.890377], + [127.386519, 34.475674], + [126.485748, 34.390046], + [126.37392, 34.93456], + [126.559231, 35.684541], + [126.117398, 36.725485], + [126.860143, 36.893924], + [126.174759, 37.749686], + [126.237339, 37.840378], + [126.68372, 37.804773], + [127.073309, 38.256115], + [127.780035, 38.304536], + [128.205746, 38.370397], + [128.349716, 38.612243] + ] + ] + }, + "id": "KOR" + }, + { + "type": "Feature", + "properties": { "name": "Kosovo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.76216, 42.05186], + [20.71731, 41.84711], + [20.59023, 41.85541], + [20.52295, 42.21787], + [20.28374, 42.32025], + [20.0707, 42.58863], + [20.25758, 42.81275], + [20.49679, 42.88469], + [20.63508, 43.21671], + [20.81448, 43.27205], + [20.95651, 43.13094], + [21.143395, 43.068685], + [21.27421, 42.90959], + [21.43866, 42.86255], + [21.63302, 42.67717], + [21.77505, 42.6827], + [21.66292, 42.43922], + [21.54332, 42.32025], + [21.576636, 42.245224], + [21.3527, 42.2068], + [20.76216, 42.05186] + ] + ] + }, + "id": "XKX" + }, + { + "type": "Feature", + "properties": { "name": "Kuwait" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [47.974519, 29.975819], + [48.183189, 29.534477], + [48.093943, 29.306299], + [48.416094, 28.552004], + [47.708851, 28.526063], + [47.459822, 29.002519], + [46.568713, 29.099025], + [47.302622, 30.05907], + [47.974519, 29.975819] + ] + ] + }, + "id": "KWT" + }, + { + "type": "Feature", + "properties": { "name": "Laos" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [105.218777, 14.273212], + [105.544338, 14.723934], + [105.589039, 15.570316], + [104.779321, 16.441865], + [104.716947, 17.428859], + [103.956477, 18.240954], + [103.200192, 18.309632], + [102.998706, 17.961695], + [102.413005, 17.932782], + [102.113592, 18.109102], + [101.059548, 17.512497], + [101.035931, 18.408928], + [101.282015, 19.462585], + [100.606294, 19.508344], + [100.548881, 20.109238], + [100.115988, 20.41785], + [100.329101, 20.786122], + [101.180005, 21.436573], + [101.270026, 21.201652], + [101.80312, 21.174367], + [101.652018, 22.318199], + [102.170436, 22.464753], + [102.754896, 21.675137], + [103.203861, 20.766562], + [104.435, 20.758733], + [104.822574, 19.886642], + [104.183388, 19.624668], + [103.896532, 19.265181], + [105.094598, 18.666975], + [105.925762, 17.485315], + [106.556008, 16.604284], + [107.312706, 15.908538], + [107.564525, 15.202173], + [107.382727, 14.202441], + [106.496373, 14.570584], + [106.043946, 13.881091], + [105.218777, 14.273212] + ] + ] + }, + "id": "LAO" + }, + { + "type": "Feature", + "properties": { "name": "Lebanon" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.821101, 33.277426], + [35.552797, 33.264275], + [35.460709, 33.08904], + [35.126053, 33.0909], + [35.482207, 33.90545], + [35.979592, 34.610058], + [35.998403, 34.644914], + [36.448194, 34.593935], + [36.61175, 34.201789], + [36.06646, 33.824912], + [35.821101, 33.277426] + ] + ] + }, + "id": "LBN" + }, + { + "type": "Feature", + "properties": { "name": "Liberia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-7.712159, 4.364566], + [-7.974107, 4.355755], + [-9.004794, 4.832419], + [-9.91342, 5.593561], + [-10.765384, 6.140711], + [-11.438779, 6.785917], + [-11.199802, 7.105846], + [-11.146704, 7.396706], + [-10.695595, 7.939464], + [-10.230094, 8.406206], + [-10.016567, 8.428504], + [-9.755342, 8.541055], + [-9.33728, 7.928534], + [-9.403348, 7.526905], + [-9.208786, 7.313921], + [-8.926065, 7.309037], + [-8.722124, 7.711674], + [-8.439298, 7.686043], + [-8.485446, 7.395208], + [-8.385452, 6.911801], + [-8.60288, 6.467564], + [-8.311348, 6.193033], + [-7.993693, 6.12619], + [-7.570153, 5.707352], + [-7.539715, 5.313345], + [-7.635368, 5.188159], + [-7.712159, 4.364566] + ] + ] + }, + "id": "LBR" + }, + { + "type": "Feature", + "properties": { "name": "Libya" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.8513, 22.86295], + [14.143871, 22.491289], + [13.581425, 23.040506], + [11.999506, 23.471668], + [11.560669, 24.097909], + [10.771364, 24.562532], + [10.303847, 24.379313], + [9.948261, 24.936954], + [9.910693, 25.365455], + [9.319411, 26.094325], + [9.716286, 26.512206], + [9.629056, 27.140953], + [9.756128, 27.688259], + [9.683885, 28.144174], + [9.859998, 28.95999], + [9.805634, 29.424638], + [9.48214, 30.307556], + [9.970017, 30.539325], + [10.056575, 30.961831], + [9.950225, 31.37607], + [10.636901, 31.761421], + [10.94479, 32.081815], + [11.432253, 32.368903], + [11.488787, 33.136996], + [12.66331, 32.79278], + [13.08326, 32.87882], + [13.91868, 32.71196], + [15.24563, 32.26508], + [15.71394, 31.37626], + [16.61162, 31.18218], + [18.02109, 30.76357], + [19.08641, 30.26639], + [19.57404, 30.52582], + [20.05335, 30.98576], + [19.82033, 31.75179], + [20.13397, 32.2382], + [20.85452, 32.7068], + [21.54298, 32.8432], + [22.89576, 32.63858], + [23.2368, 32.19149], + [23.60913, 32.18726], + [23.9275, 32.01667], + [24.92114, 31.89936], + [25.16482, 31.56915], + [24.80287, 31.08929], + [24.95762, 30.6616], + [24.70007, 30.04419], + [25, 29.238655], + [25, 25.6825], + [25, 22], + [25, 20.00304], + [23.85, 20], + [23.83766, 19.58047], + [19.84926, 21.49509], + [15.86085, 23.40972], + [14.8513, 22.86295] + ] + ] + }, + "id": "LBY" + }, + { + "type": "Feature", + "properties": { "name": "Sri Lanka" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [81.787959, 7.523055], + [81.637322, 6.481775], + [81.21802, 6.197141], + [80.348357, 5.96837], + [79.872469, 6.763463], + [79.695167, 8.200843], + [80.147801, 9.824078], + [80.838818, 9.268427], + [81.304319, 8.564206], + [81.787959, 7.523055] + ] + ] + }, + "id": "LKA" + }, + { + "type": "Feature", + "properties": { "name": "Lesotho" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.978263, -28.955597], + [29.325166, -29.257387], + [29.018415, -29.743766], + [28.8484, -30.070051], + [28.291069, -30.226217], + [28.107205, -30.545732], + [27.749397, -30.645106], + [26.999262, -29.875954], + [27.532511, -29.242711], + [28.074338, -28.851469], + [28.5417, -28.647502], + [28.978263, -28.955597] + ] + ] + }, + "id": "LSO" + }, + { + "type": "Feature", + "properties": { "name": "Lithuania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.731099, 54.327537], + [22.651052, 54.582741], + [22.757764, 54.856574], + [22.315724, 55.015299], + [21.268449, 55.190482], + [21.0558, 56.031076], + [22.201157, 56.337802], + [23.878264, 56.273671], + [24.860684, 56.372528], + [25.000934, 56.164531], + [25.533047, 56.100297], + [26.494331, 55.615107], + [26.588279, 55.167176], + [25.768433, 54.846963], + [25.536354, 54.282423], + [24.450684, 53.905702], + [23.484128, 53.912498], + [23.243987, 54.220567], + [22.731099, 54.327537] + ] + ] + }, + "id": "LTU" + }, + { + "type": "Feature", + "properties": { "name": "Luxembourg" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.043073, 50.128052], + [6.242751, 49.902226], + [6.18632, 49.463803], + [5.897759, 49.442667], + [5.674052, 49.529484], + [5.782417, 50.090328], + [6.043073, 50.128052] + ] + ] + }, + "id": "LUX" + }, + { + "type": "Feature", + "properties": { "name": "Latvia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [21.0558, 56.031076], + [21.090424, 56.783873], + [21.581866, 57.411871], + [22.524341, 57.753374], + [23.318453, 57.006236], + [24.12073, 57.025693], + [24.312863, 57.793424], + [25.164594, 57.970157], + [25.60281, 57.847529], + [26.463532, 57.476389], + [27.288185, 57.474528], + [27.770016, 57.244258], + [27.855282, 56.759326], + [28.176709, 56.16913], + [27.10246, 55.783314], + [26.494331, 55.615107], + [25.533047, 56.100297], + [25.000934, 56.164531], + [24.860684, 56.372528], + [23.878264, 56.273671], + [22.201157, 56.337802], + [21.0558, 56.031076] + ] + ] + }, + "id": "LVA" + }, + { + "type": "Feature", + "properties": { "name": "Morocco" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-5.193863, 35.755182], + [-4.591006, 35.330712], + [-3.640057, 35.399855], + [-2.604306, 35.179093], + [-2.169914, 35.168396], + [-1.792986, 34.527919], + [-1.733455, 33.919713], + [-1.388049, 32.864015], + [-1.124551, 32.651522], + [-1.307899, 32.262889], + [-2.616605, 32.094346], + [-3.06898, 31.724498], + [-3.647498, 31.637294], + [-3.690441, 30.896952], + [-4.859646, 30.501188], + [-5.242129, 30.000443], + [-6.060632, 29.7317], + [-7.059228, 29.579228], + [-8.674116, 28.841289], + [-8.66559, 27.656426], + [-8.817809, 27.656426], + [-8.817828, 27.656426], + [-8.794884, 27.120696], + [-9.413037, 27.088476], + [-9.735343, 26.860945], + [-10.189424, 26.860945], + [-10.551263, 26.990808], + [-11.392555, 26.883424], + [-11.71822, 26.104092], + [-12.030759, 26.030866], + [-12.500963, 24.770116], + [-13.89111, 23.691009], + [-14.221168, 22.310163], + [-14.630833, 21.86094], + [-14.750955, 21.5006], + [-17.002962, 21.420734], + [-17.020428, 21.42231], + [-16.973248, 21.885745], + [-16.589137, 22.158234], + [-16.261922, 22.67934], + [-16.326414, 23.017768], + [-15.982611, 23.723358], + [-15.426004, 24.359134], + [-15.089332, 24.520261], + [-14.824645, 25.103533], + [-14.800926, 25.636265], + [-14.43994, 26.254418], + [-13.773805, 26.618892], + [-13.139942, 27.640148], + [-13.121613, 27.654148], + [-12.618837, 28.038186], + [-11.688919, 28.148644], + [-10.900957, 28.832142], + [-10.399592, 29.098586], + [-9.564811, 29.933574], + [-9.814718, 31.177736], + [-9.434793, 32.038096], + [-9.300693, 32.564679], + [-8.657476, 33.240245], + [-7.654178, 33.697065], + [-6.912544, 34.110476], + [-6.244342, 35.145865], + [-5.929994, 35.759988], + [-5.193863, 35.755182] + ] + ] + }, + "id": "MAR" + }, + { + "type": "Feature", + "properties": { "name": "Moldova" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [26.619337, 48.220726], + [26.857824, 48.368211], + [27.522537, 48.467119], + [28.259547, 48.155562], + [28.670891, 48.118149], + [29.122698, 47.849095], + [29.050868, 47.510227], + [29.415135, 47.346645], + [29.559674, 46.928583], + [29.908852, 46.674361], + [29.83821, 46.525326], + [30.024659, 46.423937], + [29.759972, 46.349988], + [29.170654, 46.379262], + [29.072107, 46.517678], + [28.862972, 46.437889], + [28.933717, 46.25883], + [28.659987, 45.939987], + [28.485269, 45.596907], + [28.233554, 45.488283], + [28.054443, 45.944586], + [28.160018, 46.371563], + [28.12803, 46.810476], + [27.551166, 47.405117], + [27.233873, 47.826771], + [26.924176, 48.123264], + [26.619337, 48.220726] + ] + ] + }, + "id": "MDA" + }, + { + "type": "Feature", + "properties": { "name": "Madagascar" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [49.543519, -12.469833], + [49.808981, -12.895285], + [50.056511, -13.555761], + [50.217431, -14.758789], + [50.476537, -15.226512], + [50.377111, -15.706069], + [50.200275, -16.000263], + [49.860606, -15.414253], + [49.672607, -15.710204], + [49.863344, -16.451037], + [49.774564, -16.875042], + [49.498612, -17.106036], + [49.435619, -17.953064], + [49.041792, -19.118781], + [48.548541, -20.496888], + [47.930749, -22.391501], + [47.547723, -23.781959], + [47.095761, -24.94163], + [46.282478, -25.178463], + [45.409508, -25.601434], + [44.833574, -25.346101], + [44.03972, -24.988345], + [43.763768, -24.460677], + [43.697778, -23.574116], + [43.345654, -22.776904], + [43.254187, -22.057413], + [43.433298, -21.336475], + [43.893683, -21.163307], + [43.89637, -20.830459], + [44.374325, -20.072366], + [44.464397, -19.435454], + [44.232422, -18.961995], + [44.042976, -18.331387], + [43.963084, -17.409945], + [44.312469, -16.850496], + [44.446517, -16.216219], + [44.944937, -16.179374], + [45.502732, -15.974373], + [45.872994, -15.793454], + [46.312243, -15.780018], + [46.882183, -15.210182], + [47.70513, -14.594303], + [48.005215, -14.091233], + [47.869047, -13.663869], + [48.293828, -13.784068], + [48.84506, -13.089175], + [48.863509, -12.487868], + [49.194651, -12.040557], + [49.543519, -12.469833] + ] + ] + }, + "id": "MDG" + }, + { + "type": "Feature", + "properties": { "name": "Mexico" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-97.140008, 25.869997], + [-97.528072, 24.992144], + [-97.702946, 24.272343], + [-97.776042, 22.93258], + [-97.872367, 22.444212], + [-97.699044, 21.898689], + [-97.38896, 21.411019], + [-97.189333, 20.635433], + [-96.525576, 19.890931], + [-96.292127, 19.320371], + [-95.900885, 18.828024], + [-94.839063, 18.562717], + [-94.42573, 18.144371], + [-93.548651, 18.423837], + [-92.786114, 18.524839], + [-92.037348, 18.704569], + [-91.407903, 18.876083], + [-90.77187, 19.28412], + [-90.53359, 19.867418], + [-90.451476, 20.707522], + [-90.278618, 20.999855], + [-89.601321, 21.261726], + [-88.543866, 21.493675], + [-87.658417, 21.458846], + [-87.05189, 21.543543], + [-86.811982, 21.331515], + [-86.845908, 20.849865], + [-87.383291, 20.255405], + [-87.621054, 19.646553], + [-87.43675, 19.472403], + [-87.58656, 19.04013], + [-87.837191, 18.259816], + [-88.090664, 18.516648], + [-88.300031, 18.499982], + [-88.490123, 18.486831], + [-88.848344, 17.883198], + [-89.029857, 18.001511], + [-89.150909, 17.955468], + [-89.14308, 17.808319], + [-90.067934, 17.819326], + [-91.00152, 17.817595], + [-91.002269, 17.254658], + [-91.453921, 17.252177], + [-91.08167, 16.918477], + [-90.711822, 16.687483], + [-90.600847, 16.470778], + [-90.438867, 16.41011], + [-90.464473, 16.069562], + [-91.74796, 16.066565], + [-92.229249, 15.251447], + [-92.087216, 15.064585], + [-92.20323, 14.830103], + [-92.22775, 14.538829], + [-93.359464, 15.61543], + [-93.875169, 15.940164], + [-94.691656, 16.200975], + [-95.250227, 16.128318], + [-96.053382, 15.752088], + [-96.557434, 15.653515], + [-97.263592, 15.917065], + [-98.01303, 16.107312], + [-98.947676, 16.566043], + [-99.697397, 16.706164], + [-100.829499, 17.171071], + [-101.666089, 17.649026], + [-101.918528, 17.91609], + [-102.478132, 17.975751], + [-103.50099, 18.292295], + [-103.917527, 18.748572], + [-104.99201, 19.316134], + [-105.493038, 19.946767], + [-105.731396, 20.434102], + [-105.397773, 20.531719], + [-105.500661, 20.816895], + [-105.270752, 21.076285], + [-105.265817, 21.422104], + [-105.603161, 21.871146], + [-105.693414, 22.26908], + [-106.028716, 22.773752], + [-106.90998, 23.767774], + [-107.915449, 24.548915], + [-108.401905, 25.172314], + [-109.260199, 25.580609], + [-109.444089, 25.824884], + [-109.291644, 26.442934], + [-109.801458, 26.676176], + [-110.391732, 27.162115], + [-110.641019, 27.859876], + [-111.178919, 27.941241], + [-111.759607, 28.467953], + [-112.228235, 28.954409], + [-112.271824, 29.266844], + [-112.809594, 30.021114], + [-113.163811, 30.786881], + [-113.148669, 31.170966], + [-113.871881, 31.567608], + [-114.205737, 31.524045], + [-114.776451, 31.799532], + [-114.9367, 31.393485], + [-114.771232, 30.913617], + [-114.673899, 30.162681], + [-114.330974, 29.750432], + [-113.588875, 29.061611], + [-113.424053, 28.826174], + [-113.271969, 28.754783], + [-113.140039, 28.411289], + [-112.962298, 28.42519], + [-112.761587, 27.780217], + [-112.457911, 27.525814], + [-112.244952, 27.171727], + [-111.616489, 26.662817], + [-111.284675, 25.73259], + [-110.987819, 25.294606], + [-110.710007, 24.826004], + [-110.655049, 24.298595], + [-110.172856, 24.265548], + [-109.771847, 23.811183], + [-109.409104, 23.364672], + [-109.433392, 23.185588], + [-109.854219, 22.818272], + [-110.031392, 22.823078], + [-110.295071, 23.430973], + [-110.949501, 24.000964], + [-111.670568, 24.484423], + [-112.182036, 24.738413], + [-112.148989, 25.470125], + [-112.300711, 26.012004], + [-112.777297, 26.32196], + [-113.464671, 26.768186], + [-113.59673, 26.63946], + [-113.848937, 26.900064], + [-114.465747, 27.14209], + [-115.055142, 27.722727], + [-114.982253, 27.7982], + [-114.570366, 27.741485], + [-114.199329, 28.115003], + [-114.162018, 28.566112], + [-114.931842, 29.279479], + [-115.518654, 29.556362], + [-115.887365, 30.180794], + [-116.25835, 30.836464], + [-116.721526, 31.635744], + [-117.12776, 32.53534], + [-115.99135, 32.61239], + [-114.72139, 32.72083], + [-114.815, 32.52528], + [-113.30498, 32.03914], + [-111.02361, 31.33472], + [-109.035, 31.34194], + [-108.24194, 31.34222], + [-108.24, 31.754854], + [-106.50759, 31.75452], + [-106.1429, 31.39995], + [-105.63159, 31.08383], + [-105.03737, 30.64402], + [-104.70575, 30.12173], + [-104.45697, 29.57196], + [-103.94, 29.27], + [-103.11, 28.97], + [-102.48, 29.76], + [-101.6624, 29.7793], + [-100.9576, 29.38071], + [-100.45584, 28.69612], + [-100.11, 28.11], + [-99.52, 27.54], + [-99.3, 26.84], + [-99.02, 26.37], + [-98.24, 26.06], + [-97.53, 25.84], + [-97.140008, 25.869997] + ] + ] + }, + "id": "MEX" + }, + { + "type": "Feature", + "properties": { "name": "Macedonia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.59023, 41.85541], + [20.71731, 41.84711], + [20.76216, 42.05186], + [21.3527, 42.2068], + [21.576636, 42.245224], + [21.91708, 42.30364], + [22.380526, 42.32026], + [22.881374, 41.999297], + [22.952377, 41.337994], + [22.76177, 41.3048], + [22.597308, 41.130487], + [22.055378, 41.149866], + [21.674161, 40.931275], + [21.02004, 40.842727], + [20.60518, 41.08622], + [20.46315, 41.51509], + [20.59023, 41.85541] + ] + ] + }, + "id": "MKD" + }, + { + "type": "Feature", + "properties": { "name": "Mali" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-12.17075, 14.616834], + [-11.834208, 14.799097], + [-11.666078, 15.388208], + [-11.349095, 15.411256], + [-10.650791, 15.132746], + [-10.086846, 15.330486], + [-9.700255, 15.264107], + [-9.550238, 15.486497], + [-5.537744, 15.50169], + [-5.315277, 16.201854], + [-5.488523, 16.325102], + [-5.971129, 20.640833], + [-6.453787, 24.956591], + [-4.923337, 24.974574], + [-1.550055, 22.792666], + [1.823228, 20.610809], + [2.060991, 20.142233], + [2.683588, 19.85623], + [3.146661, 19.693579], + [3.158133, 19.057364], + [4.267419, 19.155265], + [4.27021, 16.852227], + [3.723422, 16.184284], + [3.638259, 15.56812], + [2.749993, 15.409525], + [1.385528, 15.323561], + [1.015783, 14.968182], + [0.374892, 14.928908], + [-0.266257, 14.924309], + [-0.515854, 15.116158], + [-1.066363, 14.973815], + [-2.001035, 14.559008], + [-2.191825, 14.246418], + [-2.967694, 13.79815], + [-3.103707, 13.541267], + [-3.522803, 13.337662], + [-4.006391, 13.472485], + [-4.280405, 13.228444], + [-4.427166, 12.542646], + [-5.220942, 11.713859], + [-5.197843, 11.375146], + [-5.470565, 10.95127], + [-5.404342, 10.370737], + [-5.816926, 10.222555], + [-6.050452, 10.096361], + [-6.205223, 10.524061], + [-6.493965, 10.411303], + [-6.666461, 10.430811], + [-6.850507, 10.138994], + [-7.622759, 10.147236], + [-7.89959, 10.297382], + [-8.029944, 10.206535], + [-8.335377, 10.494812], + [-8.282357, 10.792597], + [-8.407311, 10.909257], + [-8.620321, 10.810891], + [-8.581305, 11.136246], + [-8.376305, 11.393646], + [-8.786099, 11.812561], + [-8.905265, 12.088358], + [-9.127474, 12.30806], + [-9.327616, 12.334286], + [-9.567912, 12.194243], + [-9.890993, 12.060479], + [-10.165214, 11.844084], + [-10.593224, 11.923975], + [-10.87083, 12.177887], + [-11.036556, 12.211245], + [-11.297574, 12.077971], + [-11.456169, 12.076834], + [-11.513943, 12.442988], + [-11.467899, 12.754519], + [-11.553398, 13.141214], + [-11.927716, 13.422075], + [-12.124887, 13.994727], + [-12.17075, 14.616834] + ] + ] + }, + "id": "MLI" + }, + { + "type": "Feature", + "properties": { "name": "Myanmar" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [99.543309, 20.186598], + [98.959676, 19.752981], + [98.253724, 19.708203], + [97.797783, 18.62708], + [97.375896, 18.445438], + [97.859123, 17.567946], + [98.493761, 16.837836], + [98.903348, 16.177824], + [98.537376, 15.308497], + [98.192074, 15.123703], + [98.430819, 14.622028], + [99.097755, 13.827503], + [99.212012, 13.269294], + [99.196354, 12.804748], + [99.587286, 11.892763], + [99.038121, 10.960546], + [98.553551, 9.93296], + [98.457174, 10.675266], + [98.764546, 11.441292], + [98.428339, 12.032987], + [98.509574, 13.122378], + [98.103604, 13.64046], + [97.777732, 14.837286], + [97.597072, 16.100568], + [97.16454, 16.928734], + [96.505769, 16.427241], + [95.369352, 15.71439], + [94.808405, 15.803454], + [94.188804, 16.037936], + [94.533486, 17.27724], + [94.324817, 18.213514], + [93.540988, 19.366493], + [93.663255, 19.726962], + [93.078278, 19.855145], + [92.368554, 20.670883], + [92.303234, 21.475485], + [92.652257, 21.324048], + [92.672721, 22.041239], + [93.166128, 22.27846], + [93.060294, 22.703111], + [93.286327, 23.043658], + [93.325188, 24.078556], + [94.106742, 23.850741], + [94.552658, 24.675238], + [94.603249, 25.162495], + [95.155153, 26.001307], + [95.124768, 26.573572], + [96.419366, 27.264589], + [97.133999, 27.083774], + [97.051989, 27.699059], + [97.402561, 27.882536], + [97.327114, 28.261583], + [97.911988, 28.335945], + [98.246231, 27.747221], + [98.68269, 27.508812], + [98.712094, 26.743536], + [98.671838, 25.918703], + [97.724609, 25.083637], + [97.60472, 23.897405], + [98.660262, 24.063286], + [98.898749, 23.142722], + [99.531992, 22.949039], + [99.240899, 22.118314], + [99.983489, 21.742937], + [100.416538, 21.558839], + [101.150033, 21.849984], + [101.180005, 21.436573], + [100.329101, 20.786122], + [100.115988, 20.41785], + [99.543309, 20.186598] + ] + ] + }, + "id": "MMR" + }, + { + "type": "Feature", + "properties": { "name": "Montenegro" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [19.801613, 42.500093], + [19.738051, 42.688247], + [19.30449, 42.19574], + [19.37177, 41.87755], + [19.16246, 41.95502], + [18.88214, 42.28151], + [18.45, 42.48], + [18.56, 42.65], + [18.70648, 43.20011], + [19.03165, 43.43253], + [19.21852, 43.52384], + [19.48389, 43.35229], + [19.63, 43.21378], + [19.95857, 43.10604], + [20.3398, 42.89852], + [20.25758, 42.81275], + [20.0707, 42.58863], + [19.801613, 42.500093] + ] + ] + }, + "id": "MNE" + }, + { + "type": "Feature", + "properties": { "name": "Mongolia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [87.751264, 49.297198], + [88.805567, 49.470521], + [90.713667, 50.331812], + [92.234712, 50.802171], + [93.104219, 50.49529], + [94.147566, 50.480537], + [94.815949, 50.013433], + [95.814028, 49.977467], + [97.259728, 49.726061], + [98.231762, 50.422401], + [97.82574, 51.010995], + [98.861491, 52.047366], + [99.981732, 51.634006], + [100.88948, 51.516856], + [102.065223, 51.259921], + [102.255909, 50.510561], + [103.676545, 50.089966], + [104.621552, 50.275329], + [105.886591, 50.406019], + [106.888804, 50.274296], + [107.868176, 49.793705], + [108.475167, 49.282548], + [109.402449, 49.292961], + [110.662011, 49.130128], + [111.581231, 49.377968], + [112.89774, 49.543565], + [114.362456, 50.248303], + [114.96211, 50.140247], + [115.485695, 49.805177], + [116.678801, 49.888531], + [116.191802, 49.134598], + [115.485282, 48.135383], + [115.742837, 47.726545], + [116.308953, 47.85341], + [117.295507, 47.697709], + [118.064143, 48.06673], + [118.866574, 47.74706], + [119.772824, 47.048059], + [119.66327, 46.69268], + [118.874326, 46.805412], + [117.421701, 46.672733], + [116.717868, 46.388202], + [115.985096, 45.727235], + [114.460332, 45.339817], + [113.463907, 44.808893], + [112.436062, 45.011646], + [111.873306, 45.102079], + [111.348377, 44.457442], + [111.667737, 44.073176], + [111.829588, 43.743118], + [111.129682, 43.406834], + [110.412103, 42.871234], + [109.243596, 42.519446], + [107.744773, 42.481516], + [106.129316, 42.134328], + [104.964994, 41.59741], + [104.522282, 41.908347], + [103.312278, 41.907468], + [101.83304, 42.514873], + [100.845866, 42.663804], + [99.515817, 42.524691], + [97.451757, 42.74889], + [96.349396, 42.725635], + [95.762455, 43.319449], + [95.306875, 44.241331], + [94.688929, 44.352332], + [93.480734, 44.975472], + [92.133891, 45.115076], + [90.94554, 45.286073], + [90.585768, 45.719716], + [90.970809, 46.888146], + [90.280826, 47.693549], + [88.854298, 48.069082], + [88.013832, 48.599463], + [87.751264, 49.297198] + ] + ] + }, + "id": "MNG" + }, + { + "type": "Feature", + "properties": { "name": "Mozambique" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.559989, -11.52002], + [35.312398, -11.439146], + [36.514082, -11.720938], + [36.775151, -11.594537], + [37.471284, -11.568751], + [37.827645, -11.268769], + [38.427557, -11.285202], + [39.52103, -10.896854], + [40.316589, -10.317096], + [40.478387, -10.765441], + [40.437253, -11.761711], + [40.560811, -12.639177], + [40.59962, -14.201975], + [40.775475, -14.691764], + [40.477251, -15.406294], + [40.089264, -16.100774], + [39.452559, -16.720891], + [38.538351, -17.101023], + [37.411133, -17.586368], + [36.281279, -18.659688], + [35.896497, -18.84226], + [35.1984, -19.552811], + [34.786383, -19.784012], + [34.701893, -20.497043], + [35.176127, -21.254361], + [35.373428, -21.840837], + [35.385848, -22.14], + [35.562546, -22.09], + [35.533935, -23.070788], + [35.371774, -23.535359], + [35.60747, -23.706563], + [35.458746, -24.12261], + [35.040735, -24.478351], + [34.215824, -24.816314], + [33.01321, -25.357573], + [32.574632, -25.727318], + [32.660363, -26.148584], + [32.915955, -26.215867], + [32.83012, -26.742192], + [32.071665, -26.73382], + [31.985779, -26.29178], + [31.837778, -25.843332], + [31.752408, -25.484284], + [31.930589, -24.369417], + [31.670398, -23.658969], + [31.191409, -22.25151], + [32.244988, -21.116489], + [32.508693, -20.395292], + [32.659743, -20.30429], + [32.772708, -19.715592], + [32.611994, -19.419383], + [32.654886, -18.67209], + [32.849861, -17.979057], + [32.847639, -16.713398], + [32.328239, -16.392074], + [31.852041, -16.319417], + [31.636498, -16.07199], + [31.173064, -15.860944], + [30.338955, -15.880839], + [30.274256, -15.507787], + [30.179481, -14.796099], + [33.214025, -13.97186], + [33.7897, -14.451831], + [34.064825, -14.35995], + [34.459633, -14.61301], + [34.517666, -15.013709], + [34.307291, -15.478641], + [34.381292, -16.18356], + [35.03381, -16.8013], + [35.339063, -16.10744], + [35.771905, -15.896859], + [35.686845, -14.611046], + [35.267956, -13.887834], + [34.907151, -13.565425], + [34.559989, -13.579998], + [34.280006, -12.280025], + [34.559989, -11.52002] + ] + ] + }, + "id": "MOZ" + }, + { + "type": "Feature", + "properties": { "name": "Mauritania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-12.17075, 14.616834], + [-12.830658, 15.303692], + [-13.435738, 16.039383], + [-14.099521, 16.304302], + [-14.577348, 16.598264], + [-15.135737, 16.587282], + [-15.623666, 16.369337], + [-16.12069, 16.455663], + [-16.463098, 16.135036], + [-16.549708, 16.673892], + [-16.270552, 17.166963], + [-16.146347, 18.108482], + [-16.256883, 19.096716], + [-16.377651, 19.593817], + [-16.277838, 20.092521], + [-16.536324, 20.567866], + [-17.063423, 20.999752], + [-16.845194, 21.333323], + [-12.929102, 21.327071], + [-13.118754, 22.77122], + [-12.874222, 23.284832], + [-11.937224, 23.374594], + [-11.969419, 25.933353], + [-8.687294, 25.881056], + [-8.6844, 27.395744], + [-4.923337, 24.974574], + [-6.453787, 24.956591], + [-5.971129, 20.640833], + [-5.488523, 16.325102], + [-5.315277, 16.201854], + [-5.537744, 15.50169], + [-9.550238, 15.486497], + [-9.700255, 15.264107], + [-10.086846, 15.330486], + [-10.650791, 15.132746], + [-11.349095, 15.411256], + [-11.666078, 15.388208], + [-11.834208, 14.799097], + [-12.17075, 14.616834] + ] + ] + }, + "id": "MRT" + }, + { + "type": "Feature", + "properties": { "name": "Malawi" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.559989, -11.52002], + [34.280006, -12.280025], + [34.559989, -13.579998], + [34.907151, -13.565425], + [35.267956, -13.887834], + [35.686845, -14.611046], + [35.771905, -15.896859], + [35.339063, -16.10744], + [35.03381, -16.8013], + [34.381292, -16.18356], + [34.307291, -15.478641], + [34.517666, -15.013709], + [34.459633, -14.61301], + [34.064825, -14.35995], + [33.7897, -14.451831], + [33.214025, -13.97186], + [32.688165, -13.712858], + [32.991764, -12.783871], + [33.306422, -12.435778], + [33.114289, -11.607198], + [33.31531, -10.79655], + [33.485688, -10.525559], + [33.231388, -9.676722], + [32.759375, -9.230599], + [33.739729, -9.417151], + [33.940838, -9.693674], + [34.280006, -10.16], + [34.559989, -11.52002] + ] + ] + }, + "id": "MWI" + }, + { + "type": "Feature", + "properties": { "name": "Malaysia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [101.075516, 6.204867], + [101.154219, 5.691384], + [101.814282, 5.810808], + [102.141187, 6.221636], + [102.371147, 6.128205], + [102.961705, 5.524495], + [103.381215, 4.855001], + [103.438575, 4.181606], + [103.332122, 3.726698], + [103.429429, 3.382869], + [103.502448, 2.791019], + [103.854674, 2.515454], + [104.247932, 1.631141], + [104.228811, 1.293048], + [103.519707, 1.226334], + [102.573615, 1.967115], + [101.390638, 2.760814], + [101.27354, 3.270292], + [100.695435, 3.93914], + [100.557408, 4.76728], + [100.196706, 5.312493], + [100.30626, 6.040562], + [100.085757, 6.464489], + [100.259596, 6.642825], + [101.075516, 6.204867] + ] + ], + [ + [ + [118.618321, 4.478202], + [117.882035, 4.137551], + [117.015214, 4.306094], + [115.865517, 4.306559], + [115.519078, 3.169238], + [115.134037, 2.821482], + [114.621355, 1.430688], + [113.80585, 1.217549], + [112.859809, 1.49779], + [112.380252, 1.410121], + [111.797548, 0.904441], + [111.159138, 0.976478], + [110.514061, 0.773131], + [109.830227, 1.338136], + [109.66326, 2.006467], + [110.396135, 1.663775], + [111.168853, 1.850637], + [111.370081, 2.697303], + [111.796928, 2.885897], + [112.995615, 3.102395], + [113.712935, 3.893509], + [114.204017, 4.525874], + [114.659596, 4.007637], + [114.869557, 4.348314], + [115.347461, 4.316636], + [115.4057, 4.955228], + [115.45071, 5.44773], + [116.220741, 6.143191], + [116.725103, 6.924771], + [117.129626, 6.928053], + [117.643393, 6.422166], + [117.689075, 5.98749], + [118.347691, 5.708696], + [119.181904, 5.407836], + [119.110694, 5.016128], + [118.439727, 4.966519], + [118.618321, 4.478202] + ] + ] + ] + }, + "id": "MYS" + }, + { + "type": "Feature", + "properties": { "name": "Namibia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.344977, -28.576705], + [15.601818, -27.821247], + [15.210472, -27.090956], + [14.989711, -26.117372], + [14.743214, -25.39292], + [14.408144, -23.853014], + [14.385717, -22.656653], + [14.257714, -22.111208], + [13.868642, -21.699037], + [13.352498, -20.872834], + [12.826845, -19.673166], + [12.608564, -19.045349], + [11.794919, -18.069129], + [11.734199, -17.301889], + [12.215461, -17.111668], + [12.814081, -16.941343], + [13.462362, -16.971212], + [14.058501, -17.423381], + [14.209707, -17.353101], + [18.263309, -17.309951], + [18.956187, -17.789095], + [21.377176, -17.930636], + [23.215048, -17.523116], + [24.033862, -17.295843], + [24.682349, -17.353411], + [25.07695, -17.578823], + [25.084443, -17.661816], + [24.520705, -17.887125], + [24.217365, -17.889347], + [23.579006, -18.281261], + [23.196858, -17.869038], + [21.65504, -18.219146], + [20.910641, -18.252219], + [20.881134, -21.814327], + [19.895458, -21.849157], + [19.895768, -24.76779], + [19.894734, -28.461105], + [19.002127, -28.972443], + [18.464899, -29.045462], + [17.836152, -28.856378], + [17.387497, -28.783514], + [17.218929, -28.355943], + [16.824017, -28.082162], + [16.344977, -28.576705] + ] + ] + }, + "id": "NAM" + }, + { + "type": "Feature", + "properties": { "name": "New Caledonia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [165.77999, -21.080005], + [166.599991, -21.700019], + [167.120011, -22.159991], + [166.740035, -22.399976], + [166.189732, -22.129708], + [165.474375, -21.679607], + [164.829815, -21.14982], + [164.167995, -20.444747], + [164.029606, -20.105646], + [164.459967, -20.120012], + [165.020036, -20.459991], + [165.460009, -20.800022], + [165.77999, -21.080005] + ] + ] + }, + "id": "NCL" + }, + { + "type": "Feature", + "properties": { "name": "Niger" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.154474, 11.94015], + [2.177108, 12.625018], + [1.024103, 12.851826], + [0.993046, 13.33575], + [0.429928, 13.988733], + [0.295646, 14.444235], + [0.374892, 14.928908], + [1.015783, 14.968182], + [1.385528, 15.323561], + [2.749993, 15.409525], + [3.638259, 15.56812], + [3.723422, 16.184284], + [4.27021, 16.852227], + [4.267419, 19.155265], + [5.677566, 19.601207], + [8.572893, 21.565661], + [11.999506, 23.471668], + [13.581425, 23.040506], + [14.143871, 22.491289], + [14.8513, 22.86295], + [15.096888, 21.308519], + [15.471077, 21.048457], + [15.487148, 20.730415], + [15.903247, 20.387619], + [15.685741, 19.95718], + [15.300441, 17.92795], + [15.247731, 16.627306], + [13.972202, 15.684366], + [13.540394, 14.367134], + [13.956699, 13.996691], + [13.954477, 13.353449], + [14.595781, 13.330427], + [14.495787, 12.859396], + [14.213531, 12.802035], + [14.181336, 12.483657], + [13.995353, 12.461565], + [13.318702, 13.556356], + [13.083987, 13.596147], + [12.302071, 13.037189], + [11.527803, 13.32898], + [10.989593, 13.387323], + [10.701032, 13.246918], + [10.114814, 13.277252], + [9.524928, 12.851102], + [9.014933, 12.826659], + [7.804671, 13.343527], + [7.330747, 13.098038], + [6.820442, 13.115091], + [6.445426, 13.492768], + [5.443058, 13.865924], + [4.368344, 13.747482], + [4.107946, 13.531216], + [3.967283, 12.956109], + [3.680634, 12.552903], + [3.61118, 11.660167], + [2.848643, 12.235636], + [2.490164, 12.233052], + [2.154474, 11.94015] + ] + ] + }, + "id": "NER" + }, + { + "type": "Feature", + "properties": { "name": "Nigeria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.500288, 4.771983], + [7.462108, 4.412108], + [7.082596, 4.464689], + [6.698072, 4.240594], + [5.898173, 4.262453], + [5.362805, 4.887971], + [5.033574, 5.611802], + [4.325607, 6.270651], + [3.57418, 6.2583], + [2.691702, 6.258817], + [2.749063, 7.870734], + [2.723793, 8.506845], + [2.912308, 9.137608], + [3.220352, 9.444153], + [3.705438, 10.06321], + [3.60007, 10.332186], + [3.797112, 10.734746], + [3.572216, 11.327939], + [3.61118, 11.660167], + [3.680634, 12.552903], + [3.967283, 12.956109], + [4.107946, 13.531216], + [4.368344, 13.747482], + [5.443058, 13.865924], + [6.445426, 13.492768], + [6.820442, 13.115091], + [7.330747, 13.098038], + [7.804671, 13.343527], + [9.014933, 12.826659], + [9.524928, 12.851102], + [10.114814, 13.277252], + [10.701032, 13.246918], + [10.989593, 13.387323], + [11.527803, 13.32898], + [12.302071, 13.037189], + [13.083987, 13.596147], + [13.318702, 13.556356], + [13.995353, 12.461565], + [14.181336, 12.483657], + [14.577178, 12.085361], + [14.468192, 11.904752], + [14.415379, 11.572369], + [13.57295, 10.798566], + [13.308676, 10.160362], + [13.1676, 9.640626], + [12.955468, 9.417772], + [12.753672, 8.717763], + [12.218872, 8.305824], + [12.063946, 7.799808], + [11.839309, 7.397042], + [11.745774, 6.981383], + [11.058788, 6.644427], + [10.497375, 7.055358], + [10.118277, 7.03877], + [9.522706, 6.453482], + [9.233163, 6.444491], + [8.757533, 5.479666], + [8.500288, 4.771983] + ] + ] + }, + "id": "NGA" + }, + { + "type": "Feature", + "properties": { "name": "Nicaragua" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-85.71254, 11.088445], + [-86.058488, 11.403439], + [-86.52585, 11.806877], + [-86.745992, 12.143962], + [-87.167516, 12.458258], + [-87.668493, 12.90991], + [-87.557467, 13.064552], + [-87.392386, 12.914018], + [-87.316654, 12.984686], + [-87.005769, 13.025794], + [-86.880557, 13.254204], + [-86.733822, 13.263093], + [-86.755087, 13.754845], + [-86.520708, 13.778487], + [-86.312142, 13.771356], + [-86.096264, 14.038187], + [-85.801295, 13.836055], + [-85.698665, 13.960078], + [-85.514413, 14.079012], + [-85.165365, 14.35437], + [-85.148751, 14.560197], + [-85.052787, 14.551541], + [-84.924501, 14.790493], + [-84.820037, 14.819587], + [-84.649582, 14.666805], + [-84.449336, 14.621614], + [-84.228342, 14.748764], + [-83.975721, 14.749436], + [-83.628585, 14.880074], + [-83.489989, 15.016267], + [-83.147219, 14.995829], + [-83.233234, 14.899866], + [-83.284162, 14.676624], + [-83.182126, 14.310703], + [-83.4125, 13.970078], + [-83.519832, 13.567699], + [-83.552207, 13.127054], + [-83.498515, 12.869292], + [-83.473323, 12.419087], + [-83.626104, 12.32085], + [-83.719613, 11.893124], + [-83.650858, 11.629032], + [-83.85547, 11.373311], + [-83.808936, 11.103044], + [-83.655612, 10.938764], + [-83.895054, 10.726839], + [-84.190179, 10.79345], + [-84.355931, 10.999226], + [-84.673069, 11.082657], + [-84.903003, 10.952303], + [-85.561852, 11.217119], + [-85.71254, 11.088445] + ] + ] + }, + "id": "NIC" + }, + { + "type": "Feature", + "properties": { "name": "Netherlands" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.074183, 53.510403], + [6.90514, 53.482162], + [7.092053, 53.144043], + [6.84287, 52.22844], + [6.589397, 51.852029], + [5.988658, 51.851616], + [6.156658, 50.803721], + [5.606976, 51.037298], + [4.973991, 51.475024], + [4.047071, 51.267259], + [3.314971, 51.345755], + [3.830289, 51.620545], + [4.705997, 53.091798], + [6.074183, 53.510403] + ] + ] + }, + "id": "NLD" + }, + { + "type": "Feature", + "properties": { "name": "Norway" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [28.165547, 71.185474], + [31.293418, 70.453788], + [30.005435, 70.186259], + [31.101079, 69.55808], + [29.399581, 69.156916], + [28.59193, 69.064777], + [29.015573, 69.766491], + [27.732292, 70.164193], + [26.179622, 69.825299], + [25.689213, 69.092114], + [24.735679, 68.649557], + [23.66205, 68.891247], + [22.356238, 68.841741], + [21.244936, 69.370443], + [20.645593, 69.106247], + [20.025269, 69.065139], + [19.87856, 68.407194], + [17.993868, 68.567391], + [17.729182, 68.010552], + [16.768879, 68.013937], + [16.108712, 67.302456], + [15.108411, 66.193867], + [13.55569, 64.787028], + [13.919905, 64.445421], + [13.571916, 64.049114], + [12.579935, 64.066219], + [11.930569, 63.128318], + [11.992064, 61.800362], + [12.631147, 61.293572], + [12.300366, 60.117933], + [11.468272, 59.432393], + [11.027369, 58.856149], + [10.356557, 59.469807], + [8.382, 58.313288], + [7.048748, 58.078884], + [5.665835, 58.588155], + [5.308234, 59.663232], + [4.992078, 61.970998], + [5.9129, 62.614473], + [8.553411, 63.454008], + [10.527709, 64.486038], + [12.358347, 65.879726], + [14.761146, 67.810642], + [16.435927, 68.563205], + [19.184028, 69.817444], + [21.378416, 70.255169], + [23.023742, 70.202072], + [24.546543, 71.030497], + [26.37005, 70.986262], + [28.165547, 71.185474] + ] + ], + [ + [ + [24.72412, 77.85385], + [22.49032, 77.44493], + [20.72601, 77.67704], + [21.41611, 77.93504], + [20.8119, 78.25463], + [22.88426, 78.45494], + [23.28134, 78.07954], + [24.72412, 77.85385] + ] + ], + [ + [ + [18.25183, 79.70175], + [21.54383, 78.95611], + [19.02737, 78.5626], + [18.47172, 77.82669], + [17.59441, 77.63796], + [17.1182, 76.80941], + [15.91315, 76.77045], + [13.76259, 77.38035], + [14.66956, 77.73565], + [13.1706, 78.02493], + [11.22231, 78.8693], + [10.44453, 79.65239], + [13.17077, 80.01046], + [13.71852, 79.66039], + [15.14282, 79.67431], + [15.52255, 80.01608], + [16.99085, 80.05086], + [18.25183, 79.70175] + ] + ], + [ + [ + [25.447625, 80.40734], + [27.407506, 80.056406], + [25.924651, 79.517834], + [23.024466, 79.400012], + [20.075188, 79.566823], + [19.897266, 79.842362], + [18.462264, 79.85988], + [17.368015, 80.318896], + [20.455992, 80.598156], + [21.907945, 80.357679], + [22.919253, 80.657144], + [25.447625, 80.40734] + ] + ] + ] + }, + "id": "NOR" + }, + { + "type": "Feature", + "properties": { "name": "Nepal" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [88.120441, 27.876542], + [88.043133, 27.445819], + [88.174804, 26.810405], + [88.060238, 26.414615], + [87.227472, 26.397898], + [86.024393, 26.630985], + [85.251779, 26.726198], + [84.675018, 27.234901], + [83.304249, 27.364506], + [81.999987, 27.925479], + [81.057203, 28.416095], + [80.088425, 28.79447], + [80.476721, 29.729865], + [81.111256, 30.183481], + [81.525804, 30.422717], + [82.327513, 30.115268], + [83.337115, 29.463732], + [83.898993, 29.320226], + [84.23458, 28.839894], + [85.011638, 28.642774], + [85.82332, 28.203576], + [86.954517, 27.974262], + [88.120441, 27.876542] + ] + ] + }, + "id": "NPL" + }, + { + "type": "Feature", + "properties": { "name": "New Zealand" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [173.020375, -40.919052], + [173.247234, -41.331999], + [173.958405, -40.926701], + [174.247587, -41.349155], + [174.248517, -41.770008], + [173.876447, -42.233184], + [173.22274, -42.970038], + [172.711246, -43.372288], + [173.080113, -43.853344], + [172.308584, -43.865694], + [171.452925, -44.242519], + [171.185138, -44.897104], + [170.616697, -45.908929], + [169.831422, -46.355775], + [169.332331, -46.641235], + [168.411354, -46.619945], + [167.763745, -46.290197], + [166.676886, -46.219917], + [166.509144, -45.852705], + [167.046424, -45.110941], + [168.303763, -44.123973], + [168.949409, -43.935819], + [169.667815, -43.555326], + [170.52492, -43.031688], + [171.12509, -42.512754], + [171.569714, -41.767424], + [171.948709, -41.514417], + [172.097227, -40.956104], + [172.79858, -40.493962], + [173.020375, -40.919052] + ] + ], + [ + [ + [174.612009, -36.156397], + [175.336616, -37.209098], + [175.357596, -36.526194], + [175.808887, -36.798942], + [175.95849, -37.555382], + [176.763195, -37.881253], + [177.438813, -37.961248], + [178.010354, -37.579825], + [178.517094, -37.695373], + [178.274731, -38.582813], + [177.97046, -39.166343], + [177.206993, -39.145776], + [176.939981, -39.449736], + [177.032946, -39.879943], + [176.885824, -40.065978], + [176.508017, -40.604808], + [176.01244, -41.289624], + [175.239567, -41.688308], + [175.067898, -41.425895], + [174.650973, -41.281821], + [175.22763, -40.459236], + [174.900157, -39.908933], + [173.824047, -39.508854], + [173.852262, -39.146602], + [174.574802, -38.797683], + [174.743474, -38.027808], + [174.697017, -37.381129], + [174.292028, -36.711092], + [174.319004, -36.534824], + [173.840997, -36.121981], + [173.054171, -35.237125], + [172.636005, -34.529107], + [173.007042, -34.450662], + [173.551298, -35.006183], + [174.32939, -35.265496], + [174.612009, -36.156397] + ] + ] + ] + }, + "id": "NZL" + }, + { + "type": "Feature", + "properties": { "name": "Oman" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [58.861141, 21.114035], + [58.487986, 20.428986], + [58.034318, 20.481437], + [57.826373, 20.243002], + [57.665762, 19.736005], + [57.7887, 19.06757], + [57.694391, 18.94471], + [57.234264, 18.947991], + [56.609651, 18.574267], + [56.512189, 18.087113], + [56.283521, 17.876067], + [55.661492, 17.884128], + [55.269939, 17.632309], + [55.2749, 17.228354], + [54.791002, 16.950697], + [54.239253, 17.044981], + [53.570508, 16.707663], + [53.108573, 16.651051], + [52.782184, 17.349742], + [52.00001, 19.000003], + [54.999982, 19.999994], + [55.666659, 22.000001], + [55.208341, 22.70833], + [55.234489, 23.110993], + [55.525841, 23.524869], + [55.528632, 23.933604], + [55.981214, 24.130543], + [55.804119, 24.269604], + [55.886233, 24.920831], + [56.396847, 24.924732], + [56.84514, 24.241673], + [57.403453, 23.878594], + [58.136948, 23.747931], + [58.729211, 23.565668], + [59.180502, 22.992395], + [59.450098, 22.660271], + [59.80806, 22.533612], + [59.806148, 22.310525], + [59.442191, 21.714541], + [59.282408, 21.433886], + [58.861141, 21.114035] + ] + ], + [ + [ + [56.391421, 25.895991], + [56.261042, 25.714606], + [56.070821, 26.055464], + [56.362017, 26.395934], + [56.485679, 26.309118], + [56.391421, 25.895991] + ] + ] + ] + }, + "id": "OMN" + }, + { + "type": "Feature", + "properties": { "name": "Pakistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [75.158028, 37.133031], + [75.896897, 36.666806], + [76.192848, 35.898403], + [77.837451, 35.49401], + [76.871722, 34.653544], + [75.757061, 34.504923], + [74.240203, 34.748887], + [73.749948, 34.317699], + [74.104294, 33.441473], + [74.451559, 32.7649], + [75.258642, 32.271105], + [74.405929, 31.692639], + [74.42138, 30.979815], + [73.450638, 29.976413], + [72.823752, 28.961592], + [71.777666, 27.91318], + [70.616496, 27.989196], + [69.514393, 26.940966], + [70.168927, 26.491872], + [70.282873, 25.722229], + [70.844699, 25.215102], + [71.04324, 24.356524], + [68.842599, 24.359134], + [68.176645, 23.691965], + [67.443667, 23.944844], + [67.145442, 24.663611], + [66.372828, 25.425141], + [64.530408, 25.237039], + [62.905701, 25.218409], + [61.497363, 25.078237], + [61.874187, 26.239975], + [63.316632, 26.756532], + [63.233898, 27.217047], + [62.755426, 27.378923], + [62.72783, 28.259645], + [61.771868, 28.699334], + [61.369309, 29.303276], + [60.874248, 29.829239], + [62.549857, 29.318572], + [63.550261, 29.468331], + [64.148002, 29.340819], + [64.350419, 29.560031], + [65.046862, 29.472181], + [66.346473, 29.887943], + [66.381458, 30.738899], + [66.938891, 31.304911], + [67.683394, 31.303154], + [67.792689, 31.58293], + [68.556932, 31.71331], + [68.926677, 31.620189], + [69.317764, 31.901412], + [69.262522, 32.501944], + [69.687147, 33.105499], + [70.323594, 33.358533], + [69.930543, 34.02012], + [70.881803, 33.988856], + [71.156773, 34.348911], + [71.115019, 34.733126], + [71.613076, 35.153203], + [71.498768, 35.650563], + [71.262348, 36.074388], + [71.846292, 36.509942], + [72.920025, 36.720007], + [74.067552, 36.836176], + [74.575893, 37.020841], + [75.158028, 37.133031] + ] + ] + }, + "id": "PAK" + }, + { + "type": "Feature", + "properties": { "name": "Panama" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.881571, 7.223771], + [-78.214936, 7.512255], + [-78.429161, 8.052041], + [-78.182096, 8.319182], + [-78.435465, 8.387705], + [-78.622121, 8.718124], + [-79.120307, 8.996092], + [-79.557877, 8.932375], + [-79.760578, 8.584515], + [-80.164481, 8.333316], + [-80.382659, 8.298409], + [-80.480689, 8.090308], + [-80.00369, 7.547524], + [-80.276671, 7.419754], + [-80.421158, 7.271572], + [-80.886401, 7.220541], + [-81.059543, 7.817921], + [-81.189716, 7.647906], + [-81.519515, 7.70661], + [-81.721311, 8.108963], + [-82.131441, 8.175393], + [-82.390934, 8.292362], + [-82.820081, 8.290864], + [-82.850958, 8.073823], + [-82.965783, 8.225028], + [-82.913176, 8.423517], + [-82.829771, 8.626295], + [-82.868657, 8.807266], + [-82.719183, 8.925709], + [-82.927155, 9.07433], + [-82.932891, 9.476812], + [-82.546196, 9.566135], + [-82.187123, 9.207449], + [-82.207586, 8.995575], + [-81.808567, 8.950617], + [-81.714154, 9.031955], + [-81.439287, 8.786234], + [-80.947302, 8.858504], + [-80.521901, 9.111072], + [-79.9146, 9.312765], + [-79.573303, 9.61161], + [-79.021192, 9.552931], + [-79.05845, 9.454565], + [-78.500888, 9.420459], + [-78.055928, 9.24773], + [-77.729514, 8.946844], + [-77.353361, 8.670505], + [-77.474723, 8.524286], + [-77.242566, 7.935278], + [-77.431108, 7.638061], + [-77.753414, 7.70984], + [-77.881571, 7.223771] + ] + ] + }, + "id": "PAN" + }, + { + "type": "Feature", + "properties": { "name": "Peru" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-69.590424, -17.580012], + [-69.858444, -18.092694], + [-70.372572, -18.347975], + [-71.37525, -17.773799], + [-71.462041, -17.363488], + [-73.44453, -16.359363], + [-75.237883, -15.265683], + [-76.009205, -14.649286], + [-76.423469, -13.823187], + [-76.259242, -13.535039], + [-77.106192, -12.222716], + [-78.092153, -10.377712], + [-79.036953, -8.386568], + [-79.44592, -7.930833], + [-79.760578, -7.194341], + [-80.537482, -6.541668], + [-81.249996, -6.136834], + [-80.926347, -5.690557], + [-81.410943, -4.736765], + [-81.09967, -4.036394], + [-80.302561, -3.404856], + [-80.184015, -3.821162], + [-80.469295, -4.059287], + [-80.442242, -4.425724], + [-80.028908, -4.346091], + [-79.624979, -4.454198], + [-79.205289, -4.959129], + [-78.639897, -4.547784], + [-78.450684, -3.873097], + [-77.837905, -3.003021], + [-76.635394, -2.608678], + [-75.544996, -1.56161], + [-75.233723, -0.911417], + [-75.373223, -0.152032], + [-75.106625, -0.057205], + [-74.441601, -0.53082], + [-74.122395, -1.002833], + [-73.659504, -1.260491], + [-73.070392, -2.308954], + [-72.325787, -2.434218], + [-71.774761, -2.16979], + [-71.413646, -2.342802], + [-70.813476, -2.256865], + [-70.047709, -2.725156], + [-70.692682, -3.742872], + [-70.394044, -3.766591], + [-69.893635, -4.298187], + [-70.794769, -4.251265], + [-70.928843, -4.401591], + [-71.748406, -4.593983], + [-72.891928, -5.274561], + [-72.964507, -5.741251], + [-73.219711, -6.089189], + [-73.120027, -6.629931], + [-73.724487, -6.918595], + [-73.723401, -7.340999], + [-73.987235, -7.52383], + [-73.571059, -8.424447], + [-73.015383, -9.032833], + [-73.226713, -9.462213], + [-72.563033, -9.520194], + [-72.184891, -10.053598], + [-71.302412, -10.079436], + [-70.481894, -9.490118], + [-70.548686, -11.009147], + [-70.093752, -11.123972], + [-69.529678, -10.951734], + [-68.66508, -12.5613], + [-68.88008, -12.899729], + [-68.929224, -13.602684], + [-68.948887, -14.453639], + [-69.339535, -14.953195], + [-69.160347, -15.323974], + [-69.389764, -15.660129], + [-68.959635, -16.500698], + [-69.590424, -17.580012] + ] + ] + }, + "id": "PER" + }, + { + "type": "Feature", + "properties": { "name": "Philippines" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [126.376814, 8.414706], + [126.478513, 7.750354], + [126.537424, 7.189381], + [126.196773, 6.274294], + [125.831421, 7.293715], + [125.363852, 6.786485], + [125.683161, 6.049657], + [125.396512, 5.581003], + [124.219788, 6.161355], + [123.93872, 6.885136], + [124.243662, 7.36061], + [123.610212, 7.833527], + [123.296071, 7.418876], + [122.825506, 7.457375], + [122.085499, 6.899424], + [121.919928, 7.192119], + [122.312359, 8.034962], + [122.942398, 8.316237], + [123.487688, 8.69301], + [123.841154, 8.240324], + [124.60147, 8.514158], + [124.764612, 8.960409], + [125.471391, 8.986997], + [125.412118, 9.760335], + [126.222714, 9.286074], + [126.306637, 8.782487], + [126.376814, 8.414706] + ] + ], + [ + [ + [123.982438, 10.278779], + [123.623183, 9.950091], + [123.309921, 9.318269], + [122.995883, 9.022189], + [122.380055, 9.713361], + [122.586089, 9.981045], + [122.837081, 10.261157], + [122.947411, 10.881868], + [123.49885, 10.940624], + [123.337774, 10.267384], + [124.077936, 11.232726], + [123.982438, 10.278779] + ] + ], + [ + [ + [118.504581, 9.316383], + [117.174275, 8.3675], + [117.664477, 9.066889], + [118.386914, 9.6845], + [118.987342, 10.376292], + [119.511496, 11.369668], + [119.689677, 10.554291], + [119.029458, 10.003653], + [118.504581, 9.316383] + ] + ], + [ + [ + [121.883548, 11.891755], + [122.483821, 11.582187], + [123.120217, 11.58366], + [123.100838, 11.165934], + [122.637714, 10.741308], + [122.00261, 10.441017], + [121.967367, 10.905691], + [122.03837, 11.415841], + [121.883548, 11.891755] + ] + ], + [ + [ + [125.502552, 12.162695], + [125.783465, 11.046122], + [125.011884, 11.311455], + [125.032761, 10.975816], + [125.277449, 10.358722], + [124.801819, 10.134679], + [124.760168, 10.837995], + [124.459101, 10.88993], + [124.302522, 11.495371], + [124.891013, 11.415583], + [124.87799, 11.79419], + [124.266762, 12.557761], + [125.227116, 12.535721], + [125.502552, 12.162695] + ] + ], + [ + [ + [121.527394, 13.06959], + [121.26219, 12.20556], + [120.833896, 12.704496], + [120.323436, 13.466413], + [121.180128, 13.429697], + [121.527394, 13.06959] + ] + ], + [ + [ + [121.321308, 18.504065], + [121.937601, 18.218552], + [122.246006, 18.47895], + [122.336957, 18.224883], + [122.174279, 17.810283], + [122.515654, 17.093505], + [122.252311, 16.262444], + [121.662786, 15.931018], + [121.50507, 15.124814], + [121.728829, 14.328376], + [122.258925, 14.218202], + [122.701276, 14.336541], + [123.950295, 13.782131], + [123.855107, 13.237771], + [124.181289, 12.997527], + [124.077419, 12.536677], + [123.298035, 13.027526], + [122.928652, 13.55292], + [122.671355, 13.185836], + [122.03465, 13.784482], + [121.126385, 13.636687], + [120.628637, 13.857656], + [120.679384, 14.271016], + [120.991819, 14.525393], + [120.693336, 14.756671], + [120.564145, 14.396279], + [120.070429, 14.970869], + [119.920929, 15.406347], + [119.883773, 16.363704], + [120.286488, 16.034629], + [120.390047, 17.599081], + [120.715867, 18.505227], + [121.321308, 18.504065] + ] + ] + ] + }, + "id": "PHL" + }, + { + "type": "Feature", + "properties": { "name": "Papua New Guinea" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [155.880026, -6.819997], + [155.599991, -6.919991], + [155.166994, -6.535931], + [154.729192, -5.900828], + [154.514114, -5.139118], + [154.652504, -5.042431], + [154.759991, -5.339984], + [155.062918, -5.566792], + [155.547746, -6.200655], + [156.019965, -6.540014], + [155.880026, -6.819997] + ] + ], + [ + [ + [151.982796, -5.478063], + [151.459107, -5.56028], + [151.30139, -5.840728], + [150.754447, -6.083763], + [150.241197, -6.317754], + [149.709963, -6.316513], + [148.890065, -6.02604], + [148.318937, -5.747142], + [148.401826, -5.437756], + [149.298412, -5.583742], + [149.845562, -5.505503], + [149.99625, -5.026101], + [150.139756, -5.001348], + [150.236908, -5.53222], + [150.807467, -5.455842], + [151.089672, -5.113693], + [151.647881, -4.757074], + [151.537862, -4.167807], + [152.136792, -4.14879], + [152.338743, -4.312966], + [152.318693, -4.867661], + [151.982796, -5.478063] + ] + ], + [ + [ + [147.191874, -7.388024], + [148.084636, -8.044108], + [148.734105, -9.104664], + [149.306835, -9.071436], + [149.266631, -9.514406], + [150.038728, -9.684318], + [149.738798, -9.872937], + [150.801628, -10.293687], + [150.690575, -10.582713], + [150.028393, -10.652476], + [149.78231, -10.393267], + [148.923138, -10.280923], + [147.913018, -10.130441], + [147.135443, -9.492444], + [146.567881, -8.942555], + [146.048481, -8.067414], + [144.744168, -7.630128], + [143.897088, -7.91533], + [143.286376, -8.245491], + [143.413913, -8.983069], + [142.628431, -9.326821], + [142.068259, -9.159596], + [141.033852, -9.117893], + [141.017057, -5.859022], + [141.00021, -2.600151], + [142.735247, -3.289153], + [144.583971, -3.861418], + [145.27318, -4.373738], + [145.829786, -4.876498], + [145.981922, -5.465609], + [147.648073, -6.083659], + [147.891108, -6.614015], + [146.970905, -6.721657], + [147.191874, -7.388024] + ] + ], + [ + [ + [153.140038, -4.499983], + [152.827292, -4.766427], + [152.638673, -4.176127], + [152.406026, -3.789743], + [151.953237, -3.462062], + [151.384279, -3.035422], + [150.66205, -2.741486], + [150.939965, -2.500002], + [151.479984, -2.779985], + [151.820015, -2.999972], + [152.239989, -3.240009], + [152.640017, -3.659983], + [153.019994, -3.980015], + [153.140038, -4.499983] + ] + ] + ] + }, + "id": "PNG" + }, + { + "type": "Feature", + "properties": { "name": "Poland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [15.016996, 51.106674], + [14.607098, 51.745188], + [14.685026, 52.089947], + [14.4376, 52.62485], + [14.074521, 52.981263], + [14.353315, 53.248171], + [14.119686, 53.757029], + [14.8029, 54.050706], + [16.363477, 54.513159], + [17.622832, 54.851536], + [18.620859, 54.682606], + [18.696255, 54.438719], + [19.66064, 54.426084], + [20.892245, 54.312525], + [22.731099, 54.327537], + [23.243987, 54.220567], + [23.484128, 53.912498], + [23.527536, 53.470122], + [23.804935, 53.089731], + [23.799199, 52.691099], + [23.199494, 52.486977], + [23.508002, 52.023647], + [23.527071, 51.578454], + [24.029986, 50.705407], + [23.922757, 50.424881], + [23.426508, 50.308506], + [22.51845, 49.476774], + [22.776419, 49.027395], + [22.558138, 49.085738], + [21.607808, 49.470107], + [20.887955, 49.328772], + [20.415839, 49.431453], + [19.825023, 49.217125], + [19.320713, 49.571574], + [18.909575, 49.435846], + [18.853144, 49.49623], + [18.392914, 49.988629], + [17.649445, 50.049038], + [17.554567, 50.362146], + [16.868769, 50.473974], + [16.719476, 50.215747], + [16.176253, 50.422607], + [16.238627, 50.697733], + [15.490972, 50.78473], + [15.016996, 51.106674] + ] + ] + }, + "id": "POL" + }, + { + "type": "Feature", + "properties": { "name": "Puerto Rico" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-66.282434, 18.514762], + [-65.771303, 18.426679], + [-65.591004, 18.228035], + [-65.847164, 17.975906], + [-66.599934, 17.981823], + [-67.184162, 17.946553], + [-67.242428, 18.37446], + [-67.100679, 18.520601], + [-66.282434, 18.514762] + ] + ] + }, + "id": "PRI" + }, + { + "type": "Feature", + "properties": { "name": "North Korea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130.640016, 42.395009], + [130.780007, 42.220007], + [130.400031, 42.280004], + [129.965949, 41.941368], + [129.667362, 41.601104], + [129.705189, 40.882828], + [129.188115, 40.661808], + [129.0104, 40.485436], + [128.633368, 40.189847], + [127.967414, 40.025413], + [127.533436, 39.75685], + [127.50212, 39.323931], + [127.385434, 39.213472], + [127.783343, 39.050898], + [128.349716, 38.612243], + [128.205746, 38.370397], + [127.780035, 38.304536], + [127.073309, 38.256115], + [126.68372, 37.804773], + [126.237339, 37.840378], + [126.174759, 37.749686], + [125.689104, 37.94001], + [125.568439, 37.752089], + [125.27533, 37.669071], + [125.240087, 37.857224], + [124.981033, 37.948821], + [124.712161, 38.108346], + [124.985994, 38.548474], + [125.221949, 38.665857], + [125.132859, 38.848559], + [125.38659, 39.387958], + [125.321116, 39.551385], + [124.737482, 39.660344], + [124.265625, 39.928493], + [125.079942, 40.569824], + [126.182045, 41.107336], + [126.869083, 41.816569], + [127.343783, 41.503152], + [128.208433, 41.466772], + [128.052215, 41.994285], + [129.596669, 42.424982], + [129.994267, 42.985387], + [130.640016, 42.395009] + ] + ] + }, + "id": "PRK" + }, + { + "type": "Feature", + "properties": { "name": "Portugal" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-9.034818, 41.880571], + [-8.671946, 42.134689], + [-8.263857, 42.280469], + [-8.013175, 41.790886], + [-7.422513, 41.792075], + [-7.251309, 41.918346], + [-6.668606, 41.883387], + [-6.389088, 41.381815], + [-6.851127, 41.111083], + [-6.86402, 40.330872], + [-7.026413, 40.184524], + [-7.066592, 39.711892], + [-7.498632, 39.629571], + [-7.098037, 39.030073], + [-7.374092, 38.373059], + [-7.029281, 38.075764], + [-7.166508, 37.803894], + [-7.537105, 37.428904], + [-7.453726, 37.097788], + [-7.855613, 36.838269], + [-8.382816, 36.97888], + [-8.898857, 36.868809], + [-8.746101, 37.651346], + [-8.839998, 38.266243], + [-9.287464, 38.358486], + [-9.526571, 38.737429], + [-9.446989, 39.392066], + [-9.048305, 39.755093], + [-8.977353, 40.159306], + [-8.768684, 40.760639], + [-8.790853, 41.184334], + [-8.990789, 41.543459], + [-9.034818, 41.880571] + ] + ] + }, + "id": "PRT" + }, + { + "type": "Feature", + "properties": { "name": "Paraguay" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.685057, -22.249029], + [-62.291179, -21.051635], + [-62.265961, -20.513735], + [-61.786326, -19.633737], + [-60.043565, -19.342747], + [-59.115042, -19.356906], + [-58.183471, -19.868399], + [-58.166392, -20.176701], + [-57.870674, -20.732688], + [-57.937156, -22.090176], + [-56.88151, -22.282154], + [-56.473317, -22.0863], + [-55.797958, -22.35693], + [-55.610683, -22.655619], + [-55.517639, -23.571998], + [-55.400747, -23.956935], + [-55.027902, -24.001274], + [-54.652834, -23.839578], + [-54.29296, -24.021014], + [-54.293476, -24.5708], + [-54.428946, -25.162185], + [-54.625291, -25.739255], + [-54.788795, -26.621786], + [-55.695846, -27.387837], + [-56.486702, -27.548499], + [-57.60976, -27.395899], + [-58.618174, -27.123719], + [-57.63366, -25.603657], + [-57.777217, -25.16234], + [-58.807128, -24.771459], + [-60.028966, -24.032796], + [-60.846565, -23.880713], + [-62.685057, -22.249029] + ] + ] + }, + "id": "PRY" + }, + { + "type": "Feature", + "properties": { "name": "Qatar" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50.810108, 24.754743], + [50.743911, 25.482424], + [51.013352, 26.006992], + [51.286462, 26.114582], + [51.589079, 25.801113], + [51.6067, 25.21567], + [51.389608, 24.627386], + [51.112415, 24.556331], + [50.810108, 24.754743] + ] + ] + }, + "id": "QAT" + }, + { + "type": "Feature", + "properties": { "name": "Romania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.710531, 47.882194], + [23.142236, 48.096341], + [23.760958, 47.985598], + [24.402056, 47.981878], + [24.866317, 47.737526], + [25.207743, 47.891056], + [25.945941, 47.987149], + [26.19745, 48.220881], + [26.619337, 48.220726], + [26.924176, 48.123264], + [27.233873, 47.826771], + [27.551166, 47.405117], + [28.12803, 46.810476], + [28.160018, 46.371563], + [28.054443, 45.944586], + [28.233554, 45.488283], + [28.679779, 45.304031], + [29.149725, 45.464925], + [29.603289, 45.293308], + [29.626543, 45.035391], + [29.141612, 44.82021], + [28.837858, 44.913874], + [28.558081, 43.707462], + [27.970107, 43.812468], + [27.2424, 44.175986], + [26.065159, 43.943494], + [25.569272, 43.688445], + [24.100679, 43.741051], + [23.332302, 43.897011], + [22.944832, 43.823785], + [22.65715, 44.234923], + [22.474008, 44.409228], + [22.705726, 44.578003], + [22.459022, 44.702517], + [22.145088, 44.478422], + [21.562023, 44.768947], + [21.483526, 45.18117], + [20.874313, 45.416375], + [20.762175, 45.734573], + [20.220192, 46.127469], + [21.021952, 46.316088], + [21.626515, 46.994238], + [22.099768, 47.672439], + [22.710531, 47.882194] + ] + ] + }, + "id": "ROU" + }, + { + "type": "Feature", + "properties": { "name": "Russia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [143.648007, 50.7476], + [144.654148, 48.976391], + [143.173928, 49.306551], + [142.558668, 47.861575], + [143.533492, 46.836728], + [143.505277, 46.137908], + [142.747701, 46.740765], + [142.09203, 45.966755], + [141.906925, 46.805929], + [142.018443, 47.780133], + [141.904445, 48.859189], + [142.1358, 49.615163], + [142.179983, 50.952342], + [141.594076, 51.935435], + [141.682546, 53.301966], + [142.606934, 53.762145], + [142.209749, 54.225476], + [142.654786, 54.365881], + [142.914616, 53.704578], + [143.260848, 52.74076], + [143.235268, 51.75666], + [143.648007, 50.7476] + ] + ], + [ + [ + [22.731099, 54.327537], + [20.892245, 54.312525], + [19.66064, 54.426084], + [19.888481, 54.86616], + [21.268449, 55.190482], + [22.315724, 55.015299], + [22.757764, 54.856574], + [22.651052, 54.582741], + [22.731099, 54.327537] + ] + ], + [ + [ + [-175.01425, 66.58435], + [-174.33983, 66.33556], + [-174.57182, 67.06219], + [-171.85731, 66.91308], + [-169.89958, 65.97724], + [-170.89107, 65.54139], + [-172.53025, 65.43791], + [-172.555, 64.46079], + [-172.95533, 64.25269], + [-173.89184, 64.2826], + [-174.65392, 64.63125], + [-175.98353, 64.92288], + [-176.20716, 65.35667], + [-177.22266, 65.52024], + [-178.35993, 65.39052], + [-178.90332, 65.74044], + [-178.68611, 66.11211], + [-179.88377, 65.87456], + [-179.43268, 65.40411], + [-180, 64.979709], + [-180, 68.963636], + [-177.55, 68.2], + [-174.92825, 67.20589], + [-175.01425, 66.58435] + ] + ], + [ + [ + [180, 70.832199], + [178.903425, 70.78114], + [178.7253, 71.0988], + [180, 71.515714], + [180, 70.832199] + ] + ], + [ + [ + [-178.69378, 70.89302], + [-180, 70.832199], + [-180, 71.515714], + [-179.871875, 71.55762], + [-179.02433, 71.55553], + [-177.577945, 71.26948], + [-177.663575, 71.13277], + [-178.69378, 70.89302] + ] + ], + [ + [ + [143.60385, 73.21244], + [142.08763, 73.20544], + [140.038155, 73.31692], + [139.86312, 73.36983], + [140.81171, 73.76506], + [142.06207, 73.85758], + [143.48283, 73.47525], + [143.60385, 73.21244] + ] + ], + [ + [ + [150.73167, 75.08406], + [149.575925, 74.68892], + [147.977465, 74.778355], + [146.11919, 75.17298], + [146.358485, 75.49682], + [148.22223, 75.345845], + [150.73167, 75.08406] + ] + ], + [ + [ + [145.086285, 75.562625], + [144.3, 74.82], + [140.61381, 74.84768], + [138.95544, 74.61148], + [136.97439, 75.26167], + [137.51176, 75.94917], + [138.831075, 76.13676], + [141.471615, 76.09289], + [145.086285, 75.562625] + ] + ], + [ + [ + [57.535693, 70.720464], + [56.944979, 70.632743], + [53.677375, 70.762658], + [53.412017, 71.206662], + [51.601895, 71.474759], + [51.455754, 72.014881], + [52.478275, 72.229442], + [52.444169, 72.774731], + [54.427614, 73.627548], + [53.50829, 73.749814], + [55.902459, 74.627486], + [55.631933, 75.081412], + [57.868644, 75.60939], + [61.170044, 76.251883], + [64.498368, 76.439055], + [66.210977, 76.809782], + [68.15706, 76.939697], + [68.852211, 76.544811], + [68.180573, 76.233642], + [64.637326, 75.737755], + [61.583508, 75.260885], + [58.477082, 74.309056], + [56.986786, 73.333044], + [55.419336, 72.371268], + [55.622838, 71.540595], + [57.535693, 70.720464] + ] + ], + [ + [ + [106.97013, 76.97419], + [107.24, 76.48], + [108.1538, 76.72335], + [111.07726, 76.71], + [113.33151, 76.22224], + [114.13417, 75.84764], + [113.88539, 75.32779], + [112.77918, 75.03186], + [110.15125, 74.47673], + [109.4, 74.18], + [110.64, 74.04], + [112.11919, 73.78774], + [113.01954, 73.97693], + [113.52958, 73.33505], + [113.96881, 73.59488], + [115.56782, 73.75285], + [118.77633, 73.58772], + [119.02, 73.12], + [123.20066, 72.97122], + [123.25777, 73.73503], + [125.38, 73.56], + [126.97644, 73.56549], + [128.59126, 73.03871], + [129.05157, 72.39872], + [128.46, 71.98], + [129.71599, 71.19304], + [131.28858, 70.78699], + [132.2535, 71.8363], + [133.85766, 71.38642], + [135.56193, 71.65525], + [137.49755, 71.34763], + [138.23409, 71.62803], + [139.86983, 71.48783], + [139.14791, 72.41619], + [140.46817, 72.84941], + [149.5, 72.2], + [150.35118, 71.60643], + [152.9689, 70.84222], + [157.00688, 71.03141], + [158.99779, 70.86672], + [159.83031, 70.45324], + [159.70866, 69.72198], + [160.94053, 69.43728], + [162.27907, 69.64204], + [164.05248, 69.66823], + [165.94037, 69.47199], + [167.83567, 69.58269], + [169.57763, 68.6938], + [170.81688, 69.01363], + [170.0082, 69.65276], + [170.45345, 70.09703], + [173.64391, 69.81743], + [175.72403, 69.87725], + [178.6, 69.4], + [180, 68.963636], + [180, 64.979709], + [179.99281, 64.97433], + [178.7072, 64.53493], + [177.41128, 64.60821], + [178.313, 64.07593], + [178.90825, 63.25197], + [179.37034, 62.98262], + [179.48636, 62.56894], + [179.22825, 62.3041], + [177.3643, 62.5219], + [174.56929, 61.76915], + [173.68013, 61.65261], + [172.15, 60.95], + [170.6985, 60.33618], + [170.33085, 59.88177], + [168.90046, 60.57355], + [166.29498, 59.78855], + [165.84, 60.16], + [164.87674, 59.7316], + [163.53929, 59.86871], + [163.21711, 59.21101], + [162.01733, 58.24328], + [162.05297, 57.83912], + [163.19191, 57.61503], + [163.05794, 56.15924], + [162.12958, 56.12219], + [161.70146, 55.28568], + [162.11749, 54.85514], + [160.36877, 54.34433], + [160.02173, 53.20257], + [158.53094, 52.95868], + [158.23118, 51.94269], + [156.78979, 51.01105], + [156.42, 51.7], + [155.99182, 53.15895], + [155.43366, 55.38103], + [155.91442, 56.76792], + [156.75815, 57.3647], + [156.81035, 57.83204], + [158.36433, 58.05575], + [160.15064, 59.31477], + [161.87204, 60.343], + [163.66969, 61.1409], + [164.47355, 62.55061], + [163.25842, 62.46627], + [162.65791, 61.6425], + [160.12148, 60.54423], + [159.30232, 61.77396], + [156.72068, 61.43442], + [154.21806, 59.75818], + [155.04375, 59.14495], + [152.81185, 58.88385], + [151.26573, 58.78089], + [151.33815, 59.50396], + [149.78371, 59.65573], + [148.54481, 59.16448], + [145.48722, 59.33637], + [142.19782, 59.03998], + [138.95848, 57.08805], + [135.12619, 54.72959], + [136.70171, 54.60355], + [137.19342, 53.97732], + [138.1647, 53.75501], + [138.80463, 54.25455], + [139.90151, 54.18968], + [141.34531, 53.08957], + [141.37923, 52.23877], + [140.59742, 51.23967], + [140.51308, 50.04553], + [140.06193, 48.44671], + [138.55472, 46.99965], + [138.21971, 46.30795], + [136.86232, 45.1435], + [135.51535, 43.989], + [134.86939, 43.39821], + [133.53687, 42.81147], + [132.90627, 42.79849], + [132.27807, 43.28456], + [130.93587, 42.55274], + [130.78, 42.22], + [130.64, 42.395], + [130.633866, 42.903015], + [131.144688, 42.92999], + [131.288555, 44.11152], + [131.02519, 44.96796], + [131.883454, 45.321162], + [133.09712, 45.14409], + [133.769644, 46.116927], + [134.11235, 47.21248], + [134.50081, 47.57845], + [135.026311, 48.47823], + [133.373596, 48.183442], + [132.50669, 47.78896], + [130.98726, 47.79013], + [130.582293, 48.729687], + [129.397818, 49.4406], + [127.6574, 49.76027], + [127.287456, 50.739797], + [126.939157, 51.353894], + [126.564399, 51.784255], + [125.946349, 52.792799], + [125.068211, 53.161045], + [123.57147, 53.4588], + [122.245748, 53.431726], + [121.003085, 53.251401], + [120.177089, 52.753886], + [120.725789, 52.516226], + [120.7382, 51.96411], + [120.18208, 51.64355], + [119.27939, 50.58292], + [119.288461, 50.142883], + [117.879244, 49.510983], + [116.678801, 49.888531], + [115.485695, 49.805177], + [114.96211, 50.140247], + [114.362456, 50.248303], + [112.89774, 49.543565], + [111.581231, 49.377968], + [110.662011, 49.130128], + [109.402449, 49.292961], + [108.475167, 49.282548], + [107.868176, 49.793705], + [106.888804, 50.274296], + [105.886591, 50.406019], + [104.62158, 50.27532], + [103.676545, 50.089966], + [102.25589, 50.51056], + [102.06521, 51.25991], + [100.88948, 51.516856], + [99.981732, 51.634006], + [98.861491, 52.047366], + [97.82574, 51.010995], + [98.231762, 50.422401], + [97.25976, 49.72605], + [95.81402, 49.97746], + [94.815949, 50.013433], + [94.147566, 50.480537], + [93.10421, 50.49529], + [92.234712, 50.802171], + [90.713667, 50.331812], + [88.805567, 49.470521], + [87.751264, 49.297198], + [87.35997, 49.214981], + [86.829357, 49.826675], + [85.54127, 49.692859], + [85.11556, 50.117303], + [84.416377, 50.3114], + [83.935115, 50.889246], + [83.383004, 51.069183], + [81.945986, 50.812196], + [80.568447, 51.388336], + [80.03556, 50.864751], + [77.800916, 53.404415], + [76.525179, 54.177003], + [76.8911, 54.490524], + [74.38482, 53.54685], + [73.425679, 53.48981], + [73.508516, 54.035617], + [72.22415, 54.376655], + [71.180131, 54.133285], + [70.865267, 55.169734], + [69.068167, 55.38525], + [68.1691, 54.970392], + [65.66687, 54.60125], + [65.178534, 54.354228], + [61.4366, 54.00625], + [60.978066, 53.664993], + [61.699986, 52.979996], + [60.739993, 52.719986], + [60.927269, 52.447548], + [59.967534, 51.96042], + [61.588003, 51.272659], + [61.337424, 50.79907], + [59.932807, 50.842194], + [59.642282, 50.545442], + [58.36332, 51.06364], + [56.77798, 51.04355], + [55.71694, 50.62171], + [54.532878, 51.02624], + [52.328724, 51.718652], + [50.766648, 51.692762], + [48.702382, 50.605128], + [48.577841, 49.87476], + [47.54948, 50.454698], + [46.751596, 49.356006], + [47.043672, 49.152039], + [46.466446, 48.394152], + [47.31524, 47.71585], + [48.05725, 47.74377], + [48.694734, 47.075628], + [48.59325, 46.56104], + [49.10116, 46.39933], + [48.64541, 45.80629], + [47.67591, 45.64149], + [46.68201, 44.6092], + [47.59094, 43.66016], + [47.49252, 42.98658], + [48.58437, 41.80888], + [47.987283, 41.405819], + [47.815666, 41.151416], + [47.373315, 41.219732], + [46.686071, 41.827137], + [46.404951, 41.860675], + [45.7764, 42.09244], + [45.470279, 42.502781], + [44.537623, 42.711993], + [43.93121, 42.55496], + [43.75599, 42.74083], + [42.3944, 43.2203], + [40.92219, 43.38215], + [40.076965, 43.553104], + [39.955009, 43.434998], + [38.68, 44.28], + [37.53912, 44.65721], + [36.67546, 45.24469], + [37.40317, 45.40451], + [38.23295, 46.24087], + [37.67372, 46.63657], + [39.14767, 47.04475], + [39.1212, 47.26336], + [38.223538, 47.10219], + [38.255112, 47.5464], + [38.77057, 47.82562], + [39.738278, 47.898937], + [39.89562, 48.23241], + [39.67465, 48.78382], + [40.080789, 49.30743], + [40.06904, 49.60105], + [38.594988, 49.926462], + [38.010631, 49.915662], + [37.39346, 50.383953], + [36.626168, 50.225591], + [35.356116, 50.577197], + [35.37791, 50.77394], + [35.022183, 51.207572], + [34.224816, 51.255993], + [34.141978, 51.566413], + [34.391731, 51.768882], + [33.7527, 52.335075], + [32.715761, 52.238465], + [32.412058, 52.288695], + [32.15944, 52.06125], + [31.78597, 52.10168], + [31.540018, 52.742052], + [31.305201, 53.073996], + [31.49764, 53.16743], + [32.304519, 53.132726], + [32.693643, 53.351421], + [32.405599, 53.618045], + [31.731273, 53.794029], + [31.791424, 53.974639], + [31.384472, 54.157056], + [30.757534, 54.811771], + [30.971836, 55.081548], + [30.873909, 55.550976], + [29.896294, 55.789463], + [29.371572, 55.670091], + [29.229513, 55.918344], + [28.176709, 56.16913], + [27.855282, 56.759326], + [27.770016, 57.244258], + [27.288185, 57.474528], + [27.716686, 57.791899], + [27.42015, 58.72457], + [28.131699, 59.300825], + [27.98112, 59.47537], + [29.1177, 60.02805], + [28.07, 60.50352], + [30.211107, 61.780028], + [31.139991, 62.357693], + [31.516092, 62.867687], + [30.035872, 63.552814], + [30.444685, 64.204453], + [29.54443, 64.948672], + [30.21765, 65.80598], + [29.054589, 66.944286], + [29.977426, 67.698297], + [28.445944, 68.364613], + [28.59193, 69.064777], + [29.39955, 69.15692], + [31.10108, 69.55811], + [32.13272, 69.90595], + [33.77547, 69.30142], + [36.51396, 69.06342], + [40.29234, 67.9324], + [41.05987, 67.45713], + [41.12595, 66.79158], + [40.01583, 66.26618], + [38.38295, 65.99953], + [33.91871, 66.75961], + [33.18444, 66.63253], + [34.81477, 65.90015], + [34.878574, 65.436213], + [34.94391, 64.41437], + [36.23129, 64.10945], + [37.01273, 63.84983], + [37.14197, 64.33471], + [36.539579, 64.76446], + [37.17604, 65.14322], + [39.59345, 64.52079], + [40.4356, 64.76446], + [39.7626, 65.49682], + [42.09309, 66.47623], + [43.01604, 66.41858], + [43.94975, 66.06908], + [44.53226, 66.75634], + [43.69839, 67.35245], + [44.18795, 67.95051], + [43.45282, 68.57079], + [46.25, 68.25], + [46.82134, 67.68997], + [45.55517, 67.56652], + [45.56202, 67.01005], + [46.34915, 66.66767], + [47.89416, 66.88455], + [48.13876, 67.52238], + [50.22766, 67.99867], + [53.71743, 68.85738], + [54.47171, 68.80815], + [53.48582, 68.20131], + [54.72628, 68.09702], + [55.44268, 68.43866], + [57.31702, 68.46628], + [58.802, 68.88082], + [59.94142, 68.27844], + [61.07784, 68.94069], + [60.03, 69.52], + [60.55, 69.85], + [63.504, 69.54739], + [64.888115, 69.234835], + [68.51216, 68.09233], + [69.18068, 68.61563], + [68.16444, 69.14436], + [68.13522, 69.35649], + [66.93008, 69.45461], + [67.25976, 69.92873], + [66.72492, 70.70889], + [66.69466, 71.02897], + [68.54006, 71.9345], + [69.19636, 72.84336], + [69.94, 73.04], + [72.58754, 72.77629], + [72.79603, 72.22006], + [71.84811, 71.40898], + [72.47011, 71.09019], + [72.79188, 70.39114], + [72.5647, 69.02085], + [73.66787, 68.4079], + [73.2387, 67.7404], + [71.28, 66.32], + [72.42301, 66.17267], + [72.82077, 66.53267], + [73.92099, 66.78946], + [74.18651, 67.28429], + [75.052, 67.76047], + [74.46926, 68.32899], + [74.93584, 68.98918], + [73.84236, 69.07146], + [73.60187, 69.62763], + [74.3998, 70.63175], + [73.1011, 71.44717], + [74.89082, 72.12119], + [74.65926, 72.83227], + [75.15801, 72.85497], + [75.68351, 72.30056], + [75.28898, 71.33556], + [76.35911, 71.15287], + [75.90313, 71.87401], + [77.57665, 72.26717], + [79.65202, 72.32011], + [81.5, 71.75], + [80.61071, 72.58285], + [80.51109, 73.6482], + [82.25, 73.85], + [84.65526, 73.80591], + [86.8223, 73.93688], + [86.00956, 74.45967], + [87.16682, 75.11643], + [88.31571, 75.14393], + [90.26, 75.64], + [92.90058, 75.77333], + [93.23421, 76.0472], + [95.86, 76.14], + [96.67821, 75.91548], + [98.92254, 76.44689], + [100.75967, 76.43028], + [101.03532, 76.86189], + [101.99084, 77.28754], + [104.3516, 77.69792], + [106.06664, 77.37389], + [104.705, 77.1274], + [106.97013, 76.97419] + ] + ], + [ + [ + [105.07547, 78.30689], + [99.43814, 77.921], + [101.2649, 79.23399], + [102.08635, 79.34641], + [102.837815, 79.28129], + [105.37243, 78.71334], + [105.07547, 78.30689] + ] + ], + [ + [ + [51.136187, 80.54728], + [49.793685, 80.415428], + [48.894411, 80.339567], + [48.754937, 80.175468], + [47.586119, 80.010181], + [46.502826, 80.247247], + [47.072455, 80.559424], + [44.846958, 80.58981], + [46.799139, 80.771918], + [48.318477, 80.78401], + [48.522806, 80.514569], + [49.09719, 80.753986], + [50.039768, 80.918885], + [51.522933, 80.699726], + [51.136187, 80.54728] + ] + ], + [ + [ + [99.93976, 78.88094], + [97.75794, 78.7562], + [94.97259, 79.044745], + [93.31288, 79.4265], + [92.5454, 80.14379], + [91.18107, 80.34146], + [93.77766, 81.0246], + [95.940895, 81.2504], + [97.88385, 80.746975], + [100.186655, 79.780135], + [99.93976, 78.88094] + ] + ] + ] + }, + "id": "RUS" + }, + { + "type": "Feature", + "properties": { "name": "Rwanda" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.419105, -1.134659], + [30.816135, -1.698914], + [30.758309, -2.28725], + [30.469696, -2.413858], + [29.938359, -2.348487], + [29.632176, -2.917858], + [29.024926, -2.839258], + [29.117479, -2.292211], + [29.254835, -2.21511], + [29.291887, -1.620056], + [29.579466, -1.341313], + [29.821519, -1.443322], + [30.419105, -1.134659] + ] + ] + }, + "id": "RWA" + }, + { + "type": "Feature", + "properties": { "name": "Western Sahara" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.794884, 27.120696], + [-8.817828, 27.656426], + [-8.66559, 27.656426], + [-8.665124, 27.589479], + [-8.6844, 27.395744], + [-8.687294, 25.881056], + [-11.969419, 25.933353], + [-11.937224, 23.374594], + [-12.874222, 23.284832], + [-13.118754, 22.77122], + [-12.929102, 21.327071], + [-16.845194, 21.333323], + [-17.063423, 20.999752], + [-17.020428, 21.42231], + [-17.002962, 21.420734], + [-14.750955, 21.5006], + [-14.630833, 21.86094], + [-14.221168, 22.310163], + [-13.89111, 23.691009], + [-12.500963, 24.770116], + [-12.030759, 26.030866], + [-11.71822, 26.104092], + [-11.392555, 26.883424], + [-10.551263, 26.990808], + [-10.189424, 26.860945], + [-9.735343, 26.860945], + [-9.413037, 27.088476], + [-8.794884, 27.120696] + ] + ] + }, + "id": "ESH" + }, + { + "type": "Feature", + "properties": { "name": "Saudi Arabia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.779332, 16.347891], + [42.649573, 16.774635], + [42.347989, 17.075806], + [42.270888, 17.474722], + [41.754382, 17.833046], + [41.221391, 18.6716], + [40.939341, 19.486485], + [40.247652, 20.174635], + [39.801685, 20.338862], + [39.139399, 21.291905], + [39.023696, 21.986875], + [39.066329, 22.579656], + [38.492772, 23.688451], + [38.02386, 24.078686], + [37.483635, 24.285495], + [37.154818, 24.858483], + [37.209491, 25.084542], + [36.931627, 25.602959], + [36.639604, 25.826228], + [36.249137, 26.570136], + [35.640182, 27.37652], + [35.130187, 28.063352], + [34.632336, 28.058546], + [34.787779, 28.607427], + [34.83222, 28.957483], + [34.956037, 29.356555], + [36.068941, 29.197495], + [36.501214, 29.505254], + [36.740528, 29.865283], + [37.503582, 30.003776], + [37.66812, 30.338665], + [37.998849, 30.5085], + [37.002166, 31.508413], + [39.004886, 32.010217], + [39.195468, 32.161009], + [40.399994, 31.889992], + [41.889981, 31.190009], + [44.709499, 29.178891], + [46.568713, 29.099025], + [47.459822, 29.002519], + [47.708851, 28.526063], + [48.416094, 28.552004], + [48.807595, 27.689628], + [49.299554, 27.461218], + [49.470914, 27.109999], + [50.152422, 26.689663], + [50.212935, 26.277027], + [50.113303, 25.943972], + [50.239859, 25.60805], + [50.527387, 25.327808], + [50.660557, 24.999896], + [50.810108, 24.754743], + [51.112415, 24.556331], + [51.389608, 24.627386], + [51.579519, 24.245497], + [51.617708, 24.014219], + [52.000733, 23.001154], + [55.006803, 22.496948], + [55.208341, 22.70833], + [55.666659, 22.000001], + [54.999982, 19.999994], + [52.00001, 19.000003], + [49.116672, 18.616668], + [48.183344, 18.166669], + [47.466695, 17.116682], + [47.000005, 16.949999], + [46.749994, 17.283338], + [46.366659, 17.233315], + [45.399999, 17.333335], + [45.216651, 17.433329], + [44.062613, 17.410359], + [43.791519, 17.319977], + [43.380794, 17.579987], + [43.115798, 17.08844], + [43.218375, 16.66689], + [42.779332, 16.347891] + ] + ] + }, + "id": "SAU" + }, + { + "type": "Feature", + "properties": { "name": "Sudan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.963393, 9.464285], + [33.824963, 9.484061], + [33.842131, 9.981915], + [33.721959, 10.325262], + [33.206938, 10.720112], + [33.086766, 11.441141], + [33.206938, 12.179338], + [32.743419, 12.248008], + [32.67475, 12.024832], + [32.073892, 11.97333], + [32.314235, 11.681484], + [32.400072, 11.080626], + [31.850716, 10.531271], + [31.352862, 9.810241], + [30.837841, 9.707237], + [29.996639, 10.290927], + [29.618957, 10.084919], + [29.515953, 9.793074], + [29.000932, 9.604232], + [28.966597, 9.398224], + [27.97089, 9.398224], + [27.833551, 9.604232], + [27.112521, 9.638567], + [26.752006, 9.466893], + [26.477328, 9.55273], + [25.962307, 10.136421], + [25.790633, 10.411099], + [25.069604, 10.27376], + [24.794926, 9.810241], + [24.537415, 8.917538], + [24.194068, 8.728696], + [23.88698, 8.61973], + [23.805813, 8.666319], + [23.459013, 8.954286], + [23.394779, 9.265068], + [23.55725, 9.681218], + [23.554304, 10.089255], + [22.977544, 10.714463], + [22.864165, 11.142395], + [22.87622, 11.38461], + [22.50869, 11.67936], + [22.49762, 12.26024], + [22.28801, 12.64605], + [21.93681, 12.58818], + [22.03759, 12.95546], + [22.29658, 13.37232], + [22.18329, 13.78648], + [22.51202, 14.09318], + [22.30351, 14.32682], + [22.56795, 14.94429], + [23.02459, 15.68072], + [23.88689, 15.61084], + [23.83766, 19.58047], + [23.85, 20], + [25, 20.00304], + [25, 22], + [29.02, 22], + [32.9, 22], + [36.86623, 22], + [37.18872, 21.01885], + [36.96941, 20.83744], + [37.1147, 19.80796], + [37.48179, 18.61409], + [37.86276, 18.36786], + [38.41009, 17.998307], + [37.904, 17.42754], + [37.16747, 17.26314], + [36.85253, 16.95655], + [36.75389, 16.29186], + [36.32322, 14.82249], + [36.42951, 14.42211], + [36.27022, 13.56333], + [35.86363, 12.57828], + [35.26049, 12.08286], + [34.83163, 11.31896], + [34.73115, 10.91017], + [34.25745, 10.63009], + [33.96162, 9.58358], + [33.963393, 9.464285] + ] + ] + }, + "id": "SDN" + }, + { + "type": "Feature", + "properties": { "name": "South Sudan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.963393, 9.464285], + [33.97498, 8.68456], + [33.8255, 8.37916], + [33.2948, 8.35458], + [32.95418, 7.78497], + [33.56829, 7.71334], + [34.0751, 7.22595], + [34.25032, 6.82607], + [34.70702, 6.59422], + [35.298007, 5.506], + [34.620196, 4.847123], + [34.005, 4.249885], + [33.39, 3.79], + [32.68642, 3.79232], + [31.88145, 3.55827], + [31.24556, 3.7819], + [30.83385, 3.50917], + [29.95349, 4.1737], + [29.715995, 4.600805], + [29.159078, 4.389267], + [28.696678, 4.455077], + [28.428994, 4.287155], + [27.979977, 4.408413], + [27.374226, 5.233944], + [27.213409, 5.550953], + [26.465909, 5.946717], + [26.213418, 6.546603], + [25.796648, 6.979316], + [25.124131, 7.500085], + [25.114932, 7.825104], + [24.567369, 8.229188], + [23.88698, 8.61973], + [24.194068, 8.728696], + [24.537415, 8.917538], + [24.794926, 9.810241], + [25.069604, 10.27376], + [25.790633, 10.411099], + [25.962307, 10.136421], + [26.477328, 9.55273], + [26.752006, 9.466893], + [27.112521, 9.638567], + [27.833551, 9.604232], + [27.97089, 9.398224], + [28.966597, 9.398224], + [29.000932, 9.604232], + [29.515953, 9.793074], + [29.618957, 10.084919], + [29.996639, 10.290927], + [30.837841, 9.707237], + [31.352862, 9.810241], + [31.850716, 10.531271], + [32.400072, 11.080626], + [32.314235, 11.681484], + [32.073892, 11.97333], + [32.67475, 12.024832], + [32.743419, 12.248008], + [33.206938, 12.179338], + [33.086766, 11.441141], + [33.206938, 10.720112], + [33.721959, 10.325262], + [33.842131, 9.981915], + [33.824963, 9.484061], + [33.963393, 9.464285] + ] + ] + }, + "id": "SSD" + }, + { + "type": "Feature", + "properties": { "name": "Senegal" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.713729, 13.594959], + [-17.126107, 14.373516], + [-17.625043, 14.729541], + [-17.185173, 14.919477], + [-16.700706, 15.621527], + [-16.463098, 16.135036], + [-16.12069, 16.455663], + [-15.623666, 16.369337], + [-15.135737, 16.587282], + [-14.577348, 16.598264], + [-14.099521, 16.304302], + [-13.435738, 16.039383], + [-12.830658, 15.303692], + [-12.17075, 14.616834], + [-12.124887, 13.994727], + [-11.927716, 13.422075], + [-11.553398, 13.141214], + [-11.467899, 12.754519], + [-11.513943, 12.442988], + [-11.658301, 12.386583], + [-12.203565, 12.465648], + [-12.278599, 12.35444], + [-12.499051, 12.33209], + [-13.217818, 12.575874], + [-13.700476, 12.586183], + [-15.548477, 12.62817], + [-15.816574, 12.515567], + [-16.147717, 12.547762], + [-16.677452, 12.384852], + [-16.841525, 13.151394], + [-15.931296, 13.130284], + [-15.691001, 13.270353], + [-15.511813, 13.27857], + [-15.141163, 13.509512], + [-14.712197, 13.298207], + [-14.277702, 13.280585], + [-13.844963, 13.505042], + [-14.046992, 13.794068], + [-14.376714, 13.62568], + [-14.687031, 13.630357], + [-15.081735, 13.876492], + [-15.39877, 13.860369], + [-15.624596, 13.623587], + [-16.713729, 13.594959] + ] + ] + }, + "id": "SEN" + }, + { + "type": "Feature", + "properties": { "name": "Solomon Islands" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [162.119025, -10.482719], + [162.398646, -10.826367], + [161.700032, -10.820011], + [161.319797, -10.204751], + [161.917383, -10.446701], + [162.119025, -10.482719] + ] + ], + [ + [ + [160.852229, -9.872937], + [160.462588, -9.89521], + [159.849447, -9.794027], + [159.640003, -9.63998], + [159.702945, -9.24295], + [160.362956, -9.400304], + [160.688518, -9.610162], + [160.852229, -9.872937] + ] + ], + [ + [ + [161.679982, -9.599982], + [161.529397, -9.784312], + [160.788253, -8.917543], + [160.579997, -8.320009], + [160.920028, -8.320009], + [161.280006, -9.120011], + [161.679982, -9.599982] + ] + ], + [ + [ + [159.875027, -8.33732], + [159.917402, -8.53829], + [159.133677, -8.114181], + [158.586114, -7.754824], + [158.21115, -7.421872], + [158.359978, -7.320018], + [158.820001, -7.560003], + [159.640003, -8.020027], + [159.875027, -8.33732] + ] + ], + [ + [ + [157.538426, -7.34782], + [157.33942, -7.404767], + [156.90203, -7.176874], + [156.491358, -6.765943], + [156.542828, -6.599338], + [157.14, -7.021638], + [157.538426, -7.34782] + ] + ] + ] + }, + "id": "SLB" + }, + { + "type": "Feature", + "properties": { "name": "Sierra Leone" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-11.438779, 6.785917], + [-11.708195, 6.860098], + [-12.428099, 7.262942], + [-12.949049, 7.798646], + [-13.124025, 8.163946], + [-13.24655, 8.903049], + [-12.711958, 9.342712], + [-12.596719, 9.620188], + [-12.425929, 9.835834], + [-12.150338, 9.858572], + [-11.917277, 10.046984], + [-11.117481, 10.045873], + [-10.839152, 9.688246], + [-10.622395, 9.26791], + [-10.65477, 8.977178], + [-10.494315, 8.715541], + [-10.505477, 8.348896], + [-10.230094, 8.406206], + [-10.695595, 7.939464], + [-11.146704, 7.396706], + [-11.199802, 7.105846], + [-11.438779, 6.785917] + ] + ] + }, + "id": "SLE" + }, + { + "type": "Feature", + "properties": { "name": "El Salvador" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-87.793111, 13.38448], + [-87.904112, 13.149017], + [-88.483302, 13.163951], + [-88.843228, 13.259734], + [-89.256743, 13.458533], + [-89.812394, 13.520622], + [-90.095555, 13.735338], + [-90.064678, 13.88197], + [-89.721934, 14.134228], + [-89.534219, 14.244816], + [-89.587343, 14.362586], + [-89.353326, 14.424133], + [-89.058512, 14.340029], + [-88.843073, 14.140507], + [-88.541231, 13.980155], + [-88.503998, 13.845486], + [-88.065343, 13.964626], + [-87.859515, 13.893312], + [-87.723503, 13.78505], + [-87.793111, 13.38448] + ] + ] + }, + "id": "SLV" + }, + { + "type": "Feature", + "properties": { "name": "Somaliland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [48.93813, 9.451749], + [48.486736, 8.837626], + [47.78942, 8.003], + [46.948328, 7.996877], + [43.67875, 9.18358], + [43.296975, 9.540477], + [42.92812, 10.02194], + [42.55876, 10.57258], + [42.776852, 10.926879], + [43.145305, 11.46204], + [43.47066, 11.27771], + [43.666668, 10.864169], + [44.117804, 10.445538], + [44.614259, 10.442205], + [45.556941, 10.698029], + [46.645401, 10.816549], + [47.525658, 11.127228], + [48.021596, 11.193064], + [48.378784, 11.375482], + [48.948206, 11.410622], + [48.942005, 11.394266], + [48.938491, 10.982327], + [48.938233, 9.9735], + [48.93813, 9.451749] + ] + ] + }, + "id": "-99" + }, + { + "type": "Feature", + "properties": { "name": "Somalia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [49.72862, 11.5789], + [50.25878, 11.67957], + [50.73202, 12.0219], + [51.1112, 12.02464], + [51.13387, 11.74815], + [51.04153, 11.16651], + [51.04531, 10.6409], + [50.83418, 10.27972], + [50.55239, 9.19874], + [50.07092, 8.08173], + [49.4527, 6.80466], + [48.59455, 5.33911], + [47.74079, 4.2194], + [46.56476, 2.85529], + [45.56399, 2.04576], + [44.06815, 1.05283], + [43.13597, 0.2922], + [42.04157, -0.91916], + [41.81095, -1.44647], + [41.58513, -1.68325], + [40.993, -0.85829], + [40.98105, 2.78452], + [41.855083, 3.918912], + [42.12861, 4.23413], + [42.76967, 4.25259], + [43.66087, 4.95755], + [44.9636, 5.00162], + [47.78942, 8.003], + [48.486736, 8.837626], + [48.93813, 9.451749], + [48.938233, 9.9735], + [48.938491, 10.982327], + [48.942005, 11.394266], + [48.948205, 11.410617], + [49.26776, 11.43033], + [49.72862, 11.5789] + ] + ] + }, + "id": "SOM" + }, + { + "type": "Feature", + "properties": { "name": "Republic of Serbia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.874313, 45.416375], + [21.483526, 45.18117], + [21.562023, 44.768947], + [22.145088, 44.478422], + [22.459022, 44.702517], + [22.705726, 44.578003], + [22.474008, 44.409228], + [22.65715, 44.234923], + [22.410446, 44.008063], + [22.500157, 43.642814], + [22.986019, 43.211161], + [22.604801, 42.898519], + [22.436595, 42.580321], + [22.545012, 42.461362], + [22.380526, 42.32026], + [21.91708, 42.30364], + [21.576636, 42.245224], + [21.54332, 42.32025], + [21.66292, 42.43922], + [21.77505, 42.6827], + [21.63302, 42.67717], + [21.43866, 42.86255], + [21.27421, 42.90959], + [21.143395, 43.068685], + [20.95651, 43.13094], + [20.81448, 43.27205], + [20.63508, 43.21671], + [20.49679, 42.88469], + [20.25758, 42.81275], + [20.3398, 42.89852], + [19.95857, 43.10604], + [19.63, 43.21378], + [19.48389, 43.35229], + [19.21852, 43.52384], + [19.454, 43.5681], + [19.59976, 44.03847], + [19.11761, 44.42307], + [19.36803, 44.863], + [19.00548, 44.86023], + [19.390476, 45.236516], + [19.072769, 45.521511], + [18.82982, 45.90888], + [19.596045, 46.17173], + [20.220192, 46.127469], + [20.762175, 45.734573], + [20.874313, 45.416375] + ] + ] + }, + "id": "SRB" + }, + { + "type": "Feature", + "properties": { "name": "Suriname" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.147436, 5.97315], + [-55.949318, 5.772878], + [-55.84178, 5.953125], + [-55.03325, 6.025291], + [-53.958045, 5.756548], + [-54.478633, 4.896756], + [-54.399542, 4.212611], + [-54.006931, 3.620038], + [-54.181726, 3.18978], + [-54.269705, 2.732392], + [-54.524754, 2.311849], + [-55.097587, 2.523748], + [-55.569755, 2.421506], + [-55.973322, 2.510364], + [-56.073342, 2.220795], + [-55.9056, 2.021996], + [-55.995698, 1.817667], + [-56.539386, 1.899523], + [-57.150098, 2.768927], + [-57.281433, 3.333492], + [-57.601569, 3.334655], + [-58.044694, 4.060864], + [-57.86021, 4.576801], + [-57.914289, 4.812626], + [-57.307246, 5.073567], + [-57.147436, 5.97315] + ] + ] + }, + "id": "SUR" + }, + { + "type": "Feature", + "properties": { "name": "Slovakia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [18.853144, 49.49623], + [18.909575, 49.435846], + [19.320713, 49.571574], + [19.825023, 49.217125], + [20.415839, 49.431453], + [20.887955, 49.328772], + [21.607808, 49.470107], + [22.558138, 49.085738], + [22.280842, 48.825392], + [22.085608, 48.422264], + [21.872236, 48.319971], + [20.801294, 48.623854], + [20.473562, 48.56285], + [20.239054, 48.327567], + [19.769471, 48.202691], + [19.661364, 48.266615], + [19.174365, 48.111379], + [18.777025, 48.081768], + [18.696513, 47.880954], + [17.857133, 47.758429], + [17.488473, 47.867466], + [16.979667, 48.123497], + [16.879983, 48.470013], + [16.960288, 48.596982], + [17.101985, 48.816969], + [17.545007, 48.800019], + [17.886485, 48.903475], + [17.913512, 48.996493], + [18.104973, 49.043983], + [18.170498, 49.271515], + [18.399994, 49.315001], + [18.554971, 49.495015], + [18.853144, 49.49623] + ] + ] + }, + "id": "SVK" + }, + { + "type": "Feature", + "properties": { "name": "Slovenia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.806475, 46.509306], + [14.632472, 46.431817], + [15.137092, 46.658703], + [16.011664, 46.683611], + [16.202298, 46.852386], + [16.370505, 46.841327], + [16.564808, 46.503751], + [15.768733, 46.238108], + [15.67153, 45.834154], + [15.323954, 45.731783], + [15.327675, 45.452316], + [14.935244, 45.471695], + [14.595109, 45.634941], + [14.411968, 45.466166], + [13.71506, 45.500324], + [13.93763, 45.591016], + [13.69811, 46.016778], + [13.806475, 46.509306] + ] + ] + }, + "id": "SVN" + }, + { + "type": "Feature", + "properties": { "name": "Sweden" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.183173, 65.723741], + [21.213517, 65.026005], + [21.369631, 64.413588], + [19.778876, 63.609554], + [17.847779, 62.7494], + [17.119555, 61.341166], + [17.831346, 60.636583], + [18.787722, 60.081914], + [17.869225, 58.953766], + [16.829185, 58.719827], + [16.44771, 57.041118], + [15.879786, 56.104302], + [14.666681, 56.200885], + [14.100721, 55.407781], + [12.942911, 55.361737], + [12.625101, 56.30708], + [11.787942, 57.441817], + [11.027369, 58.856149], + [11.468272, 59.432393], + [12.300366, 60.117933], + [12.631147, 61.293572], + [11.992064, 61.800362], + [11.930569, 63.128318], + [12.579935, 64.066219], + [13.571916, 64.049114], + [13.919905, 64.445421], + [13.55569, 64.787028], + [15.108411, 66.193867], + [16.108712, 67.302456], + [16.768879, 68.013937], + [17.729182, 68.010552], + [17.993868, 68.567391], + [19.87856, 68.407194], + [20.025269, 69.065139], + [20.645593, 69.106247], + [21.978535, 68.616846], + [23.539473, 67.936009], + [23.56588, 66.396051], + [23.903379, 66.006927], + [22.183173, 65.723741] + ] + ] + }, + "id": "SWE" + }, + { + "type": "Feature", + "properties": { "name": "Swaziland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [32.071665, -26.73382], + [31.86806, -27.177927], + [31.282773, -27.285879], + [30.685962, -26.743845], + [30.676609, -26.398078], + [30.949667, -26.022649], + [31.04408, -25.731452], + [31.333158, -25.660191], + [31.837778, -25.843332], + [31.985779, -26.29178], + [32.071665, -26.73382] + ] + ] + }, + "id": "SWZ" + }, + { + "type": "Feature", + "properties": { "name": "Syria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [38.792341, 33.378686], + [36.834062, 32.312938], + [35.719918, 32.709192], + [35.700798, 32.716014], + [35.836397, 32.868123], + [35.821101, 33.277426], + [36.06646, 33.824912], + [36.61175, 34.201789], + [36.448194, 34.593935], + [35.998403, 34.644914], + [35.905023, 35.410009], + [36.149763, 35.821535], + [36.41755, 36.040617], + [36.685389, 36.259699], + [36.739494, 36.81752], + [37.066761, 36.623036], + [38.167727, 36.90121], + [38.699891, 36.712927], + [39.52258, 36.716054], + [40.673259, 37.091276], + [41.212089, 37.074352], + [42.349591, 37.229873], + [41.837064, 36.605854], + [41.289707, 36.358815], + [41.383965, 35.628317], + [41.006159, 34.419372], + [38.792341, 33.378686] + ] + ] + }, + "id": "SYR" + }, + { + "type": "Feature", + "properties": { "name": "Chad" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.495787, 12.859396], + [14.595781, 13.330427], + [13.954477, 13.353449], + [13.956699, 13.996691], + [13.540394, 14.367134], + [13.97217, 15.68437], + [15.247731, 16.627306], + [15.300441, 17.92795], + [15.685741, 19.95718], + [15.903247, 20.387619], + [15.487148, 20.730415], + [15.47106, 21.04845], + [15.096888, 21.308519], + [14.8513, 22.86295], + [15.86085, 23.40972], + [19.84926, 21.49509], + [23.83766, 19.58047], + [23.88689, 15.61084], + [23.02459, 15.68072], + [22.56795, 14.94429], + [22.30351, 14.32682], + [22.51202, 14.09318], + [22.18329, 13.78648], + [22.29658, 13.37232], + [22.03759, 12.95546], + [21.93681, 12.58818], + [22.28801, 12.64605], + [22.49762, 12.26024], + [22.50869, 11.67936], + [22.87622, 11.38461], + [22.864165, 11.142395], + [22.231129, 10.971889], + [21.723822, 10.567056], + [21.000868, 9.475985], + [20.059685, 9.012706], + [19.094008, 9.074847], + [18.81201, 8.982915], + [18.911022, 8.630895], + [18.389555, 8.281304], + [17.96493, 7.890914], + [16.705988, 7.508328], + [16.456185, 7.734774], + [16.290562, 7.754307], + [16.106232, 7.497088], + [15.27946, 7.421925], + [15.436092, 7.692812], + [15.120866, 8.38215], + [14.979996, 8.796104], + [14.544467, 8.965861], + [13.954218, 9.549495], + [14.171466, 10.021378], + [14.627201, 9.920919], + [14.909354, 9.992129], + [15.467873, 9.982337], + [14.923565, 10.891325], + [14.960152, 11.555574], + [14.89336, 12.21905], + [14.495787, 12.859396] + ] + ] + }, + "id": "TCD" + }, + { + "type": "Feature", + "properties": { "name": "Togo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [1.865241, 6.142158], + [1.060122, 5.928837], + [0.836931, 6.279979], + [0.570384, 6.914359], + [0.490957, 7.411744], + [0.712029, 8.312465], + [0.461192, 8.677223], + [0.365901, 9.465004], + [0.36758, 10.191213], + [-0.049785, 10.706918], + [0.023803, 11.018682], + [0.899563, 10.997339], + [0.772336, 10.470808], + [1.077795, 10.175607], + [1.425061, 9.825395], + [1.463043, 9.334624], + [1.664478, 9.12859], + [1.618951, 6.832038], + [1.865241, 6.142158] + ] + ] + }, + "id": "TGO" + }, + { + "type": "Feature", + "properties": { "name": "Thailand" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [102.584932, 12.186595], + [101.687158, 12.64574], + [100.83181, 12.627085], + [100.978467, 13.412722], + [100.097797, 13.406856], + [100.018733, 12.307001], + [99.478921, 10.846367], + [99.153772, 9.963061], + [99.222399, 9.239255], + [99.873832, 9.207862], + [100.279647, 8.295153], + [100.459274, 7.429573], + [101.017328, 6.856869], + [101.623079, 6.740622], + [102.141187, 6.221636], + [101.814282, 5.810808], + [101.154219, 5.691384], + [101.075516, 6.204867], + [100.259596, 6.642825], + [100.085757, 6.464489], + [99.690691, 6.848213], + [99.519642, 7.343454], + [98.988253, 7.907993], + [98.503786, 8.382305], + [98.339662, 7.794512], + [98.150009, 8.350007], + [98.25915, 8.973923], + [98.553551, 9.93296], + [99.038121, 10.960546], + [99.587286, 11.892763], + [99.196354, 12.804748], + [99.212012, 13.269294], + [99.097755, 13.827503], + [98.430819, 14.622028], + [98.192074, 15.123703], + [98.537376, 15.308497], + [98.903348, 16.177824], + [98.493761, 16.837836], + [97.859123, 17.567946], + [97.375896, 18.445438], + [97.797783, 18.62708], + [98.253724, 19.708203], + [98.959676, 19.752981], + [99.543309, 20.186598], + [100.115988, 20.41785], + [100.548881, 20.109238], + [100.606294, 19.508344], + [101.282015, 19.462585], + [101.035931, 18.408928], + [101.059548, 17.512497], + [102.113592, 18.109102], + [102.413005, 17.932782], + [102.998706, 17.961695], + [103.200192, 18.309632], + [103.956477, 18.240954], + [104.716947, 17.428859], + [104.779321, 16.441865], + [105.589039, 15.570316], + [105.544338, 14.723934], + [105.218777, 14.273212], + [104.281418, 14.416743], + [102.988422, 14.225721], + [102.348099, 13.394247], + [102.584932, 12.186595] + ] + ] + }, + "id": "THA" + }, + { + "type": "Feature", + "properties": { "name": "Tajikistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [71.014198, 40.244366], + [70.648019, 39.935754], + [69.55961, 40.103211], + [69.464887, 39.526683], + [70.549162, 39.604198], + [71.784694, 39.279463], + [73.675379, 39.431237], + [73.928852, 38.505815], + [74.257514, 38.606507], + [74.864816, 38.378846], + [74.829986, 37.990007], + [74.980002, 37.41999], + [73.948696, 37.421566], + [73.260056, 37.495257], + [72.63689, 37.047558], + [72.193041, 36.948288], + [71.844638, 36.738171], + [71.448693, 37.065645], + [71.541918, 37.905774], + [71.239404, 37.953265], + [71.348131, 38.258905], + [70.806821, 38.486282], + [70.376304, 38.138396], + [70.270574, 37.735165], + [70.116578, 37.588223], + [69.518785, 37.608997], + [69.196273, 37.151144], + [68.859446, 37.344336], + [68.135562, 37.023115], + [67.83, 37.144994], + [68.392033, 38.157025], + [68.176025, 38.901553], + [67.44222, 39.140144], + [67.701429, 39.580478], + [68.536416, 39.533453], + [69.011633, 40.086158], + [69.329495, 40.727824], + [70.666622, 40.960213], + [70.45816, 40.496495], + [70.601407, 40.218527], + [71.014198, 40.244366] + ] + ] + }, + "id": "TJK" + }, + { + "type": "Feature", + "properties": { "name": "Turkmenistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [61.210817, 35.650072], + [61.123071, 36.491597], + [60.377638, 36.527383], + [59.234762, 37.412988], + [58.436154, 37.522309], + [57.330434, 38.029229], + [56.619366, 38.121394], + [56.180375, 37.935127], + [55.511578, 37.964117], + [54.800304, 37.392421], + [53.921598, 37.198918], + [53.735511, 37.906136], + [53.880929, 38.952093], + [53.101028, 39.290574], + [53.357808, 39.975286], + [52.693973, 40.033629], + [52.915251, 40.876523], + [53.858139, 40.631034], + [54.736845, 40.951015], + [54.008311, 41.551211], + [53.721713, 42.123191], + [52.91675, 41.868117], + [52.814689, 41.135371], + [52.50246, 41.783316], + [52.944293, 42.116034], + [54.079418, 42.324109], + [54.755345, 42.043971], + [55.455251, 41.259859], + [55.968191, 41.308642], + [57.096391, 41.32231], + [56.932215, 41.826026], + [57.78653, 42.170553], + [58.629011, 42.751551], + [59.976422, 42.223082], + [60.083341, 41.425146], + [60.465953, 41.220327], + [61.547179, 41.26637], + [61.882714, 41.084857], + [62.37426, 40.053886], + [63.518015, 39.363257], + [64.170223, 38.892407], + [65.215999, 38.402695], + [66.54615, 37.974685], + [66.518607, 37.362784], + [66.217385, 37.39379], + [65.745631, 37.661164], + [65.588948, 37.305217], + [64.746105, 37.111818], + [64.546479, 36.312073], + [63.982896, 36.007957], + [63.193538, 35.857166], + [62.984662, 35.404041], + [62.230651, 35.270664], + [61.210817, 35.650072] + ] + ] + }, + "id": "TKM" + }, + { + "type": "Feature", + "properties": { "name": "East Timor" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [124.968682, -8.89279], + [125.086246, -8.656887], + [125.947072, -8.432095], + [126.644704, -8.398247], + [126.957243, -8.273345], + [127.335928, -8.397317], + [126.967992, -8.668256], + [125.925885, -9.106007], + [125.08852, -9.393173], + [125.07002, -9.089987], + [124.968682, -8.89279] + ] + ] + }, + "id": "TLS" + }, + { + "type": "Feature", + "properties": { "name": "Trinidad and Tobago" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.68, 10.76], + [-61.105, 10.89], + [-60.895, 10.855], + [-60.935, 10.11], + [-61.77, 10], + [-61.95, 10.09], + [-61.66, 10.365], + [-61.68, 10.76] + ] + ] + }, + "id": "TTO" + }, + { + "type": "Feature", + "properties": { "name": "Tunisia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.48214, 30.307556], + [9.055603, 32.102692], + [8.439103, 32.506285], + [8.430473, 32.748337], + [7.612642, 33.344115], + [7.524482, 34.097376], + [8.140981, 34.655146], + [8.376368, 35.479876], + [8.217824, 36.433177], + [8.420964, 36.946427], + [9.509994, 37.349994], + [10.210002, 37.230002], + [10.18065, 36.724038], + [11.028867, 37.092103], + [11.100026, 36.899996], + [10.600005, 36.41], + [10.593287, 35.947444], + [10.939519, 35.698984], + [10.807847, 34.833507], + [10.149593, 34.330773], + [10.339659, 33.785742], + [10.856836, 33.76874], + [11.108501, 33.293343], + [11.488787, 33.136996], + [11.432253, 32.368903], + [10.94479, 32.081815], + [10.636901, 31.761421], + [9.950225, 31.37607], + [10.056575, 30.961831], + [9.970017, 30.539325], + [9.48214, 30.307556] + ] + ] + }, + "id": "TUN" + }, + { + "type": "Feature", + "properties": { "name": "Turkey" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [36.913127, 41.335358], + [38.347665, 40.948586], + [39.512607, 41.102763], + [40.373433, 41.013673], + [41.554084, 41.535656], + [42.619549, 41.583173], + [43.582746, 41.092143], + [43.752658, 40.740201], + [43.656436, 40.253564], + [44.400009, 40.005], + [44.79399, 39.713003], + [44.109225, 39.428136], + [44.421403, 38.281281], + [44.225756, 37.971584], + [44.772699, 37.170445], + [44.293452, 37.001514], + [43.942259, 37.256228], + [42.779126, 37.385264], + [42.349591, 37.229873], + [41.212089, 37.074352], + [40.673259, 37.091276], + [39.52258, 36.716054], + [38.699891, 36.712927], + [38.167727, 36.90121], + [37.066761, 36.623036], + [36.739494, 36.81752], + [36.685389, 36.259699], + [36.41755, 36.040617], + [36.149763, 35.821535], + [35.782085, 36.274995], + [36.160822, 36.650606], + [35.550936, 36.565443], + [34.714553, 36.795532], + [34.026895, 36.21996], + [32.509158, 36.107564], + [31.699595, 36.644275], + [30.621625, 36.677865], + [30.391096, 36.262981], + [29.699976, 36.144357], + [28.732903, 36.676831], + [27.641187, 36.658822], + [27.048768, 37.653361], + [26.318218, 38.208133], + [26.8047, 38.98576], + [26.170785, 39.463612], + [27.28002, 40.420014], + [28.819978, 40.460011], + [29.240004, 41.219991], + [31.145934, 41.087622], + [32.347979, 41.736264], + [33.513283, 42.01896], + [35.167704, 42.040225], + [36.913127, 41.335358] + ] + ], + [ + [ + [27.192377, 40.690566], + [26.358009, 40.151994], + [26.043351, 40.617754], + [26.056942, 40.824123], + [26.294602, 40.936261], + [26.604196, 41.562115], + [26.117042, 41.826905], + [27.135739, 42.141485], + [27.99672, 42.007359], + [28.115525, 41.622886], + [28.988443, 41.299934], + [28.806438, 41.054962], + [27.619017, 40.999823], + [27.192377, 40.690566] + ] + ] + ] + }, + "id": "TUR" + }, + { + "type": "Feature", + "properties": { "name": "Taiwan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [121.777818, 24.394274], + [121.175632, 22.790857], + [120.74708, 21.970571], + [120.220083, 22.814861], + [120.106189, 23.556263], + [120.69468, 24.538451], + [121.495044, 25.295459], + [121.951244, 24.997596], + [121.777818, 24.394274] + ] + ] + }, + "id": "TWN" + }, + { + "type": "Feature", + "properties": { "name": "United Republic of Tanzania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.903711, -0.95], + [34.07262, -1.05982], + [37.69869, -3.09699], + [37.7669, -3.67712], + [39.20222, -4.67677], + [38.74054, -5.90895], + [38.79977, -6.47566], + [39.44, -6.84], + [39.47, -7.1], + [39.19469, -7.7039], + [39.25203, -8.00781], + [39.18652, -8.48551], + [39.53574, -9.11237], + [39.9496, -10.0984], + [40.31659, -10.3171], + [39.521, -10.89688], + [38.427557, -11.285202], + [37.82764, -11.26879], + [37.47129, -11.56876], + [36.775151, -11.594537], + [36.514082, -11.720938], + [35.312398, -11.439146], + [34.559989, -11.52002], + [34.28, -10.16], + [33.940838, -9.693674], + [33.73972, -9.41715], + [32.759375, -9.230599], + [32.191865, -8.930359], + [31.556348, -8.762049], + [31.157751, -8.594579], + [30.74, -8.34], + [30.2, -7.08], + [29.62, -6.52], + [29.419993, -5.939999], + [29.519987, -5.419979], + [29.339998, -4.499983], + [29.753512, -4.452389], + [30.11632, -4.09012], + [30.50554, -3.56858], + [30.75224, -3.35931], + [30.74301, -3.03431], + [30.52766, -2.80762], + [30.46967, -2.41383], + [30.758309, -2.28725], + [30.816135, -1.698914], + [30.419105, -1.134659], + [30.76986, -1.01455], + [31.86617, -1.02736], + [33.903711, -0.95] + ] + ] + }, + "id": "TZA" + }, + { + "type": "Feature", + "properties": { "name": "Uganda" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.86617, -1.02736], + [30.76986, -1.01455], + [30.419105, -1.134659], + [29.821519, -1.443322], + [29.579466, -1.341313], + [29.587838, -0.587406], + [29.8195, -0.2053], + [29.875779, 0.59738], + [30.086154, 1.062313], + [30.468508, 1.583805], + [30.85267, 1.849396], + [31.174149, 2.204465], + [30.77332, 2.33989], + [30.83385, 3.50917], + [31.24556, 3.7819], + [31.88145, 3.55827], + [32.68642, 3.79232], + [33.39, 3.79], + [34.005, 4.249885], + [34.47913, 3.5556], + [34.59607, 3.05374], + [35.03599, 1.90584], + [34.6721, 1.17694], + [34.18, 0.515], + [33.893569, 0.109814], + [33.903711, -0.95], + [31.86617, -1.02736] + ] + ] + }, + "id": "UGA" + }, + { + "type": "Feature", + "properties": { "name": "Ukraine" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.785998, 52.101678], + [32.159412, 52.061267], + [32.412058, 52.288695], + [32.715761, 52.238465], + [33.7527, 52.335075], + [34.391731, 51.768882], + [34.141978, 51.566413], + [34.224816, 51.255993], + [35.022183, 51.207572], + [35.377924, 50.773955], + [35.356116, 50.577197], + [36.626168, 50.225591], + [37.39346, 50.383953], + [38.010631, 49.915662], + [38.594988, 49.926462], + [40.069058, 49.601055], + [40.080789, 49.30743], + [39.674664, 48.783818], + [39.895632, 48.232405], + [39.738278, 47.898937], + [38.770585, 47.825608], + [38.255112, 47.5464], + [38.223538, 47.10219], + [37.425137, 47.022221], + [36.759855, 46.6987], + [35.823685, 46.645964], + [34.962342, 46.273197], + [35.020788, 45.651219], + [35.510009, 45.409993], + [36.529998, 45.46999], + [36.334713, 45.113216], + [35.239999, 44.939996], + [33.882511, 44.361479], + [33.326421, 44.564877], + [33.546924, 45.034771], + [32.454174, 45.327466], + [32.630804, 45.519186], + [33.588162, 45.851569], + [33.298567, 46.080598], + [31.74414, 46.333348], + [31.675307, 46.706245], + [30.748749, 46.5831], + [30.377609, 46.03241], + [29.603289, 45.293308], + [29.149725, 45.464925], + [28.679779, 45.304031], + [28.233554, 45.488283], + [28.485269, 45.596907], + [28.659987, 45.939987], + [28.933717, 46.25883], + [28.862972, 46.437889], + [29.072107, 46.517678], + [29.170654, 46.379262], + [29.759972, 46.349988], + [30.024659, 46.423937], + [29.83821, 46.525326], + [29.908852, 46.674361], + [29.559674, 46.928583], + [29.415135, 47.346645], + [29.050868, 47.510227], + [29.122698, 47.849095], + [28.670891, 48.118149], + [28.259547, 48.155562], + [27.522537, 48.467119], + [26.857824, 48.368211], + [26.619337, 48.220726], + [26.19745, 48.220881], + [25.945941, 47.987149], + [25.207743, 47.891056], + [24.866317, 47.737526], + [24.402056, 47.981878], + [23.760958, 47.985598], + [23.142236, 48.096341], + [22.710531, 47.882194], + [22.64082, 48.15024], + [22.085608, 48.422264], + [22.280842, 48.825392], + [22.558138, 49.085738], + [22.776419, 49.027395], + [22.51845, 49.476774], + [23.426508, 50.308506], + [23.922757, 50.424881], + [24.029986, 50.705407], + [23.527071, 51.578454], + [24.005078, 51.617444], + [24.553106, 51.888461], + [25.327788, 51.910656], + [26.337959, 51.832289], + [27.454066, 51.592303], + [28.241615, 51.572227], + [28.617613, 51.427714], + [28.992835, 51.602044], + [29.254938, 51.368234], + [30.157364, 51.416138], + [30.555117, 51.319503], + [30.619454, 51.822806], + [30.927549, 52.042353], + [31.785998, 52.101678] + ] + ] + }, + "id": "UKR" + }, + { + "type": "Feature", + "properties": { "name": "Uruguay" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.625133, -30.216295], + [-56.976026, -30.109686], + [-55.973245, -30.883076], + [-55.60151, -30.853879], + [-54.572452, -31.494511], + [-53.787952, -32.047243], + [-53.209589, -32.727666], + [-53.650544, -33.202004], + [-53.373662, -33.768378], + [-53.806426, -34.396815], + [-54.935866, -34.952647], + [-55.67409, -34.752659], + [-56.215297, -34.859836], + [-57.139685, -34.430456], + [-57.817861, -34.462547], + [-58.427074, -33.909454], + [-58.349611, -33.263189], + [-58.132648, -33.040567], + [-58.14244, -32.044504], + [-57.874937, -31.016556], + [-57.625133, -30.216295] + ] + ] + }, + "id": "URY" + }, + { + "type": "Feature", + "properties": { "name": "United States of America" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-155.54211, 19.08348], + [-155.68817, 18.91619], + [-155.93665, 19.05939], + [-155.90806, 19.33888], + [-156.07347, 19.70294], + [-156.02368, 19.81422], + [-155.85008, 19.97729], + [-155.91907, 20.17395], + [-155.86108, 20.26721], + [-155.78505, 20.2487], + [-155.40214, 20.07975], + [-155.22452, 19.99302], + [-155.06226, 19.8591], + [-154.80741, 19.50871], + [-154.83147, 19.45328], + [-155.22217, 19.23972], + [-155.54211, 19.08348] + ] + ], + [ + [ + [-156.07926, 20.64397], + [-156.41445, 20.57241], + [-156.58673, 20.783], + [-156.70167, 20.8643], + [-156.71055, 20.92676], + [-156.61258, 21.01249], + [-156.25711, 20.91745], + [-155.99566, 20.76404], + [-156.07926, 20.64397] + ] + ], + [ + [ + [-156.75824, 21.17684], + [-156.78933, 21.06873], + [-157.32521, 21.09777], + [-157.25027, 21.21958], + [-156.75824, 21.17684] + ] + ], + [ + [ + [-157.65283, 21.32217], + [-157.70703, 21.26442], + [-157.7786, 21.27729], + [-158.12667, 21.31244], + [-158.2538, 21.53919], + [-158.29265, 21.57912], + [-158.0252, 21.71696], + [-157.94161, 21.65272], + [-157.65283, 21.32217] + ] + ], + [ + [ + [-159.34512, 21.982], + [-159.46372, 21.88299], + [-159.80051, 22.06533], + [-159.74877, 22.1382], + [-159.5962, 22.23618], + [-159.36569, 22.21494], + [-159.34512, 21.982] + ] + ], + [ + [ + [-94.81758, 49.38905], + [-94.64, 48.84], + [-94.32914, 48.67074], + [-93.63087, 48.60926], + [-92.61, 48.45], + [-91.64, 48.14], + [-90.83, 48.27], + [-89.6, 48.01], + [-89.272917, 48.019808], + [-88.378114, 48.302918], + [-87.439793, 47.94], + [-86.461991, 47.553338], + [-85.652363, 47.220219], + [-84.87608, 46.900083], + [-84.779238, 46.637102], + [-84.543749, 46.538684], + [-84.6049, 46.4396], + [-84.3367, 46.40877], + [-84.14212, 46.512226], + [-84.091851, 46.275419], + [-83.890765, 46.116927], + [-83.616131, 46.116927], + [-83.469551, 45.994686], + [-83.592851, 45.816894], + [-82.550925, 45.347517], + [-82.337763, 44.44], + [-82.137642, 43.571088], + [-82.43, 42.98], + [-82.9, 42.43], + [-83.12, 42.08], + [-83.142, 41.975681], + [-83.02981, 41.832796], + [-82.690089, 41.675105], + [-82.439278, 41.675105], + [-81.277747, 42.209026], + [-80.247448, 42.3662], + [-78.939362, 42.863611], + [-78.92, 42.965], + [-79.01, 43.27], + [-79.171674, 43.466339], + [-78.72028, 43.625089], + [-77.737885, 43.629056], + [-76.820034, 43.628784], + [-76.5, 44.018459], + [-76.375, 44.09631], + [-75.31821, 44.81645], + [-74.867, 45.00048], + [-73.34783, 45.00738], + [-71.50506, 45.0082], + [-71.405, 45.255], + [-71.08482, 45.30524], + [-70.66, 45.46], + [-70.305, 45.915], + [-69.99997, 46.69307], + [-69.237216, 47.447781], + [-68.905, 47.185], + [-68.23444, 47.35486], + [-67.79046, 47.06636], + [-67.79134, 45.70281], + [-67.13741, 45.13753], + [-66.96466, 44.8097], + [-68.03252, 44.3252], + [-69.06, 43.98], + [-70.11617, 43.68405], + [-70.645476, 43.090238], + [-70.81489, 42.8653], + [-70.825, 42.335], + [-70.495, 41.805], + [-70.08, 41.78], + [-70.185, 42.145], + [-69.88497, 41.92283], + [-69.96503, 41.63717], + [-70.64, 41.475], + [-71.12039, 41.49445], + [-71.86, 41.32], + [-72.295, 41.27], + [-72.87643, 41.22065], + [-73.71, 40.931102], + [-72.24126, 41.11948], + [-71.945, 40.93], + [-73.345, 40.63], + [-73.982, 40.628], + [-73.952325, 40.75075], + [-74.25671, 40.47351], + [-73.96244, 40.42763], + [-74.17838, 39.70926], + [-74.90604, 38.93954], + [-74.98041, 39.1964], + [-75.20002, 39.24845], + [-75.52805, 39.4985], + [-75.32, 38.96], + [-75.071835, 38.782032], + [-75.05673, 38.40412], + [-75.37747, 38.01551], + [-75.94023, 37.21689], + [-76.03127, 37.2566], + [-75.72205, 37.93705], + [-76.23287, 38.319215], + [-76.35, 39.15], + [-76.542725, 38.717615], + [-76.32933, 38.08326], + [-76.989998, 38.239992], + [-76.30162, 37.917945], + [-76.25874, 36.9664], + [-75.9718, 36.89726], + [-75.86804, 36.55125], + [-75.72749, 35.55074], + [-76.36318, 34.80854], + [-77.397635, 34.51201], + [-78.05496, 33.92547], + [-78.55435, 33.86133], + [-79.06067, 33.49395], + [-79.20357, 33.15839], + [-80.301325, 32.509355], + [-80.86498, 32.0333], + [-81.33629, 31.44049], + [-81.49042, 30.72999], + [-81.31371, 30.03552], + [-80.98, 29.18], + [-80.535585, 28.47213], + [-80.53, 28.04], + [-80.056539, 26.88], + [-80.088015, 26.205765], + [-80.13156, 25.816775], + [-80.38103, 25.20616], + [-80.68, 25.08], + [-81.17213, 25.20126], + [-81.33, 25.64], + [-81.71, 25.87], + [-82.24, 26.73], + [-82.70515, 27.49504], + [-82.85526, 27.88624], + [-82.65, 28.55], + [-82.93, 29.1], + [-83.70959, 29.93656], + [-84.1, 30.09], + [-85.10882, 29.63615], + [-85.28784, 29.68612], + [-85.7731, 30.15261], + [-86.4, 30.4], + [-87.53036, 30.27433], + [-88.41782, 30.3849], + [-89.18049, 30.31598], + [-89.593831, 30.159994], + [-89.413735, 29.89419], + [-89.43, 29.48864], + [-89.21767, 29.29108], + [-89.40823, 29.15961], + [-89.77928, 29.30714], + [-90.15463, 29.11743], + [-90.880225, 29.148535], + [-91.626785, 29.677], + [-92.49906, 29.5523], + [-93.22637, 29.78375], + [-93.84842, 29.71363], + [-94.69, 29.48], + [-95.60026, 28.73863], + [-96.59404, 28.30748], + [-97.14, 27.83], + [-97.37, 27.38], + [-97.38, 26.69], + [-97.33, 26.21], + [-97.14, 25.87], + [-97.53, 25.84], + [-98.24, 26.06], + [-99.02, 26.37], + [-99.3, 26.84], + [-99.52, 27.54], + [-100.11, 28.11], + [-100.45584, 28.69612], + [-100.9576, 29.38071], + [-101.6624, 29.7793], + [-102.48, 29.76], + [-103.11, 28.97], + [-103.94, 29.27], + [-104.45697, 29.57196], + [-104.70575, 30.12173], + [-105.03737, 30.64402], + [-105.63159, 31.08383], + [-106.1429, 31.39995], + [-106.50759, 31.75452], + [-108.24, 31.754854], + [-108.24194, 31.34222], + [-109.035, 31.34194], + [-111.02361, 31.33472], + [-113.30498, 32.03914], + [-114.815, 32.52528], + [-114.72139, 32.72083], + [-115.99135, 32.61239], + [-117.12776, 32.53534], + [-117.295938, 33.046225], + [-117.944, 33.621236], + [-118.410602, 33.740909], + [-118.519895, 34.027782], + [-119.081, 34.078], + [-119.438841, 34.348477], + [-120.36778, 34.44711], + [-120.62286, 34.60855], + [-120.74433, 35.15686], + [-121.71457, 36.16153], + [-122.54747, 37.55176], + [-122.51201, 37.78339], + [-122.95319, 38.11371], + [-123.7272, 38.95166], + [-123.86517, 39.76699], + [-124.39807, 40.3132], + [-124.17886, 41.14202], + [-124.2137, 41.99964], + [-124.53284, 42.76599], + [-124.14214, 43.70838], + [-124.020535, 44.615895], + [-123.89893, 45.52341], + [-124.079635, 46.86475], + [-124.39567, 47.72017], + [-124.68721, 48.184433], + [-124.566101, 48.379715], + [-123.12, 48.04], + [-122.58736, 47.096], + [-122.34, 47.36], + [-122.5, 48.18], + [-122.84, 49], + [-120, 49], + [-117.03121, 49], + [-116.04818, 49], + [-113, 49], + [-110.05, 49], + [-107.05, 49], + [-104.04826, 48.99986], + [-100.65, 49], + [-97.22872, 49.0007], + [-95.15907, 49], + [-95.15609, 49.38425], + [-94.81758, 49.38905] + ] + ], + [ + [ + [-153.006314, 57.115842], + [-154.00509, 56.734677], + [-154.516403, 56.992749], + [-154.670993, 57.461196], + [-153.76278, 57.816575], + [-153.228729, 57.968968], + [-152.564791, 57.901427], + [-152.141147, 57.591059], + [-153.006314, 57.115842] + ] + ], + [ + [ + [-165.579164, 59.909987], + [-166.19277, 59.754441], + [-166.848337, 59.941406], + [-167.455277, 60.213069], + [-166.467792, 60.38417], + [-165.67443, 60.293607], + [-165.579164, 59.909987] + ] + ], + [ + [ + [-171.731657, 63.782515], + [-171.114434, 63.592191], + [-170.491112, 63.694975], + [-169.682505, 63.431116], + [-168.689439, 63.297506], + [-168.771941, 63.188598], + [-169.52944, 62.976931], + [-170.290556, 63.194438], + [-170.671386, 63.375822], + [-171.553063, 63.317789], + [-171.791111, 63.405846], + [-171.731657, 63.782515] + ] + ], + [ + [ + [-155.06779, 71.147776], + [-154.344165, 70.696409], + [-153.900006, 70.889989], + [-152.210006, 70.829992], + [-152.270002, 70.600006], + [-150.739992, 70.430017], + [-149.720003, 70.53001], + [-147.613362, 70.214035], + [-145.68999, 70.12001], + [-144.920011, 69.989992], + [-143.589446, 70.152514], + [-142.07251, 69.851938], + [-140.985988, 69.711998], + [-140.985988, 69.711998], + [-140.992499, 66.000029], + [-140.99777, 60.306397], + [-140.012998, 60.276838], + [-139.039, 60.000007], + [-138.34089, 59.56211], + [-137.4525, 58.905], + [-136.47972, 59.46389], + [-135.47583, 59.78778], + [-134.945, 59.27056], + [-134.27111, 58.86111], + [-133.355549, 58.410285], + [-132.73042, 57.69289], + [-131.70781, 56.55212], + [-130.00778, 55.91583], + [-129.979994, 55.284998], + [-130.53611, 54.802753], + [-131.085818, 55.178906], + [-131.967211, 55.497776], + [-132.250011, 56.369996], + [-133.539181, 57.178887], + [-134.078063, 58.123068], + [-135.038211, 58.187715], + [-136.628062, 58.212209], + [-137.800006, 58.499995], + [-139.867787, 59.537762], + [-140.825274, 59.727517], + [-142.574444, 60.084447], + [-143.958881, 59.99918], + [-145.925557, 60.45861], + [-147.114374, 60.884656], + [-148.224306, 60.672989], + [-148.018066, 59.978329], + [-148.570823, 59.914173], + [-149.727858, 59.705658], + [-150.608243, 59.368211], + [-151.716393, 59.155821], + [-151.859433, 59.744984], + [-151.409719, 60.725803], + [-150.346941, 61.033588], + [-150.621111, 61.284425], + [-151.895839, 60.727198], + [-152.57833, 60.061657], + [-154.019172, 59.350279], + [-153.287511, 58.864728], + [-154.232492, 58.146374], + [-155.307491, 57.727795], + [-156.308335, 57.422774], + [-156.556097, 56.979985], + [-158.117217, 56.463608], + [-158.433321, 55.994154], + [-159.603327, 55.566686], + [-160.28972, 55.643581], + [-161.223048, 55.364735], + [-162.237766, 55.024187], + [-163.069447, 54.689737], + [-164.785569, 54.404173], + [-164.942226, 54.572225], + [-163.84834, 55.039431], + [-162.870001, 55.348043], + [-161.804175, 55.894986], + [-160.563605, 56.008055], + [-160.07056, 56.418055], + [-158.684443, 57.016675], + [-158.461097, 57.216921], + [-157.72277, 57.570001], + [-157.550274, 58.328326], + [-157.041675, 58.918885], + [-158.194731, 58.615802], + [-158.517218, 58.787781], + [-159.058606, 58.424186], + [-159.711667, 58.93139], + [-159.981289, 58.572549], + [-160.355271, 59.071123], + [-161.355003, 58.670838], + [-161.968894, 58.671665], + [-162.054987, 59.266925], + [-161.874171, 59.633621], + [-162.518059, 59.989724], + [-163.818341, 59.798056], + [-164.662218, 60.267484], + [-165.346388, 60.507496], + [-165.350832, 61.073895], + [-166.121379, 61.500019], + [-165.734452, 62.074997], + [-164.919179, 62.633076], + [-164.562508, 63.146378], + [-163.753332, 63.219449], + [-163.067224, 63.059459], + [-162.260555, 63.541936], + [-161.53445, 63.455817], + [-160.772507, 63.766108], + [-160.958335, 64.222799], + [-161.518068, 64.402788], + [-160.777778, 64.788604], + [-161.391926, 64.777235], + [-162.45305, 64.559445], + [-162.757786, 64.338605], + [-163.546394, 64.55916], + [-164.96083, 64.446945], + [-166.425288, 64.686672], + [-166.845004, 65.088896], + [-168.11056, 65.669997], + [-166.705271, 66.088318], + [-164.47471, 66.57666], + [-163.652512, 66.57666], + [-163.788602, 66.077207], + [-161.677774, 66.11612], + [-162.489715, 66.735565], + [-163.719717, 67.116395], + [-164.430991, 67.616338], + [-165.390287, 68.042772], + [-166.764441, 68.358877], + [-166.204707, 68.883031], + [-164.430811, 68.915535], + [-163.168614, 69.371115], + [-162.930566, 69.858062], + [-161.908897, 70.33333], + [-160.934797, 70.44769], + [-159.039176, 70.891642], + [-158.119723, 70.824721], + [-156.580825, 71.357764], + [-155.06779, 71.147776] + ] + ] + ] + }, + "id": "USA" + }, + { + "type": "Feature", + "properties": { "name": "Uzbekistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [66.518607, 37.362784], + [66.54615, 37.974685], + [65.215999, 38.402695], + [64.170223, 38.892407], + [63.518015, 39.363257], + [62.37426, 40.053886], + [61.882714, 41.084857], + [61.547179, 41.26637], + [60.465953, 41.220327], + [60.083341, 41.425146], + [59.976422, 42.223082], + [58.629011, 42.751551], + [57.78653, 42.170553], + [56.932215, 41.826026], + [57.096391, 41.32231], + [55.968191, 41.308642], + [55.928917, 44.995858], + [58.503127, 45.586804], + [58.689989, 45.500014], + [60.239972, 44.784037], + [61.05832, 44.405817], + [62.0133, 43.504477], + [63.185787, 43.650075], + [64.900824, 43.728081], + [66.098012, 42.99766], + [66.023392, 41.994646], + [66.510649, 41.987644], + [66.714047, 41.168444], + [67.985856, 41.135991], + [68.259896, 40.662325], + [68.632483, 40.668681], + [69.070027, 41.384244], + [70.388965, 42.081308], + [70.962315, 42.266154], + [71.259248, 42.167711], + [70.420022, 41.519998], + [71.157859, 41.143587], + [71.870115, 41.3929], + [73.055417, 40.866033], + [71.774875, 40.145844], + [71.014198, 40.244366], + [70.601407, 40.218527], + [70.45816, 40.496495], + [70.666622, 40.960213], + [69.329495, 40.727824], + [69.011633, 40.086158], + [68.536416, 39.533453], + [67.701429, 39.580478], + [67.44222, 39.140144], + [68.176025, 38.901553], + [68.392033, 38.157025], + [67.83, 37.144994], + [67.075782, 37.356144], + [66.518607, 37.362784] + ] + ] + }, + "id": "UZB" + }, + { + "type": "Feature", + "properties": { "name": "Venezuela" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.331584, 11.776284], + [-71.360006, 11.539994], + [-71.94705, 11.423282], + [-71.620868, 10.96946], + [-71.633064, 10.446494], + [-72.074174, 9.865651], + [-71.695644, 9.072263], + [-71.264559, 9.137195], + [-71.039999, 9.859993], + [-71.350084, 10.211935], + [-71.400623, 10.968969], + [-70.155299, 11.375482], + [-70.293843, 11.846822], + [-69.943245, 12.162307], + [-69.5843, 11.459611], + [-68.882999, 11.443385], + [-68.233271, 10.885744], + [-68.194127, 10.554653], + [-67.296249, 10.545868], + [-66.227864, 10.648627], + [-65.655238, 10.200799], + [-64.890452, 10.077215], + [-64.329479, 10.389599], + [-64.318007, 10.641418], + [-63.079322, 10.701724], + [-61.880946, 10.715625], + [-62.730119, 10.420269], + [-62.388512, 9.948204], + [-61.588767, 9.873067], + [-60.830597, 9.38134], + [-60.671252, 8.580174], + [-60.150096, 8.602757], + [-59.758285, 8.367035], + [-60.550588, 7.779603], + [-60.637973, 7.415], + [-60.295668, 7.043911], + [-60.543999, 6.856584], + [-61.159336, 6.696077], + [-61.139415, 6.234297], + [-61.410303, 5.959068], + [-60.733574, 5.200277], + [-60.601179, 4.918098], + [-60.966893, 4.536468], + [-62.08543, 4.162124], + [-62.804533, 4.006965], + [-63.093198, 3.770571], + [-63.888343, 4.02053], + [-64.628659, 4.148481], + [-64.816064, 4.056445], + [-64.368494, 3.79721], + [-64.408828, 3.126786], + [-64.269999, 2.497006], + [-63.422867, 2.411068], + [-63.368788, 2.2009], + [-64.083085, 1.916369], + [-64.199306, 1.492855], + [-64.611012, 1.328731], + [-65.354713, 1.095282], + [-65.548267, 0.789254], + [-66.325765, 0.724452], + [-66.876326, 1.253361], + [-67.181294, 2.250638], + [-67.447092, 2.600281], + [-67.809938, 2.820655], + [-67.303173, 3.318454], + [-67.337564, 3.542342], + [-67.621836, 3.839482], + [-67.823012, 4.503937], + [-67.744697, 5.221129], + [-67.521532, 5.55687], + [-67.34144, 6.095468], + [-67.695087, 6.267318], + [-68.265052, 6.153268], + [-68.985319, 6.206805], + [-69.38948, 6.099861], + [-70.093313, 6.960376], + [-70.674234, 7.087785], + [-71.960176, 6.991615], + [-72.198352, 7.340431], + [-72.444487, 7.423785], + [-72.479679, 7.632506], + [-72.360901, 8.002638], + [-72.439862, 8.405275], + [-72.660495, 8.625288], + [-72.78873, 9.085027], + [-73.304952, 9.152], + [-73.027604, 9.73677], + [-72.905286, 10.450344], + [-72.614658, 10.821975], + [-72.227575, 11.108702], + [-71.973922, 11.608672], + [-71.331584, 11.776284] + ] + ] + }, + "id": "VEN" + }, + { + "type": "Feature", + "properties": { "name": "Vietnam" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [108.05018, 21.55238], + [106.715068, 20.696851], + [105.881682, 19.75205], + [105.662006, 19.058165], + [106.426817, 18.004121], + [107.361954, 16.697457], + [108.269495, 16.079742], + [108.877107, 15.276691], + [109.33527, 13.426028], + [109.200136, 11.666859], + [108.36613, 11.008321], + [107.220929, 10.364484], + [106.405113, 9.53084], + [105.158264, 8.59976], + [104.795185, 9.241038], + [105.076202, 9.918491], + [104.334335, 10.486544], + [105.199915, 10.88931], + [106.24967, 10.961812], + [105.810524, 11.567615], + [107.491403, 12.337206], + [107.614548, 13.535531], + [107.382727, 14.202441], + [107.564525, 15.202173], + [107.312706, 15.908538], + [106.556008, 16.604284], + [105.925762, 17.485315], + [105.094598, 18.666975], + [103.896532, 19.265181], + [104.183388, 19.624668], + [104.822574, 19.886642], + [104.435, 20.758733], + [103.203861, 20.766562], + [102.754896, 21.675137], + [102.170436, 22.464753], + [102.706992, 22.708795], + [103.504515, 22.703757], + [104.476858, 22.81915], + [105.329209, 23.352063], + [105.811247, 22.976892], + [106.725403, 22.794268], + [106.567273, 22.218205], + [107.04342, 21.811899], + [108.05018, 21.55238] + ] + ] + }, + "id": "VNM" + }, + { + "type": "Feature", + "properties": { "name": "Vanuatu" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [167.844877, -16.466333], + [167.515181, -16.59785], + [167.180008, -16.159995], + [167.216801, -15.891846], + [167.844877, -16.466333] + ] + ], + [ + [ + [167.107712, -14.93392], + [167.270028, -15.740021], + [167.001207, -15.614602], + [166.793158, -15.668811], + [166.649859, -15.392704], + [166.629137, -14.626497], + [167.107712, -14.93392] + ] + ] + ] + }, + "id": "VUT" + }, + { + "type": "Feature", + "properties": { "name": "West Bank" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.545665, 32.393992], + [35.545252, 31.782505], + [35.397561, 31.489086], + [34.927408, 31.353435], + [34.970507, 31.616778], + [35.225892, 31.754341], + [34.974641, 31.866582], + [35.18393, 32.532511], + [35.545665, 32.393992] + ] + ] + }, + "id": "PSE" + }, + { + "type": "Feature", + "properties": { "name": "Yemen" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [53.108573, 16.651051], + [52.385206, 16.382411], + [52.191729, 15.938433], + [52.168165, 15.59742], + [51.172515, 15.17525], + [49.574576, 14.708767], + [48.679231, 14.003202], + [48.238947, 13.94809], + [47.938914, 14.007233], + [47.354454, 13.59222], + [46.717076, 13.399699], + [45.877593, 13.347764], + [45.62505, 13.290946], + [45.406459, 13.026905], + [45.144356, 12.953938], + [44.989533, 12.699587], + [44.494576, 12.721653], + [44.175113, 12.58595], + [43.482959, 12.6368], + [43.222871, 13.22095], + [43.251448, 13.767584], + [43.087944, 14.06263], + [42.892245, 14.802249], + [42.604873, 15.213335], + [42.805015, 15.261963], + [42.702438, 15.718886], + [42.823671, 15.911742], + [42.779332, 16.347891], + [43.218375, 16.66689], + [43.115798, 17.08844], + [43.380794, 17.579987], + [43.791519, 17.319977], + [44.062613, 17.410359], + [45.216651, 17.433329], + [45.399999, 17.333335], + [46.366659, 17.233315], + [46.749994, 17.283338], + [47.000005, 16.949999], + [47.466695, 17.116682], + [48.183344, 18.166669], + [49.116672, 18.616668], + [52.00001, 19.000003], + [52.782184, 17.349742], + [53.108573, 16.651051] + ] + ] + }, + "id": "YEM" + }, + { + "type": "Feature", + "properties": { "name": "South Africa" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.521001, -29.257387], + [31.325561, -29.401978], + [30.901763, -29.909957], + [30.622813, -30.423776], + [30.055716, -31.140269], + [28.925553, -32.172041], + [28.219756, -32.771953], + [27.464608, -33.226964], + [26.419452, -33.61495], + [25.909664, -33.66704], + [25.780628, -33.944646], + [25.172862, -33.796851], + [24.677853, -33.987176], + [23.594043, -33.794474], + [22.988189, -33.916431], + [22.574157, -33.864083], + [21.542799, -34.258839], + [20.689053, -34.417175], + [20.071261, -34.795137], + [19.616405, -34.819166], + [19.193278, -34.462599], + [18.855315, -34.444306], + [18.424643, -33.997873], + [18.377411, -34.136521], + [18.244499, -33.867752], + [18.25008, -33.281431], + [17.92519, -32.611291], + [18.24791, -32.429131], + [18.221762, -31.661633], + [17.566918, -30.725721], + [17.064416, -29.878641], + [17.062918, -29.875954], + [16.344977, -28.576705], + [16.824017, -28.082162], + [17.218929, -28.355943], + [17.387497, -28.783514], + [17.836152, -28.856378], + [18.464899, -29.045462], + [19.002127, -28.972443], + [19.894734, -28.461105], + [19.895768, -24.76779], + [20.165726, -24.917962], + [20.758609, -25.868136], + [20.66647, -26.477453], + [20.889609, -26.828543], + [21.605896, -26.726534], + [22.105969, -26.280256], + [22.579532, -25.979448], + [22.824271, -25.500459], + [23.312097, -25.26869], + [23.73357, -25.390129], + [24.211267, -25.670216], + [25.025171, -25.71967], + [25.664666, -25.486816], + [25.765849, -25.174845], + [25.941652, -24.696373], + [26.485753, -24.616327], + [26.786407, -24.240691], + [27.11941, -23.574323], + [28.017236, -22.827754], + [29.432188, -22.091313], + [29.839037, -22.102216], + [30.322883, -22.271612], + [30.659865, -22.151567], + [31.191409, -22.25151], + [31.670398, -23.658969], + [31.930589, -24.369417], + [31.752408, -25.484284], + [31.837778, -25.843332], + [31.333158, -25.660191], + [31.04408, -25.731452], + [30.949667, -26.022649], + [30.676609, -26.398078], + [30.685962, -26.743845], + [31.282773, -27.285879], + [31.86806, -27.177927], + [32.071665, -26.73382], + [32.83012, -26.742192], + [32.580265, -27.470158], + [32.462133, -28.301011], + [32.203389, -28.752405], + [31.521001, -29.257387] + ], + [ + [28.978263, -28.955597], + [28.5417, -28.647502], + [28.074338, -28.851469], + [27.532511, -29.242711], + [26.999262, -29.875954], + [27.749397, -30.645106], + [28.107205, -30.545732], + [28.291069, -30.226217], + [28.8484, -30.070051], + [29.018415, -29.743766], + [29.325166, -29.257387], + [28.978263, -28.955597] + ] + ] + }, + "id": "ZAF" + }, + { + "type": "Feature", + "properties": { "name": "Zambia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [32.759375, -9.230599], + [33.231388, -9.676722], + [33.485688, -10.525559], + [33.31531, -10.79655], + [33.114289, -11.607198], + [33.306422, -12.435778], + [32.991764, -12.783871], + [32.688165, -13.712858], + [33.214025, -13.97186], + [30.179481, -14.796099], + [30.274256, -15.507787], + [29.516834, -15.644678], + [28.947463, -16.043051], + [28.825869, -16.389749], + [28.467906, -16.4684], + [27.598243, -17.290831], + [27.044427, -17.938026], + [26.706773, -17.961229], + [26.381935, -17.846042], + [25.264226, -17.73654], + [25.084443, -17.661816], + [25.07695, -17.578823], + [24.682349, -17.353411], + [24.033862, -17.295843], + [23.215048, -17.523116], + [22.562478, -16.898451], + [21.887843, -16.08031], + [21.933886, -12.898437], + [24.016137, -12.911046], + [23.930922, -12.565848], + [24.079905, -12.191297], + [23.904154, -11.722282], + [24.017894, -11.237298], + [23.912215, -10.926826], + [24.257155, -10.951993], + [24.314516, -11.262826], + [24.78317, -11.238694], + [25.418118, -11.330936], + [25.75231, -11.784965], + [26.553088, -11.92444], + [27.16442, -11.608748], + [27.388799, -12.132747], + [28.155109, -12.272481], + [28.523562, -12.698604], + [28.934286, -13.248958], + [29.699614, -13.257227], + [29.616001, -12.178895], + [29.341548, -12.360744], + [28.642417, -11.971569], + [28.372253, -11.793647], + [28.49607, -10.789884], + [28.673682, -9.605925], + [28.449871, -9.164918], + [28.734867, -8.526559], + [29.002912, -8.407032], + [30.346086, -8.238257], + [30.740015, -8.340007], + [31.157751, -8.594579], + [31.556348, -8.762049], + [32.191865, -8.930359], + [32.759375, -9.230599] + ] + ] + }, + "id": "ZMB" + }, + { + "type": "Feature", + "properties": { "name": "Zimbabwe" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.191409, -22.25151], + [30.659865, -22.151567], + [30.322883, -22.271612], + [29.839037, -22.102216], + [29.432188, -22.091313], + [28.794656, -21.639454], + [28.02137, -21.485975], + [27.727228, -20.851802], + [27.724747, -20.499059], + [27.296505, -20.39152], + [26.164791, -19.293086], + [25.850391, -18.714413], + [25.649163, -18.536026], + [25.264226, -17.73654], + [26.381935, -17.846042], + [26.706773, -17.961229], + [27.044427, -17.938026], + [27.598243, -17.290831], + [28.467906, -16.4684], + [28.825869, -16.389749], + [28.947463, -16.043051], + [29.516834, -15.644678], + [30.274256, -15.507787], + [30.338955, -15.880839], + [31.173064, -15.860944], + [31.636498, -16.07199], + [31.852041, -16.319417], + [32.328239, -16.392074], + [32.847639, -16.713398], + [32.849861, -17.979057], + [32.654886, -18.67209], + [32.611994, -19.419383], + [32.772708, -19.715592], + [32.659743, -20.30429], + [32.508693, -20.395292], + [32.244988, -21.116489], + [31.191409, -22.25151] + ] + ] + }, + "id": "ZWE" + } + ] +} diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..5496424 Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..ec5eced Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..acdf25b Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/images/browser/android-webview.png b/public/images/browser/android-webview.png new file mode 100644 index 0000000..9924229 Binary files /dev/null and b/public/images/browser/android-webview.png differ diff --git a/public/images/browser/android.png b/public/images/browser/android.png new file mode 100644 index 0000000..393001a Binary files /dev/null and b/public/images/browser/android.png differ diff --git a/public/images/browser/aol.png b/public/images/browser/aol.png new file mode 100644 index 0000000..3b6f962 Binary files /dev/null and b/public/images/browser/aol.png differ diff --git a/public/images/browser/beaker.png b/public/images/browser/beaker.png new file mode 100644 index 0000000..8d4e61d Binary files /dev/null and b/public/images/browser/beaker.png differ diff --git a/public/images/browser/blackberry.png b/public/images/browser/blackberry.png new file mode 100644 index 0000000..11ccd83 Binary files /dev/null and b/public/images/browser/blackberry.png differ diff --git a/public/images/browser/brave.png b/public/images/browser/brave.png new file mode 100644 index 0000000..0556c12 Binary files /dev/null and b/public/images/browser/brave.png differ diff --git a/public/images/browser/chrome.png b/public/images/browser/chrome.png new file mode 100644 index 0000000..e4e2773 Binary files /dev/null and b/public/images/browser/chrome.png differ diff --git a/public/images/browser/chromium-webview.png b/public/images/browser/chromium-webview.png new file mode 100644 index 0000000..a3fd998 Binary files /dev/null and b/public/images/browser/chromium-webview.png differ diff --git a/public/images/browser/crios.png b/public/images/browser/crios.png new file mode 100644 index 0000000..e4e2773 Binary files /dev/null and b/public/images/browser/crios.png differ diff --git a/public/images/browser/curl.png b/public/images/browser/curl.png new file mode 100644 index 0000000..cc0a617 Binary files /dev/null and b/public/images/browser/curl.png differ diff --git a/public/images/browser/edge-chromium.png b/public/images/browser/edge-chromium.png new file mode 100644 index 0000000..1f2b230 Binary files /dev/null and b/public/images/browser/edge-chromium.png differ diff --git a/public/images/browser/edge-ios.png b/public/images/browser/edge-ios.png new file mode 100644 index 0000000..1f2b230 Binary files /dev/null and b/public/images/browser/edge-ios.png differ diff --git a/public/images/browser/edge.png b/public/images/browser/edge.png new file mode 100644 index 0000000..2da3aaf Binary files /dev/null and b/public/images/browser/edge.png differ diff --git a/public/images/browser/facebook.png b/public/images/browser/facebook.png new file mode 100644 index 0000000..4dc9b26 Binary files /dev/null and b/public/images/browser/facebook.png differ diff --git a/public/images/browser/firefox.png b/public/images/browser/firefox.png new file mode 100644 index 0000000..c118f9c Binary files /dev/null and b/public/images/browser/firefox.png differ diff --git a/public/images/browser/fxios.png b/public/images/browser/fxios.png new file mode 100644 index 0000000..c118f9c Binary files /dev/null and b/public/images/browser/fxios.png differ diff --git a/public/images/browser/ie.png b/public/images/browser/ie.png new file mode 100644 index 0000000..1d3bbe8 Binary files /dev/null and b/public/images/browser/ie.png differ diff --git a/public/images/browser/instagram.png b/public/images/browser/instagram.png new file mode 100644 index 0000000..8377710 Binary files /dev/null and b/public/images/browser/instagram.png differ diff --git a/public/images/browser/ios-webview.png b/public/images/browser/ios-webview.png new file mode 100644 index 0000000..bf7c362 Binary files /dev/null and b/public/images/browser/ios-webview.png differ diff --git a/public/images/browser/ios.png b/public/images/browser/ios.png new file mode 100644 index 0000000..114bf55 Binary files /dev/null and b/public/images/browser/ios.png differ diff --git a/public/images/browser/kakaotalk.png b/public/images/browser/kakaotalk.png new file mode 100644 index 0000000..e932a67 Binary files /dev/null and b/public/images/browser/kakaotalk.png differ diff --git a/public/images/browser/miui.png b/public/images/browser/miui.png new file mode 100644 index 0000000..1534a0c Binary files /dev/null and b/public/images/browser/miui.png differ diff --git a/public/images/browser/opera-mini.png b/public/images/browser/opera-mini.png new file mode 100644 index 0000000..d4e2671 Binary files /dev/null and b/public/images/browser/opera-mini.png differ diff --git a/public/images/browser/opera.png b/public/images/browser/opera.png new file mode 100644 index 0000000..84e6d0f Binary files /dev/null and b/public/images/browser/opera.png differ diff --git a/public/images/browser/safari.png b/public/images/browser/safari.png new file mode 100644 index 0000000..b06369a Binary files /dev/null and b/public/images/browser/safari.png differ diff --git a/public/images/browser/samsung.png b/public/images/browser/samsung.png new file mode 100644 index 0000000..544e390 Binary files /dev/null and b/public/images/browser/samsung.png differ diff --git a/public/images/browser/searchbot.png b/public/images/browser/searchbot.png new file mode 100644 index 0000000..43b1dff Binary files /dev/null and b/public/images/browser/searchbot.png differ diff --git a/public/images/browser/silk.png b/public/images/browser/silk.png new file mode 100644 index 0000000..6af1d72 Binary files /dev/null and b/public/images/browser/silk.png differ diff --git a/public/images/browser/unknown.png b/public/images/browser/unknown.png new file mode 100644 index 0000000..5205802 Binary files /dev/null and b/public/images/browser/unknown.png differ diff --git a/public/images/browser/yandexbrowser.png b/public/images/browser/yandexbrowser.png new file mode 100644 index 0000000..f703db2 Binary files /dev/null and b/public/images/browser/yandexbrowser.png differ diff --git a/public/images/country/ad.png b/public/images/country/ad.png new file mode 100644 index 0000000..b750895 Binary files /dev/null and b/public/images/country/ad.png differ diff --git a/public/images/country/ae.png b/public/images/country/ae.png new file mode 100644 index 0000000..b5d25f6 Binary files /dev/null and b/public/images/country/ae.png differ diff --git a/public/images/country/af.png b/public/images/country/af.png new file mode 100644 index 0000000..f38b17a Binary files /dev/null and b/public/images/country/af.png differ diff --git a/public/images/country/ag.png b/public/images/country/ag.png new file mode 100644 index 0000000..669e34e Binary files /dev/null and b/public/images/country/ag.png differ diff --git a/public/images/country/ai.png b/public/images/country/ai.png new file mode 100644 index 0000000..19c4823 Binary files /dev/null and b/public/images/country/ai.png differ diff --git a/public/images/country/al.png b/public/images/country/al.png new file mode 100644 index 0000000..79770bd Binary files /dev/null and b/public/images/country/al.png differ diff --git a/public/images/country/am.png b/public/images/country/am.png new file mode 100644 index 0000000..36a2cc2 Binary files /dev/null and b/public/images/country/am.png differ diff --git a/public/images/country/ao.png b/public/images/country/ao.png new file mode 100644 index 0000000..301a92d Binary files /dev/null and b/public/images/country/ao.png differ diff --git a/public/images/country/aq.png b/public/images/country/aq.png new file mode 100644 index 0000000..accccd7 Binary files /dev/null and b/public/images/country/aq.png differ diff --git a/public/images/country/ar.png b/public/images/country/ar.png new file mode 100644 index 0000000..795042c Binary files /dev/null and b/public/images/country/ar.png differ diff --git a/public/images/country/as.png b/public/images/country/as.png new file mode 100644 index 0000000..464e36b Binary files /dev/null and b/public/images/country/as.png differ diff --git a/public/images/country/at.png b/public/images/country/at.png new file mode 100644 index 0000000..0848b2a Binary files /dev/null and b/public/images/country/at.png differ diff --git a/public/images/country/au.png b/public/images/country/au.png new file mode 100644 index 0000000..9e4033c Binary files /dev/null and b/public/images/country/au.png differ diff --git a/public/images/country/aw.png b/public/images/country/aw.png new file mode 100644 index 0000000..c59c9ed Binary files /dev/null and b/public/images/country/aw.png differ diff --git a/public/images/country/ax.png b/public/images/country/ax.png new file mode 100644 index 0000000..5ce6bda Binary files /dev/null and b/public/images/country/ax.png differ diff --git a/public/images/country/az.png b/public/images/country/az.png new file mode 100644 index 0000000..d45b6eb Binary files /dev/null and b/public/images/country/az.png differ diff --git a/public/images/country/ba.png b/public/images/country/ba.png new file mode 100644 index 0000000..dc47995 Binary files /dev/null and b/public/images/country/ba.png differ diff --git a/public/images/country/bb.png b/public/images/country/bb.png new file mode 100644 index 0000000..6b42943 Binary files /dev/null and b/public/images/country/bb.png differ diff --git a/public/images/country/bd.png b/public/images/country/bd.png new file mode 100644 index 0000000..571f0a4 Binary files /dev/null and b/public/images/country/bd.png differ diff --git a/public/images/country/be.png b/public/images/country/be.png new file mode 100644 index 0000000..f4270f2 Binary files /dev/null and b/public/images/country/be.png differ diff --git a/public/images/country/bf.png b/public/images/country/bf.png new file mode 100644 index 0000000..1dffc19 Binary files /dev/null and b/public/images/country/bf.png differ diff --git a/public/images/country/bg.png b/public/images/country/bg.png new file mode 100644 index 0000000..8cd991c Binary files /dev/null and b/public/images/country/bg.png differ diff --git a/public/images/country/bh.png b/public/images/country/bh.png new file mode 100644 index 0000000..dcc9a0c Binary files /dev/null and b/public/images/country/bh.png differ diff --git a/public/images/country/bi.png b/public/images/country/bi.png new file mode 100644 index 0000000..2b82b52 Binary files /dev/null and b/public/images/country/bi.png differ diff --git a/public/images/country/bj.png b/public/images/country/bj.png new file mode 100644 index 0000000..ab6f4b9 Binary files /dev/null and b/public/images/country/bj.png differ diff --git a/public/images/country/bl.png b/public/images/country/bl.png new file mode 100644 index 0000000..fdc0baa Binary files /dev/null and b/public/images/country/bl.png differ diff --git a/public/images/country/bm.png b/public/images/country/bm.png new file mode 100644 index 0000000..fd23054 Binary files /dev/null and b/public/images/country/bm.png differ diff --git a/public/images/country/bn.png b/public/images/country/bn.png new file mode 100644 index 0000000..bcd4bb9 Binary files /dev/null and b/public/images/country/bn.png differ diff --git a/public/images/country/bo.png b/public/images/country/bo.png new file mode 100644 index 0000000..1c613a3 Binary files /dev/null and b/public/images/country/bo.png differ diff --git a/public/images/country/bq.png b/public/images/country/bq.png new file mode 100644 index 0000000..7dfbb59 Binary files /dev/null and b/public/images/country/bq.png differ diff --git a/public/images/country/br.png b/public/images/country/br.png new file mode 100644 index 0000000..39cf3e7 Binary files /dev/null and b/public/images/country/br.png differ diff --git a/public/images/country/bs.png b/public/images/country/bs.png new file mode 100644 index 0000000..30d4907 Binary files /dev/null and b/public/images/country/bs.png differ diff --git a/public/images/country/bt.png b/public/images/country/bt.png new file mode 100644 index 0000000..6aaf2eb Binary files /dev/null and b/public/images/country/bt.png differ diff --git a/public/images/country/bv.png b/public/images/country/bv.png new file mode 100644 index 0000000..bfbd46d Binary files /dev/null and b/public/images/country/bv.png differ diff --git a/public/images/country/bw.png b/public/images/country/bw.png new file mode 100644 index 0000000..08934e7 Binary files /dev/null and b/public/images/country/bw.png differ diff --git a/public/images/country/by.png b/public/images/country/by.png new file mode 100644 index 0000000..e2eed0c Binary files /dev/null and b/public/images/country/by.png differ diff --git a/public/images/country/bz.png b/public/images/country/bz.png new file mode 100644 index 0000000..5166529 Binary files /dev/null and b/public/images/country/bz.png differ diff --git a/public/images/country/ca.png b/public/images/country/ca.png new file mode 100644 index 0000000..1670997 Binary files /dev/null and b/public/images/country/ca.png differ diff --git a/public/images/country/cc.png b/public/images/country/cc.png new file mode 100644 index 0000000..58c90ff Binary files /dev/null and b/public/images/country/cc.png differ diff --git a/public/images/country/cd.png b/public/images/country/cd.png new file mode 100644 index 0000000..db2e24b Binary files /dev/null and b/public/images/country/cd.png differ diff --git a/public/images/country/cf.png b/public/images/country/cf.png new file mode 100644 index 0000000..0c73cc1 Binary files /dev/null and b/public/images/country/cf.png differ diff --git a/public/images/country/cg.png b/public/images/country/cg.png new file mode 100644 index 0000000..5c87941 Binary files /dev/null and b/public/images/country/cg.png differ diff --git a/public/images/country/ch.png b/public/images/country/ch.png new file mode 100644 index 0000000..aef5f5f Binary files /dev/null and b/public/images/country/ch.png differ diff --git a/public/images/country/ci.png b/public/images/country/ci.png new file mode 100644 index 0000000..c9f1db6 Binary files /dev/null and b/public/images/country/ci.png differ diff --git a/public/images/country/ck.png b/public/images/country/ck.png new file mode 100644 index 0000000..b339940 Binary files /dev/null and b/public/images/country/ck.png differ diff --git a/public/images/country/cl.png b/public/images/country/cl.png new file mode 100644 index 0000000..7015e88 Binary files /dev/null and b/public/images/country/cl.png differ diff --git a/public/images/country/cm.png b/public/images/country/cm.png new file mode 100644 index 0000000..1d089f2 Binary files /dev/null and b/public/images/country/cm.png differ diff --git a/public/images/country/cn.png b/public/images/country/cn.png new file mode 100644 index 0000000..5fe7e5f Binary files /dev/null and b/public/images/country/cn.png differ diff --git a/public/images/country/co.png b/public/images/country/co.png new file mode 100644 index 0000000..d03450a Binary files /dev/null and b/public/images/country/co.png differ diff --git a/public/images/country/cr.png b/public/images/country/cr.png new file mode 100644 index 0000000..84d4aba Binary files /dev/null and b/public/images/country/cr.png differ diff --git a/public/images/country/cu.png b/public/images/country/cu.png new file mode 100644 index 0000000..2285564 Binary files /dev/null and b/public/images/country/cu.png differ diff --git a/public/images/country/cv.png b/public/images/country/cv.png new file mode 100644 index 0000000..b27e125 Binary files /dev/null and b/public/images/country/cv.png differ diff --git a/public/images/country/cw.png b/public/images/country/cw.png new file mode 100644 index 0000000..459d4db Binary files /dev/null and b/public/images/country/cw.png differ diff --git a/public/images/country/cx.png b/public/images/country/cx.png new file mode 100644 index 0000000..b70ce5f Binary files /dev/null and b/public/images/country/cx.png differ diff --git a/public/images/country/cy.png b/public/images/country/cy.png new file mode 100644 index 0000000..984a03e Binary files /dev/null and b/public/images/country/cy.png differ diff --git a/public/images/country/cz.png b/public/images/country/cz.png new file mode 100644 index 0000000..5040542 Binary files /dev/null and b/public/images/country/cz.png differ diff --git a/public/images/country/de.png b/public/images/country/de.png new file mode 100644 index 0000000..f57ee83 Binary files /dev/null and b/public/images/country/de.png differ diff --git a/public/images/country/dj.png b/public/images/country/dj.png new file mode 100644 index 0000000..366eb1e Binary files /dev/null and b/public/images/country/dj.png differ diff --git a/public/images/country/dk.png b/public/images/country/dk.png new file mode 100644 index 0000000..80dac23 Binary files /dev/null and b/public/images/country/dk.png differ diff --git a/public/images/country/dm.png b/public/images/country/dm.png new file mode 100644 index 0000000..89c01b8 Binary files /dev/null and b/public/images/country/dm.png differ diff --git a/public/images/country/do.png b/public/images/country/do.png new file mode 100644 index 0000000..8384003 Binary files /dev/null and b/public/images/country/do.png differ diff --git a/public/images/country/dz.png b/public/images/country/dz.png new file mode 100644 index 0000000..1e75b36 Binary files /dev/null and b/public/images/country/dz.png differ diff --git a/public/images/country/ec.png b/public/images/country/ec.png new file mode 100644 index 0000000..3abdceb Binary files /dev/null and b/public/images/country/ec.png differ diff --git a/public/images/country/ee.png b/public/images/country/ee.png new file mode 100644 index 0000000..ed175b5 Binary files /dev/null and b/public/images/country/ee.png differ diff --git a/public/images/country/eg.png b/public/images/country/eg.png new file mode 100644 index 0000000..572b899 Binary files /dev/null and b/public/images/country/eg.png differ diff --git a/public/images/country/eh.png b/public/images/country/eh.png new file mode 100644 index 0000000..af9b2d0 Binary files /dev/null and b/public/images/country/eh.png differ diff --git a/public/images/country/er.png b/public/images/country/er.png new file mode 100644 index 0000000..01377ae Binary files /dev/null and b/public/images/country/er.png differ diff --git a/public/images/country/es.png b/public/images/country/es.png new file mode 100644 index 0000000..d0b393b Binary files /dev/null and b/public/images/country/es.png differ diff --git a/public/images/country/et.png b/public/images/country/et.png new file mode 100644 index 0000000..0493946 Binary files /dev/null and b/public/images/country/et.png differ diff --git a/public/images/country/fi.png b/public/images/country/fi.png new file mode 100644 index 0000000..c79484e Binary files /dev/null and b/public/images/country/fi.png differ diff --git a/public/images/country/fj.png b/public/images/country/fj.png new file mode 100644 index 0000000..645f764 Binary files /dev/null and b/public/images/country/fj.png differ diff --git a/public/images/country/fk.png b/public/images/country/fk.png new file mode 100644 index 0000000..a036922 Binary files /dev/null and b/public/images/country/fk.png differ diff --git a/public/images/country/fm.png b/public/images/country/fm.png new file mode 100644 index 0000000..8ef8008 Binary files /dev/null and b/public/images/country/fm.png differ diff --git a/public/images/country/fo.png b/public/images/country/fo.png new file mode 100644 index 0000000..2e42492 Binary files /dev/null and b/public/images/country/fo.png differ diff --git a/public/images/country/fr.png b/public/images/country/fr.png new file mode 100644 index 0000000..1cba62e Binary files /dev/null and b/public/images/country/fr.png differ diff --git a/public/images/country/ga.png b/public/images/country/ga.png new file mode 100644 index 0000000..9dfacfb Binary files /dev/null and b/public/images/country/ga.png differ diff --git a/public/images/country/gb-eng.png b/public/images/country/gb-eng.png new file mode 100644 index 0000000..b1f3ead Binary files /dev/null and b/public/images/country/gb-eng.png differ diff --git a/public/images/country/gb-nir.png b/public/images/country/gb-nir.png new file mode 100644 index 0000000..79aa0d1 Binary files /dev/null and b/public/images/country/gb-nir.png differ diff --git a/public/images/country/gb-sct.png b/public/images/country/gb-sct.png new file mode 100644 index 0000000..665b918 Binary files /dev/null and b/public/images/country/gb-sct.png differ diff --git a/public/images/country/gb-wls.png b/public/images/country/gb-wls.png new file mode 100644 index 0000000..4d3e5d5 Binary files /dev/null and b/public/images/country/gb-wls.png differ diff --git a/public/images/country/gb.png b/public/images/country/gb.png new file mode 100644 index 0000000..90cd0c4 Binary files /dev/null and b/public/images/country/gb.png differ diff --git a/public/images/country/gd.png b/public/images/country/gd.png new file mode 100644 index 0000000..edc2374 Binary files /dev/null and b/public/images/country/gd.png differ diff --git a/public/images/country/ge.png b/public/images/country/ge.png new file mode 100644 index 0000000..fc702ed Binary files /dev/null and b/public/images/country/ge.png differ diff --git a/public/images/country/gf.png b/public/images/country/gf.png new file mode 100644 index 0000000..0646981 Binary files /dev/null and b/public/images/country/gf.png differ diff --git a/public/images/country/gg.png b/public/images/country/gg.png new file mode 100644 index 0000000..e81ad67 Binary files /dev/null and b/public/images/country/gg.png differ diff --git a/public/images/country/gh.png b/public/images/country/gh.png new file mode 100644 index 0000000..f60438e Binary files /dev/null and b/public/images/country/gh.png differ diff --git a/public/images/country/gi.png b/public/images/country/gi.png new file mode 100644 index 0000000..f5c613c Binary files /dev/null and b/public/images/country/gi.png differ diff --git a/public/images/country/gl.png b/public/images/country/gl.png new file mode 100644 index 0000000..5d72262 Binary files /dev/null and b/public/images/country/gl.png differ diff --git a/public/images/country/gm.png b/public/images/country/gm.png new file mode 100644 index 0000000..b7e639f Binary files /dev/null and b/public/images/country/gm.png differ diff --git a/public/images/country/gn.png b/public/images/country/gn.png new file mode 100644 index 0000000..5ec8902 Binary files /dev/null and b/public/images/country/gn.png differ diff --git a/public/images/country/gp.png b/public/images/country/gp.png new file mode 100644 index 0000000..519b7ca Binary files /dev/null and b/public/images/country/gp.png differ diff --git a/public/images/country/gq.png b/public/images/country/gq.png new file mode 100644 index 0000000..d49b6d1 Binary files /dev/null and b/public/images/country/gq.png differ diff --git a/public/images/country/gr.png b/public/images/country/gr.png new file mode 100644 index 0000000..3b20721 Binary files /dev/null and b/public/images/country/gr.png differ diff --git a/public/images/country/gs.png b/public/images/country/gs.png new file mode 100644 index 0000000..5cf5a1b Binary files /dev/null and b/public/images/country/gs.png differ diff --git a/public/images/country/gt.png b/public/images/country/gt.png new file mode 100644 index 0000000..b2664f7 Binary files /dev/null and b/public/images/country/gt.png differ diff --git a/public/images/country/gu.png b/public/images/country/gu.png new file mode 100644 index 0000000..2221ff8 Binary files /dev/null and b/public/images/country/gu.png differ diff --git a/public/images/country/gw.png b/public/images/country/gw.png new file mode 100644 index 0000000..2707720 Binary files /dev/null and b/public/images/country/gw.png differ diff --git a/public/images/country/gy.png b/public/images/country/gy.png new file mode 100644 index 0000000..12e66a5 Binary files /dev/null and b/public/images/country/gy.png differ diff --git a/public/images/country/hk.png b/public/images/country/hk.png new file mode 100644 index 0000000..49c4f66 Binary files /dev/null and b/public/images/country/hk.png differ diff --git a/public/images/country/hm.png b/public/images/country/hm.png new file mode 100644 index 0000000..d372e40 Binary files /dev/null and b/public/images/country/hm.png differ diff --git a/public/images/country/hn.png b/public/images/country/hn.png new file mode 100644 index 0000000..5fac3cc Binary files /dev/null and b/public/images/country/hn.png differ diff --git a/public/images/country/hr.png b/public/images/country/hr.png new file mode 100644 index 0000000..372b89e Binary files /dev/null and b/public/images/country/hr.png differ diff --git a/public/images/country/ht.png b/public/images/country/ht.png new file mode 100644 index 0000000..6480536 Binary files /dev/null and b/public/images/country/ht.png differ diff --git a/public/images/country/hu.png b/public/images/country/hu.png new file mode 100644 index 0000000..2b7d26d Binary files /dev/null and b/public/images/country/hu.png differ diff --git a/public/images/country/id.png b/public/images/country/id.png new file mode 100644 index 0000000..03fdc56 Binary files /dev/null and b/public/images/country/id.png differ diff --git a/public/images/country/ie.png b/public/images/country/ie.png new file mode 100644 index 0000000..68b8704 Binary files /dev/null and b/public/images/country/ie.png differ diff --git a/public/images/country/il.png b/public/images/country/il.png new file mode 100644 index 0000000..617bcf6 Binary files /dev/null and b/public/images/country/il.png differ diff --git a/public/images/country/im.png b/public/images/country/im.png new file mode 100644 index 0000000..5fe2926 Binary files /dev/null and b/public/images/country/im.png differ diff --git a/public/images/country/in.png b/public/images/country/in.png new file mode 100644 index 0000000..e234bfd Binary files /dev/null and b/public/images/country/in.png differ diff --git a/public/images/country/io.png b/public/images/country/io.png new file mode 100644 index 0000000..4f05166 Binary files /dev/null and b/public/images/country/io.png differ diff --git a/public/images/country/iq.png b/public/images/country/iq.png new file mode 100644 index 0000000..47903a4 Binary files /dev/null and b/public/images/country/iq.png differ diff --git a/public/images/country/ir.png b/public/images/country/ir.png new file mode 100644 index 0000000..958d398 Binary files /dev/null and b/public/images/country/ir.png differ diff --git a/public/images/country/is.png b/public/images/country/is.png new file mode 100644 index 0000000..4ebc845 Binary files /dev/null and b/public/images/country/is.png differ diff --git a/public/images/country/it.png b/public/images/country/it.png new file mode 100644 index 0000000..f342a33 Binary files /dev/null and b/public/images/country/it.png differ diff --git a/public/images/country/je.png b/public/images/country/je.png new file mode 100644 index 0000000..3d7f194 Binary files /dev/null and b/public/images/country/je.png differ diff --git a/public/images/country/jm.png b/public/images/country/jm.png new file mode 100644 index 0000000..a380e17 Binary files /dev/null and b/public/images/country/jm.png differ diff --git a/public/images/country/jo.png b/public/images/country/jo.png new file mode 100644 index 0000000..cc5422b Binary files /dev/null and b/public/images/country/jo.png differ diff --git a/public/images/country/jp.png b/public/images/country/jp.png new file mode 100644 index 0000000..4130459 Binary files /dev/null and b/public/images/country/jp.png differ diff --git a/public/images/country/ke.png b/public/images/country/ke.png new file mode 100644 index 0000000..88cd07f Binary files /dev/null and b/public/images/country/ke.png differ diff --git a/public/images/country/kg.png b/public/images/country/kg.png new file mode 100644 index 0000000..1e49b97 Binary files /dev/null and b/public/images/country/kg.png differ diff --git a/public/images/country/kh.png b/public/images/country/kh.png new file mode 100644 index 0000000..414f0ec Binary files /dev/null and b/public/images/country/kh.png differ diff --git a/public/images/country/ki.png b/public/images/country/ki.png new file mode 100644 index 0000000..1034b3d Binary files /dev/null and b/public/images/country/ki.png differ diff --git a/public/images/country/km.png b/public/images/country/km.png new file mode 100644 index 0000000..e886085 Binary files /dev/null and b/public/images/country/km.png differ diff --git a/public/images/country/kn.png b/public/images/country/kn.png new file mode 100644 index 0000000..133f40d Binary files /dev/null and b/public/images/country/kn.png differ diff --git a/public/images/country/kp.png b/public/images/country/kp.png new file mode 100644 index 0000000..2aa96f0 Binary files /dev/null and b/public/images/country/kp.png differ diff --git a/public/images/country/kr.png b/public/images/country/kr.png new file mode 100644 index 0000000..4a737a2 Binary files /dev/null and b/public/images/country/kr.png differ diff --git a/public/images/country/kw.png b/public/images/country/kw.png new file mode 100644 index 0000000..67f127c Binary files /dev/null and b/public/images/country/kw.png differ diff --git a/public/images/country/ky.png b/public/images/country/ky.png new file mode 100644 index 0000000..33c4799 Binary files /dev/null and b/public/images/country/ky.png differ diff --git a/public/images/country/kz.png b/public/images/country/kz.png new file mode 100644 index 0000000..4258969 Binary files /dev/null and b/public/images/country/kz.png differ diff --git a/public/images/country/la.png b/public/images/country/la.png new file mode 100644 index 0000000..3202a8a Binary files /dev/null and b/public/images/country/la.png differ diff --git a/public/images/country/lb.png b/public/images/country/lb.png new file mode 100644 index 0000000..09a452f Binary files /dev/null and b/public/images/country/lb.png differ diff --git a/public/images/country/lc.png b/public/images/country/lc.png new file mode 100644 index 0000000..bdec5c8 Binary files /dev/null and b/public/images/country/lc.png differ diff --git a/public/images/country/li.png b/public/images/country/li.png new file mode 100644 index 0000000..f881eb3 Binary files /dev/null and b/public/images/country/li.png differ diff --git a/public/images/country/lk.png b/public/images/country/lk.png new file mode 100644 index 0000000..8e8da85 Binary files /dev/null and b/public/images/country/lk.png differ diff --git a/public/images/country/lr.png b/public/images/country/lr.png new file mode 100644 index 0000000..a5bec9d Binary files /dev/null and b/public/images/country/lr.png differ diff --git a/public/images/country/ls.png b/public/images/country/ls.png new file mode 100644 index 0000000..16db821 Binary files /dev/null and b/public/images/country/ls.png differ diff --git a/public/images/country/lt.png b/public/images/country/lt.png new file mode 100644 index 0000000..13c6ea4 Binary files /dev/null and b/public/images/country/lt.png differ diff --git a/public/images/country/lu.png b/public/images/country/lu.png new file mode 100644 index 0000000..6a0cb7e Binary files /dev/null and b/public/images/country/lu.png differ diff --git a/public/images/country/lv.png b/public/images/country/lv.png new file mode 100644 index 0000000..bccb85e Binary files /dev/null and b/public/images/country/lv.png differ diff --git a/public/images/country/ly.png b/public/images/country/ly.png new file mode 100644 index 0000000..298393f Binary files /dev/null and b/public/images/country/ly.png differ diff --git a/public/images/country/ma.png b/public/images/country/ma.png new file mode 100644 index 0000000..084b197 Binary files /dev/null and b/public/images/country/ma.png differ diff --git a/public/images/country/mc.png b/public/images/country/mc.png new file mode 100644 index 0000000..3a141da Binary files /dev/null and b/public/images/country/mc.png differ diff --git a/public/images/country/md.png b/public/images/country/md.png new file mode 100644 index 0000000..3ca84e6 Binary files /dev/null and b/public/images/country/md.png differ diff --git a/public/images/country/me.png b/public/images/country/me.png new file mode 100644 index 0000000..e5e0445 Binary files /dev/null and b/public/images/country/me.png differ diff --git a/public/images/country/mf.png b/public/images/country/mf.png new file mode 100644 index 0000000..1cba62e Binary files /dev/null and b/public/images/country/mf.png differ diff --git a/public/images/country/mg.png b/public/images/country/mg.png new file mode 100644 index 0000000..46f0a57 Binary files /dev/null and b/public/images/country/mg.png differ diff --git a/public/images/country/mh.png b/public/images/country/mh.png new file mode 100644 index 0000000..9f000a5 Binary files /dev/null and b/public/images/country/mh.png differ diff --git a/public/images/country/mk.png b/public/images/country/mk.png new file mode 100644 index 0000000..ce71c21 Binary files /dev/null and b/public/images/country/mk.png differ diff --git a/public/images/country/ml.png b/public/images/country/ml.png new file mode 100644 index 0000000..6c0dcf0 Binary files /dev/null and b/public/images/country/ml.png differ diff --git a/public/images/country/mm.png b/public/images/country/mm.png new file mode 100644 index 0000000..650f535 Binary files /dev/null and b/public/images/country/mm.png differ diff --git a/public/images/country/mn.png b/public/images/country/mn.png new file mode 100644 index 0000000..2b00e7b Binary files /dev/null and b/public/images/country/mn.png differ diff --git a/public/images/country/mo.png b/public/images/country/mo.png new file mode 100644 index 0000000..2e69908 Binary files /dev/null and b/public/images/country/mo.png differ diff --git a/public/images/country/mp.png b/public/images/country/mp.png new file mode 100644 index 0000000..ee9d621 Binary files /dev/null and b/public/images/country/mp.png differ diff --git a/public/images/country/mq.png b/public/images/country/mq.png new file mode 100644 index 0000000..ca303e8 Binary files /dev/null and b/public/images/country/mq.png differ diff --git a/public/images/country/mr.png b/public/images/country/mr.png new file mode 100644 index 0000000..f15a388 Binary files /dev/null and b/public/images/country/mr.png differ diff --git a/public/images/country/ms.png b/public/images/country/ms.png new file mode 100644 index 0000000..31b268b Binary files /dev/null and b/public/images/country/ms.png differ diff --git a/public/images/country/mt.png b/public/images/country/mt.png new file mode 100644 index 0000000..b83f796 Binary files /dev/null and b/public/images/country/mt.png differ diff --git a/public/images/country/mu.png b/public/images/country/mu.png new file mode 100644 index 0000000..df6294b Binary files /dev/null and b/public/images/country/mu.png differ diff --git a/public/images/country/mv.png b/public/images/country/mv.png new file mode 100644 index 0000000..3af54a4 Binary files /dev/null and b/public/images/country/mv.png differ diff --git a/public/images/country/mw.png b/public/images/country/mw.png new file mode 100644 index 0000000..9f2daed Binary files /dev/null and b/public/images/country/mw.png differ diff --git a/public/images/country/mx.png b/public/images/country/mx.png new file mode 100644 index 0000000..0004186 Binary files /dev/null and b/public/images/country/mx.png differ diff --git a/public/images/country/my.png b/public/images/country/my.png new file mode 100644 index 0000000..b1c71f5 Binary files /dev/null and b/public/images/country/my.png differ diff --git a/public/images/country/mz.png b/public/images/country/mz.png new file mode 100644 index 0000000..6411251 Binary files /dev/null and b/public/images/country/mz.png differ diff --git a/public/images/country/na.png b/public/images/country/na.png new file mode 100644 index 0000000..99f7e3c Binary files /dev/null and b/public/images/country/na.png differ diff --git a/public/images/country/nc.png b/public/images/country/nc.png new file mode 100644 index 0000000..34a619e Binary files /dev/null and b/public/images/country/nc.png differ diff --git a/public/images/country/ne.png b/public/images/country/ne.png new file mode 100644 index 0000000..bdce81c Binary files /dev/null and b/public/images/country/ne.png differ diff --git a/public/images/country/nf.png b/public/images/country/nf.png new file mode 100644 index 0000000..e1f1b2f Binary files /dev/null and b/public/images/country/nf.png differ diff --git a/public/images/country/ng.png b/public/images/country/ng.png new file mode 100644 index 0000000..488068e Binary files /dev/null and b/public/images/country/ng.png differ diff --git a/public/images/country/ni.png b/public/images/country/ni.png new file mode 100644 index 0000000..3df6cc2 Binary files /dev/null and b/public/images/country/ni.png differ diff --git a/public/images/country/nl.png b/public/images/country/nl.png new file mode 100644 index 0000000..564a915 Binary files /dev/null and b/public/images/country/nl.png differ diff --git a/public/images/country/no.png b/public/images/country/no.png new file mode 100644 index 0000000..bfbd46d Binary files /dev/null and b/public/images/country/no.png differ diff --git a/public/images/country/np.png b/public/images/country/np.png new file mode 100644 index 0000000..1c3205d Binary files /dev/null and b/public/images/country/np.png differ diff --git a/public/images/country/nr.png b/public/images/country/nr.png new file mode 100644 index 0000000..e915a48 Binary files /dev/null and b/public/images/country/nr.png differ diff --git a/public/images/country/nu.png b/public/images/country/nu.png new file mode 100644 index 0000000..7cd5f52 Binary files /dev/null and b/public/images/country/nu.png differ diff --git a/public/images/country/nz.png b/public/images/country/nz.png new file mode 100644 index 0000000..7d9e161 Binary files /dev/null and b/public/images/country/nz.png differ diff --git a/public/images/country/om.png b/public/images/country/om.png new file mode 100644 index 0000000..9c658d4 Binary files /dev/null and b/public/images/country/om.png differ diff --git a/public/images/country/pa.png b/public/images/country/pa.png new file mode 100644 index 0000000..0c45461 Binary files /dev/null and b/public/images/country/pa.png differ diff --git a/public/images/country/pe.png b/public/images/country/pe.png new file mode 100644 index 0000000..7a462cc Binary files /dev/null and b/public/images/country/pe.png differ diff --git a/public/images/country/pf.png b/public/images/country/pf.png new file mode 100644 index 0000000..d2ccc54 Binary files /dev/null and b/public/images/country/pf.png differ diff --git a/public/images/country/pg.png b/public/images/country/pg.png new file mode 100644 index 0000000..d1c25b2 Binary files /dev/null and b/public/images/country/pg.png differ diff --git a/public/images/country/ph.png b/public/images/country/ph.png new file mode 100644 index 0000000..a173e25 Binary files /dev/null and b/public/images/country/ph.png differ diff --git a/public/images/country/pk.png b/public/images/country/pk.png new file mode 100644 index 0000000..442d03c Binary files /dev/null and b/public/images/country/pk.png differ diff --git a/public/images/country/pl.png b/public/images/country/pl.png new file mode 100644 index 0000000..f220bfe Binary files /dev/null and b/public/images/country/pl.png differ diff --git a/public/images/country/pm.png b/public/images/country/pm.png new file mode 100644 index 0000000..fa0f4bf Binary files /dev/null and b/public/images/country/pm.png differ diff --git a/public/images/country/pn.png b/public/images/country/pn.png new file mode 100644 index 0000000..e739f95 Binary files /dev/null and b/public/images/country/pn.png differ diff --git a/public/images/country/pr.png b/public/images/country/pr.png new file mode 100644 index 0000000..aa7bef7 Binary files /dev/null and b/public/images/country/pr.png differ diff --git a/public/images/country/ps.png b/public/images/country/ps.png new file mode 100644 index 0000000..c3e1a5c Binary files /dev/null and b/public/images/country/ps.png differ diff --git a/public/images/country/pt.png b/public/images/country/pt.png new file mode 100644 index 0000000..1be1cee Binary files /dev/null and b/public/images/country/pt.png differ diff --git a/public/images/country/pw.png b/public/images/country/pw.png new file mode 100644 index 0000000..2efb744 Binary files /dev/null and b/public/images/country/pw.png differ diff --git a/public/images/country/py.png b/public/images/country/py.png new file mode 100644 index 0000000..3ebdc49 Binary files /dev/null and b/public/images/country/py.png differ diff --git a/public/images/country/qa.png b/public/images/country/qa.png new file mode 100644 index 0000000..9b0e95a Binary files /dev/null and b/public/images/country/qa.png differ diff --git a/public/images/country/re.png b/public/images/country/re.png new file mode 100644 index 0000000..98b2ca3 Binary files /dev/null and b/public/images/country/re.png differ diff --git a/public/images/country/ro.png b/public/images/country/ro.png new file mode 100644 index 0000000..8ea5627 Binary files /dev/null and b/public/images/country/ro.png differ diff --git a/public/images/country/rs.png b/public/images/country/rs.png new file mode 100644 index 0000000..3a624f7 Binary files /dev/null and b/public/images/country/rs.png differ diff --git a/public/images/country/ru.png b/public/images/country/ru.png new file mode 100644 index 0000000..6821d59 Binary files /dev/null and b/public/images/country/ru.png differ diff --git a/public/images/country/rw.png b/public/images/country/rw.png new file mode 100644 index 0000000..84ea77a Binary files /dev/null and b/public/images/country/rw.png differ diff --git a/public/images/country/sa.png b/public/images/country/sa.png new file mode 100644 index 0000000..bcf6779 Binary files /dev/null and b/public/images/country/sa.png differ diff --git a/public/images/country/sb.png b/public/images/country/sb.png new file mode 100644 index 0000000..0caccaa Binary files /dev/null and b/public/images/country/sb.png differ diff --git a/public/images/country/sc.png b/public/images/country/sc.png new file mode 100644 index 0000000..2ccd568 Binary files /dev/null and b/public/images/country/sc.png differ diff --git a/public/images/country/sd.png b/public/images/country/sd.png new file mode 100644 index 0000000..80517e6 Binary files /dev/null and b/public/images/country/sd.png differ diff --git a/public/images/country/se.png b/public/images/country/se.png new file mode 100644 index 0000000..f937cb0 Binary files /dev/null and b/public/images/country/se.png differ diff --git a/public/images/country/sg.png b/public/images/country/sg.png new file mode 100644 index 0000000..2151da4 Binary files /dev/null and b/public/images/country/sg.png differ diff --git a/public/images/country/sh.png b/public/images/country/sh.png new file mode 100644 index 0000000..1648f34 Binary files /dev/null and b/public/images/country/sh.png differ diff --git a/public/images/country/si.png b/public/images/country/si.png new file mode 100644 index 0000000..ebfa53e Binary files /dev/null and b/public/images/country/si.png differ diff --git a/public/images/country/sj.png b/public/images/country/sj.png new file mode 100644 index 0000000..bfbd46d Binary files /dev/null and b/public/images/country/sj.png differ diff --git a/public/images/country/sk.png b/public/images/country/sk.png new file mode 100644 index 0000000..01e2c89 Binary files /dev/null and b/public/images/country/sk.png differ diff --git a/public/images/country/sl.png b/public/images/country/sl.png new file mode 100644 index 0000000..a7d36d7 Binary files /dev/null and b/public/images/country/sl.png differ diff --git a/public/images/country/sm.png b/public/images/country/sm.png new file mode 100644 index 0000000..482dfcf Binary files /dev/null and b/public/images/country/sm.png differ diff --git a/public/images/country/sn.png b/public/images/country/sn.png new file mode 100644 index 0000000..3ecd166 Binary files /dev/null and b/public/images/country/sn.png differ diff --git a/public/images/country/so.png b/public/images/country/so.png new file mode 100644 index 0000000..70f94ec Binary files /dev/null and b/public/images/country/so.png differ diff --git a/public/images/country/sr.png b/public/images/country/sr.png new file mode 100644 index 0000000..26c2681 Binary files /dev/null and b/public/images/country/sr.png differ diff --git a/public/images/country/ss.png b/public/images/country/ss.png new file mode 100644 index 0000000..6bf3251 Binary files /dev/null and b/public/images/country/ss.png differ diff --git a/public/images/country/st.png b/public/images/country/st.png new file mode 100644 index 0000000..a029334 Binary files /dev/null and b/public/images/country/st.png differ diff --git a/public/images/country/sv.png b/public/images/country/sv.png new file mode 100644 index 0000000..17965f4 Binary files /dev/null and b/public/images/country/sv.png differ diff --git a/public/images/country/sx.png b/public/images/country/sx.png new file mode 100644 index 0000000..bdeff0c Binary files /dev/null and b/public/images/country/sx.png differ diff --git a/public/images/country/sy.png b/public/images/country/sy.png new file mode 100644 index 0000000..fe03842 Binary files /dev/null and b/public/images/country/sy.png differ diff --git a/public/images/country/sz.png b/public/images/country/sz.png new file mode 100644 index 0000000..2cd6beb Binary files /dev/null and b/public/images/country/sz.png differ diff --git a/public/images/country/tc.png b/public/images/country/tc.png new file mode 100644 index 0000000..2d3a901 Binary files /dev/null and b/public/images/country/tc.png differ diff --git a/public/images/country/td.png b/public/images/country/td.png new file mode 100644 index 0000000..c59f4e9 Binary files /dev/null and b/public/images/country/td.png differ diff --git a/public/images/country/tf.png b/public/images/country/tf.png new file mode 100644 index 0000000..95df01a Binary files /dev/null and b/public/images/country/tf.png differ diff --git a/public/images/country/tg.png b/public/images/country/tg.png new file mode 100644 index 0000000..de1a7ec Binary files /dev/null and b/public/images/country/tg.png differ diff --git a/public/images/country/th.png b/public/images/country/th.png new file mode 100644 index 0000000..76836d8 Binary files /dev/null and b/public/images/country/th.png differ diff --git a/public/images/country/tj.png b/public/images/country/tj.png new file mode 100644 index 0000000..cf3384f Binary files /dev/null and b/public/images/country/tj.png differ diff --git a/public/images/country/tk.png b/public/images/country/tk.png new file mode 100644 index 0000000..2eb355f Binary files /dev/null and b/public/images/country/tk.png differ diff --git a/public/images/country/tl.png b/public/images/country/tl.png new file mode 100644 index 0000000..248c109 Binary files /dev/null and b/public/images/country/tl.png differ diff --git a/public/images/country/tm.png b/public/images/country/tm.png new file mode 100644 index 0000000..747f9b2 Binary files /dev/null and b/public/images/country/tm.png differ diff --git a/public/images/country/tn.png b/public/images/country/tn.png new file mode 100644 index 0000000..93d7228 Binary files /dev/null and b/public/images/country/tn.png differ diff --git a/public/images/country/to.png b/public/images/country/to.png new file mode 100644 index 0000000..e933b35 Binary files /dev/null and b/public/images/country/to.png differ diff --git a/public/images/country/tr.png b/public/images/country/tr.png new file mode 100644 index 0000000..69a32d4 Binary files /dev/null and b/public/images/country/tr.png differ diff --git a/public/images/country/tt.png b/public/images/country/tt.png new file mode 100644 index 0000000..e9c92f9 Binary files /dev/null and b/public/images/country/tt.png differ diff --git a/public/images/country/tv.png b/public/images/country/tv.png new file mode 100644 index 0000000..9a46257 Binary files /dev/null and b/public/images/country/tv.png differ diff --git a/public/images/country/tw.png b/public/images/country/tw.png new file mode 100644 index 0000000..8245128 Binary files /dev/null and b/public/images/country/tw.png differ diff --git a/public/images/country/tz.png b/public/images/country/tz.png new file mode 100644 index 0000000..0a6184f Binary files /dev/null and b/public/images/country/tz.png differ diff --git a/public/images/country/ua.png b/public/images/country/ua.png new file mode 100644 index 0000000..2779e92 Binary files /dev/null and b/public/images/country/ua.png differ diff --git a/public/images/country/ug.png b/public/images/country/ug.png new file mode 100644 index 0000000..d1a5f12 Binary files /dev/null and b/public/images/country/ug.png differ diff --git a/public/images/country/um.png b/public/images/country/um.png new file mode 100644 index 0000000..09078c5 Binary files /dev/null and b/public/images/country/um.png differ diff --git a/public/images/country/unknown.png b/public/images/country/unknown.png new file mode 100644 index 0000000..5205802 Binary files /dev/null and b/public/images/country/unknown.png differ diff --git a/public/images/country/us.png b/public/images/country/us.png new file mode 100644 index 0000000..09078c5 Binary files /dev/null and b/public/images/country/us.png differ diff --git a/public/images/country/uy.png b/public/images/country/uy.png new file mode 100644 index 0000000..6e79d1a Binary files /dev/null and b/public/images/country/uy.png differ diff --git a/public/images/country/uz.png b/public/images/country/uz.png new file mode 100644 index 0000000..2b14e5b Binary files /dev/null and b/public/images/country/uz.png differ diff --git a/public/images/country/va.png b/public/images/country/va.png new file mode 100644 index 0000000..34a4cf1 Binary files /dev/null and b/public/images/country/va.png differ diff --git a/public/images/country/vc.png b/public/images/country/vc.png new file mode 100644 index 0000000..477cd52 Binary files /dev/null and b/public/images/country/vc.png differ diff --git a/public/images/country/ve.png b/public/images/country/ve.png new file mode 100644 index 0000000..163bb31 Binary files /dev/null and b/public/images/country/ve.png differ diff --git a/public/images/country/vg.png b/public/images/country/vg.png new file mode 100644 index 0000000..dac7003 Binary files /dev/null and b/public/images/country/vg.png differ diff --git a/public/images/country/vi.png b/public/images/country/vi.png new file mode 100644 index 0000000..2e65977 Binary files /dev/null and b/public/images/country/vi.png differ diff --git a/public/images/country/vn.png b/public/images/country/vn.png new file mode 100644 index 0000000..2009c9e Binary files /dev/null and b/public/images/country/vn.png differ diff --git a/public/images/country/vu.png b/public/images/country/vu.png new file mode 100644 index 0000000..f1d731b Binary files /dev/null and b/public/images/country/vu.png differ diff --git a/public/images/country/wf.png b/public/images/country/wf.png new file mode 100644 index 0000000..8a87712 Binary files /dev/null and b/public/images/country/wf.png differ diff --git a/public/images/country/ws.png b/public/images/country/ws.png new file mode 100644 index 0000000..7892b7f Binary files /dev/null and b/public/images/country/ws.png differ diff --git a/public/images/country/xk.png b/public/images/country/xk.png new file mode 100644 index 0000000..b8bf7bc Binary files /dev/null and b/public/images/country/xk.png differ diff --git a/public/images/country/ye.png b/public/images/country/ye.png new file mode 100644 index 0000000..9f3c0f1 Binary files /dev/null and b/public/images/country/ye.png differ diff --git a/public/images/country/yt.png b/public/images/country/yt.png new file mode 100644 index 0000000..b40a523 Binary files /dev/null and b/public/images/country/yt.png differ diff --git a/public/images/country/za.png b/public/images/country/za.png new file mode 100644 index 0000000..5b929be Binary files /dev/null and b/public/images/country/za.png differ diff --git a/public/images/country/zm.png b/public/images/country/zm.png new file mode 100644 index 0000000..3274c5a Binary files /dev/null and b/public/images/country/zm.png differ diff --git a/public/images/country/zw.png b/public/images/country/zw.png new file mode 100644 index 0000000..fe2b396 Binary files /dev/null and b/public/images/country/zw.png differ diff --git a/public/images/device/desktop.png b/public/images/device/desktop.png new file mode 100644 index 0000000..d5ede41 Binary files /dev/null and b/public/images/device/desktop.png differ diff --git a/public/images/device/laptop.png b/public/images/device/laptop.png new file mode 100644 index 0000000..19f6696 Binary files /dev/null and b/public/images/device/laptop.png differ diff --git a/public/images/device/mobile.png b/public/images/device/mobile.png new file mode 100644 index 0000000..d2190f4 Binary files /dev/null and b/public/images/device/mobile.png differ diff --git a/public/images/device/tablet.png b/public/images/device/tablet.png new file mode 100644 index 0000000..5e06bcf Binary files /dev/null and b/public/images/device/tablet.png differ diff --git a/public/images/device/unknown.png b/public/images/device/unknown.png new file mode 100644 index 0000000..5205802 Binary files /dev/null and b/public/images/device/unknown.png differ diff --git a/public/images/os/amazon-os.png b/public/images/os/amazon-os.png new file mode 100644 index 0000000..030e72f Binary files /dev/null and b/public/images/os/amazon-os.png differ diff --git a/public/images/os/android-os.png b/public/images/os/android-os.png new file mode 100644 index 0000000..21ea344 Binary files /dev/null and b/public/images/os/android-os.png differ diff --git a/public/images/os/beos.png b/public/images/os/beos.png new file mode 100644 index 0000000..8e852b0 Binary files /dev/null and b/public/images/os/beos.png differ diff --git a/public/images/os/blackberry-os.png b/public/images/os/blackberry-os.png new file mode 100644 index 0000000..093a8a4 Binary files /dev/null and b/public/images/os/blackberry-os.png differ diff --git a/public/images/os/chrome-os.png b/public/images/os/chrome-os.png new file mode 100644 index 0000000..ae00860 Binary files /dev/null and b/public/images/os/chrome-os.png differ diff --git a/public/images/os/ios.png b/public/images/os/ios.png new file mode 100644 index 0000000..7e803a6 Binary files /dev/null and b/public/images/os/ios.png differ diff --git a/public/images/os/linux.png b/public/images/os/linux.png new file mode 100644 index 0000000..d5c1bd8 Binary files /dev/null and b/public/images/os/linux.png differ diff --git a/public/images/os/mac-os.png b/public/images/os/mac-os.png new file mode 100644 index 0000000..a7cd52e Binary files /dev/null and b/public/images/os/mac-os.png differ diff --git a/public/images/os/open-bsd.png b/public/images/os/open-bsd.png new file mode 100644 index 0000000..b3423cc Binary files /dev/null and b/public/images/os/open-bsd.png differ diff --git a/public/images/os/os-2.png b/public/images/os/os-2.png new file mode 100644 index 0000000..8f51e61 Binary files /dev/null and b/public/images/os/os-2.png differ diff --git a/public/images/os/qnx.png b/public/images/os/qnx.png new file mode 100644 index 0000000..1cf10fe Binary files /dev/null and b/public/images/os/qnx.png differ diff --git a/public/images/os/sun-os.png b/public/images/os/sun-os.png new file mode 100644 index 0000000..648eb24 Binary files /dev/null and b/public/images/os/sun-os.png differ diff --git a/public/images/os/unknown.png b/public/images/os/unknown.png new file mode 100644 index 0000000..5205802 Binary files /dev/null and b/public/images/os/unknown.png differ diff --git a/public/images/os/windows-10.png b/public/images/os/windows-10.png new file mode 100644 index 0000000..4effcd2 Binary files /dev/null and b/public/images/os/windows-10.png differ diff --git a/public/images/os/windows-11.png b/public/images/os/windows-11.png new file mode 100644 index 0000000..4effcd2 Binary files /dev/null and b/public/images/os/windows-11.png differ diff --git a/public/images/os/windows-2000.png b/public/images/os/windows-2000.png new file mode 100644 index 0000000..8ec7db1 Binary files /dev/null and b/public/images/os/windows-2000.png differ diff --git a/public/images/os/windows-3-11.png b/public/images/os/windows-3-11.png new file mode 100644 index 0000000..8ec7db1 Binary files /dev/null and b/public/images/os/windows-3-11.png differ diff --git a/public/images/os/windows-7.png b/public/images/os/windows-7.png new file mode 100644 index 0000000..4a899a3 Binary files /dev/null and b/public/images/os/windows-7.png differ diff --git a/public/images/os/windows-8-1.png b/public/images/os/windows-8-1.png new file mode 100644 index 0000000..f6605f4 Binary files /dev/null and b/public/images/os/windows-8-1.png differ diff --git a/public/images/os/windows-8.png b/public/images/os/windows-8.png new file mode 100644 index 0000000..f6605f4 Binary files /dev/null and b/public/images/os/windows-8.png differ diff --git a/public/images/os/windows-95.png b/public/images/os/windows-95.png new file mode 100644 index 0000000..8ec7db1 Binary files /dev/null and b/public/images/os/windows-95.png differ diff --git a/public/images/os/windows-98.png b/public/images/os/windows-98.png new file mode 100644 index 0000000..8ec7db1 Binary files /dev/null and b/public/images/os/windows-98.png differ diff --git a/public/images/os/windows-me.png b/public/images/os/windows-me.png new file mode 100644 index 0000000..4a899a3 Binary files /dev/null and b/public/images/os/windows-me.png differ diff --git a/public/images/os/windows-mobile.png b/public/images/os/windows-mobile.png new file mode 100644 index 0000000..4a899a3 Binary files /dev/null and b/public/images/os/windows-mobile.png differ diff --git a/public/images/os/windows-server-2003.png b/public/images/os/windows-server-2003.png new file mode 100644 index 0000000..4a899a3 Binary files /dev/null and b/public/images/os/windows-server-2003.png differ diff --git a/public/images/os/windows-vista.png b/public/images/os/windows-vista.png new file mode 100644 index 0000000..4a899a3 Binary files /dev/null and b/public/images/os/windows-vista.png differ diff --git a/public/images/os/windows-xp.png b/public/images/os/windows-xp.png new file mode 100644 index 0000000..4a899a3 Binary files /dev/null and b/public/images/os/windows-xp.png differ diff --git a/public/intl/country/am-ET.json b/public/intl/country/am-ET.json new file mode 100644 index 0000000..e774f38 --- /dev/null +++ b/public/intl/country/am-ET.json @@ -0,0 +1,252 @@ +{ + "HU": "\u1200\u1295\u130b\u122a", + "HT": "\u1200\u12ed\u1272", + "IN": "\u1205\u1295\u12f5", + "HN": "\u1206\u1295\u12f1\u122b\u1235", + "HK": "\u1206\u1295\u130d \u12ae\u1295\u130d \u120d\u12e9 \u12e8\u12a0\u1235\u1270\u12f3\u12f0\u122d \u12ad\u120d\u120d \u127b\u12ed\u1293", + "LU": "\u1209\u12ad\u1230\u121d\u1260\u122d\u130d", + "LY": "\u120a\u1262\u12eb", + "LB": "\u120a\u1263\u1296\u1235", + "LT": "\u120a\u1271\u12cc\u1292\u12eb", + "LI": "\u120a\u127d\u1270\u1295\u1235\u1273\u12ed\u1295", + "LV": "\u120b\u1275\u126a\u12eb", + "LA": "\u120b\u12a6\u1235", + "LR": "\u120b\u12ed\u1264\u122a\u12eb", + "LS": "\u120c\u1236\u1276", + "FM": "\u121a\u12ad\u122e\u1294\u12e2\u12eb", + "ML": "\u121b\u120a", + "MW": "\u121b\u120b\u12ca", + "MY": "\u121b\u120c\u12e2\u12eb", + "MT": "\u121b\u120d\u1273", + "MV": "\u121b\u120d\u12f2\u126d\u1235", + "MH": "\u121b\u122d\u123b\u120d \u12a0\u12ed\u120b\u1295\u12f5", + "MQ": "\u121b\u122d\u1272\u1292\u12ad", + "MO": "\u121b\u12ab\u12a1 \u120d\u12e9 \u12e8\u12a0\u1235\u1270\u12f3\u12f0\u122d \u12ad\u120d\u120d \u127b\u12ed\u1293", + "CF": "\u121b\u12d5\u12a8\u120b\u12ca \u12a0\u134d\u122a\u12ab \u122a\u1351\u1265\u120a\u12ad", + "MM": "\u121b\u12ed\u1293\u121b\u122d(\u1260\u122d\u121b)", + "MG": "\u121b\u12f3\u130b\u1235\u12ab\u122d", + "MX": "\u121c\u12ad\u1232\u12ae", + "YT": "\u121c\u12ed\u12a6\u1274", + "EH": "\u121d\u12d5\u122b\u1263\u12ca \u1233\u1205\u122b", + "MD": "\u121e\u120d\u12f6\u126b", + "MU": "\u121e\u122a\u1238\u1235", + "MR": "\u121e\u122a\u1274\u1292\u12eb", + "MA": "\u121e\u122e\u12ae", + "MC": "\u121e\u1293\u12ae", + "ME": "\u121e\u1295\u1270\u1294\u130d\u122e", + "MS": "\u121e\u1295\u1275\u1234\u122b\u1275", + "MN": "\u121e\u1295\u130e\u120a\u12eb", + "MZ": "\u121e\u12db\u121d\u1262\u12ad", + "RU": "\u1229\u1235\u12eb", + "RW": "\u1229\u12cb\u1295\u12f3", + "RE": "\u122a\u12e9\u1292\u12e8\u1295", + "RO": "\u122e\u121c\u1292\u12eb", + "SB": "\u1230\u120e\u121e\u1295 \u12f0\u1234\u1275", + "MK": "\u1230\u121c\u1295 \u1218\u1244\u12f6\u1295\u12eb", + "KP": "\u1230\u121c\u1295 \u12ae\u122a\u12eb", + "RS": "\u1230\u122d\u1265\u12eb", + "SO": "\u1231\u121b\u120c", + "SR": "\u1231\u122a\u1293\u121d", + "SZ": "\u1231\u12cb\u12da\u120b\u1295\u12f5", + "SD": "\u1231\u12f3\u1295", + "LK": "\u1232\u122a\u120b\u1295\u12ab", + "SY": "\u1232\u122a\u12eb", + "SC": "\u1232\u123c\u120d\u1235", + "SX": "\u1232\u1295\u1275 \u121b\u122d\u1270\u1295", + "SG": "\u1232\u1295\u130b\u1356\u122d", + "WS": "\u1233\u121e\u12a0", + "SM": "\u1233\u1295 \u121b\u122a\u1296", + "ST": "\u1233\u12a6 \u1276\u121c \u12a5\u1293 \u1355\u122a\u1295\u1232\u1354", + "SA": "\u1233\u12cd\u12f5\u12a0\u1228\u1262\u12eb", + "CY": "\u1233\u12ed\u1355\u1228\u1235", + "SL": "\u1234\u122b\u120a\u12ee\u1295", + "SN": "\u1234\u1294\u130b\u120d", + "SH": "\u1234\u1295\u1275 \u1204\u1208\u1293", + "LC": "\u1234\u1295\u1275 \u1209\u127a\u12eb", + "MF": "\u1234\u1295\u1275 \u121b\u122d\u1272\u1295", + "SK": "\u1235\u120e\u126b\u12aa\u12eb", + "SI": "\u1235\u120e\u126c\u1292\u12eb", + "SJ": "\u1235\u126b\u120d\u1263\u122d\u12f5 \u12a5\u1293 \u1303\u1295 \u121b\u12e8\u1295", + "CH": "\u1235\u12ca\u12d8\u122d\u120b\u1295\u12f5", + "SE": "\u1235\u12ca\u12f5\u1295", + "ES": "\u1235\u1354\u1295", + "BL": "\u1245\u12f1\u1235 \u1260\u122d\u1274\u120e\u121c", + "VC": "\u1245\u12f1\u1235 \u126a\u1295\u1234\u1295\u1275 \u12a5\u1293 \u130d\u122c\u1293\u12f2\u1295\u1235", + "KN": "\u1245\u12f1\u1235 \u12aa\u1275\u1235 \u12a5\u1293 \u1294\u126a\u1235", + "PM": "\u1245\u12f1\u1235 \u1352\u12ec\u122d \u12a5\u1293 \u121a\u12a9\u12a4\u120e\u1295", + "BZ": "\u1260\u120a\u12dd", + "BT": "\u1261\u1205\u1273\u1295", + "BG": "\u1261\u120d\u130c\u122a\u12eb", + "BF": "\u1261\u122d\u12aa\u1293 \u134b\u1236", + "BV": "\u1261\u126c\u1275 \u12f0\u1234\u1275", + "BS": "\u1263\u1203\u121b\u1235", + "BH": "\u1263\u1205\u122c\u1295", + "BB": "\u1263\u122d\u1264\u12f6\u1235", + "BD": "\u1263\u1295\u130d\u120b\u12f2\u123d", + "BY": "\u1264\u120b\u1229\u1235", + "BE": "\u1264\u120d\u1304\u121d", + "BM": "\u1264\u122d\u1219\u12f3", + "BJ": "\u1264\u1292\u1295", + "BN": "\u1265\u1229\u1292", + "BI": "\u1265\u1229\u1295\u12f2", + "BR": "\u1265\u122b\u12da\u120d", + "BO": "\u1266\u120a\u126a\u12eb", + "BA": "\u1266\u1235\u1292\u12eb \u12a5\u1293 \u1204\u122d\u12de\u130e\u126a\u1292\u12eb", + "BW": "\u1266\u1275\u1235\u12cb\u1293", + "VA": "\u126b\u1272\u12ab\u1295 \u12a8\u1270\u121b", + "VU": "\u126b\u1291\u12a0\u1271", + "VN": "\u126c\u1275\u1293\u121d", + "VE": "\u126c\u1295\u12d9\u12cc\u120b", + "TR": "\u1271\u122d\u12ad", + "TM": "\u1271\u122d\u12ad\u121c\u1292\u1235\u1273\u1295", + "TV": "\u1271\u126b\u1209", + "TN": "\u1271\u1292\u12da\u12eb", + "TL": "\u1272\u121e\u122d \u120c\u1235\u1274", + "TZ": "\u1273\u1295\u12db\u1292\u12eb", + "TH": "\u1273\u12ed\u120b\u1295\u12f5", + "TW": "\u1273\u12ed\u12cb\u1295", + "TJ": "\u1273\u1303\u12aa\u1235\u1273\u1295", + "TT": "\u1275\u122a\u1293\u12f3\u12f5 \u12a5\u1293 \u1276\u1264\u130e", + "TO": "\u1276\u1295\u130b", + "TK": "\u1276\u12ad\u120b\u12cd", + "TG": "\u1276\u1310", + "CL": "\u127a\u120a", + "CN": "\u127b\u12ed\u1293", + "TD": "\u127b\u12f5", + "CZ": "\u127c\u127a\u12eb", + "NU": "\u1292\u12a1\u12ed", + "NI": "\u1292\u12ab\u122b\u1313", + "NC": "\u1292\u12cd \u12ab\u120c\u12f6\u1292\u12eb", + "NZ": "\u1292\u12cd \u12da\u120b\u1295\u12f5", + "NE": "\u1292\u1300\u122d", + "NA": "\u1293\u121a\u1262\u12eb", + "NR": "\u1293\u12a1\u1229", + "NG": "\u1293\u12ed\u1304\u122a\u12eb", + "NL": "\u1294\u12d8\u122d\u120b\u1295\u12f5", + "NP": "\u1294\u1353\u120d", + "NO": "\u1296\u122d\u12cc\u12ed", + "NF": "\u1296\u122d\u134e\u120d\u12ad \u12f0\u1234\u1275", + "AL": "\u12a0\u120d\u1263\u1292\u12eb", + "DZ": "\u12a0\u120d\u1304\u122a\u12eb", + "AW": "\u12a0\u1229\u1263", + "AM": "\u12a0\u122d\u121c\u1292\u12eb", + "AR": "\u12a0\u122d\u1300\u1295\u1272\u1293", + "AG": "\u12a0\u1295\u1272\u1313 \u12a5\u1293 \u1263\u1229\u12f3", + "AQ": "\u12a0\u1295\u1273\u122d\u12ad\u1272\u12ab", + "AD": "\u12a0\u1295\u12f6\u122b", + "AI": "\u12a0\u1295\u1309\u12ed\u120b", + "AO": "\u12a0\u1295\u1310\u120b", + "AU": "\u12a0\u12cd\u1235\u1275\u122b\u120d\u12eb", + "AZ": "\u12a0\u12d8\u122d\u1263\u1303\u1295", + "IE": "\u12a0\u12e8\u122d\u120b\u1295\u12f5", + "IM": "\u12a0\u12ed\u120d \u12a6\u134d \u121b\u1295", + "IS": "\u12a0\u12ed\u1235\u120b\u1295\u12f5", + "AF": "\u12a0\u134d\u130b\u1292\u1235\u1273\u1295", + "UY": "\u12a1\u122b\u1313\u12ed", + "UZ": "\u12a1\u12dd\u1264\u12aa\u1235\u1273\u1295", + "IQ": "\u12a2\u122b\u1245", + "IR": "\u12a2\u122b\u1295", + "ET": "\u12a2\u1275\u12ee\u1335\u12eb", + "ID": "\u12a2\u1295\u12f6\u1294\u12e2\u12eb", + "GQ": "\u12a2\u12b3\u1276\u122a\u12eb\u120d \u130a\u1292", + "EC": "\u12a2\u12b3\u12f6\u122d", + "SV": "\u12a4\u120d \u1233\u120d\u126b\u12f6\u122d", + "ER": "\u12a4\u122d\u1275\u122b", + "EE": "\u12a4\u1235\u1276\u1292\u12eb", + "IL": "\u12a5\u1235\u122b\u12a4\u120d", + "OM": "\u12a6\u121b\u1295", + "AT": "\u12a6\u1235\u1275\u122a\u12eb", + "CW": "\u12a9\u122b\u1233\u12ce", + "CU": "\u12a9\u1263", + "CK": "\u12a9\u12ad \u12f0\u1234\u1276\u127d", + "KI": "\u12aa\u122a\u1263\u1272", + "KG": "\u12aa\u122d\u130a\u1235\u1273\u1295", + "CM": "\u12ab\u121c\u1229\u1295", + "KH": "\u12ab\u121d\u1266\u12f2\u12eb", + "CA": "\u12ab\u1293\u12f3", + "KZ": "\u12ab\u12db\u12aa\u1235\u1273\u1295", + "KY": "\u12ab\u12ed\u121b\u1295 \u12f0\u1234\u1276\u127d", + "KE": "\u12ac\u1295\u12eb", + "CV": "\u12ac\u1355 \u126c\u122d\u12f4", + "CX": "\u12ad\u122a\u1235\u121b\u1235 \u12f0\u1234\u1275", + "HR": "\u12ad\u122e\u12a4\u123d\u12eb", + "KW": "\u12ad\u12cc\u1275", + "CO": "\u12ae\u120e\u121d\u1262\u12eb", + "KM": "\u12ae\u121e\u122e\u1235", + "XK": "\u12ee\u1236\u126e", + "CR": "\u12ae\u1235\u1273\u122a\u12ab", + "CI": "\u12ae\u1275 \u12f2\u126f\u122d", + "CG": "\u12ae\u1295\u130e \u1265\u122b\u12db\u126a\u120d", + "CD": "\u12ae\u1295\u130e-\u12aa\u1295\u123b\u1233", + "CC": "\u12ae\u12ae\u1235(\u12ac\u120a\u1295\u130d) \u12f0\u1234\u1276\u127d", + "QA": "\u12b3\u1273\u122d", + "HM": "\u12bd\u122d\u12f5 \u12f0\u1234\u1276\u127d\u1293 \u121b\u12ad\u12f6\u1293\u120d\u12f5 \u12f0\u1234\u1276\u127d", + "WF": "\u12cb\u120a\u1235 \u12a5\u1293 \u1349\u1271\u1293 \u12f0\u1234\u1276\u127d", + "ZW": "\u12da\u121d\u1267\u1264", + "ZM": "\u12db\u121d\u1262\u12eb", + "YE": "\u12e8\u1218\u1295", + "MP": "\u12e8\u1230\u121c\u1293\u12ca \u121b\u122a\u12eb\u1293 \u12f0\u1234\u1276\u127d", + "IO": "\u12e8\u1265\u122a\u1273\u1292\u12eb \u1205\u1295\u12f5 \u12cd\u1242\u12eb\u1296\u1235 \u130d\u12db\u1275", + "AE": "\u12e8\u1270\u1263\u1260\u1229\u1275 \u12d3\u1228\u1265 \u12a4\u121d\u122c\u1275\u1235", + "TC": "\u12e8\u1271\u122d\u12ae\u127d\u1293 \u12e8\u12ab\u12a2\u12ae\u1235 \u12f0\u1234\u1276\u127d", + "AX": "\u12e8\u12a0\u120b\u1295\u12f5 \u12f0\u1234\u1276\u127d", + "AS": "\u12e8\u12a0\u121c\u122a\u12ab \u1233\u121e\u12a0", + "VI": "\u12e8\u12a0\u121c\u122a\u12ab \u1268\u122d\u1302\u1295 \u12f0\u1234\u1276\u127d", + "VG": "\u12e8\u12a5\u1295\u130d\u120a\u12dd \u1268\u122d\u1302\u1295 \u12f0\u1234\u1276\u127d", + "BQ": "\u12e8\u12ab\u122a\u1262\u12eb\u1295 \u1294\u12d8\u122d\u120b\u1295\u12f5\u1235", + "UM": "\u12e8\u12e9 \u12a4\u1235 \u1320\u1228\u134d \u120b\u12ed \u12eb\u1209 \u12f0\u1234\u1276\u127d", + "TF": "\u12e8\u1348\u1228\u1295\u1233\u12ed \u12f0\u1261\u1263\u12ca \u130d\u12db\u1276\u127d", + "GF": "\u12e8\u1348\u1228\u1295\u1233\u12ed \u1309\u12ca\u12a0\u1293", + "PF": "\u12e8\u1348\u1228\u1295\u1233\u12ed \u1356\u120a\u1294\u12e2\u12eb", + "FO": "\u12e8\u134b\u122e \u12f0\u1234\u1276\u127d", + "PS": "\u12e8\u134d\u120d\u1235\u1324\u121d \u130d\u12db\u1275", + "FK": "\u12e8\u134e\u12ad\u120b\u1295\u12f5 \u12f0\u1234\u1276\u127d", + "US": "\u12e9\u1293\u12ed\u1275\u12f5 \u1235\u1274\u1275\u1235", + "GB": "\u12e9\u1293\u12ed\u1275\u12f5 \u12aa\u1295\u130d\u12f0\u121d", + "UA": "\u12e9\u12ad\u122c\u1295", + "UG": "\u12e9\u130b\u1295\u12f3", + "SS": "\u12f0\u1261\u1265 \u1231\u12f3\u1295", + "ZA": "\u12f0\u1261\u1265 \u12a0\u134d\u122a\u12ab", + "KR": "\u12f0\u1261\u1265 \u12ae\u122a\u12eb", + "GS": "\u12f0\u1261\u1265 \u1306\u122d\u1302\u12eb \u12a5\u1293 \u12e8\u12f0\u1261\u1265 \u1233\u1295\u12f5\u12ca\u127d \u12f0\u1234\u1276\u127d", + "DK": "\u12f4\u1295\u121b\u122d\u12ad", + "DO": "\u12f6\u1218\u1292\u12ab\u1295 \u122a\u1351\u1265\u120a\u12ad", + "DM": "\u12f6\u121a\u1292\u12ab", + "DE": "\u1300\u122d\u1218\u1295", + "JE": "\u1300\u122d\u1232", + "DJ": "\u1302\u1261\u1272", + "GI": "\u1302\u1265\u122b\u120d\u1270\u122d", + "JM": "\u1303\u121b\u12ed\u12ab", + "JP": "\u1303\u1353\u1295", + "JO": "\u1306\u122d\u12f3\u1295", + "GE": "\u1306\u122d\u1302\u12eb", + "GG": "\u1309\u122d\u1290\u1232", + "GU": "\u1309\u12cb\u121d", + "GT": "\u1309\u12cb\u1272\u121b\u120b", + "GP": "\u1309\u12cb\u12f0\u1209\u1355", + "GY": "\u1309\u12eb\u1293", + "GN": "\u130a\u1292", + "GW": "\u130a\u1292 \u1262\u1233\u12a6", + "GM": "\u130b\u121d\u1262\u12eb", + "GA": "\u130b\u1266\u1295", + "GH": "\u130b\u1293", + "GL": "\u130d\u122a\u1295\u120b\u1295\u12f5", + "GR": "\u130d\u122a\u12ad", + "GD": "\u130d\u122c\u1293\u12f3", + "EG": "\u130d\u1265\u133d", + "IT": "\u1323\u120a\u12eb\u1295", + "FR": "\u1348\u1228\u1295\u1233\u12ed", + "PH": "\u134a\u120a\u1352\u1295\u1235", + "FI": "\u134a\u1295\u120b\u1295\u12f5", + "FJ": "\u134a\u1302", + "PN": "\u1352\u1275\u12ab\u12a2\u122d\u1295 \u12a0\u12ed\u1235\u120b\u1295\u12f5", + "PW": "\u1353\u120b\u12cd", + "PY": "\u1353\u122b\u1313\u12ed", + "PA": "\u1353\u1293\u121b", + "PK": "\u1353\u12aa\u1235\u1273\u1295", + "PG": "\u1353\u1351\u12cb \u1292\u12cd \u130a\u1292", + "PE": "\u1354\u1229", + "PL": "\u1356\u120b\u1295\u12f5", + "PT": "\u1356\u122d\u1271\u130b\u120d", + "PR": "\u1356\u122d\u1273 \u122a\u12ae" +} diff --git a/public/intl/country/ar-SA.json b/public/intl/country/ar-SA.json new file mode 100644 index 0000000..d5986fd --- /dev/null +++ b/public/intl/country/ar-SA.json @@ -0,0 +1,252 @@ +{ + "IS": "\u0622\u064a\u0633\u0644\u0646\u062f\u0627", + "ET": "\u0625\u062b\u064a\u0648\u0628\u064a\u0627", + "AZ": "\u0623\u0630\u0631\u0628\u064a\u062c\u0627\u0646", + "AM": "\u0623\u0631\u0645\u064a\u0646\u064a\u0627", + "AW": "\u0623\u0631\u0648\u0628\u0627", + "ER": "\u0625\u0631\u064a\u062a\u0631\u064a\u0627", + "ES": "\u0625\u0633\u0628\u0627\u0646\u064a\u0627", + "AU": "\u0623\u0633\u062a\u0631\u0627\u0644\u064a\u0627", + "EE": "\u0625\u0633\u062a\u0648\u0646\u064a\u0627", + "IL": "\u0625\u0633\u0631\u0627\u0626\u064a\u0644", + "SZ": "\u0625\u0633\u0648\u0627\u062a\u064a\u0646\u064a", + "AF": "\u0623\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646", + "PS": "\u0627\u0644\u0623\u0631\u0627\u0636\u064a \u0627\u0644\u0641\u0644\u0633\u0637\u064a\u0646\u064a\u0629", + "AR": "\u0627\u0644\u0623\u0631\u062c\u0646\u062a\u064a\u0646", + "JO": "\u0627\u0644\u0623\u0631\u062f\u0646", + "TF": "\u0627\u0644\u0623\u0642\u0627\u0644\u064a\u0645 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629", + "IO": "\u0627\u0644\u0625\u0642\u0644\u064a\u0645 \u0627\u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a \u0641\u064a \u0627\u0644\u0645\u062d\u064a\u0637 \u0627\u0644\u0647\u0646\u062f\u064a", + "EC": "\u0627\u0644\u0625\u0643\u0648\u0627\u062f\u0648\u0631", + "AE": "\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629", + "AL": "\u0623\u0644\u0628\u0627\u0646\u064a\u0627", + "BH": "\u0627\u0644\u0628\u062d\u0631\u064a\u0646", + "BR": "\u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644", + "PT": "\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644", + "BA": "\u0627\u0644\u0628\u0648\u0633\u0646\u0629 \u0648\u0627\u0644\u0647\u0631\u0633\u0643", + "CZ": "\u0627\u0644\u062a\u0634\u064a\u0643", + "ME": "\u0627\u0644\u062c\u0628\u0644 \u0627\u0644\u0623\u0633\u0648\u062f", + "DZ": "\u0627\u0644\u062c\u0632\u0627\u0626\u0631", + "DK": "\u0627\u0644\u062f\u0627\u0646\u0645\u0631\u0643", + "CV": "\u0627\u0644\u0631\u0623\u0633 \u0627\u0644\u0623\u062e\u0636\u0631", + "SV": "\u0627\u0644\u0633\u0644\u0641\u0627\u062f\u0648\u0631", + "SN": "\u0627\u0644\u0633\u0646\u063a\u0627\u0644", + "SD": "\u0627\u0644\u0633\u0648\u062f\u0627\u0646", + "SE": "\u0627\u0644\u0633\u0648\u064a\u062f", + "EH": "\u0627\u0644\u0635\u062d\u0631\u0627\u0621 \u0627\u0644\u063a\u0631\u0628\u064a\u0629", + "SO": "\u0627\u0644\u0635\u0648\u0645\u0627\u0644", + "CN": "\u0627\u0644\u0635\u064a\u0646", + "IQ": "\u0627\u0644\u0639\u0631\u0627\u0642", + "GA": "\u0627\u0644\u063a\u0627\u0628\u0648\u0646", + "VA": "\u0627\u0644\u0641\u0627\u062a\u064a\u0643\u0627\u0646", + "PH": "\u0627\u0644\u0641\u0644\u0628\u064a\u0646", + "CM": "\u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0648\u0646", + "CG": "\u0627\u0644\u0643\u0648\u0646\u063a\u0648 - \u0628\u0631\u0627\u0632\u0627\u0641\u064a\u0644", + "CD": "\u0627\u0644\u0643\u0648\u0646\u063a\u0648 - \u0643\u064a\u0646\u0634\u0627\u0633\u0627", + "KW": "\u0627\u0644\u0643\u0648\u064a\u062a", + "DE": "\u0623\u0644\u0645\u0627\u0646\u064a\u0627", + "MA": "\u0627\u0644\u0645\u063a\u0631\u0628", + "MX": "\u0627\u0644\u0645\u0643\u0633\u064a\u0643", + "SA": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "GB": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629", + "NO": "\u0627\u0644\u0646\u0631\u0648\u064a\u062c", + "AT": "\u0627\u0644\u0646\u0645\u0633\u0627", + "NE": "\u0627\u0644\u0646\u064a\u062c\u0631", + "IN": "\u0627\u0644\u0647\u0646\u062f", + "US": "\u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629", + "JP": "\u0627\u0644\u064a\u0627\u0628\u0627\u0646", + "YE": "\u0627\u0644\u064a\u0645\u0646", + "GR": "\u0627\u0644\u064a\u0648\u0646\u0627\u0646", + "AQ": "\u0623\u0646\u062a\u0627\u0631\u0643\u062a\u064a\u0643\u0627", + "AG": "\u0623\u0646\u062a\u064a\u063a\u0648\u0627 \u0648\u0628\u0631\u0628\u0648\u062f\u0627", + "AD": "\u0623\u0646\u062f\u0648\u0631\u0627", + "ID": "\u0625\u0646\u062f\u0648\u0646\u064a\u0633\u064a\u0627", + "AO": "\u0623\u0646\u063a\u0648\u0644\u0627", + "AI": "\u0623\u0646\u063a\u0648\u064a\u0644\u0627", + "UY": "\u0623\u0648\u0631\u0648\u063a\u0648\u0627\u064a", + "UZ": "\u0623\u0648\u0632\u0628\u0643\u0633\u062a\u0627\u0646", + "UG": "\u0623\u0648\u063a\u0646\u062f\u0627", + "UA": "\u0623\u0648\u0643\u0631\u0627\u0646\u064a\u0627", + "IR": "\u0625\u064a\u0631\u0627\u0646", + "IE": "\u0623\u064a\u0631\u0644\u0646\u062f\u0627", + "IT": "\u0625\u064a\u0637\u0627\u0644\u064a\u0627", + "PG": "\u0628\u0627\u0628\u0648\u0627 \u063a\u064a\u0646\u064a\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u0629", + "PY": "\u0628\u0627\u0631\u0627\u063a\u0648\u0627\u064a", + "PK": "\u0628\u0627\u0643\u0633\u062a\u0627\u0646", + "PW": "\u0628\u0627\u0644\u0627\u0648", + "BB": "\u0628\u0631\u0628\u0627\u062f\u0648\u0633", + "BM": "\u0628\u0631\u0645\u0648\u062f\u0627", + "BN": "\u0628\u0631\u0648\u0646\u0627\u064a", + "BE": "\u0628\u0644\u062c\u064a\u0643\u0627", + "BG": "\u0628\u0644\u063a\u0627\u0631\u064a\u0627", + "BZ": "\u0628\u0644\u064a\u0632", + "BD": "\u0628\u0646\u063a\u0644\u0627\u062f\u064a\u0634", + "PA": "\u0628\u0646\u0645\u0627", + "BJ": "\u0628\u0646\u064a\u0646", + "BT": "\u0628\u0648\u062a\u0627\u0646", + "BW": "\u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627", + "PR": "\u0628\u0648\u0631\u062a\u0648\u0631\u064a\u0643\u0648", + "BF": "\u0628\u0648\u0631\u0643\u064a\u0646\u0627 \u0641\u0627\u0633\u0648", + "BI": "\u0628\u0648\u0631\u0648\u0646\u062f\u064a", + "PL": "\u0628\u0648\u0644\u0646\u062f\u0627", + "BO": "\u0628\u0648\u0644\u064a\u0641\u064a\u0627", + "PF": "\u0628\u0648\u0644\u064a\u0646\u064a\u0632\u064a\u0627 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629", + "PE": "\u0628\u064a\u0631\u0648", + "BY": "\u0628\u064a\u0644\u0627\u0631\u0648\u0633", + "TH": "\u062a\u0627\u064a\u0644\u0627\u0646\u062f", + "TW": "\u062a\u0627\u064a\u0648\u0627\u0646", + "TM": "\u062a\u0631\u0643\u0645\u0627\u0646\u0633\u062a\u0627\u0646", + "TR": "\u062a\u0631\u0643\u064a\u0627", + "TT": "\u062a\u0631\u064a\u0646\u064a\u062f\u0627\u062f \u0648\u062a\u0648\u0628\u0627\u063a\u0648", + "TD": "\u062a\u0634\u0627\u062f", + "CL": "\u062a\u0634\u064a\u0644\u064a", + "TZ": "\u062a\u0646\u0632\u0627\u0646\u064a\u0627", + "TG": "\u062a\u0648\u063a\u0648", + "TV": "\u062a\u0648\u0641\u0627\u0644\u0648", + "TK": "\u062a\u0648\u0643\u064a\u0644\u0648", + "TN": "\u062a\u0648\u0646\u0633", + "TO": "\u062a\u0648\u0646\u063a\u0627", + "TL": "\u062a\u064a\u0645\u0648\u0631 - \u0644\u064a\u0634\u062a\u064a", + "JM": "\u062c\u0627\u0645\u0627\u064a\u0643\u0627", + "GI": "\u062c\u0628\u0644 \u0637\u0627\u0631\u0642", + "AX": "\u062c\u0632\u0631 \u0622\u0644\u0627\u0646\u062f", + "BS": "\u062c\u0632\u0631 \u0627\u0644\u0628\u0647\u0627\u0645\u0627", + "KM": "\u062c\u0632\u0631 \u0627\u0644\u0642\u0645\u0631", + "MQ": "\u062c\u0632\u0631 \u0627\u0644\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0643", + "MV": "\u062c\u0632\u0631 \u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641", + "UM": "\u062c\u0632\u0631 \u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \u0627\u0644\u0646\u0627\u0626\u064a\u0629", + "PN": "\u062c\u0632\u0631 \u0628\u064a\u062a\u0643\u064a\u0631\u0646", + "TC": "\u062c\u0632\u0631 \u062a\u0648\u0631\u0643\u0633 \u0648\u0643\u0627\u064a\u0643\u0648\u0633", + "SB": "\u062c\u0632\u0631 \u0633\u0644\u064a\u0645\u0627\u0646", + "FO": "\u062c\u0632\u0631 \u0641\u0627\u0631\u0648", + "FK": "\u062c\u0632\u0631 \u0641\u0648\u0643\u0644\u0627\u0646\u062f", + "VG": "\u062c\u0632\u0631 \u0641\u064a\u0631\u062c\u0646 \u0627\u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a\u0629", + "VI": "\u062c\u0632\u0631 \u0641\u064a\u0631\u062c\u0646 \u0627\u0644\u062a\u0627\u0628\u0639\u0629 \u0644\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629", + "KY": "\u062c\u0632\u0631 \u0643\u0627\u064a\u0645\u0627\u0646", + "CK": "\u062c\u0632\u0631 \u0643\u0648\u0643", + "CC": "\u062c\u0632\u0631 \u0643\u0648\u0643\u0648\u0633 (\u0643\u064a\u0644\u064a\u0646\u063a)", + "MH": "\u062c\u0632\u0631 \u0645\u0627\u0631\u0634\u0627\u0644", + "MP": "\u062c\u0632\u0631 \u0645\u0627\u0631\u064a\u0627\u0646\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629", + "WF": "\u062c\u0632\u0631 \u0648\u0627\u0644\u0633 \u0648\u0641\u0648\u062a\u0648\u0646\u0627", + "BV": "\u062c\u0632\u064a\u0631\u0629 \u0628\u0648\u0641\u064a\u0647", + "CX": "\u062c\u0632\u064a\u0631\u0629 \u0643\u0631\u064a\u0633\u0645\u0627\u0633", + "IM": "\u062c\u0632\u064a\u0631\u0629 \u0645\u0627\u0646", + "NF": "\u062c\u0632\u064a\u0631\u0629 \u0646\u0648\u0631\u0641\u0648\u0644\u0643", + "HM": "\u062c\u0632\u064a\u0631\u0629 \u0647\u064a\u0631\u062f \u0648\u062c\u0632\u0631 \u0645\u0627\u0643\u062f\u0648\u0646\u0627\u0644\u062f", + "CF": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0641\u0631\u064a\u0642\u064a\u0627 \u0627\u0644\u0648\u0633\u0637\u0649", + "DO": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u0648\u0645\u064a\u0646\u064a\u0643\u0627\u0646", + "ZA": "\u062c\u0646\u0648\u0628 \u0623\u0641\u0631\u064a\u0642\u064a\u0627", + "SS": "\u062c\u0646\u0648\u0628 \u0627\u0644\u0633\u0648\u062f\u0627\u0646", + "GE": "\u062c\u0648\u0631\u062c\u064a\u0627", + "GS": "\u062c\u0648\u0631\u062c\u064a\u0627 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629 \u0648\u062c\u0632\u0631 \u0633\u0627\u0646\u062f\u0648\u064a\u062a\u0634 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629", + "DJ": "\u062c\u064a\u0628\u0648\u062a\u064a", + "JE": "\u062c\u064a\u0631\u0633\u064a", + "DM": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643\u0627", + "RW": "\u0631\u0648\u0627\u0646\u062f\u0627", + "RU": "\u0631\u0648\u0633\u064a\u0627", + "RO": "\u0631\u0648\u0645\u0627\u0646\u064a\u0627", + "RE": "\u0631\u0648\u064a\u0646\u064a\u0648\u0646", + "ZM": "\u0632\u0627\u0645\u0628\u064a\u0627", + "ZW": "\u0632\u064a\u0645\u0628\u0627\u0628\u0648\u064a", + "CI": "\u0633\u0627\u062d\u0644 \u0627\u0644\u0639\u0627\u062c", + "WS": "\u0633\u0627\u0645\u0648\u0627", + "AS": "\u0633\u0627\u0645\u0648\u0627 \u0627\u0644\u0623\u0645\u0631\u064a\u0643\u064a\u0629", + "BL": "\u0633\u0627\u0646 \u0628\u0627\u0631\u062a\u0644\u064a\u0645\u064a", + "PM": "\u0633\u0627\u0646 \u0628\u064a\u064a\u0631 \u0648\u0645\u0643\u0648\u064a\u0644\u0648\u0646", + "MF": "\u0633\u0627\u0646 \u0645\u0627\u0631\u062a\u0646", + "SM": "\u0633\u0627\u0646 \u0645\u0627\u0631\u064a\u0646\u0648", + "VC": "\u0633\u0627\u0646\u062a \u0641\u0646\u0633\u0646\u062a \u0648\u062c\u0632\u0631 \u063a\u0631\u064a\u0646\u0627\u062f\u064a\u0646", + "KN": "\u0633\u0627\u0646\u062a \u0643\u064a\u062a\u0633 \u0648\u0646\u064a\u0641\u064a\u0633", + "LC": "\u0633\u0627\u0646\u062a \u0644\u0648\u0633\u064a\u0627", + "SX": "\u0633\u0627\u0646\u062a \u0645\u0627\u0631\u062a\u0646", + "SH": "\u0633\u0627\u0646\u062a \u0647\u064a\u0644\u064a\u0646\u0627", + "ST": "\u0633\u0627\u0648 \u062a\u0648\u0645\u064a \u0648\u0628\u0631\u064a\u0646\u0633\u064a\u0628\u064a", + "LK": "\u0633\u0631\u064a\u0644\u0627\u0646\u0643\u0627", + "SJ": "\u0633\u0641\u0627\u0644\u0628\u0627\u0631\u062f \u0648\u062c\u0627\u0646 \u0645\u0627\u064a\u0646", + "SK": "\u0633\u0644\u0648\u0641\u0627\u0643\u064a\u0627", + "SI": "\u0633\u0644\u0648\u0641\u064a\u0646\u064a\u0627", + "SG": "\u0633\u0646\u063a\u0627\u0641\u0648\u0631\u0629", + "SY": "\u0633\u0648\u0631\u064a\u0627", + "SR": "\u0633\u0648\u0631\u064a\u0646\u0627\u0645", + "CH": "\u0633\u0648\u064a\u0633\u0631\u0627", + "SL": "\u0633\u064a\u0631\u0627\u0644\u064a\u0648\u0646", + "SC": "\u0633\u064a\u0634\u0644", + "RS": "\u0635\u0631\u0628\u064a\u0627", + "TJ": "\u0637\u0627\u062c\u064a\u0643\u0633\u062a\u0627\u0646", + "OM": "\u0639\u064f\u0645\u0627\u0646", + "GM": "\u063a\u0627\u0645\u0628\u064a\u0627", + "GH": "\u063a\u0627\u0646\u0627", + "GD": "\u063a\u0631\u064a\u0646\u0627\u062f\u0627", + "GL": "\u063a\u0631\u064a\u0646\u0644\u0627\u0646\u062f", + "GT": "\u063a\u0648\u0627\u062a\u064a\u0645\u0627\u0644\u0627", + "GP": "\u063a\u0648\u0627\u062f\u0644\u0648\u0628", + "GU": "\u063a\u0648\u0627\u0645", + "GF": "\u063a\u0648\u064a\u0627\u0646\u0627 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629", + "GY": "\u063a\u064a\u0627\u0646\u0627", + "GG": "\u063a\u064a\u0631\u0646\u0632\u064a", + "GN": "\u063a\u064a\u0646\u064a\u0627", + "GQ": "\u063a\u064a\u0646\u064a\u0627 \u0627\u0644\u0627\u0633\u062a\u0648\u0627\u0626\u064a\u0629", + "GW": "\u063a\u064a\u0646\u064a\u0627 \u0628\u064a\u0633\u0627\u0648", + "VU": "\u0641\u0627\u0646\u0648\u0627\u062a\u0648", + "FR": "\u0641\u0631\u0646\u0633\u0627", + "VE": "\u0641\u0646\u0632\u0648\u064a\u0644\u0627", + "FI": "\u0641\u0646\u0644\u0646\u062f\u0627", + "VN": "\u0641\u064a\u062a\u0646\u0627\u0645", + "FJ": "\u0641\u064a\u062c\u064a", + "CY": "\u0642\u0628\u0631\u0635", + "QA": "\u0642\u0637\u0631", + "KG": "\u0642\u064a\u0631\u063a\u064a\u0632\u0633\u062a\u0627\u0646", + "KZ": "\u0643\u0627\u0632\u0627\u062e\u0633\u062a\u0627\u0646", + "NC": "\u0643\u0627\u0644\u064a\u062f\u0648\u0646\u064a\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u0629", + "HR": "\u0643\u0631\u0648\u0627\u062a\u064a\u0627", + "KH": "\u0643\u0645\u0628\u0648\u062f\u064a\u0627", + "CA": "\u0643\u0646\u062f\u0627", + "CU": "\u0643\u0648\u0628\u0627", + "CW": "\u0643\u0648\u0631\u0627\u0633\u0627\u0648", + "KR": "\u0643\u0648\u0631\u064a\u0627 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629", + "XK": "\u0643\u0648\u0633\u0648\u0641\u0648", + "KP": "\u0643\u0648\u0631\u064a\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629", + "CR": "\u0643\u0648\u0633\u062a\u0627\u0631\u064a\u0643\u0627", + "CO": "\u0643\u0648\u0644\u0648\u0645\u0628\u064a\u0627", + "KI": "\u0643\u064a\u0631\u064a\u0628\u0627\u062a\u064a", + "KE": "\u0643\u064a\u0646\u064a\u0627", + "LV": "\u0644\u0627\u062a\u0641\u064a\u0627", + "LA": "\u0644\u0627\u0648\u0633", + "LB": "\u0644\u0628\u0646\u0627\u0646", + "LU": "\u0644\u0648\u0643\u0633\u0645\u0628\u0648\u0631\u063a", + "LY": "\u0644\u064a\u0628\u064a\u0627", + "LR": "\u0644\u064a\u0628\u064a\u0631\u064a\u0627", + "LT": "\u0644\u064a\u062a\u0648\u0627\u0646\u064a\u0627", + "LI": "\u0644\u064a\u062e\u062a\u0646\u0634\u062a\u0627\u064a\u0646", + "LS": "\u0644\u064a\u0633\u0648\u062a\u0648", + "MO": "\u0645\u0627\u0643\u0627\u0648 \u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u0645\u0646\u0637\u0642\u0629 \u0625\u062f\u0627\u0631\u064a\u0629 \u062e\u0627\u0635\u0629)", + "MT": "\u0645\u0627\u0644\u0637\u0627", + "ML": "\u0645\u0627\u0644\u064a", + "MY": "\u0645\u0627\u0644\u064a\u0632\u064a\u0627", + "YT": "\u0645\u0627\u064a\u0648\u062a", + "MG": "\u0645\u062f\u063a\u0634\u0642\u0631", + "EG": "\u0645\u0635\u0631", + "MK": "\u0645\u0642\u062f\u0648\u0646\u064a\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629", + "MW": "\u0645\u0644\u0627\u0648\u064a", + "MN": "\u0645\u0646\u063a\u0648\u0644\u064a\u0627", + "MR": "\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0627", + "MU": "\u0645\u0648\u0631\u064a\u0634\u064a\u0648\u0633", + "MZ": "\u0645\u0648\u0632\u0645\u0628\u064a\u0642", + "MD": "\u0645\u0648\u0644\u062f\u0648\u0641\u0627", + "MC": "\u0645\u0648\u0646\u0627\u0643\u0648", + "MS": "\u0645\u0648\u0646\u062a\u064a\u0633\u064a\u0631\u0627\u062a", + "MM": "\u0645\u064a\u0627\u0646\u0645\u0627\u0631 (\u0628\u0648\u0631\u0645\u0627)", + "FM": "\u0645\u064a\u0643\u0631\u0648\u0646\u064a\u0632\u064a\u0627", + "NA": "\u0646\u0627\u0645\u064a\u0628\u064a\u0627", + "NR": "\u0646\u0627\u0648\u0631\u0648", + "NP": "\u0646\u064a\u0628\u0627\u0644", + "NG": "\u0646\u064a\u062c\u064a\u0631\u064a\u0627", + "NI": "\u0646\u064a\u0643\u0627\u0631\u0627\u063a\u0648\u0627", + "NZ": "\u0646\u064a\u0648\u0632\u064a\u0644\u0646\u062f\u0627", + "NU": "\u0646\u064a\u0648\u064a", + "HT": "\u0647\u0627\u064a\u062a\u064a", + "HN": "\u0647\u0646\u062f\u0648\u0631\u0627\u0633", + "HU": "\u0647\u0646\u063a\u0627\u0631\u064a\u0627", + "NL": "\u0647\u0648\u0644\u0646\u062f\u0627", + "BQ": "\u0647\u0648\u0644\u0646\u062f\u0627 \u0627\u0644\u0643\u0627\u0631\u064a\u0628\u064a\u0629", + "HK": "\u0647\u0648\u0646\u063a \u0643\u0648\u0646\u063a \u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u0645\u0646\u0637\u0642\u0629 \u0625\u062f\u0627\u0631\u064a\u0629 \u062e\u0627\u0635\u0629)" +} diff --git a/public/intl/country/be-BY.json b/public/intl/country/be-BY.json new file mode 100644 index 0000000..a687d9f --- /dev/null +++ b/public/intl/country/be-BY.json @@ -0,0 +1,252 @@ +{ + "AE": "\u0410\u0431\u2019\u044f\u0434\u043d\u0430\u043d\u044b\u044f \u0410\u0440\u0430\u0431\u0441\u043a\u0456\u044f \u042d\u043c\u0456\u0440\u0430\u0442\u044b", + "AZ": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d", + "AX": "\u0410\u043b\u0430\u043d\u0434\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "AL": "\u0410\u043b\u0431\u0430\u043d\u0456\u044f", + "DZ": "\u0410\u043b\u0436\u044b\u0440", + "OM": "\u0410\u043c\u0430\u043d", + "AS": "\u0410\u043c\u0435\u0440\u044b\u043a\u0430\u043d\u0441\u043a\u0430\u0435 \u0421\u0430\u043c\u043e\u0430", + "VI": "\u0410\u043c\u0435\u0440\u044b\u043a\u0430\u043d\u0441\u043a\u0456\u044f \u0412\u0456\u0440\u0433\u0456\u043d\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "AI": "\u0410\u043d\u0433\u0456\u043b\u044c\u044f", + "AO": "\u0410\u043d\u0433\u043e\u043b\u0430", + "AD": "\u0410\u043d\u0434\u043e\u0440\u0430", + "AQ": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u044b\u043a\u0430", + "AG": "\u0410\u043d\u0442\u044b\u0433\u0443\u0430 \u0456 \u0411\u0430\u0440\u0431\u0443\u0434\u0430", + "AR": "\u0410\u0440\u0433\u0435\u043d\u0446\u0456\u043d\u0430", + "AM": "\u0410\u0440\u043c\u0435\u043d\u0456\u044f", + "AW": "\u0410\u0440\u0443\u0431\u0430", + "CK": "\u0410\u0441\u0442\u0440\u0430\u0432\u044b \u041a\u0443\u043a\u0430", + "PN": "\u0410\u0441\u0442\u0440\u0430\u0432\u044b \u041f\u0456\u0442\u043a\u044d\u0440\u043d", + "HM": "\u0410\u0441\u0442\u0440\u0430\u0432\u044b \u0425\u0435\u0440\u0434 \u0456 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u044c\u0434", + "TC": "\u0410\u0441\u0442\u0440\u0430\u0432\u044b \u0426\u0451\u0440\u043a\u0441 \u0456 \u041a\u0430\u0439\u043a\u0430\u0441", + "AU": "\u0410\u045e\u0441\u0442\u0440\u0430\u043b\u0456\u044f", + "AT": "\u0410\u045e\u0441\u0442\u0440\u044b\u044f", + "AF": "\u0410\u0444\u0433\u0430\u043d\u0456\u0441\u0442\u0430\u043d", + "BS": "\u0411\u0430\u0433\u0430\u043c\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "BG": "\u0411\u0430\u043b\u0433\u0430\u0440\u044b\u044f", + "BO": "\u0411\u0430\u043b\u0456\u0432\u0456\u044f", + "BD": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u044d\u0448", + "BB": "\u0411\u0430\u0440\u0431\u0430\u0434\u0430\u0441", + "BW": "\u0411\u0430\u0442\u0441\u0432\u0430\u043d\u0430", + "BH": "\u0411\u0430\u0445\u0440\u044d\u0439\u043d", + "BY": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c", + "BZ": "\u0411\u0435\u043b\u0456\u0437", + "BE": "\u0411\u0435\u043b\u044c\u0433\u0456\u044f", + "BJ": "\u0411\u0435\u043d\u0456\u043d", + "BM": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "BA": "\u0411\u043e\u0441\u043d\u0456\u044f \u0456 \u0413\u0435\u0440\u0446\u0430\u0433\u0430\u0432\u0456\u043d\u0430", + "BR": "\u0411\u0440\u0430\u0437\u0456\u043b\u0456\u044f", + "BN": "\u0411\u0440\u0443\u043d\u0435\u0439", + "IO": "\u0411\u0440\u044b\u0442\u0430\u043d\u0441\u043a\u0430\u044f \u0442\u044d\u0440\u044b\u0442\u043e\u0440\u044b\u044f \u045e \u0406\u043d\u0434\u044b\u0439\u0441\u043a\u0456\u043c \u0430\u043a\u0456\u044f\u043d\u0435", + "VG": "\u0411\u0440\u044b\u0442\u0430\u043d\u0441\u043a\u0456\u044f \u0412\u0456\u0440\u0433\u0456\u043d\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "BF": "\u0411\u0443\u0440\u043a\u0456\u043d\u0430-\u0424\u0430\u0441\u043e", + "BI": "\u0411\u0443\u0440\u0443\u043d\u0434\u0437\u0456", + "BT": "\u0411\u0443\u0442\u0430\u043d", + "VN": "\u0412\u2019\u0435\u0442\u043d\u0430\u043c", + "VU": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443", + "VA": "\u0412\u0430\u0442\u044b\u043a\u0430\u043d", + "HU": "\u0412\u0435\u043d\u0433\u0440\u044b\u044f", + "VE": "\u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u0430", + "BV": "\u0412\u043e\u0441\u0442\u0440\u0430\u045e \u0411\u0443\u0432\u044d", + "CX": "\u0412\u043e\u0441\u0442\u0440\u0430\u045e \u041a\u0430\u043b\u044f\u0434", + "IM": "\u0412\u043e\u0441\u0442\u0440\u0430\u045e \u041c\u044d\u043d", + "NF": "\u0412\u043e\u0441\u0442\u0440\u0430\u045e \u041d\u043e\u0440\u0444\u0430\u043b\u043a", + "SH": "\u0412\u043e\u0441\u0442\u0440\u0430\u045e \u0421\u0432\u044f\u0442\u043e\u0439 \u0410\u043b\u0435\u043d\u044b", + "GB": "\u0412\u044f\u043b\u0456\u043a\u0430\u0431\u0440\u044b\u0442\u0430\u043d\u0456\u044f", + "GA": "\u0413\u0430\u0431\u043e\u043d", + "HT": "\u0413\u0430\u0456\u0446\u0456", + "GM": "\u0413\u0430\u043c\u0431\u0456\u044f", + "GH": "\u0413\u0430\u043d\u0430", + "HN": "\u0413\u0430\u043d\u0434\u0443\u0440\u0430\u0441", + "HK": "\u0413\u0430\u043d\u043a\u043e\u043d\u0433, \u0421\u0410\u0420 (\u041a\u0456\u0442\u0430\u0439)", + "GY": "\u0413\u0430\u044f\u043d\u0430", + "GP": "\u0413\u0432\u0430\u0434\u044d\u043b\u0443\u043f\u0430", + "GT": "\u0413\u0432\u0430\u0442\u044d\u043c\u0430\u043b\u0430", + "GN": "\u0413\u0432\u0456\u043d\u0435\u044f", + "GW": "\u0413\u0432\u0456\u043d\u0435\u044f-\u0411\u0456\u0441\u0430\u0443", + "DE": "\u0413\u0435\u0440\u043c\u0430\u043d\u0456\u044f", + "GG": "\u0413\u0435\u0440\u043d\u0441\u0456", + "GI": "\u0413\u0456\u0431\u0440\u0430\u043b\u0442\u0430\u0440", + "GE": "\u0413\u0440\u0443\u0437\u0456\u044f", + "GD": "\u0413\u0440\u044d\u043d\u0430\u0434\u0430", + "GL": "\u0413\u0440\u044d\u043d\u043b\u0430\u043d\u0434\u044b\u044f", + "GR": "\u0413\u0440\u044d\u0446\u044b\u044f", + "GU": "\u0413\u0443\u0430\u043c", + "DM": "\u0414\u0430\u043c\u0456\u043d\u0456\u043a\u0430", + "DO": "\u0414\u0430\u043c\u0456\u043d\u0456\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u044d\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430", + "DK": "\u0414\u0430\u043d\u0456\u044f", + "DJ": "\u0414\u0436\u044b\u0431\u0443\u0446\u0456", + "JE": "\u0414\u0436\u044d\u0440\u0441\u0456", + "EG": "\u0415\u0433\u0456\u043f\u0435\u0442", + "YE": "\u0415\u043c\u0435\u043d", + "ZM": "\u0417\u0430\u043c\u0431\u0456\u044f", + "EH": "\u0417\u0430\u0445\u043e\u0434\u043d\u044f\u044f \u0421\u0430\u0445\u0430\u0440\u0430", + "ZW": "\u0417\u0456\u043c\u0431\u0430\u0431\u0432\u044d", + "US": "\u0417\u043b\u0443\u0447\u0430\u043d\u044b\u044f \u0428\u0442\u0430\u0442\u044b", + "JO": "\u0406\u0430\u0440\u0434\u0430\u043d\u0456\u044f", + "IL": "\u0406\u0437\u0440\u0430\u0456\u043b\u044c", + "ID": "\u0406\u043d\u0434\u0430\u043d\u0435\u0437\u0456\u044f", + "IN": "\u0406\u043d\u0434\u044b\u044f", + "IQ": "\u0406\u0440\u0430\u043a", + "IR": "\u0406\u0440\u0430\u043d", + "IE": "\u0406\u0440\u043b\u0430\u043d\u0434\u044b\u044f", + "IS": "\u0406\u0441\u043b\u0430\u043d\u0434\u044b\u044f", + "ES": "\u0406\u0441\u043f\u0430\u043d\u0456\u044f", + "IT": "\u0406\u0442\u0430\u043b\u0456\u044f", + "CV": "\u041a\u0430\u0431\u0430-\u0412\u0435\u0440\u0434\u044d", + "KZ": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", + "KY": "\u041a\u0430\u0439\u043c\u0430\u043d\u0430\u0432\u044b \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "CC": "\u041a\u0430\u043a\u043e\u0441\u0430\u0432\u044b\u044f (\u041a\u0456\u043b\u0456\u043d\u0433) \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "CO": "\u041a\u0430\u043b\u0443\u043c\u0431\u0456\u044f", + "KH": "\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430", + "CM": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d", + "KM": "\u041a\u0430\u043c\u043e\u0440\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "CA": "\u041a\u0430\u043d\u0430\u0434\u0430", + "BQ": "\u041a\u0430\u0440\u044b\u0431\u0441\u043a\u0456\u044f \u041d\u0456\u0434\u044d\u0440\u043b\u0430\u043d\u0434\u044b", + "QA": "\u041a\u0430\u0442\u0430\u0440", + "KE": "\u041a\u0435\u043d\u0456\u044f", + "CY": "\u041a\u0456\u043f\u0440", + "KI": "\u041a\u0456\u0440\u044b\u0431\u0430\u0446\u0456", + "CN": "\u041a\u0456\u0442\u0430\u0439", + "CG": "\u041a\u043e\u043d\u0433\u0430 - \u0411\u0440\u0430\u0437\u0430\u0432\u0456\u043b\u044c", + "CD": "\u041a\u043e\u043d\u0433\u0430 (\u041a\u0456\u043d\u0448\u0430\u0441\u0430)", + "XK": "\u041a\u043e\u0441\u0430\u0432\u0430", + "CR": "\u041a\u043e\u0441\u0442\u0430-\u0420\u044b\u043a\u0430", + "CI": "\u041a\u043e\u0442-\u0434\u2019\u0406\u0432\u0443\u0430\u0440", + "CU": "\u041a\u0443\u0431\u0430", + "KW": "\u041a\u0443\u0432\u0435\u0439\u0442", + "KG": "\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u0442\u0430\u043d", + "CW": "\u041a\u044e\u0440\u0430\u0441\u0430\u0430", + "LA": "\u041b\u0430\u043e\u0441", + "LV": "\u041b\u0430\u0442\u0432\u0456\u044f", + "LS": "\u041b\u0435\u0441\u043e\u0442\u0430", + "LR": "\u041b\u0456\u0431\u0435\u0440\u044b\u044f", + "LB": "\u041b\u0456\u0432\u0430\u043d", + "LY": "\u041b\u0456\u0432\u0456\u044f", + "LT": "\u041b\u0456\u0442\u0432\u0430", + "LI": "\u041b\u0456\u0445\u0442\u044d\u043d\u0448\u0442\u044d\u0439\u043d", + "LU": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433", + "MM": "\u041c\u2019\u044f\u043d\u043c\u0430 (\u0411\u0456\u0440\u043c\u0430)", + "MG": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440", + "YT": "\u041c\u0430\u0451\u0442\u0430", + "MZ": "\u041c\u0430\u0437\u0430\u043c\u0431\u0456\u043a", + "MO": "\u041c\u0430\u043a\u0430\u0430, \u0421\u0410\u0420 (\u041a\u0456\u0442\u0430\u0439)", + "MW": "\u041c\u0430\u043b\u0430\u0432\u0456", + "MY": "\u041c\u0430\u043b\u0430\u0439\u0437\u0456\u044f", + "MD": "\u041c\u0430\u043b\u0434\u043e\u0432\u0430", + "ML": "\u041c\u0430\u043b\u0456", + "UM": "\u041c\u0430\u043b\u044b\u044f \u0410\u0434\u0434\u0430\u043b\u0435\u043d\u044b\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b \u0417\u0428\u0410", + "MV": "\u041c\u0430\u043b\u044c\u0434\u044b\u0432\u044b", + "MT": "\u041c\u0430\u043b\u044c\u0442\u0430", + "MC": "\u041c\u0430\u043d\u0430\u043a\u0430", + "MN": "\u041c\u0430\u043d\u0433\u043e\u043b\u0456\u044f", + "MS": "\u041c\u0430\u043d\u0442\u0441\u0435\u0440\u0430\u0442", + "MA": "\u041c\u0430\u0440\u043e\u043a\u0430", + "MQ": "\u041c\u0430\u0440\u0446\u0456\u043d\u0456\u043a\u0430", + "MH": "\u041c\u0430\u0440\u0448\u0430\u043b\u0430\u0432\u044b \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "MU": "\u041c\u0430\u045e\u0440\u044b\u043a\u0456\u0439", + "MR": "\u041c\u0430\u045e\u0440\u044b\u0442\u0430\u043d\u0456\u044f", + "MX": "\u041c\u0435\u043a\u0441\u0456\u043a\u0430", + "FM": "\u041c\u0456\u043a\u0440\u0430\u043d\u0435\u0437\u0456\u044f", + "NA": "\u041d\u0430\u043c\u0456\u0431\u0456\u044f", + "NO": "\u041d\u0430\u0440\u0432\u0435\u0433\u0456\u044f", + "NR": "\u041d\u0430\u0443\u0440\u0443", + "NP": "\u041d\u0435\u043f\u0430\u043b", + "NE": "\u041d\u0456\u0433\u0435\u0440", + "NG": "\u041d\u0456\u0433\u0435\u0440\u044b\u044f", + "NL": "\u041d\u0456\u0434\u044d\u0440\u043b\u0430\u043d\u0434\u044b", + "NI": "\u041d\u0456\u043a\u0430\u0440\u0430\u0433\u0443\u0430", + "NU": "\u041d\u0456\u0443\u044d", + "NZ": "\u041d\u043e\u0432\u0430\u044f \u0417\u0435\u043b\u0430\u043d\u0434\u044b\u044f", + "NC": "\u041d\u043e\u0432\u0430\u044f \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0456\u044f", + "PK": "\u041f\u0430\u043a\u0456\u0441\u0442\u0430\u043d", + "PW": "\u041f\u0430\u043b\u0430\u0443", + "PS": "\u041f\u0430\u043b\u0435\u0441\u0446\u0456\u043d\u0441\u043a\u0456\u044f \u0422\u044d\u0440\u044b\u0442\u043e\u0440\u044b\u0456", + "PA": "\u041f\u0430\u043d\u0430\u043c\u0430", + "PG": "\u041f\u0430\u043f\u0443\u0430-\u041d\u043e\u0432\u0430\u044f \u0413\u0432\u0456\u043d\u0435\u044f", + "PY": "\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439", + "PT": "\u041f\u0430\u0440\u0442\u0443\u0433\u0430\u043b\u0456\u044f", + "ZA": "\u041f\u0430\u045e\u0434\u043d\u0451\u0432\u0430-\u0410\u0444\u0440\u044b\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u044d\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430", + "GS": "\u041f\u0430\u045e\u0434\u043d\u0451\u0432\u0430\u044f \u0413\u0435\u043e\u0440\u0433\u0456\u044f \u0456 \u041f\u0430\u045e\u0434\u043d\u0451\u0432\u044b\u044f \u0421\u0430\u043d\u0434\u0432\u0456\u0447\u0430\u0432\u044b \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "KR": "\u041f\u0430\u045e\u0434\u043d\u0451\u0432\u0430\u044f \u041a\u0430\u0440\u044d\u044f", + "SS": "\u041f\u0430\u045e\u0434\u043d\u0451\u0432\u044b \u0421\u0443\u0434\u0430\u043d", + "KP": "\u041f\u0430\u045e\u043d\u043e\u0447\u043d\u0430\u044f \u041a\u0430\u0440\u044d\u044f", + "MK": "\u041f\u0430\u045e\u043d\u043e\u0447\u043d\u0430\u044f \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0456\u044f", + "MP": "\u041f\u0430\u045e\u043d\u043e\u0447\u043d\u044b\u044f \u041c\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "PE": "\u041f\u0435\u0440\u0443", + "PL": "\u041f\u043e\u043b\u044c\u0448\u0447\u0430", + "PR": "\u041f\u0443\u044d\u0440\u0442\u0430-\u0420\u044b\u043a\u0430", + "RU": "\u0420\u0430\u0441\u0456\u044f", + "RW": "\u0420\u0443\u0430\u043d\u0434\u0430", + "RO": "\u0420\u0443\u043c\u044b\u043d\u0456\u044f", + "RE": "\u0420\u044d\u044e\u043d\u044c\u0451\u043d", + "SB": "\u0421\u0430\u043b\u0430\u043c\u043e\u043d\u0430\u0432\u044b \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "SV": "\u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440", + "SO": "\u0421\u0430\u043c\u0430\u043b\u0456", + "WS": "\u0421\u0430\u043c\u043e\u0430", + "SM": "\u0421\u0430\u043d-\u041c\u0430\u0440\u044b\u043d\u0430", + "ST": "\u0421\u0430\u043d-\u0422\u0430\u043c\u044d \u0456 \u041f\u0440\u044b\u043d\u0441\u0456\u043f\u0456", + "SA": "\u0421\u0430\u0443\u0434\u0430\u045e\u0441\u043a\u0430\u044f \u0410\u0440\u0430\u0432\u0456\u044f", + "SC": "\u0421\u0435\u0439\u0448\u044d\u043b\u044c\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "BL": "\u0421\u0435\u043d-\u0411\u0430\u0440\u0442\u044d\u043b\u044c\u043c\u0456", + "MF": "\u0421\u0435\u043d-\u041c\u0430\u0440\u0442\u044d\u043d", + "PM": "\u0421\u0435\u043d-\u041f\u2019\u0435\u0440 \u0456 \u041c\u0456\u043a\u0435\u043b\u043e\u043d", + "SN": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b", + "VC": "\u0421\u0435\u043d\u0442-\u0412\u0456\u043d\u0441\u0435\u043d\u0442 \u0456 \u0413\u0440\u044d\u043d\u0430\u0434\u0437\u0456\u043d\u044b", + "KN": "\u0421\u0435\u043d\u0442-\u041a\u0456\u0442\u0441 \u0456 \u041d\u0435\u0432\u0456\u0441", + "LC": "\u0421\u0435\u043d\u0442-\u041b\u044e\u0441\u0456\u044f", + "RS": "\u0421\u0435\u0440\u0431\u0456\u044f", + "SG": "\u0421\u0456\u043d\u0433\u0430\u043f\u0443\u0440", + "SX": "\u0421\u0456\u043d\u0442-\u041c\u0430\u0440\u0442\u044d\u043d", + "SY": "\u0421\u0456\u0440\u044b\u044f", + "SK": "\u0421\u043b\u0430\u0432\u0430\u043a\u0456\u044f", + "SI": "\u0421\u043b\u0430\u0432\u0435\u043d\u0456\u044f", + "SD": "\u0421\u0443\u0434\u0430\u043d", + "SR": "\u0421\u0443\u0440\u044b\u043d\u0430\u043c", + "SL": "\u0421\u044c\u0435\u0440\u0430-\u041b\u0435\u043e\u043d\u044d", + "TJ": "\u0422\u0430\u0434\u0436\u044b\u043a\u0456\u0441\u0442\u0430\u043d", + "TW": "\u0422\u0430\u0439\u0432\u0430\u043d\u044c", + "TH": "\u0422\u0430\u0439\u043b\u0430\u043d\u0434", + "TK": "\u0422\u0430\u043a\u0435\u043b\u0430\u0443", + "TZ": "\u0422\u0430\u043d\u0437\u0430\u043d\u0456\u044f", + "TG": "\u0422\u043e\u0433\u0430", + "TO": "\u0422\u043e\u043d\u0433\u0430", + "TT": "\u0422\u0440\u044b\u043d\u0456\u0434\u0430\u0434 \u0456 \u0422\u0430\u0431\u0430\u0433\u0430", + "TV": "\u0422\u0443\u0432\u0430\u043b\u0443", + "TN": "\u0422\u0443\u043d\u0456\u0441", + "TM": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0456\u0441\u0442\u0430\u043d", + "TR": "\u0422\u0443\u0440\u0446\u044b\u044f", + "TL": "\u0422\u044b\u043c\u043e\u0440-\u041b\u0435\u0448\u0446\u0456", + "UG": "\u0423\u0433\u0430\u043d\u0434\u0430", + "UZ": "\u0423\u0437\u0431\u0435\u043a\u0456\u0441\u0442\u0430\u043d", + "UA": "\u0423\u043a\u0440\u0430\u0456\u043d\u0430", + "WF": "\u0423\u043e\u043b\u0456\u0441 \u0456 \u0424\u0443\u0442\u0443\u043d\u0430", + "UY": "\u0423\u0440\u0443\u0433\u0432\u0430\u0439", + "FK": "\u0424\u0430\u043b\u043a\u043b\u0435\u043d\u0434\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "FO": "\u0424\u0430\u0440\u044d\u0440\u0441\u043a\u0456\u044f \u0430\u0441\u0442\u0440\u0430\u0432\u044b", + "FJ": "\u0424\u0456\u0434\u0436\u044b", + "PH": "\u0424\u0456\u043b\u0456\u043f\u0456\u043d\u044b", + "FI": "\u0424\u0456\u043d\u043b\u044f\u043d\u0434\u044b\u044f", + "GF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u0413\u0432\u0456\u044f\u043d\u0430", + "PF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u041f\u0430\u043b\u0456\u043d\u0435\u0437\u0456\u044f", + "TF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0456\u044f \u043f\u0430\u045e\u0434\u043d\u0451\u0432\u044b\u044f \u0442\u044d\u0440\u044b\u0442\u043e\u0440\u044b\u0456", + "FR": "\u0424\u0440\u0430\u043d\u0446\u044b\u044f", + "HR": "\u0425\u0430\u0440\u0432\u0430\u0442\u044b\u044f", + "CF": "\u0426\u044d\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430-\u0410\u0444\u0440\u044b\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u044d\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430", + "TD": "\u0427\u0430\u0434", + "ME": "\u0427\u0430\u0440\u043d\u0430\u0433\u043e\u0440\u044b\u044f", + "CL": "\u0427\u044b\u043b\u0456", + "CZ": "\u0427\u044d\u0445\u0456\u044f", + "CH": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u044b\u044f", + "SE": "\u0428\u0432\u0435\u0446\u044b\u044f", + "SJ": "\u0428\u043f\u0456\u0446\u0431\u0435\u0440\u0433\u0435\u043d \u0456 \u042f\u043d-\u041c\u0430\u0435\u043d", + "LK": "\u0428\u0440\u044b-\u041b\u0430\u043d\u043a\u0430", + "EC": "\u042d\u043a\u0432\u0430\u0434\u043e\u0440", + "GQ": "\u042d\u043a\u0432\u0430\u0442\u0430\u0440\u044b\u044f\u043b\u044c\u043d\u0430\u044f \u0413\u0432\u0456\u043d\u0435\u044f", + "ER": "\u042d\u0440\u044b\u0442\u0440\u044d\u044f", + "SZ": "\u042d\u0441\u0432\u0430\u0442\u044b\u043d\u0456", + "EE": "\u042d\u0441\u0442\u043e\u043d\u0456\u044f", + "ET": "\u042d\u0444\u0456\u043e\u043f\u0456\u044f", + "JM": "\u042f\u043c\u0430\u0439\u043a\u0430", + "JP": "\u042f\u043f\u043e\u043d\u0456\u044f" +} diff --git a/public/intl/country/bg-BG.json b/public/intl/country/bg-BG.json new file mode 100644 index 0000000..a8fd062 --- /dev/null +++ b/public/intl/country/bg-BG.json @@ -0,0 +1,252 @@ +{ + "AU": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f", + "AT": "\u0410\u0432\u0441\u0442\u0440\u0438\u044f", + "AZ": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d", + "AL": "\u0410\u043b\u0431\u0430\u043d\u0438\u044f", + "DZ": "\u0410\u043b\u0436\u0438\u0440", + "AS": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0421\u0430\u043c\u043e\u0430", + "VI": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438 \u0412\u0438\u0440\u0434\u0436\u0438\u043d\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "AO": "\u0410\u043d\u0433\u043e\u043b\u0430", + "AI": "\u0410\u043d\u0433\u0443\u0438\u043b\u0430", + "AD": "\u0410\u043d\u0434\u043e\u0440\u0430", + "AQ": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u043a\u0430", + "AG": "\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0438 \u0411\u0430\u0440\u0431\u0443\u0434\u0430", + "AR": "\u0410\u0440\u0436\u0435\u043d\u0442\u0438\u043d\u0430", + "AM": "\u0410\u0440\u043c\u0435\u043d\u0438\u044f", + "AW": "\u0410\u0440\u0443\u0431\u0430", + "AF": "\u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d", + "BD": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448", + "BB": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441", + "BS": "\u0411\u0430\u0445\u0430\u043c\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BH": "\u0411\u0430\u0445\u0440\u0435\u0439\u043d", + "BY": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441", + "BE": "\u0411\u0435\u043b\u0433\u0438\u044f", + "BZ": "\u0411\u0435\u043b\u0438\u0437", + "BJ": "\u0411\u0435\u043d\u0438\u043d", + "BM": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BO": "\u0411\u043e\u043b\u0438\u0432\u0438\u044f", + "BA": "\u0411\u043e\u0441\u043d\u0430 \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430", + "BW": "\u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430", + "BR": "\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f", + "IO": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0432 \u0418\u043d\u0434\u0438\u0439\u0441\u043a\u0438\u044f \u043e\u043a\u0435\u0430\u043d", + "VG": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438 \u0412\u0438\u0440\u0434\u0436\u0438\u043d\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BN": "\u0411\u0440\u0443\u043d\u0435\u0439 \u0414\u0430\u0440\u0443\u0441\u0441\u0430\u043b\u0430\u043c", + "BF": "\u0411\u0443\u0440\u043a\u0438\u043d\u0430 \u0424\u0430\u0441\u043e", + "BI": "\u0411\u0443\u0440\u0443\u043d\u0434\u0438", + "BT": "\u0411\u0443\u0442\u0430\u043d", + "BG": "\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f", + "VU": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443", + "VA": "\u0412\u0430\u0442\u0438\u043a\u0430\u043d", + "VE": "\u0412\u0435\u043d\u0435\u0446\u0443\u0435\u043b\u0430", + "VN": "\u0412\u0438\u0435\u0442\u043d\u0430\u043c", + "GA": "\u0413\u0430\u0431\u043e\u043d", + "GM": "\u0413\u0430\u043c\u0431\u0438\u044f", + "GH": "\u0413\u0430\u043d\u0430", + "GY": "\u0413\u0430\u044f\u043d\u0430", + "GP": "\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0430", + "GT": "\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430", + "GN": "\u0413\u0432\u0438\u043d\u0435\u044f", + "GW": "\u0413\u0432\u0438\u043d\u0435\u044f-\u0411\u0438\u0441\u0430\u0443", + "DE": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f", + "GI": "\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440", + "GD": "\u0413\u0440\u0435\u043d\u0430\u0434\u0430", + "GL": "\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0438\u044f", + "GE": "\u0413\u0440\u0443\u0437\u0438\u044f", + "GU": "\u0413\u0443\u0430\u043c", + "GG": "\u0413\u044a\u0440\u043d\u0437\u0438", + "GR": "\u0413\u044a\u0440\u0446\u0438\u044f", + "DK": "\u0414\u0430\u043d\u0438\u044f", + "DJ": "\u0414\u0436\u0438\u0431\u0443\u0442\u0438", + "JE": "\u0414\u0436\u044a\u0440\u0441\u0438", + "DM": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430", + "DO": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0440\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "EG": "\u0415\u0433\u0438\u043f\u0435\u0442", + "EC": "\u0415\u043a\u0432\u0430\u0434\u043e\u0440", + "GQ": "\u0415\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0430\u043b\u043d\u0430 \u0413\u0432\u0438\u043d\u0435\u044f", + "ER": "\u0415\u0440\u0438\u0442\u0440\u0435\u044f", + "SZ": "\u0415\u0441\u0432\u0430\u0442\u0438\u043d\u0438", + "EE": "\u0415\u0441\u0442\u043e\u043d\u0438\u044f", + "ET": "\u0415\u0442\u0438\u043e\u043f\u0438\u044f", + "ZM": "\u0417\u0430\u043c\u0431\u0438\u044f", + "EH": "\u0417\u0430\u043f\u0430\u0434\u043d\u0430 \u0421\u0430\u0445\u0430\u0440\u0430", + "ZW": "\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435", + "IL": "\u0418\u0437\u0440\u0430\u0435\u043b", + "TL": "\u0418\u0437\u0442\u043e\u0447\u0435\u043d \u0422\u0438\u043c\u043e\u0440", + "IN": "\u0418\u043d\u0434\u0438\u044f", + "ID": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f", + "IQ": "\u0418\u0440\u0430\u043a", + "IR": "\u0418\u0440\u0430\u043d", + "IE": "\u0418\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "IS": "\u0418\u0441\u043b\u0430\u043d\u0434\u0438\u044f", + "ES": "\u0418\u0441\u043f\u0430\u043d\u0438\u044f", + "IT": "\u0418\u0442\u0430\u043b\u0438\u044f", + "YE": "\u0419\u0435\u043c\u0435\u043d", + "JO": "\u0419\u043e\u0440\u0434\u0430\u043d\u0438\u044f", + "CV": "\u041a\u0430\u0431\u043e \u0412\u0435\u0440\u0434\u0435", + "KZ": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", + "KY": "\u041a\u0430\u0439\u043c\u0430\u043d\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "KH": "\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430", + "CM": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d", + "CA": "\u041a\u0430\u043d\u0430\u0434\u0430", + "BQ": "\u041a\u0430\u0440\u0438\u0431\u0441\u043a\u0430 \u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "QA": "\u041a\u0430\u0442\u0430\u0440", + "KE": "\u041a\u0435\u043d\u0438\u044f", + "CY": "\u041a\u0438\u043f\u044a\u0440", + "KG": "\u041a\u0438\u0440\u0433\u0438\u0437\u0441\u0442\u0430\u043d", + "KI": "\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438", + "CN": "\u041a\u0438\u0442\u0430\u0439", + "CC": "\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438 (\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u041a\u0438\u0439\u043b\u0438\u043d\u0433)", + "CO": "\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f", + "XK": "\u041a\u043e\u0441\u043e\u0432\u043e", + "KM": "\u041a\u043e\u043c\u043e\u0440\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "CG": "\u041a\u043e\u043d\u0433\u043e (\u0411\u0440\u0430\u0437\u0430\u0432\u0438\u043b)", + "CD": "\u041a\u043e\u043d\u0433\u043e (\u041a\u0438\u043d\u0448\u0430\u0441\u0430)", + "CR": "\u041a\u043e\u0441\u0442\u0430 \u0420\u0438\u043a\u0430", + "CI": "\u041a\u043e\u0442 \u0434\u2019\u0418\u0432\u043e\u0430\u0440", + "CU": "\u041a\u0443\u0431\u0430", + "KW": "\u041a\u0443\u0432\u0435\u0439\u0442", + "CW": "\u041a\u044e\u0440\u0430\u0441\u0430\u043e", + "LA": "\u041b\u0430\u043e\u0441", + "LV": "\u041b\u0430\u0442\u0432\u0438\u044f", + "LS": "\u041b\u0435\u0441\u043e\u0442\u043e", + "LR": "\u041b\u0438\u0431\u0435\u0440\u0438\u044f", + "LY": "\u041b\u0438\u0431\u0438\u044f", + "LB": "\u041b\u0438\u0432\u0430\u043d", + "LT": "\u041b\u0438\u0442\u0432\u0430", + "LI": "\u041b\u0438\u0445\u0442\u0435\u043d\u0449\u0430\u0439\u043d", + "LU": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433", + "MR": "\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438\u044f", + "MU": "\u041c\u0430\u0432\u0440\u0438\u0446\u0438\u0439", + "MG": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440", + "YT": "\u041c\u0430\u0439\u043e\u0442", + "MO": "\u041c\u0430\u043a\u0430\u043e, \u0421\u0410\u0420 \u043d\u0430 \u041a\u0438\u0442\u0430\u0439", + "MW": "\u041c\u0430\u043b\u0430\u0432\u0438", + "MY": "\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f", + "MV": "\u041c\u0430\u043b\u0434\u0438\u0432\u0438", + "ML": "\u041c\u0430\u043b\u0438", + "MT": "\u041c\u0430\u043b\u0442\u0430", + "MA": "\u041c\u0430\u0440\u043e\u043a\u043e", + "MQ": "\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a\u0430", + "MH": "\u041c\u0430\u0440\u0448\u0430\u043b\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "MX": "\u041c\u0435\u043a\u0441\u0438\u043a\u043e", + "MM": "\u041c\u0438\u0430\u043d\u043c\u0430\u0440 (\u0411\u0438\u0440\u043c\u0430)", + "FM": "\u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u044f", + "MZ": "\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a", + "MD": "\u041c\u043e\u043b\u0434\u043e\u0432\u0430", + "MC": "\u041c\u043e\u043d\u0430\u043a\u043e", + "MN": "\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u044f", + "MS": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0430\u0442", + "NA": "\u041d\u0430\u043c\u0438\u0431\u0438\u044f", + "NR": "\u041d\u0430\u0443\u0440\u0443", + "NP": "\u041d\u0435\u043f\u0430\u043b", + "NE": "\u041d\u0438\u0433\u0435\u0440", + "NG": "\u041d\u0438\u0433\u0435\u0440\u0438\u044f", + "NL": "\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "NI": "\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430", + "NU": "\u041d\u0438\u0443\u0435", + "NZ": "\u041d\u043e\u0432\u0430 \u0417\u0435\u043b\u0430\u043d\u0434\u0438\u044f", + "NC": "\u041d\u043e\u0432\u0430 \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u044f", + "NO": "\u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f", + "AE": "\u041e\u0431\u0435\u0434\u0438\u043d\u0435\u043d\u0438 \u0430\u0440\u0430\u0431\u0441\u043a\u0438 \u0435\u043c\u0438\u0440\u0441\u0442\u0432\u0430", + "GB": "\u041e\u0431\u0435\u0434\u0438\u043d\u0435\u043d\u043e\u0442\u043e \u043a\u0440\u0430\u043b\u0441\u0442\u0432\u043e", + "AX": "\u041e\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "OM": "\u041e\u043c\u0430\u043d", + "BV": "\u043e\u0441\u0442\u0440\u043e\u0432 \u0411\u0443\u0432\u0435", + "IM": "\u043e\u0441\u0442\u0440\u043e\u0432 \u041c\u0430\u043d", + "NF": "\u043e\u0441\u0442\u0440\u043e\u0432 \u041d\u043e\u0440\u0444\u043e\u043b\u043a", + "CX": "\u043e\u0441\u0442\u0440\u043e\u0432 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u043e", + "CK": "\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u041a\u0443\u043a", + "PN": "\u041e\u0441\u0442\u0440\u043e\u0432\u0438 \u041f\u0438\u0442\u043a\u0435\u0440\u043d", + "TC": "\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u0422\u044a\u0440\u043a\u0441 \u0438 \u041a\u0430\u0439\u043a\u043e\u0441", + "HM": "\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u0425\u044a\u0440\u0434 \u0438 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u0434", + "UM": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u043d\u0430 \u0421\u0410\u0429", + "PK": "\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d", + "PW": "\u041f\u0430\u043b\u0430\u0443", + "PS": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0441\u043a\u0438 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0438", + "PA": "\u041f\u0430\u043d\u0430\u043c\u0430", + "PG": "\u041f\u0430\u043f\u0443\u0430-\u041d\u043e\u0432\u0430 \u0413\u0432\u0438\u043d\u0435\u044f", + "PY": "\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439", + "PE": "\u041f\u0435\u0440\u0443", + "PL": "\u041f\u043e\u043b\u0448\u0430", + "PT": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f", + "PR": "\u041f\u0443\u0435\u0440\u0442\u043e \u0420\u0438\u043a\u043e", + "RE": "\u0420\u0435\u044e\u043d\u0438\u043e\u043d", + "RW": "\u0420\u0443\u0430\u043d\u0434\u0430", + "RO": "\u0420\u0443\u043c\u044a\u043d\u0438\u044f", + "RU": "\u0420\u0443\u0441\u0438\u044f", + "SV": "\u0421\u0430\u043b\u0432\u0430\u0434\u043e\u0440", + "WS": "\u0421\u0430\u043c\u043e\u0430", + "SM": "\u0421\u0430\u043d \u041c\u0430\u0440\u0438\u043d\u043e", + "ST": "\u0421\u0430\u043e \u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438", + "SA": "\u0421\u0430\u0443\u0434\u0438\u0442\u0441\u043a\u0430 \u0410\u0440\u0430\u0431\u0438\u044f", + "SJ": "\u0421\u0432\u0430\u043b\u0431\u0430\u0440\u0434 \u0438 \u042f\u043d \u041c\u0430\u0439\u0435\u043d", + "SH": "\u0421\u0432\u0435\u0442\u0430 \u0415\u043b\u0435\u043d\u0430", + "KP": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041a\u043e\u0440\u0435\u044f", + "MK": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u044f", + "MP": "\u0421\u0435\u0432\u0435\u0440\u043d\u0438 \u041c\u0430\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "VC": "\u0421\u0435\u0439\u043d\u0442 \u0412\u0438\u043d\u0441\u044a\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u0438", + "KN": "\u0421\u0435\u0439\u043d\u0442 \u041a\u0438\u0442\u0441 \u0438 \u041d\u0435\u0432\u0438\u0441", + "LC": "\u0421\u0435\u0439\u043d\u0442 \u041b\u0443\u0441\u0438\u044f", + "SC": "\u0421\u0435\u0439\u0448\u0435\u043b\u0438", + "BL": "\u0421\u0435\u043d \u0411\u0430\u0440\u0442\u0435\u043b\u0435\u043c\u0438", + "MF": "\u0421\u0435\u043d \u041c\u0430\u0440\u0442\u0435\u043d", + "PM": "\u0421\u0435\u043d \u041f\u0438\u0435\u0440 \u0438 \u041c\u0438\u043a\u0435\u043b\u043e\u043d", + "SN": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b", + "SL": "\u0421\u0438\u0435\u0440\u0430 \u041b\u0435\u043e\u043d\u0435", + "SG": "\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440", + "SX": "\u0421\u0438\u043d\u0442 \u041c\u0430\u0440\u0442\u0435\u043d", + "SY": "\u0421\u0438\u0440\u0438\u044f", + "SK": "\u0421\u043b\u043e\u0432\u0430\u043a\u0438\u044f", + "SI": "\u0421\u043b\u043e\u0432\u0435\u043d\u0438\u044f", + "SB": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "SO": "\u0421\u043e\u043c\u0430\u043b\u0438\u044f", + "SD": "\u0421\u0443\u0434\u0430\u043d", + "SR": "\u0421\u0443\u0440\u0438\u043d\u0430\u043c", + "US": "\u0421\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438 \u0449\u0430\u0442\u0438", + "RS": "\u0421\u044a\u0440\u0431\u0438\u044f", + "TJ": "\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d", + "TW": "\u0422\u0430\u0439\u0432\u0430\u043d", + "TH": "\u0422\u0430\u0439\u043b\u0430\u043d\u0434", + "TZ": "\u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f", + "TG": "\u0422\u043e\u0433\u043e", + "TK": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443", + "TO": "\u0422\u043e\u043d\u0433\u0430", + "TT": "\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e", + "TV": "\u0422\u0443\u0432\u0430\u043b\u0443", + "TN": "\u0422\u0443\u043d\u0438\u0441", + "TM": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d", + "TR": "\u0422\u0443\u0440\u0446\u0438\u044f", + "UG": "\u0423\u0433\u0430\u043d\u0434\u0430", + "UZ": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d", + "UA": "\u0423\u043a\u0440\u0430\u0439\u043d\u0430", + "HU": "\u0423\u043d\u0433\u0430\u0440\u0438\u044f", + "WF": "\u0423\u043e\u043b\u0438\u0441 \u0438 \u0424\u0443\u0442\u0443\u043d\u0430", + "UY": "\u0423\u0440\u0443\u0433\u0432\u0430\u0439", + "FO": "\u0424\u0430\u0440\u044c\u043e\u0440\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "FJ": "\u0424\u0438\u0434\u0436\u0438", + "PH": "\u0424\u0438\u043b\u0438\u043f\u0438\u043d\u0438", + "FI": "\u0424\u0438\u043d\u043b\u0430\u043d\u0434\u0438\u044f", + "FK": "\u0424\u043e\u043b\u043a\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "FR": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f", + "GF": "\u0424\u0440\u0435\u043d\u0441\u043a\u0430 \u0413\u0432\u0438\u0430\u043d\u0430", + "PF": "\u0424\u0440\u0435\u043d\u0441\u043a\u0430 \u041f\u043e\u043b\u0438\u043d\u0435\u0437\u0438\u044f", + "TF": "\u0424\u0440\u0435\u043d\u0441\u043a\u0438 \u044e\u0436\u043d\u0438 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0438", + "HT": "\u0425\u0430\u0438\u0442\u0438", + "HN": "\u0425\u043e\u043d\u0434\u0443\u0440\u0430\u0441", + "HK": "\u0425\u043e\u043d\u043a\u043e\u043d\u0433, \u0421\u0410\u0420 \u043d\u0430 \u041a\u0438\u0442\u0430\u0439", + "HR": "\u0425\u044a\u0440\u0432\u0430\u0442\u0438\u044f", + "CF": "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u043e\u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0440\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "TD": "\u0427\u0430\u0434", + "ME": "\u0427\u0435\u0440\u043d\u0430 \u0433\u043e\u0440\u0430", + "CZ": "\u0427\u0435\u0445\u0438\u044f", + "CL": "\u0427\u0438\u043b\u0438", + "CH": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044f", + "SE": "\u0428\u0432\u0435\u0446\u0438\u044f", + "LK": "\u0428\u0440\u0438 \u041b\u0430\u043d\u043a\u0430", + "SS": "\u042e\u0436\u0435\u043d \u0421\u0443\u0434\u0430\u043d", + "ZA": "\u042e\u0436\u043d\u0430 \u0410\u0444\u0440\u0438\u043a\u0430", + "GS": "\u042e\u0436\u043d\u0430 \u0414\u0436\u043e\u0440\u0434\u0436\u0438\u044f \u0438 \u042e\u0436\u043d\u0438 \u0421\u0430\u043d\u0434\u0432\u0438\u0447\u0435\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "KR": "\u042e\u0436\u043d\u0430 \u041a\u043e\u0440\u0435\u044f", + "JM": "\u042f\u043c\u0430\u0439\u043a\u0430", + "JP": "\u042f\u043f\u043e\u043d\u0438\u044f" +} diff --git a/public/intl/country/bn-BD.json b/public/intl/country/bn-BD.json new file mode 100644 index 0000000..97dcbb7 --- /dev/null +++ b/public/intl/country/bn-BD.json @@ -0,0 +1,252 @@ +{ + "AT": "\u0985\u09b8\u09cd\u099f\u09cd\u09b0\u09bf\u09af\u09bc\u09be", + "AU": "\u0985\u09b8\u09cd\u099f\u09cd\u09b0\u09c7\u09b2\u09bf\u09af\u09bc\u09be", + "AO": "\u0985\u09cd\u09af\u09be\u0999\u09cd\u0997\u09cb\u09b2\u09be", + "AQ": "\u0985\u09cd\u09af\u09be\u09a8\u09cd\u099f\u09be\u09b0\u09cd\u0995\u099f\u09bf\u0995\u09be", + "AG": "\u0985\u09cd\u09af\u09be\u09a8\u09cd\u099f\u09bf\u0997\u09c1\u09af\u09bc\u09be \u0993 \u09ac\u09be\u09b0\u09ac\u09c1\u09a1\u09be", + "IM": "\u0986\u0987\u09b2 \u0985\u09ab \u09ae\u09cd\u09af\u09be\u09a8", + "IS": "\u0986\u0987\u09b8\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "AZ": "\u0986\u099c\u09be\u09b0\u09ac\u09be\u0987\u099c\u09be\u09a8", + "AD": "\u0986\u09a8\u09cd\u09a1\u09cb\u09b0\u09be", + "AF": "\u0986\u09ab\u0997\u09be\u09a8\u09bf\u09b8\u09cd\u09a4\u09be\u09a8", + "AS": "\u0986\u09ae\u09c7\u09b0\u09bf\u0995\u09be\u09a8 \u09b8\u09be\u09ae\u09cb\u09af\u09bc\u09be", + "IE": "\u0986\u09af\u09bc\u09be\u09b0\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "AW": "\u0986\u09b0\u09c1\u09ac\u09be", + "AR": "\u0986\u09b0\u09cd\u099c\u09c7\u09a8\u09cd\u099f\u09bf\u09a8\u09be", + "AM": "\u0986\u09b0\u09cd\u09ae\u09c7\u09a8\u09bf\u09af\u09bc\u09be", + "DZ": "\u0986\u09b2\u099c\u09c7\u09b0\u09bf\u09af\u09bc\u09be", + "AL": "\u0986\u09b2\u09ac\u09c7\u09a8\u09bf\u09af\u09bc\u09be", + "AX": "\u0986\u09b2\u09be\u09a8\u09cd\u09a1 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "UA": "\u0987\u0989\u0995\u09cd\u09b0\u09c7\u09a8", + "EC": "\u0987\u0995\u09c1\u09af\u09bc\u09c7\u09a1\u09b0", + "IL": "\u0987\u099c\u09b0\u09be\u09af\u09bc\u09c7\u09b2", + "IT": "\u0987\u09a4\u09be\u09b2\u09bf", + "ET": "\u0987\u09a5\u09bf\u0993\u09aa\u09bf\u09af\u09bc\u09be", + "ID": "\u0987\u09a8\u09cd\u09a6\u09cb\u09a8\u09c7\u09b6\u09bf\u09af\u09bc\u09be", + "YE": "\u0987\u09af\u09bc\u09c7\u09ae\u09c7\u09a8", + "IQ": "\u0987\u09b0\u09be\u0995", + "IR": "\u0987\u09b0\u09be\u09a8", + "ER": "\u0987\u09b0\u09bf\u09a4\u09cd\u09b0\u09bf\u09af\u09bc\u09be", + "SZ": "\u0987\u09b8\u0993\u09af\u09bc\u09be\u09a4\u09bf\u09a8\u09bf", + "UG": "\u0989\u0997\u09be\u09a8\u09cd\u09a1\u09be", + "UZ": "\u0989\u099c\u09ac\u09c7\u0995\u09bf\u09b8\u09cd\u09a4\u09be\u09a8", + "KP": "\u0989\u09a4\u09cd\u09a4\u09b0 \u0995\u09cb\u09b0\u09bf\u09af\u09bc\u09be", + "MK": "\u0989\u09a4\u09cd\u09a4\u09b0 \u09ae\u09cd\u09af\u09be\u09b8\u09c7\u09a1\u09cb\u09a8\u09bf\u09af\u09bc\u09be", + "MP": "\u0989\u09a4\u09cd\u09a4\u09b0\u09be\u099e\u09cd\u099a\u09b2\u09c0\u09af\u09bc \u09ae\u09be\u09b0\u09bf\u09af\u09bc\u09be\u09a8\u09be \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "UY": "\u0989\u09b0\u09c1\u0997\u09c1\u09af\u09bc\u09c7", + "SV": "\u098f\u09b2 \u09b8\u09be\u09b2\u09ad\u09c7\u09a6\u09b0", + "EE": "\u098f\u09b8\u09cd\u09a4\u09cb\u09a8\u09bf\u09af\u09bc\u09be", + "AI": "\u098f\u09cd\u09af\u09be\u0999\u09cd\u0997\u09c1\u0987\u09b2\u09be", + "OM": "\u0993\u09ae\u09be\u09a8", + "WF": "\u0993\u09af\u09bc\u09be\u09b2\u09bf\u09b8 \u0993 \u09ab\u09c1\u099f\u09c1\u09a8\u09be", + "CG": "\u0995\u0999\u09cd\u0997\u09cb - \u09ac\u09cd\u09b0\u09be\u099c\u09be\u09ad\u09bf\u09b2", + "CD": "\u0995\u0999\u09cd\u0997\u09cb-\u0995\u09bf\u09a8\u09b6\u09be\u09b8\u09be", + "KM": "\u0995\u09ae\u09cb\u09b0\u09cb\u09b8", + "KH": "\u0995\u09ae\u09cd\u09ac\u09cb\u09a1\u09bf\u09af\u09bc\u09be", + "CO": "\u0995\u09b2\u09ae\u09cd\u09ac\u09bf\u09af\u09bc\u09be", + "KZ": "\u0995\u09be\u099c\u09be\u0996\u09b8\u09cd\u09a4\u09be\u09a8", + "QA": "\u0995\u09be\u09a4\u09be\u09b0", + "CA": "\u0995\u09be\u09a8\u09be\u09a1\u09be", + "CU": "\u0995\u09bf\u0989\u09ac\u09be", + "KG": "\u0995\u09bf\u09b0\u0997\u09bf\u099c\u09bf\u09b8\u09cd\u09a4\u09be\u09a8", + "KI": "\u0995\u09bf\u09b0\u09bf\u09ac\u09be\u09a4\u09bf", + "XK": "\u0995\u09b8\u09cb\u09ad\u09cb", + "CK": "\u0995\u09c1\u0995 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "KW": "\u0995\u09c1\u09af\u09bc\u09c7\u09a4", + "CW": "\u0995\u09c1\u09b0\u09be\u09b8\u09be\u0993", + "KE": "\u0995\u09c7\u09a8\u09bf\u09af\u09bc\u09be", + "CV": "\u0995\u09c7\u09aa\u09ad\u09be\u09b0\u09cd\u09a6\u09c7", + "KY": "\u0995\u09c7\u09ae\u09cd\u09af\u09be\u09a8 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "CC": "\u0995\u09cb\u0995\u09cb\u09b8 (\u0995\u09bf\u09b2\u09bf\u0982) \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "CI": "\u0995\u09cb\u09a4 \u09a6\u09bf\u09ad\u09cb\u09af\u09bc\u09be\u09b0", + "CR": "\u0995\u09cb\u09b8\u09cd\u099f\u09be\u09b0\u09bf\u0995\u09be", + "CM": "\u0995\u09cd\u09af\u09be\u09ae\u09c7\u09b0\u09c1\u09a8", + "BQ": "\u0995\u09cd\u09af\u09be\u09b0\u09bf\u09ac\u09bf\u09af\u09bc\u09be\u09a8 \u09a8\u09c7\u09a6\u09be\u09b0\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1\u09b8", + "CX": "\u0995\u09cd\u09b0\u09bf\u09b8\u09ae\u09be\u09b8 \u09a6\u09cd\u09ac\u09c0\u09aa", + "HR": "\u0995\u09cd\u09b0\u09cb\u09af\u09bc\u09c7\u09b6\u09bf\u09af\u09bc\u09be", + "GM": "\u0997\u09be\u09ae\u09cd\u09ac\u09bf\u09af\u09bc\u09be", + "GN": "\u0997\u09bf\u09a8\u09bf", + "GW": "\u0997\u09bf\u09a8\u09bf-\u09ac\u09bf\u09b8\u09be\u0989", + "GY": "\u0997\u09bf\u09af\u09bc\u09be\u09a8\u09be", + "GT": "\u0997\u09c1\u09af\u09bc\u09be\u09a4\u09c7\u09ae\u09be\u09b2\u09be", + "GP": "\u0997\u09c1\u09af\u09bc\u09be\u09a6\u09c7\u09b2\u09cc\u09aa", + "GU": "\u0997\u09c1\u09af\u09bc\u09be\u09ae", + "GG": "\u0997\u09c1\u09af\u09bc\u09be\u09b0\u09cd\u09a8\u09b8\u09bf", + "GA": "\u0997\u09cd\u09af\u09be\u09ac\u09a8", + "GL": "\u0997\u09cd\u09b0\u09c0\u09a8\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "GR": "\u0997\u09cd\u09b0\u09c0\u09b8", + "GD": "\u0997\u09cd\u09b0\u09c7\u09a8\u09be\u09a1\u09be", + "GH": "\u0998\u09be\u09a8\u09be", + "TD": "\u099a\u09be\u09a6", + "CL": "\u099a\u09bf\u09b2\u09bf", + "CN": "\u099a\u09c0\u09a8", + "CZ": "\u099a\u09c7\u099a\u09bf\u09af\u09bc\u09be", + "GE": "\u099c\u09b0\u09cd\u099c\u09bf\u09af\u09bc\u09be", + "JO": "\u099c\u09b0\u09cd\u09a1\u09a8", + "JP": "\u099c\u09be\u09aa\u09be\u09a8", + "JM": "\u099c\u09be\u09ae\u09be\u0987\u0995\u09be", + "ZM": "\u099c\u09be\u09ae\u09cd\u09ac\u09bf\u09af\u09bc\u09be", + "DE": "\u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8\u09bf", + "JE": "\u099c\u09be\u09b0\u09cd\u09b8\u09bf", + "DJ": "\u099c\u09bf\u09ac\u09c1\u09a4\u09bf", + "GI": "\u099c\u09bf\u09ac\u09cd\u09b0\u09be\u09b2\u09cd\u099f\u09be\u09b0", + "ZW": "\u099c\u09bf\u09ae\u09cd\u09ac\u09be\u09ac\u09cb\u09af\u09bc\u09c7", + "TV": "\u099f\u09c1\u09ad\u09be\u09b2\u09c1", + "TK": "\u099f\u09cb\u0995\u09c7\u09b2\u09be\u0989", + "TG": "\u099f\u09cb\u0997\u09cb", + "TO": "\u099f\u09cb\u0999\u09cd\u0997\u09be", + "DK": "\u09a1\u09c7\u09a8\u09ae\u09be\u09b0\u09cd\u0995", + "DM": "\u09a1\u09cb\u09ae\u09bf\u09a8\u09bf\u0995\u09be", + "DO": "\u09a1\u09cb\u09ae\u09c7\u09a8\u09bf\u0995\u09be\u09a8 \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0", + "TW": "\u09a4\u09be\u0987\u0993\u09af\u09bc\u09be\u09a8", + "TJ": "\u09a4\u09be\u099c\u09bf\u0995\u09bf\u09b8\u09cd\u09a4\u09be\u09a8", + "TZ": "\u09a4\u09be\u099e\u09cd\u099c\u09be\u09a8\u09bf\u09af\u09bc\u09be", + "TN": "\u09a4\u09bf\u0989\u09a8\u09bf\u09b8\u09bf\u09af\u09bc\u09be", + "TL": "\u09a4\u09bf\u09ae\u09c1\u09b0-\u09b2\u09c7\u09b8\u09cd\u09a4\u09c7", + "TR": "\u09a4\u09c1\u09b0\u09b8\u09cd\u0995", + "TM": "\u09a4\u09c1\u09b0\u09cd\u0995\u09ae\u09c7\u09a8\u09bf\u09b8\u09cd\u09a4\u09be\u09a8", + "TC": "\u09a4\u09c1\u09b0\u09cd\u0995\u09b8 \u0993 \u0995\u09be\u0987\u0995\u09cb\u09b8 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "TT": "\u09a4\u09cd\u09b0\u09bf\u09a8\u09bf\u09a8\u09be\u09a6 \u0993 \u099f\u09cb\u09ac\u09cd\u09af\u09be\u0997\u09cb", + "TH": "\u09a5\u09be\u0987\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "ZA": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a3 \u0986\u09ab\u09cd\u09b0\u09bf\u0995\u09be", + "KR": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a3 \u0995\u09cb\u09b0\u09bf\u09af\u09bc\u09be", + "GS": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a3 \u099c\u09b0\u09cd\u099c\u09bf\u09af\u09bc\u09be \u0993 \u09a6\u0995\u09cd\u09b7\u09bf\u09a3 \u09b8\u09cd\u09af\u09be\u09a8\u09cd\u09a1\u0989\u0987\u099a \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "SS": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a3 \u09b8\u09c1\u09a6\u09be\u09a8", + "NO": "\u09a8\u09b0\u0993\u09af\u09bc\u09c7", + "NF": "\u09a8\u09b0\u09ab\u09cb\u0995 \u09a6\u09cd\u09ac\u09c0\u09aa", + "NE": "\u09a8\u09be\u0987\u099c\u09be\u09b0", + "NG": "\u09a8\u09be\u0987\u099c\u09c7\u09b0\u09bf\u09af\u09bc\u09be", + "NR": "\u09a8\u09be\u0989\u09b0\u09c1", + "NA": "\u09a8\u09be\u09ae\u09bf\u09ac\u09bf\u09af\u09bc\u09be", + "NC": "\u09a8\u09bf\u0989 \u0995\u09cd\u09af\u09be\u09b2\u09c7\u09a1\u09cb\u09a8\u09bf\u09af\u09bc\u09be", + "NZ": "\u09a8\u09bf\u0989\u099c\u09bf\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "NU": "\u09a8\u09bf\u0989\u09af\u09bc\u09c7", + "NI": "\u09a8\u09bf\u0995\u09be\u09b0\u09be\u0997\u09c1\u09af\u09bc\u09be", + "GQ": "\u09a8\u09bf\u09b0\u0995\u09cd\u09b7\u09c0\u09af\u09bc \u0997\u09bf\u09a8\u09bf", + "NL": "\u09a8\u09c7\u09a6\u09be\u09b0\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1\u09b8", + "NP": "\u09a8\u09c7\u09aa\u09be\u09b2", + "PT": "\u09aa\u09b0\u09cd\u09a4\u09c1\u0997\u09be\u09b2", + "EH": "\u09aa\u09b6\u09cd\u099a\u09bf\u09ae \u09b8\u09be\u09b9\u09be\u09b0\u09be", + "PK": "\u09aa\u09be\u0995\u09bf\u09b8\u09cd\u09a4\u09be\u09a8", + "PA": "\u09aa\u09be\u09a8\u09be\u09ae\u09be", + "PG": "\u09aa\u09be\u09aa\u09c1\u09af\u09bc\u09be \u09a8\u09bf\u0989 \u0997\u09bf\u09a8\u09bf", + "PW": "\u09aa\u09be\u09b2\u09be\u0989", + "PN": "\u09aa\u09bf\u099f\u0995\u09c7\u09af\u09bc\u09be\u09b0\u09cd\u09a8 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "PR": "\u09aa\u09c1\u09af\u09bc\u09c7\u09b0\u09cd\u09a4\u09cb \u09b0\u09bf\u0995\u09cb", + "PE": "\u09aa\u09c7\u09b0\u09c1", + "PL": "\u09aa\u09cb\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "PY": "\u09aa\u09cd\u09af\u09be\u09b0\u09be\u0997\u09c1\u09af\u09bc\u09c7", + "PS": "\u09aa\u09cd\u09af\u09be\u09b2\u09c7\u09b8\u09cd\u099f\u09be\u0987\u09a8\u09c7\u09b0 \u0985\u099e\u09cd\u099a\u09b2\u09b8\u09ae\u09c2\u09b9", + "FK": "\u09ab\u0995\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "GF": "\u09ab\u09b0\u09be\u09b8\u09c0 \u0997\u09be\u09af\u09bc\u09be\u09a8\u09be", + "TF": "\u09ab\u09b0\u09be\u09b8\u09c0 \u09a6\u0995\u09cd\u09b7\u09bf\u09a3\u09be\u099e\u09cd\u099a\u09b2", + "PF": "\u09ab\u09b0\u09be\u09b8\u09c0 \u09aa\u09b2\u09bf\u09a8\u09c7\u09b6\u09bf\u09af\u09bc\u09be", + "FJ": "\u09ab\u09bf\u099c\u09bf", + "FI": "\u09ab\u09bf\u09a8\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "PH": "\u09ab\u09bf\u09b2\u09bf\u09aa\u09be\u0987\u09a8", + "FO": "\u09ab\u09cd\u09af\u09be\u09b0\u0993 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "FR": "\u09ab\u09cd\u09b0\u09be\u09a8\u09cd\u09b8", + "BW": "\u09ac\u09a4\u09b8\u09cb\u09af\u09bc\u09be\u09a8\u09be", + "BO": "\u09ac\u09b2\u09bf\u09ad\u09bf\u09af\u09bc\u09be", + "BA": "\u09ac\u09b8\u09a8\u09bf\u09af\u09bc\u09be \u0993 \u09b9\u09be\u09b0\u09cd\u099c\u09c7\u0997\u09cb\u09ad\u09bf\u09a8\u09be", + "BD": "\u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6", + "BB": "\u09ac\u09be\u09b0\u09ac\u09be\u09a6\u09cb\u09b8", + "BM": "\u09ac\u09be\u09b0\u09ae\u09c1\u09a1\u09be", + "BH": "\u09ac\u09be\u09b9\u09b0\u09be\u0987\u09a8", + "BS": "\u09ac\u09be\u09b9\u09be\u09ae\u09be \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "BF": "\u09ac\u09c1\u09b0\u0995\u09bf\u09a8\u09be \u09ab\u09be\u09b8\u09cb", + "BI": "\u09ac\u09c1\u09b0\u09c1\u09a8\u09cd\u09a1\u09bf", + "BG": "\u09ac\u09c1\u09b2\u0997\u09c7\u09b0\u09bf\u09af\u09bc\u09be", + "BJ": "\u09ac\u09c7\u09a8\u09bf\u09a8", + "BE": "\u09ac\u09c7\u09b2\u099c\u09bf\u09af\u09bc\u09be\u09ae", + "BY": "\u09ac\u09c7\u09b2\u09be\u09b0\u09c1\u09b6", + "BZ": "\u09ac\u09c7\u09b2\u09bf\u099c", + "BV": "\u09ac\u09cb\u09ad\u09c7\u099f \u09a6\u09cd\u09ac\u09c0\u09aa", + "BR": "\u09ac\u09cd\u09b0\u09be\u099c\u09bf\u09b2", + "IO": "\u09ac\u09cd\u09b0\u09bf\u099f\u09bf\u09b6 \u09ad\u09be\u09b0\u09a4 \u09ae\u09b9\u09be\u09b8\u09be\u0997\u09b0\u09c0\u09af\u09bc \u0985\u099e\u09cd\u099a\u09b2", + "VG": "\u09ac\u09cd\u09b0\u09bf\u099f\u09bf\u09b6 \u09ad\u09be\u09b0\u09cd\u099c\u09bf\u09a8 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "BN": "\u09ac\u09cd\u09b0\u09c1\u09a8\u09c7\u0987", + "VU": "\u09ad\u09be\u09a8\u09c1\u09af\u09bc\u09be\u099f\u09c1", + "IN": "\u09ad\u09be\u09b0\u09a4", + "VN": "\u09ad\u09bf\u09af\u09bc\u09c7\u09a4\u09a8\u09be\u09ae", + "BT": "\u09ad\u09c1\u099f\u09be\u09a8", + "VE": "\u09ad\u09c7\u09a8\u09c7\u099c\u09c1\u09af\u09bc\u09c7\u09b2\u09be", + "VA": "\u09ad\u09cd\u09af\u09be\u099f\u09bf\u0995\u09be\u09a8 \u09b8\u09bf\u099f\u09bf", + "MN": "\u09ae\u0999\u09cd\u0997\u09cb\u09b2\u09bf\u09af\u09bc\u09be", + "CF": "\u09ae\u09a7\u09cd\u09af \u0986\u09ab\u09cd\u09b0\u09bf\u0995\u09be\u09b0 \u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0", + "MS": "\u09ae\u09a8\u09cd\u099f\u09b8\u09c7\u09b0\u09be\u099f", + "ME": "\u09ae\u09a8\u09cd\u099f\u09bf\u09a8\u09bf\u0997\u09cd\u09b0\u09cb", + "MR": "\u09ae\u09b0\u09bf\u09a4\u09be\u09a8\u09bf\u09af\u09bc\u09be", + "MU": "\u09ae\u09b0\u09bf\u09b6\u09be\u09b8", + "MD": "\u09ae\u09b2\u09a1\u09cb\u09ad\u09be", + "FM": "\u09ae\u09be\u0987\u0995\u09cd\u09b0\u09cb\u09a8\u09c7\u09b6\u09bf\u09af\u09bc\u09be", + "MG": "\u09ae\u09be\u09a6\u09be\u0997\u09be\u09b8\u09cd\u0995\u09be\u09b0", + "MM": "\u09ae\u09be\u09af\u09bc\u09be\u09a8\u09ae\u09be\u09b0 (\u09ac\u09be\u09b0\u09cd\u09ae\u09be)", + "YT": "\u09ae\u09be\u09af\u09bc\u09cb\u09a4\u09cd\u09a4\u09c7", + "US": "\u09ae\u09be\u09b0\u09cd\u0995\u09bf\u09a8 \u09af\u09c1\u0995\u09cd\u09a4\u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0", + "VI": "\u09ae\u09be\u09b0\u09cd\u0995\u09bf\u09a8 \u09af\u09c1\u0995\u09cd\u09a4\u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09c7\u09b0 \u09ad\u09be\u09b0\u09cd\u099c\u09bf\u09a8 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "MQ": "\u09ae\u09be\u09b0\u09cd\u099f\u09bf\u09a8\u09bf\u0995", + "MH": "\u09ae\u09be\u09b0\u09cd\u09b6\u09be\u09b2 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "MV": "\u09ae\u09be\u09b2\u09a6\u09cd\u09ac\u09c0\u09aa", + "MY": "\u09ae\u09be\u09b2\u09af\u09bc\u09c7\u09b6\u09bf\u09af\u09bc\u09be", + "MW": "\u09ae\u09be\u09b2\u09be\u0989\u0987", + "ML": "\u09ae\u09be\u09b2\u09bf", + "MT": "\u09ae\u09be\u09b2\u09cd\u099f\u09be", + "EG": "\u09ae\u09bf\u09b6\u09b0", + "MX": "\u09ae\u09c7\u0995\u09cd\u09b8\u09bf\u0995\u09cb", + "MZ": "\u09ae\u09cb\u099c\u09be\u09ae\u09cd\u09ac\u09bf\u0995", + "MC": "\u09ae\u09cb\u09a8\u09be\u0995\u09cb", + "MA": "\u09ae\u09cb\u09b0\u0995\u09cd\u0995\u09cb", + "MO": "\u09ae\u09cd\u09af\u09be\u0995\u09be\u0993 \u098f\u09b8\u098f\u0986\u09b0 \u099a\u09c0\u09a8\u09be", + "GB": "\u09af\u09c1\u0995\u09cd\u09a4\u09b0\u09be\u099c\u09cd\u09af", + "UM": "\u09af\u09c1\u0995\u09cd\u09a4\u09b0\u09be\u09b7\u09cd\u099f\u09cd\u09b0\u09c7\u09b0 \u09aa\u09be\u09b0\u09cd\u09b6\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "RU": "\u09b0\u09be\u09b6\u09bf\u09af\u09bc\u09be", + "RE": "\u09b0\u09bf\u0987\u0989\u09a8\u09bf\u09af\u09bc\u09a8", + "RW": "\u09b0\u09c1\u09af\u09bc\u09be\u09a8\u09cd\u09a1\u09be", + "RO": "\u09b0\u09cb\u09ae\u09be\u09a8\u09bf\u09af\u09bc\u09be", + "LR": "\u09b2\u09be\u0987\u09ac\u09c7\u09b0\u09bf\u09af\u09bc\u09be", + "LA": "\u09b2\u09be\u0993\u09b8", + "LU": "\u09b2\u09be\u0995\u09cd\u09b8\u09c7\u09ae\u09ac\u09be\u09b0\u09cd\u0997", + "LV": "\u09b2\u09be\u09a4\u09cd\u09ad\u09bf\u09af\u09bc\u09be", + "LI": "\u09b2\u09bf\u099a\u09c7\u09a8\u09b8\u09cd\u099f\u09c7\u0987\u09a8", + "LT": "\u09b2\u09bf\u09a5\u09c1\u09af\u09bc\u09be\u09a8\u09bf\u09af\u09bc\u09be", + "LY": "\u09b2\u09bf\u09ac\u09bf\u09af\u09bc\u09be", + "LB": "\u09b2\u09c7\u09ac\u09be\u09a8\u09a8", + "LS": "\u09b2\u09c7\u09b8\u09cb\u09a5\u09cb", + "LK": "\u09b6\u09cd\u09b0\u09c0\u09b2\u0999\u09cd\u0995\u09be", + "AE": "\u09b8\u0982\u09af\u09c1\u0995\u09cd\u09a4 \u0986\u09b0\u09ac \u0986\u09ae\u09bf\u09b0\u09be\u09a4", + "SB": "\u09b8\u09b2\u09cb\u09ae\u09a8 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c", + "CY": "\u09b8\u09be\u0987\u09aa\u09cd\u09b0\u09be\u09b8", + "ST": "\u09b8\u09be\u0993\u099f\u09cb\u09ae\u09be \u0993 \u09aa\u09cd\u09b0\u09bf\u09a8\u09cd\u09b8\u09bf\u09aa\u09bf", + "SM": "\u09b8\u09be\u09a8 \u09ae\u09be\u09b0\u09bf\u09a8\u09cb", + "WS": "\u09b8\u09be\u09ae\u09cb\u09af\u09bc\u09be", + "RS": "\u09b8\u09be\u09b0\u09cd\u09ac\u09bf\u09af\u09bc\u09be", + "SG": "\u09b8\u09bf\u0999\u09cd\u0997\u09be\u09aa\u09c1\u09b0", + "SX": "\u09b8\u09bf\u09a8\u09cd\u099f \u09ae\u09be\u09b0\u09cd\u099f\u09c7\u09a8", + "SL": "\u09b8\u09bf\u09af\u09bc\u09c7\u09b0\u09be \u09b2\u09bf\u0993\u09a8", + "SY": "\u09b8\u09bf\u09b0\u09bf\u09af\u09bc\u09be", + "SC": "\u09b8\u09bf\u09b8\u09bf\u09b2\u09bf", + "CH": "\u09b8\u09c1\u0987\u099c\u09be\u09b0\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1", + "SE": "\u09b8\u09c1\u0987\u09a1\u09c7\u09a8", + "SD": "\u09b8\u09c1\u09a6\u09be\u09a8", + "SR": "\u09b8\u09c1\u09b0\u09bf\u09a8\u09be\u09ae", + "SN": "\u09b8\u09c7\u09a8\u09c7\u0997\u09be\u09b2", + "KN": "\u09b8\u09c7\u09a8\u09cd\u099f \u0995\u09bf\u099f\u09b8 \u0993 \u09a8\u09c7\u09ad\u09bf\u09b8", + "PM": "\u09b8\u09c7\u09a8\u09cd\u099f \u09aa\u09bf\u09af\u09bc\u09c7\u09b0 \u0993 \u09ae\u09bf\u0995\u09c1\u09af\u09bc\u09c7\u09b2\u09a8", + "BL": "\u09b8\u09c7\u09a8\u09cd\u099f \u09ac\u09be\u09b0\u09a5\u09c7\u09b2\u09bf\u09ae\u09bf", + "VC": "\u09b8\u09c7\u09a8\u09cd\u099f \u09ad\u09bf\u09a8\u09b8\u09c7\u09a8\u09cd\u099f \u0993 \u0997\u09cd\u09b0\u09c7\u09a8\u09be\u09a1\u09bf\u09a8\u09b8", + "MF": "\u09b8\u09c7\u09a8\u09cd\u099f \u09ae\u09be\u09b0\u09cd\u099f\u09bf\u09a8", + "LC": "\u09b8\u09c7\u09a8\u09cd\u099f \u09b2\u09c1\u09b8\u09bf\u09af\u09bc\u09be", + "SH": "\u09b8\u09c7\u09a8\u09cd\u099f \u09b9\u09c7\u09b2\u09c7\u09a8\u09be", + "SO": "\u09b8\u09cb\u09ae\u09be\u09b2\u09bf\u09af\u09bc\u09be", + "SA": "\u09b8\u09cc\u09a6\u09bf \u0986\u09b0\u09ac", + "ES": "\u09b8\u09cd\u09aa\u09c7\u09a8", + "SJ": "\u09b8\u09cd\u09ac\u09be\u09b2\u09ac\u09be\u09b0\u09cd\u09a1 \u0993 \u099c\u09be\u09a8 \u09ae\u09c7\u09af\u09bc\u09c7\u09a8", + "SK": "\u09b8\u09cd\u09b2\u09cb\u09ad\u09be\u0995\u09bf\u09af\u09bc\u09be", + "SI": "\u09b8\u09cd\u09b2\u09cb\u09ad\u09be\u09a8\u09bf\u09af\u09bc\u09be", + "HK": "\u09b9\u0982\u0995\u0982 \u098f\u09b8\u098f\u0986\u09b0 \u099a\u09c0\u09a8\u09be", + "HN": "\u09b9\u09a8\u09cd\u09a1\u09c1\u09b0\u09be\u09b8", + "HT": "\u09b9\u09be\u0987\u09a4\u09bf", + "HU": "\u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09bf", + "HM": "\u09b9\u09be\u09b0\u09cd\u09a1 \u098f\u09ac\u0982 \u09ae\u09cd\u09af\u09be\u0995\u09a1\u09cb\u09a8\u09be\u09b2\u09cd\u09a1 \u09a6\u09cd\u09ac\u09c0\u09aa\u09aa\u09c1\u099e\u09cd\u099c" +} diff --git a/public/intl/country/bs-BA.json b/public/intl/country/bs-BA.json new file mode 100644 index 0000000..cf10a19 --- /dev/null +++ b/public/intl/country/bs-BA.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AL": "Albanija", + "DZ": "Al\u017eir", + "VI": "Ameri\u010dka Djevi\u010danska ostrva", + "AS": "Ameri\u010dka Samoa", + "UM": "Ameri\u010dka Vanjska Ostrva", + "AD": "Andora", + "AO": "Angola", + "AI": "Angvila", + "AQ": "Antarktika", + "AG": "Antigva i Barbuda", + "AR": "Argentina", + "AM": "Armenija", + "AW": "Aruba", + "AU": "Australija", + "AT": "Austrija", + "AZ": "Azerbejd\u017ean", + "BS": "Bahami", + "BH": "Bahrein", + "BD": "Banglade\u0161", + "BB": "Barbados", + "BE": "Belgija", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BY": "Bjelorusija", + "BW": "Bocvana", + "BO": "Bolivija", + "BA": "Bosna i Hercegovina", + "CX": "Bo\u017ei\u0107no ostrvo", + "BR": "Brazil", + "VG": "Britanska Djevi\u010danska ostrva", + "IO": "Britanska Teritorija u Indijskom Okeanu", + "BN": "Brunej", + "BG": "Bugarska", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "Butan", + "CF": "Centralnoafri\u010dka Republika", + "ME": "Crna Gora", + "TD": "\u010cad", + "CZ": "\u010ce\u0161ka", + "CL": "\u010cile", + "DK": "Danska", + "CD": "Demokratska Republika Kongo", + "DM": "Dominika", + "DO": "Dominikanska Republika", + "DJ": "D\u017eibuti", + "EG": "Egipat", + "EC": "Ekvador", + "GQ": "Ekvatorijalna Gvineja", + "ER": "Eritreja", + "EE": "Estonija", + "SZ": "Esvatini", + "ET": "Etiopija", + "FO": "Farska ostrva", + "FJ": "Fid\u017ei", + "PH": "Filipini", + "FI": "Finska", + "FK": "Folklandska ostrva", + "FR": "Francuska", + "GF": "Francuska Gvajana", + "PF": "Francuska Polinezija", + "TF": "Francuske Ju\u017ene Teritorije", + "GA": "Gabon", + "GM": "Gambija", + "GH": "Gana", + "GG": "Gernzi", + "GI": "Gibraltar", + "GR": "Gr\u010dka", + "GD": "Grenada", + "GL": "Grenland", + "GE": "Gruzija", + "GU": "Guam", + "GP": "Gvadalupe", + "GY": "Gvajana", + "GT": "Gvatemala", + "GN": "Gvineja", + "GW": "Gvineja-Bisao", + "HT": "Haiti", + "HM": "Herd i arhipelag MekDonald", + "NL": "Holandija", + "HN": "Honduras", + "HK": "Hong Kong (SAR Kina)", + "HR": "Hrvatska", + "IN": "Indija", + "ID": "Indonezija", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irska", + "IS": "Island", + "TL": "Isto\u010dni Timor", + "IT": "Italija", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordan", + "GS": "Ju\u017ena D\u017eord\u017eija i Ju\u017ena Sendvi\u010d ostrva", + "KR": "Ju\u017ena Koreja", + "SS": "Ju\u017eni Sudan", + "ZA": "Ju\u017enoafri\u010dka Republika", + "KY": "Kajmanska ostrva", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kape Verde", + "BQ": "Karipska Holandija", + "QA": "Katar", + "KZ": "Kazahstan", + "KE": "Kenija", + "CN": "Kina", + "CY": "Kipar", + "KG": "Kirgistan", + "KI": "Kiribati", + "CC": "Kokosova (Keelingova) ostrva", + "CO": "Kolumbija", + "KM": "Komori", + "CG": "Kongo", + "XK": "Kosovo", + "CR": "Kostarika", + "CU": "Kuba", + "CK": "Kukova ostrva", + "CW": "Kurasao", + "KW": "Kuvajt", + "LA": "Laos", + "LV": "Latvija", + "LS": "Lesoto", + "LB": "Liban", + "LR": "Liberija", + "LY": "Libija", + "LI": "Lihten\u0161tajn", + "LT": "Litvanija", + "LU": "Luksemburg", + "MG": "Madagaskar", + "HU": "Ma\u0111arska", + "YT": "Majote", + "MO": "Makao (SAR Kina)", + "MW": "Malavi", + "MV": "Maldivi", + "MY": "Malezija", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroko", + "MH": "Mar\u0161alova ostrva", + "MQ": "Martinik", + "MU": "Mauricijus", + "MR": "Mauritanija", + "MX": "Meksiko", + "FM": "Mikronezija", + "MM": "Mjanmar", + "MD": "Moldavija", + "MC": "Monako", + "MN": "Mongolija", + "MS": "Monserat", + "MZ": "Mozambik", + "NA": "Namibija", + "NR": "Nauru", + "NP": "Nepal", + "NE": "Niger", + "NG": "Nigerija", + "NI": "Nikaragva", + "NU": "Niue", + "NO": "Norve\u0161ka", + "NC": "Nova Kaledonija", + "NZ": "Novi Zeland", + "DE": "Njema\u010dka", + "CI": "Obala Slonova\u010de", + "AX": "Olandska ostrva", + "OM": "Oman", + "TC": "Ostrva Turks i Kaikos", + "WF": "Ostrva Valis i Futuna", + "BV": "Ostrvo Buve", + "IM": "Ostrvo Man", + "NF": "Ostrvo Norfolk", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinska Teritorija", + "PA": "Panama", + "PG": "Papua Nova Gvineja", + "PY": "Paragvaj", + "PE": "Peru", + "PN": "Pitkernska Ostrva", + "PL": "Poljska", + "PR": "Porto Riko", + "PT": "Portugal", + "RE": "Reunion", + "RW": "Ruanda", + "RO": "Rumunija", + "RU": "Rusija", + "SV": "Salvador", + "WS": "Samoa", + "SM": "San Marino", + "ST": "Sao Tome i Principe", + "SA": "Saudijska Arabija", + "SC": "Sej\u0161eli", + "SN": "Senegal", + "SL": "Sijera Leone", + "SG": "Singapur", + "SX": "Sint Marten", + "SY": "Sirija", + "US": "Sjedinjene Dr\u017eave", + "KP": "Sjeverna Koreja", + "MK": "Sjeverna Makedonija", + "MP": "Sjeverna Marijanska ostrva", + "SK": "Slova\u010dka", + "SI": "Slovenija", + "SB": "Solomonska Ostrva", + "SO": "Somalija", + "RS": "Srbija", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard i Jan Majen", + "SH": "Sveta Helena", + "LC": "Sveta Lucija", + "BL": "Sveti Bartolomej", + "KN": "Sveti Kits i Nevis", + "MF": "Sveti Martin", + "PM": "Sveti Petar i Mikelon", + "VC": "Sveti Vinsent i Grenadin", + "ES": "\u0160panija", + "LK": "\u0160ri Lanka", + "SE": "\u0160vedska", + "CH": "\u0160vicarska", + "TJ": "Tad\u017eikistan", + "TH": "Tajland", + "TW": "Tajvan", + "TZ": "Tanzanija", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad i Tobago", + "TN": "Tunis", + "TM": "Turkmenistan", + "TR": "Turska", + "TV": "Tuvalu", + "UG": "Uganda", + "AE": "Ujedinjeni Arapski Emirati", + "GB": "Ujedinjeno Kraljevstvo", + "UA": "Ukrajina", + "UY": "Urugvaj", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatikan", + "VE": "Venecuela", + "VN": "Vijetnam", + "ZM": "Zambija", + "EH": "Zapadna Sahara", + "ZW": "Zimbabve" +} diff --git a/public/intl/country/ca-ES.json b/public/intl/country/ca-ES.json new file mode 100644 index 0000000..cc37340 --- /dev/null +++ b/public/intl/country/ca-ES.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AL": "Alb\u00e0nia", + "DE": "Alemanya", + "DZ": "Alg\u00e8ria", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Ant\u00e0rtida", + "AG": "Antigua i Barbuda", + "SA": "Ar\u00e0bia Saudita", + "AR": "Argentina", + "AM": "Arm\u00e8nia", + "AW": "Aruba", + "AU": "Austr\u00e0lia", + "AT": "\u00c0ustria", + "AZ": "Azerbaidjan", + "BS": "Bahames", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BY": "Belar\u00fas", + "BE": "B\u00e8lgica", + "BZ": "Belize", + "BJ": "Ben\u00edn", + "BM": "Bermudes", + "BT": "Bhutan", + "BO": "Bol\u00edvia", + "BA": "B\u00f2snia i Hercegovina", + "BW": "Botswana", + "BV": "Bouvet", + "BR": "Brasil", + "BN": "Brunei", + "BG": "Bulg\u00e0ria", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodja", + "CM": "Camerun", + "CA": "Canad\u00e0", + "CV": "Cap Verd", + "BQ": "Carib Neerland\u00e8s", + "VA": "Ciutat del Vatic\u00e0", + "CO": "Col\u00f2mbia", + "KM": "Comores", + "CG": "Congo - Brazzaville", + "CD": "Congo - Kinshasa", + "KP": "Corea del Nord", + "KR": "Corea del Sud", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Cro\u00e0cia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DK": "Dinamarca", + "DJ": "Djibouti", + "DM": "Dominica", + "EG": "Egipte", + "SV": "El Salvador", + "AE": "Emirats \u00c0rabs Units", + "EC": "Equador", + "ER": "Eritrea", + "SK": "Eslov\u00e0quia", + "SI": "Eslov\u00e8nia", + "ES": "Espanya", + "US": "Estats Units", + "EE": "Est\u00f2nia", + "SZ": "eSwatini", + "ET": "Eti\u00f2pia", + "FJ": "Fiji", + "PH": "Filipines", + "FI": "Finl\u00e0ndia", + "FR": "Fran\u00e7a", + "GA": "Gabon", + "GM": "G\u00e0mbia", + "GE": "Ge\u00f2rgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Gr\u00e8cia", + "GD": "Grenada", + "GL": "Groenl\u00e0ndia", + "GP": "Guadeloupe", + "GF": "Guaiana Francesa", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea Bissau", + "GQ": "Guinea Equatorial", + "GY": "Guyana", + "HT": "Hait\u00ed", + "HN": "Hondures", + "HK": "Hong Kong (RAE Xina)", + "HU": "Hongria", + "YE": "Iemen", + "CX": "Illa Christmas", + "RE": "Illa de la Reuni\u00f3", + "IM": "Illa de Man", + "HM": "Illa Heard i Illes McDonald", + "AX": "Illes \u00c5land", + "KY": "Illes Caiman", + "CC": "Illes Cocos", + "CK": "Illes Cook", + "FO": "Illes F\u00e8roe", + "GS": "Illes Ge\u00f2rgia del Sud i Sandwich del Sud", + "FK": "Illes Malvines", + "MP": "Illes Mariannes del Nord", + "MH": "Illes Marshall", + "UM": "Illes Perif\u00e8riques Menors dels EUA", + "PN": "Illes Pitcairn", + "SB": "Illes Salom\u00f3", + "TC": "Illes Turks i Caicos", + "VG": "Illes Verges Brit\u00e0niques", + "VI": "Illes Verges Nord-americanes", + "IN": "\u00cdndia", + "ID": "Indon\u00e8sia", + "IR": "Iran", + "IQ": "Iraq", + "IE": "Irlanda", + "IS": "Isl\u00e0ndia", + "IL": "Israel", + "IT": "It\u00e0lia", + "JM": "Jamaica", + "JP": "Jap\u00f3", + "JE": "Jersey", + "JO": "Jord\u00e0nia", + "KZ": "Kazakhstan", + "KE": "Kenya", + "KG": "Kirguizistan", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Let\u00f2nia", + "LB": "L\u00edban", + "LR": "Lib\u00e8ria", + "LY": "L\u00edbia", + "LI": "Liechtenstein", + "LT": "Litu\u00e0nia", + "LU": "Luxemburg", + "MO": "Macau (RAE Xina)", + "MK": "Maced\u00f2nia del Nord", + "MG": "Madagascar", + "MY": "Mal\u00e0isia", + "MW": "Malawi", + "MV": "Maldives", + "ML": "Mali", + "MT": "Malta", + "MA": "Marroc", + "MQ": "Martinica", + "MU": "Maurici", + "MR": "Maurit\u00e0nia", + "YT": "Mayotte", + "MX": "M\u00e8xic", + "FM": "Micron\u00e8sia", + "MZ": "Mo\u00e7ambic", + "MD": "Mold\u00e0via", + "MC": "M\u00f2naco", + "MN": "Mong\u00f2lia", + "ME": "Montenegro", + "MS": "Montserrat", + "MM": "Myanmar (Birm\u00e0nia)", + "NA": "Nam\u00edbia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "N\u00edger", + "NG": "Nig\u00e8ria", + "NU": "Niue", + "NF": "Norfolk", + "NO": "Noruega", + "NC": "Nova Caled\u00f2nia", + "NZ": "Nova Zelanda", + "OM": "Oman", + "NL": "Pa\u00efsos Baixos", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panam\u00e0", + "PG": "Papua Nova Guinea", + "PY": "Paraguai", + "PE": "Per\u00fa", + "PF": "Polin\u00e8sia Francesa", + "PL": "Pol\u00f2nia", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "GB": "Regne Unit", + "CF": "Rep\u00fablica Centreafricana", + "ZA": "Rep\u00fablica de Sud-\u00e0frica", + "DO": "Rep\u00fablica Dominicana", + "RO": "Romania", + "RW": "Ruanda", + "RU": "R\u00fassia", + "EH": "S\u00e0hara Occidental", + "BL": "Saint Barth\u00e9lemy", + "KN": "Saint Christopher i Nevis", + "SH": "Saint Helena", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "VC": "Saint Vincent i les Grenadines", + "PM": "Saint-Pierre-et-Miquelon", + "WS": "Samoa", + "AS": "Samoa Nord-americana", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 i Pr\u00edncipe", + "SN": "Senegal", + "RS": "S\u00e8rbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapur", + "SX": "Sint Maarten", + "SY": "S\u00edria", + "SO": "Som\u00e0lia", + "LK": "Sri Lanka", + "SD": "Sudan", + "SS": "Sudan del Sud", + "SE": "Su\u00e8cia", + "CH": "Su\u00efssa", + "SR": "Surinam", + "SJ": "Svalbard i Jan Mayen", + "TJ": "Tadjikistan", + "TH": "Tail\u00e0ndia", + "TW": "Taiwan", + "TZ": "Tanz\u00e0nia", + "IO": "Territori Brit\u00e0nic de l\u2019Oce\u00e0 \u00cdndic", + "TF": "Territoris Australs Francesos", + "PS": "Territoris palestins", + "TL": "Timor Oriental", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinitat i Tobago", + "TN": "Tun\u00edsia", + "TM": "Turkmenistan", + "TR": "Turquia", + "TV": "Tuvalu", + "TD": "Txad", + "CZ": "Tx\u00e8quia", + "UA": "Ucra\u00efna", + "UG": "Uganda", + "UY": "Uruguai", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VE": "Vene\u00e7uela", + "VN": "Vietnam", + "WF": "Wallis i Futuna", + "CL": "Xile", + "CN": "Xina", + "CY": "Xipre", + "ZM": "Z\u00e0mbia", + "ZW": "Zimb\u00e0bue" +} diff --git a/public/intl/country/cs-CZ.json b/public/intl/country/cs-CZ.json new file mode 100644 index 0000000..4871d3c --- /dev/null +++ b/public/intl/country/cs-CZ.json @@ -0,0 +1,252 @@ +{ + "AF": "Afgh\u00e1nist\u00e1n", + "AX": "\u00c5landy", + "AL": "Alb\u00e1nie", + "DZ": "Al\u017e\u00edrsko", + "AS": "Americk\u00e1 Samoa", + "VI": "Americk\u00e9 Panensk\u00e9 ostrovy", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktida", + "AG": "Antigua a Barbuda", + "AR": "Argentina", + "AM": "Arm\u00e9nie", + "AW": "Aruba", + "AU": "Austr\u00e1lie", + "AZ": "\u00c1zerb\u00e1jd\u017e\u00e1n", + "BS": "Bahamy", + "BH": "Bahrajn", + "BD": "Banglad\u00e9\u0161", + "BB": "Barbados", + "BE": "Belgie", + "BZ": "Belize", + "BY": "B\u011blorusko", + "BJ": "Benin", + "BM": "Bermudy", + "BT": "Bh\u00fat\u00e1n", + "BO": "Bol\u00edvie", + "BA": "Bosna a Hercegovina", + "BW": "Botswana", + "BV": "Bouvet\u016fv ostrov", + "BR": "Braz\u00edlie", + "IO": "Britsk\u00e9 indickooce\u00e1nsk\u00e9 \u00fazem\u00ed", + "VG": "Britsk\u00e9 Panensk\u00e9 ostrovy", + "BN": "Brunej", + "BG": "Bulharsko", + "BF": "Burkina Faso", + "BI": "Burundi", + "CK": "Cookovy ostrovy", + "CW": "Cura\u00e7ao", + "TD": "\u010cad", + "ME": "\u010cern\u00e1 Hora", + "CZ": "\u010cesko", + "CN": "\u010c\u00edna", + "DK": "D\u00e1nsko", + "DM": "Dominika", + "DO": "Dominik\u00e1nsk\u00e1 republika", + "DJ": "D\u017eibutsko", + "EG": "Egypt", + "EC": "Ekv\u00e1dor", + "ER": "Eritrea", + "EE": "Estonsko", + "ET": "Etiopie", + "FO": "Faersk\u00e9 ostrovy", + "FK": "Falklandsk\u00e9 ostrovy", + "FJ": "Fid\u017ei", + "PH": "Filip\u00edny", + "FI": "Finsko", + "FR": "Francie", + "GF": "Francouzsk\u00e1 Guyana", + "TF": "Francouzsk\u00e1 ji\u017en\u00ed \u00fazem\u00ed", + "PF": "Francouzsk\u00e1 Polyn\u00e9sie", + "GA": "Gabon", + "GM": "Gambie", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GL": "Gr\u00f3nsko", + "GE": "Gruzie", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard\u016fv ostrov a McDonaldovy ostrovy", + "HN": "Honduras", + "HK": "Hongkong \u2013 ZAO \u010c\u00edny", + "CL": "Chile", + "HR": "Chorvatsko", + "IN": "Indie", + "ID": "Indon\u00e9sie", + "IQ": "Ir\u00e1k", + "IR": "\u00cdr\u00e1n", + "IE": "Irsko", + "IS": "Island", + "IT": "It\u00e1lie", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japonsko", + "YE": "Jemen", + "JE": "Jersey", + "ZA": "Jihoafrick\u00e1 republika", + "GS": "Ji\u017en\u00ed Georgie a Ji\u017en\u00ed Sandwichovy ostrovy", + "KR": "Ji\u017en\u00ed Korea", + "SS": "Ji\u017en\u00ed S\u00fad\u00e1n", + "JO": "Jord\u00e1nsko", + "KY": "Kajmansk\u00e9 ostrovy", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kapverdy", + "BQ": "Karibsk\u00e9 Nizozemsko", + "QA": "Katar", + "KZ": "Kazachst\u00e1n", + "KE": "Ke\u0148a", + "KI": "Kiribati", + "CC": "Kokosov\u00e9 ostrovy", + "CO": "Kolumbie", + "KM": "Komory", + "CG": "Kongo \u2013 Brazzaville", + "CD": "Kongo \u2013 Kinshasa", + "CR": "Kostarika", + "XK": "Kosovo", + "CU": "Kuba", + "KW": "Kuvajt", + "CY": "Kypr", + "KG": "Kyrgyzst\u00e1n", + "LA": "Laos", + "LS": "Lesotho", + "LB": "Libanon", + "LR": "Lib\u00e9rie", + "LY": "Libye", + "LI": "Lichten\u0161tejnsko", + "LT": "Litva", + "LV": "Loty\u0161sko", + "LU": "Lucembursko", + "MO": "Macao \u2013 ZAO \u010c\u00edny", + "MG": "Madagaskar", + "HU": "Ma\u010farsko", + "MY": "Malajsie", + "MW": "Malawi", + "MV": "Maledivy", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroko", + "MH": "Marshallovy ostrovy", + "MQ": "Martinik", + "MU": "Mauricius", + "MR": "Maurit\u00e1nie", + "YT": "Mayotte", + "UM": "Men\u0161\u00ed odlehl\u00e9 ostrovy USA", + "MX": "Mexiko", + "FM": "Mikron\u00e9sie", + "MD": "Moldavsko", + "MC": "Monako", + "MN": "Mongolsko", + "MS": "Montserrat", + "MZ": "Mosambik", + "MM": "Myanmar (Barma)", + "NA": "Namibie", + "NR": "Nauru", + "DE": "N\u011bmecko", + "NP": "Nep\u00e1l", + "NE": "Niger", + "NG": "Nig\u00e9rie", + "NI": "Nikaragua", + "NU": "Niue", + "NL": "Nizozemsko", + "NF": "Norfolk", + "NO": "Norsko", + "NC": "Nov\u00e1 Kaledonie", + "NZ": "Nov\u00fd Z\u00e9land", + "OM": "Om\u00e1n", + "IM": "Ostrov Man", + "PK": "P\u00e1kist\u00e1n", + "PW": "Palau", + "PS": "Palestinsk\u00e1 \u00fazem\u00ed", + "PA": "Panama", + "PG": "Papua-Nov\u00e1 Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairnovy ostrovy", + "CI": "Pob\u0159e\u017e\u00ed slonoviny", + "PL": "Polsko", + "PR": "Portoriko", + "PT": "Portugalsko", + "AT": "Rakousko", + "RE": "R\u00e9union", + "GQ": "Rovn\u00edkov\u00e1 Guinea", + "RO": "Rumunsko", + "RU": "Rusko", + "RW": "Rwanda", + "GR": "\u0158ecko", + "PM": "Saint-Pierre a Miquelon", + "SV": "Salvador", + "WS": "Samoa", + "SM": "San Marino", + "SA": "Sa\u00fadsk\u00e1 Ar\u00e1bie", + "SN": "Senegal", + "KP": "Severn\u00ed Korea", + "MK": "Severn\u00ed Makedonie", + "MP": "Severn\u00ed Mariany", + "SC": "Seychely", + "SL": "Sierra Leone", + "SG": "Singapur", + "SK": "Slovensko", + "SI": "Slovinsko", + "SO": "Som\u00e1lsko", + "AE": "Spojen\u00e9 arabsk\u00e9 emir\u00e1ty", + "GB": "Spojen\u00e9 kr\u00e1lovstv\u00ed", + "US": "Spojen\u00e9 st\u00e1ty", + "RS": "Srbsko", + "LK": "Sr\u00ed Lanka", + "CF": "St\u0159edoafrick\u00e1 republika", + "SD": "S\u00fad\u00e1n", + "SR": "Surinam", + "SH": "Svat\u00e1 Helena", + "LC": "Svat\u00e1 Lucie", + "BL": "Svat\u00fd Bartolom\u011bj", + "KN": "Svat\u00fd Kry\u0161tof a Nevis", + "MF": "Svat\u00fd Martin (Francie)", + "SX": "Svat\u00fd Martin (Nizozemsko)", + "ST": "Svat\u00fd Tom\u00e1\u0161 a Princ\u016fv ostrov", + "VC": "Svat\u00fd Vincenc a Grenadiny", + "SZ": "Svazijsko", + "SY": "S\u00fdrie", + "SB": "\u0160alamounovy ostrovy", + "ES": "\u0160pan\u011blsko", + "SJ": "\u0160picberky a Jan Mayen", + "SE": "\u0160v\u00e9dsko", + "CH": "\u0160v\u00fdcarsko", + "TJ": "T\u00e1d\u017eikist\u00e1n", + "TZ": "Tanzanie", + "TH": "Thajsko", + "TW": "Tchaj-wan", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad a Tobago", + "TN": "Tunisko", + "TR": "Turecko", + "TM": "Turkmenist\u00e1n", + "TC": "Turks a Caicos", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukrajina", + "UY": "Uruguay", + "UZ": "Uzbekist\u00e1n", + "CX": "V\u00e1no\u010dn\u00ed ostrov", + "VU": "Vanuatu", + "VA": "Vatik\u00e1n", + "VE": "Venezuela", + "VN": "Vietnam", + "TL": "V\u00fdchodn\u00ed Timor", + "WF": "Wallis a Futuna", + "ZM": "Zambie", + "EH": "Z\u00e1padn\u00ed Sahara", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/da-DK.json b/public/intl/country/da-DK.json new file mode 100644 index 0000000..e6f06c8 --- /dev/null +++ b/public/intl/country/da-DK.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AL": "Albanien", + "DZ": "Algeriet", + "AS": "Amerikansk Samoa", + "UM": "Amerikanske overs\u00f8iske \u00f8er", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua og Barbuda", + "AR": "Argentina", + "AM": "Armenien", + "AW": "Aruba", + "AZ": "Aserbajdsjan", + "AU": "Australien", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BE": "Belgien", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnien-Hercegovina", + "BW": "Botswana", + "BV": "Bouvet\u00f8en", + "BR": "Brasilien", + "BN": "Brunei", + "BG": "Bulgarien", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodja", + "CM": "Cameroun", + "CA": "Canada", + "KY": "Cayman\u00f8erne", + "CL": "Chile", + "CC": "Cocos\u00f8erne", + "CO": "Colombia", + "KM": "Comorerne", + "CG": "Congo-Brazzaville", + "CD": "Congo-Kinshasa", + "CK": "Cook\u00f8erne", + "CR": "Costa Rica", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "CY": "Cypern", + "DK": "Danmark", + "VI": "De Amerikanske Jomfru\u00f8er", + "VG": "De Britiske Jomfru\u00f8er", + "AE": "De Forenede Arabiske Emirater", + "TF": "De Franske Besiddelser i Det Sydlige Indiske Ocean og Antarktis", + "PS": "De pal\u00e6stinensiske omr\u00e5der", + "BQ": "De tidligere Nederlandske Antiller", + "CF": "Den Centralafrikanske Republik", + "DO": "Den Dominikanske Republik", + "IO": "Det Britiske Territorium i Det Indiske Ocean", + "DJ": "Djibouti", + "DM": "Dominica", + "EC": "Ecuador", + "EG": "Egypten", + "SV": "El Salvador", + "CI": "Elfenbenskysten", + "ER": "Eritrea", + "EE": "Estland", + "SZ": "Eswatini", + "ET": "Etiopien", + "FK": "Falklands\u00f8erne", + "FJ": "Fiji", + "PH": "Filippinerne", + "FI": "Finland", + "FR": "Frankrig", + "GF": "Fransk Guyana", + "PF": "Fransk Polynesien", + "FO": "F\u00e6r\u00f8erne", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgien", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GR": "Gr\u00e6kenland", + "GL": "Gr\u00f8nland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard Island og McDonald Islands", + "NL": "Holland", + "HN": "Honduras", + "BY": "Hviderusland", + "IN": "Indien", + "ID": "Indonesien", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irland", + "IS": "Island", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Italien", + "JM": "Jamaica", + "JP": "Japan", + "JE": "Jersey", + "JO": "Jordan", + "CX": "Jule\u00f8en", + "CV": "Kap Verde", + "KZ": "Kasakhstan", + "KE": "Kenya", + "CN": "Kina", + "KG": "Kirgisistan", + "KI": "Kiribati", + "XK": "Kosovo", + "HR": "Kroatien", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Letland", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libyen", + "LI": "Liechtenstein", + "LT": "Litauen", + "LU": "Luxembourg", + "MG": "Madagaskar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldiverne", + "ML": "Mali", + "MT": "Malta", + "MA": "Marokko", + "MH": "Marshall\u00f8erne", + "MQ": "Martinique", + "MR": "Mauretanien", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexico", + "FM": "Mikronesien", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mongoliet", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NZ": "New Zealand", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "KP": "Nordkorea", + "MK": "Nordmakedonien", + "MP": "Nordmarianerne", + "NF": "Norfolk Island", + "NO": "Norge", + "NC": "Ny Kaledonien", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua Ny Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairn", + "PL": "Polen", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "RE": "R\u00e9union", + "RO": "Rum\u00e6nien", + "RU": "Rusland", + "RW": "Rwanda", + "BL": "Saint Barth\u00e9lemy", + "KN": "Saint Kitts og Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "PM": "Saint Pierre og Miquelon", + "VC": "Saint Vincent og Grenadinerne", + "SB": "Salomon\u00f8erne", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 og Pr\u00edncipe", + "HK": "SAR Hongkong", + "MO": "SAR Macao", + "SA": "Saudi-Arabien", + "CH": "Schweiz", + "SN": "Senegal", + "RS": "Serbien", + "SC": "Seychellerne", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SK": "Slovakiet", + "SI": "Slovenien", + "SO": "Somalia", + "GS": "South Georgia og De Sydlige Sandwich\u00f8er", + "ES": "Spanien", + "LK": "Sri Lanka", + "SH": "St. Helena", + "GB": "Storbritannien", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard og Jan Mayen", + "SE": "Sverige", + "ZA": "Sydafrika", + "KR": "Sydkorea", + "SS": "Sydsudan", + "SY": "Syrien", + "TJ": "Tadsjikistan", + "TW": "Taiwan", + "TZ": "Tanzania", + "TD": "Tchad", + "TH": "Thailand", + "TL": "Timor-Leste", + "CZ": "Tjekkiet", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad og Tobago", + "TN": "Tunesien", + "TM": "Turkmenistan", + "TC": "Turks- og Caicos\u00f8erne", + "TV": "Tuvalu", + "TR": "Tyrkiet", + "DE": "Tyskland", + "UG": "Uganda", + "UA": "Ukraine", + "HU": "Ungarn", + "UY": "Uruguay", + "US": "USA", + "UZ": "Usbekistan", + "VU": "Vanuatu", + "VA": "Vatikanstaten", + "VE": "Venezuela", + "EH": "Vestsahara", + "VN": "Vietnam", + "WF": "Wallis og Futuna", + "YE": "Yemen", + "ZM": "Zambia", + "ZW": "Zimbabwe", + "GQ": "\u00c6kvatorialguinea", + "AT": "\u00d8strig", + "AX": "\u00c5land" +} diff --git a/public/intl/country/de-CH.json b/public/intl/country/de-CH.json new file mode 100644 index 0000000..1c467eb --- /dev/null +++ b/public/intl/country/de-CH.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "EG": "\u00c4gypten", + "AX": "\u00c5landinseln", + "AL": "Albanien", + "DZ": "Algerien", + "AS": "Amerikanisch-Samoa", + "VI": "Amerikanische Jungferninseln", + "UM": "Amerikanische \u00dcberseeinseln", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua und Barbuda", + "GQ": "\u00c4quatorialguinea", + "AR": "Argentinien", + "AM": "Armenien", + "AW": "Aruba", + "AZ": "Aserbaidschan", + "ET": "\u00c4thiopien", + "AU": "Australien", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesch", + "BB": "Barbados", + "BE": "Belgien", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivien", + "BQ": "Bonaire, Sint Eustatius und Saba", + "BA": "Bosnien und Herzegowina", + "BW": "Botswana", + "BV": "Bouvetinsel", + "BR": "Brasilien", + "VG": "Britische Jungferninseln", + "IO": "Britisches Territorium im Indischen Ozean", + "BN": "Brunei", + "BG": "Bulgarien", + "BF": "Burkina Faso", + "BI": "Burundi", + "CL": "Chile", + "CN": "China", + "CK": "Cookinseln", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "CW": "Cura\u00e7ao", + "DK": "D\u00e4nemark", + "DE": "Deutschland", + "DM": "Dominica", + "DO": "Dominikanische Republik", + "DJ": "Dschibuti", + "EC": "Ecuador", + "SV": "El Salvador", + "ER": "Eritrea", + "EE": "Estland", + "SZ": "Eswatini", + "FK": "Falklandinseln", + "FO": "F\u00e4r\u00f6er", + "FJ": "Fidschi", + "FI": "Finnland", + "FR": "Frankreich", + "GF": "Franz\u00f6sisch-Guayana", + "PF": "Franz\u00f6sisch-Polynesien", + "TF": "Franz\u00f6sische S\u00fcd- und Antarktisgebiete", + "GA": "Gabun", + "GM": "Gambia", + "GE": "Georgien", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GR": "Griechenland", + "GL": "Gr\u00f6nland", + "GB": "Grossbritannien", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard und McDonaldinseln", + "HN": "Honduras", + "IN": "Indien", + "ID": "Indonesien", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irland", + "IS": "Island", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Italien", + "JM": "Jamaika", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordanien", + "KY": "Kaimaninseln", + "KH": "Kambodscha", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kapverden", + "KZ": "Kasachstan", + "QA": "Katar", + "KE": "Kenia", + "KG": "Kirgisistan", + "KI": "Kiribati", + "CC": "Kokosinseln", + "CO": "Kolumbien", + "KM": "Komoren", + "CG": "Kongo-Brazzaville", + "CD": "Kongo-Kinshasa", + "XK": "Kosovo", + "HR": "Kroatien", + "CU": "Kuba", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Lettland", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libyen", + "LI": "Liechtenstein", + "LT": "Litauen", + "LU": "Luxemburg", + "MG": "Madagaskar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Malediven", + "ML": "Mali", + "MT": "Malta", + "MA": "Marokko", + "MH": "Marshallinseln", + "MQ": "Martinique", + "MR": "Mauretanien", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexiko", + "FM": "Mikronesien", + "MC": "Monaco", + "MN": "Mongolei", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mosambik", + "MM": "Myanmar", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NC": "Neukaledonien", + "NZ": "Neuseeland", + "NI": "Nicaragua", + "NL": "Niederlande", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "KP": "Nordkorea", + "MP": "N\u00f6rdliche Marianen", + "MK": "Nordmazedonien", + "NF": "Norfolkinsel", + "NO": "Norwegen", + "OM": "Oman", + "AT": "\u00d6sterreich", + "TL": "Osttimor", + "PK": "Pakistan", + "PS": "Pal\u00e4stinensische Autonomiegebiete", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua-Neuguinea", + "PY": "Paraguay", + "PE": "Peru", + "PH": "Philippinen", + "PN": "Pitcairninseln", + "PL": "Polen", + "PT": "Portugal", + "PR": "Puerto Rico", + "MD": "Republik Moldau", + "RE": "R\u00e9union", + "RW": "Ruanda", + "RO": "Rum\u00e4nien", + "RU": "Russland", + "SB": "Salomon-Inseln", + "ZM": "Sambia", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 und Pr\u00edncipe", + "SA": "Saudi-Arabien", + "SE": "Schweden", + "CH": "Schweiz", + "SN": "Senegal", + "RS": "Serbien", + "SC": "Seychellen", + "SL": "Sierra Leone", + "SG": "Singapur", + "SX": "Sint Maarten", + "SK": "Slowakei", + "SI": "Slowenien", + "SO": "Somalia", + "HK": "Sonderverwaltungsregion Hongkong", + "MO": "Sonderverwaltungsregion Macau", + "ES": "Spanien", + "SJ": "Spitzbergen und Jan Mayen", + "LK": "Sri Lanka", + "BL": "St. Barth\u00e9lemy", + "SH": "St. Helena", + "KN": "St. Kitts und Nevis", + "LC": "St. Lucia", + "MF": "St. Martin", + "PM": "St. Pierre und Miquelon", + "VC": "St. Vincent und die Grenadinen", + "ZA": "S\u00fcdafrika", + "SD": "Sudan", + "GS": "S\u00fcdgeorgien und die S\u00fcdlichen Sandwichinseln", + "KR": "S\u00fcdkorea", + "SS": "S\u00fcdsudan", + "SR": "Suriname", + "SY": "Syrien", + "TJ": "Tadschikistan", + "TW": "Taiwan", + "TZ": "Tansania", + "TH": "Thailand", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad und Tobago", + "TD": "Tschad", + "CZ": "Tschechien", + "TN": "Tunesien", + "TR": "T\u00fcrkei", + "TM": "Turkmenistan", + "TC": "Turks- und Caicosinseln", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraine", + "HU": "Ungarn", + "UY": "Uruguay", + "UZ": "Usbekistan", + "VU": "Vanuatu", + "VA": "Vatikanstadt", + "VE": "Venezuela", + "AE": "Vereinigte Arabische Emirate", + "US": "Vereinigte Staaten", + "VN": "Vietnam", + "WF": "Wallis und Futuna", + "CX": "Weihnachtsinsel", + "BY": "Weissrussland", + "EH": "Westsahara", + "CF": "Zentralafrikanische Republik", + "ZW": "Zimbabwe", + "CY": "Zypern" +} diff --git a/public/intl/country/de-DE.json b/public/intl/country/de-DE.json new file mode 100644 index 0000000..c4d3c40 --- /dev/null +++ b/public/intl/country/de-DE.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "EG": "\u00c4gypten", + "AX": "\u00c5landinseln", + "AL": "Albanien", + "DZ": "Algerien", + "AS": "Amerikanisch-Samoa", + "VI": "Amerikanische Jungferninseln", + "UM": "Amerikanische \u00dcberseeinseln", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua und Barbuda", + "GQ": "\u00c4quatorialguinea", + "AR": "Argentinien", + "AM": "Armenien", + "AW": "Aruba", + "AZ": "Aserbaidschan", + "ET": "\u00c4thiopien", + "AU": "Australien", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesch", + "BB": "Barbados", + "BY": "Belarus", + "BE": "Belgien", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivien", + "BQ": "Bonaire, Sint Eustatius und Saba", + "BA": "Bosnien und Herzegowina", + "BW": "Botsuana", + "BV": "Bouvetinsel", + "BR": "Brasilien", + "VG": "Britische Jungferninseln", + "IO": "Britisches Territorium im Indischen Ozean", + "BN": "Brunei Darussalam", + "BG": "Bulgarien", + "BF": "Burkina Faso", + "BI": "Burundi", + "CV": "Cabo Verde", + "CL": "Chile", + "CN": "China", + "CK": "Cookinseln", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "CW": "Cura\u00e7ao", + "DK": "D\u00e4nemark", + "DE": "Deutschland", + "DM": "Dominica", + "DO": "Dominikanische Republik", + "DJ": "Dschibuti", + "EC": "Ecuador", + "SV": "El Salvador", + "ER": "Eritrea", + "EE": "Estland", + "SZ": "Eswatini", + "FK": "Falklandinseln", + "FO": "F\u00e4r\u00f6er", + "FJ": "Fidschi", + "FI": "Finnland", + "FR": "Frankreich", + "GF": "Franz\u00f6sisch-Guayana", + "PF": "Franz\u00f6sisch-Polynesien", + "TF": "Franz\u00f6sische S\u00fcd- und Antarktisgebiete", + "GA": "Gabun", + "GM": "Gambia", + "GE": "Georgien", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GR": "Griechenland", + "GL": "Gr\u00f6nland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard und McDonaldinseln", + "HN": "Honduras", + "IN": "Indien", + "ID": "Indonesien", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irland", + "IS": "Island", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Italien", + "JM": "Jamaika", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordanien", + "KY": "Kaimaninseln", + "KH": "Kambodscha", + "CM": "Kamerun", + "CA": "Kanada", + "KZ": "Kasachstan", + "QA": "Katar", + "KE": "Kenia", + "KG": "Kirgisistan", + "KI": "Kiribati", + "CC": "Kokosinseln", + "CO": "Kolumbien", + "KM": "Komoren", + "CG": "Kongo-Brazzaville", + "CD": "Kongo-Kinshasa", + "XK": "Kosovo", + "HR": "Kroatien", + "CU": "Kuba", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Lettland", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libyen", + "LI": "Liechtenstein", + "LT": "Litauen", + "LU": "Luxemburg", + "MG": "Madagaskar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Malediven", + "ML": "Mali", + "MT": "Malta", + "MA": "Marokko", + "MH": "Marshallinseln", + "MQ": "Martinique", + "MR": "Mauretanien", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexiko", + "FM": "Mikronesien", + "MC": "Monaco", + "MN": "Mongolei", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mosambik", + "MM": "Myanmar", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NC": "Neukaledonien", + "NZ": "Neuseeland", + "NI": "Nicaragua", + "NL": "Niederlande", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "KP": "Nordkorea", + "MP": "N\u00f6rdliche Marianen", + "MK": "Nordmazedonien", + "NF": "Norfolkinsel", + "NO": "Norwegen", + "OM": "Oman", + "AT": "\u00d6sterreich", + "PK": "Pakistan", + "PS": "Pal\u00e4stinensische Autonomiegebiete", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua-Neuguinea", + "PY": "Paraguay", + "PE": "Peru", + "PH": "Philippinen", + "PN": "Pitcairninseln", + "PL": "Polen", + "PT": "Portugal", + "PR": "Puerto Rico", + "MD": "Republik Moldau", + "RE": "R\u00e9union", + "RW": "Ruanda", + "RO": "Rum\u00e4nien", + "RU": "Russland", + "SB": "Salomonen", + "ZM": "Sambia", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 und Pr\u00edncipe", + "SA": "Saudi-Arabien", + "SE": "Schweden", + "CH": "Schweiz", + "SN": "Senegal", + "RS": "Serbien", + "SC": "Seychellen", + "SL": "Sierra Leone", + "ZW": "Simbabwe", + "SG": "Singapur", + "SX": "Sint Maarten", + "SK": "Slowakei", + "SI": "Slowenien", + "SO": "Somalia", + "HK": "Sonderverwaltungsregion Hongkong", + "MO": "Sonderverwaltungsregion Macau", + "ES": "Spanien", + "SJ": "Spitzbergen und Jan Mayen", + "LK": "Sri Lanka", + "BL": "St. Barth\u00e9lemy", + "SH": "St. Helena", + "KN": "St. Kitts und Nevis", + "LC": "St. Lucia", + "MF": "St. Martin", + "PM": "St. Pierre und Miquelon", + "VC": "St. Vincent und die Grenadinen", + "ZA": "S\u00fcdafrika", + "SD": "Sudan", + "GS": "S\u00fcdgeorgien und die S\u00fcdlichen Sandwichinseln", + "KR": "S\u00fcdkorea", + "SS": "S\u00fcdsudan", + "SR": "Suriname", + "SY": "Syrien", + "TJ": "Tadschikistan", + "TW": "Taiwan", + "TZ": "Tansania", + "TH": "Thailand", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad und Tobago", + "TD": "Tschad", + "CZ": "Tschechien", + "TN": "Tunesien", + "TR": "T\u00fcrkei", + "TM": "Turkmenistan", + "TC": "Turks- und Caicosinseln", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraine", + "HU": "Ungarn", + "UY": "Uruguay", + "UZ": "Usbekistan", + "VU": "Vanuatu", + "VA": "Vatikanstadt", + "VE": "Venezuela", + "AE": "Vereinigte Arabische Emirate", + "US": "Vereinigte Staaten", + "GB": "Vereinigtes K\u00f6nigreich", + "VN": "Vietnam", + "WF": "Wallis und Futuna", + "CX": "Weihnachtsinsel", + "EH": "Westsahara", + "CF": "Zentralafrikanische Republik", + "CY": "Zypern" +} diff --git a/public/intl/country/el-GR.json b/public/intl/country/el-GR.json new file mode 100644 index 0000000..311ee29 --- /dev/null +++ b/public/intl/country/el-GR.json @@ -0,0 +1,252 @@ +{ + "SH": "\u0391\u03b3\u03af\u03b1 \u0395\u03bb\u03ad\u03bd\u03b7", + "LC": "\u0391\u03b3\u03af\u03b1 \u039b\u03bf\u03c5\u03ba\u03af\u03b1", + "BL": "\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b1\u03c1\u03b8\u03bf\u03bb\u03bf\u03bc\u03b1\u03af\u03bf\u03c2", + "VC": "\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b9\u03ba\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2 \u03ba\u03b1\u03b9 \u0393\u03c1\u03b5\u03bd\u03b1\u03b4\u03af\u03bd\u03b5\u03c2", + "SM": "\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03bf\u03c2", + "MF": "\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03b1\u03c1\u03c4\u03af\u03bd\u03bf\u03c2 (\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03cc \u03c4\u03bc\u03ae\u03bc\u03b1)", + "SX": "\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03b1\u03c1\u03c4\u03af\u03bd\u03bf\u03c2 (\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03cc \u03c4\u03bc\u03ae\u03bc\u03b1)", + "AO": "\u0391\u03b3\u03ba\u03cc\u03bb\u03b1", + "AZ": "\u0391\u03b6\u03b5\u03c1\u03bc\u03c0\u03b1\u03ca\u03c4\u03b6\u03ac\u03bd", + "EG": "\u0391\u03af\u03b3\u03c5\u03c0\u03c4\u03bf\u03c2", + "ET": "\u0391\u03b9\u03b8\u03b9\u03bf\u03c0\u03af\u03b1", + "HT": "\u0391\u03ca\u03c4\u03ae", + "CI": "\u0391\u03ba\u03c4\u03ae \u0395\u03bb\u03b5\u03c6\u03b1\u03bd\u03c4\u03bf\u03c3\u03c4\u03bf\u03cd", + "AL": "\u0391\u03bb\u03b2\u03b1\u03bd\u03af\u03b1", + "DZ": "\u0391\u03bb\u03b3\u03b5\u03c1\u03af\u03b1", + "VI": "\u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a0\u03b1\u03c1\u03b8\u03ad\u03bd\u03b5\u03c2 \u039d\u03ae\u03c3\u03bf\u03b9", + "AS": "\u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ae \u03a3\u03b1\u03bc\u03cc\u03b1", + "AI": "\u0391\u03bd\u03b3\u03ba\u03bf\u03c5\u03af\u03bb\u03b1", + "AD": "\u0391\u03bd\u03b4\u03cc\u03c1\u03b1", + "AQ": "\u0391\u03bd\u03c4\u03b1\u03c1\u03ba\u03c4\u03b9\u03ba\u03ae", + "AG": "\u0391\u03bd\u03c4\u03af\u03b3\u03ba\u03bf\u03c5\u03b1 \u03ba\u03b1\u03b9 \u039c\u03c0\u03b1\u03c1\u03bc\u03c0\u03bf\u03cd\u03bd\u03c4\u03b1", + "UM": "\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u0397\u03a0\u0391", + "AR": "\u0391\u03c1\u03b3\u03b5\u03bd\u03c4\u03b9\u03bd\u03ae", + "AM": "\u0391\u03c1\u03bc\u03b5\u03bd\u03af\u03b1", + "AW": "\u0391\u03c1\u03bf\u03cd\u03bc\u03c0\u03b1", + "AU": "\u0391\u03c5\u03c3\u03c4\u03c1\u03b1\u03bb\u03af\u03b1", + "AT": "\u0391\u03c5\u03c3\u03c4\u03c1\u03af\u03b1", + "AF": "\u0391\u03c6\u03b3\u03b1\u03bd\u03b9\u03c3\u03c4\u03ac\u03bd", + "VU": "\u0392\u03b1\u03bd\u03bf\u03c5\u03ac\u03c4\u03bf\u03c5", + "VA": "\u0392\u03b1\u03c4\u03b9\u03ba\u03b1\u03bd\u03cc", + "BE": "\u0392\u03ad\u03bb\u03b3\u03b9\u03bf", + "VE": "\u0392\u03b5\u03bd\u03b5\u03b6\u03bf\u03c5\u03ad\u03bb\u03b1", + "BM": "\u0392\u03b5\u03c1\u03bc\u03bf\u03cd\u03b4\u03b5\u03c2", + "VN": "\u0392\u03b9\u03b5\u03c4\u03bd\u03ac\u03bc", + "BO": "\u0392\u03bf\u03bb\u03b9\u03b2\u03af\u03b1", + "KP": "\u0392\u03cc\u03c1\u03b5\u03b9\u03b1 \u039a\u03bf\u03c1\u03ad\u03b1", + "MK": "\u0392\u03cc\u03c1\u03b5\u03b9\u03b1 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1", + "BA": "\u0392\u03bf\u03c3\u03bd\u03af\u03b1 - \u0395\u03c1\u03b6\u03b5\u03b3\u03bf\u03b2\u03af\u03bd\u03b7", + "BG": "\u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03af\u03b1", + "BR": "\u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1", + "IO": "\u0392\u03c1\u03b5\u03c4\u03b1\u03bd\u03b9\u03ba\u03ac \u0395\u03b4\u03ac\u03c6\u03b7 \u0399\u03bd\u03b4\u03b9\u03ba\u03bf\u03cd \u03a9\u03ba\u03b5\u03b1\u03bd\u03bf\u03cd", + "VG": "\u0392\u03c1\u03b5\u03c4\u03b1\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a0\u03b1\u03c1\u03b8\u03ad\u03bd\u03b5\u03c2 \u039d\u03ae\u03c3\u03bf\u03b9", + "FR": "\u0393\u03b1\u03bb\u03bb\u03af\u03b1", + "TF": "\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039d\u03cc\u03c4\u03b9\u03b1 \u0395\u03b4\u03ac\u03c6\u03b7", + "GF": "\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ae \u0393\u03bf\u03c5\u03b9\u03ac\u03bd\u03b1", + "PF": "\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ae \u03a0\u03bf\u03bb\u03c5\u03bd\u03b7\u03c3\u03af\u03b1", + "DE": "\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03af\u03b1", + "GE": "\u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03b1", + "GI": "\u0393\u03b9\u03b2\u03c1\u03b1\u03bb\u03c4\u03ac\u03c1", + "GM": "\u0393\u03ba\u03ac\u03bc\u03c0\u03b9\u03b1", + "GA": "\u0393\u03ba\u03b1\u03bc\u03c0\u03cc\u03bd", + "GH": "\u0393\u03ba\u03ac\u03bd\u03b1", + "GG": "\u0393\u03ba\u03ad\u03c1\u03bd\u03b6\u03b9", + "GU": "\u0393\u03ba\u03bf\u03c5\u03ac\u03bc", + "GP": "\u0393\u03bf\u03c5\u03b1\u03b4\u03b5\u03bb\u03bf\u03cd\u03c0\u03b7", + "WF": "\u0393\u03bf\u03c5\u03ac\u03bb\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03a6\u03bf\u03c5\u03c4\u03bf\u03cd\u03bd\u03b1", + "GT": "\u0393\u03bf\u03c5\u03b1\u03c4\u03b5\u03bc\u03ac\u03bb\u03b1", + "GY": "\u0393\u03bf\u03c5\u03b9\u03ac\u03bd\u03b1", + "GN": "\u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1", + "GW": "\u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1 \u039c\u03c0\u03b9\u03c3\u03ac\u03bf\u03c5", + "GD": "\u0393\u03c1\u03b5\u03bd\u03ac\u03b4\u03b1", + "GL": "\u0393\u03c1\u03bf\u03b9\u03bb\u03b1\u03bd\u03b4\u03af\u03b1", + "DK": "\u0394\u03b1\u03bd\u03af\u03b1", + "DO": "\u0394\u03bf\u03bc\u03b9\u03bd\u03b9\u03ba\u03b1\u03bd\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1", + "EH": "\u0394\u03c5\u03c4\u03b9\u03ba\u03ae \u03a3\u03b1\u03c7\u03ac\u03c1\u03b1", + "SV": "\u0395\u03bb \u03a3\u03b1\u03bb\u03b2\u03b1\u03b4\u03cc\u03c1", + "CH": "\u0395\u03bb\u03b2\u03b5\u03c4\u03af\u03b1", + "GR": "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1", + "ER": "\u0395\u03c1\u03c5\u03b8\u03c1\u03b1\u03af\u03b1", + "EE": "\u0395\u03c3\u03b8\u03bf\u03bd\u03af\u03b1", + "ZM": "\u0396\u03ac\u03bc\u03c0\u03b9\u03b1", + "ZW": "\u0396\u03b9\u03bc\u03c0\u03ac\u03bc\u03c0\u03bf\u03c5\u03b5", + "AE": "\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b1 \u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac \u0395\u03bc\u03b9\u03c1\u03ac\u03c4\u03b1", + "US": "\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2", + "GB": "\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03bf \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf", + "JP": "\u0399\u03b1\u03c0\u03c9\u03bd\u03af\u03b1", + "IN": "\u0399\u03bd\u03b4\u03af\u03b1", + "ID": "\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03af\u03b1", + "JO": "\u0399\u03bf\u03c1\u03b4\u03b1\u03bd\u03af\u03b1", + "IQ": "\u0399\u03c1\u03ac\u03ba", + "IR": "\u0399\u03c1\u03ac\u03bd", + "IE": "\u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03af\u03b1", + "GQ": "\u0399\u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ae \u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1", + "EC": "\u0399\u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03cc\u03c2", + "IS": "\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03af\u03b1", + "ES": "\u0399\u03c3\u03c0\u03b1\u03bd\u03af\u03b1", + "IL": "\u0399\u03c3\u03c1\u03b1\u03ae\u03bb", + "IT": "\u0399\u03c4\u03b1\u03bb\u03af\u03b1", + "KZ": "\u039a\u03b1\u03b6\u03b1\u03ba\u03c3\u03c4\u03ac\u03bd", + "CM": "\u039a\u03b1\u03bc\u03b5\u03c1\u03bf\u03cd\u03bd", + "KH": "\u039a\u03b1\u03bc\u03c0\u03cc\u03c4\u03b6\u03b7", + "CA": "\u039a\u03b1\u03bd\u03b1\u03b4\u03ac\u03c2", + "QA": "\u039a\u03b1\u03c4\u03ac\u03c1", + "CF": "\u039a\u03b5\u03bd\u03c4\u03c1\u03bf\u03b1\u03c6\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1", + "KE": "\u039a\u03ad\u03bd\u03c5\u03b1", + "CN": "\u039a\u03af\u03bd\u03b1", + "KG": "\u039a\u03b9\u03c1\u03b3\u03b9\u03c3\u03c4\u03ac\u03bd", + "KI": "\u039a\u03b9\u03c1\u03b9\u03bc\u03c0\u03ac\u03c4\u03b9", + "CO": "\u039a\u03bf\u03bb\u03bf\u03bc\u03b2\u03af\u03b1", + "KM": "\u039a\u03bf\u03bc\u03cc\u03c1\u03b5\u03c2", + "CD": "\u039a\u03bf\u03bd\u03b3\u03ba\u03cc - \u039a\u03b9\u03bd\u03c3\u03ac\u03c3\u03b1", + "CG": "\u039a\u03bf\u03bd\u03b3\u03ba\u03cc - \u039c\u03c0\u03c1\u03b1\u03b6\u03b1\u03b2\u03af\u03bb", + "CR": "\u039a\u03cc\u03c3\u03c4\u03b1 \u03a1\u03af\u03ba\u03b1", + "XK": "\u039a\u03cc\u03c3\u03bf\u03b2\u03bf", + "CU": "\u039a\u03bf\u03cd\u03b2\u03b1", + "KW": "\u039a\u03bf\u03c5\u03b2\u03ad\u03b9\u03c4", + "CW": "\u039a\u03bf\u03c5\u03c1\u03b1\u03c3\u03ac\u03bf", + "HR": "\u039a\u03c1\u03bf\u03b1\u03c4\u03af\u03b1", + "CY": "\u039a\u03cd\u03c0\u03c1\u03bf\u03c2", + "LA": "\u039b\u03ac\u03bf\u03c2", + "LS": "\u039b\u03b5\u03c3\u03cc\u03c4\u03bf", + "LV": "\u039b\u03b5\u03c4\u03bf\u03bd\u03af\u03b1", + "BY": "\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03af\u03b1", + "LB": "\u039b\u03af\u03b2\u03b1\u03bd\u03bf\u03c2", + "LR": "\u039b\u03b9\u03b2\u03b5\u03c1\u03af\u03b1", + "LY": "\u039b\u03b9\u03b2\u03cd\u03b7", + "LT": "\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1", + "LI": "\u039b\u03b9\u03c7\u03c4\u03b5\u03bd\u03c3\u03c4\u03ac\u03b9\u03bd", + "LU": "\u039b\u03bf\u03c5\u03be\u03b5\u03bc\u03b2\u03bf\u03cd\u03c1\u03b3\u03bf", + "YT": "\u039c\u03b1\u03b3\u03b9\u03cc\u03c4", + "MG": "\u039c\u03b1\u03b4\u03b1\u03b3\u03b1\u03c3\u03ba\u03ac\u03c1\u03b7", + "MO": "\u039c\u03b1\u03ba\u03ac\u03bf \u0395\u0394\u03a0 \u039a\u03af\u03bd\u03b1\u03c2", + "MY": "\u039c\u03b1\u03bb\u03b1\u03b9\u03c3\u03af\u03b1", + "MW": "\u039c\u03b1\u03bb\u03ac\u03bf\u03c5\u03b9", + "MV": "\u039c\u03b1\u03bb\u03b4\u03af\u03b2\u03b5\u03c2", + "ML": "\u039c\u03ac\u03bb\u03b9", + "MT": "\u039c\u03ac\u03bb\u03c4\u03b1", + "MA": "\u039c\u03b1\u03c1\u03cc\u03ba\u03bf", + "MQ": "\u039c\u03b1\u03c1\u03c4\u03b9\u03bd\u03af\u03ba\u03b1", + "MU": "\u039c\u03b1\u03c5\u03c1\u03af\u03ba\u03b9\u03bf\u03c2", + "MR": "\u039c\u03b1\u03c5\u03c1\u03b9\u03c4\u03b1\u03bd\u03af\u03b1", + "ME": "\u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9\u03bf", + "MX": "\u039c\u03b5\u03be\u03b9\u03ba\u03cc", + "MM": "\u039c\u03b9\u03b1\u03bd\u03bc\u03ac\u03c1 (\u0392\u03b9\u03c1\u03bc\u03b1\u03bd\u03af\u03b1)", + "FM": "\u039c\u03b9\u03ba\u03c1\u03bf\u03bd\u03b7\u03c3\u03af\u03b1", + "MN": "\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03af\u03b1", + "MZ": "\u039c\u03bf\u03b6\u03b1\u03bc\u03b2\u03af\u03ba\u03b7", + "MD": "\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03af\u03b1", + "MC": "\u039c\u03bf\u03bd\u03b1\u03ba\u03cc", + "MS": "\u039c\u03bf\u03bd\u03c3\u03b5\u03c1\u03ac\u03c4", + "BD": "\u039c\u03c0\u03b1\u03bd\u03b3\u03ba\u03bb\u03b1\u03bd\u03c4\u03ad\u03c2", + "BB": "\u039c\u03c0\u03b1\u03c1\u03bc\u03c0\u03ad\u03b9\u03bd\u03c4\u03bf\u03c2", + "BS": "\u039c\u03c0\u03b1\u03c7\u03ac\u03bc\u03b5\u03c2", + "BH": "\u039c\u03c0\u03b1\u03c7\u03c1\u03ad\u03b9\u03bd", + "BZ": "\u039c\u03c0\u03b5\u03bb\u03af\u03b6", + "BJ": "\u039c\u03c0\u03b5\u03bd\u03af\u03bd", + "BW": "\u039c\u03c0\u03bf\u03c4\u03c3\u03bf\u03c5\u03ac\u03bd\u03b1", + "BF": "\u039c\u03c0\u03bf\u03c5\u03c1\u03ba\u03af\u03bd\u03b1 \u03a6\u03ac\u03c3\u03bf", + "BI": "\u039c\u03c0\u03bf\u03c5\u03c1\u03bf\u03cd\u03bd\u03c4\u03b9", + "BT": "\u039c\u03c0\u03bf\u03c5\u03c4\u03ac\u03bd", + "BN": "\u039c\u03c0\u03c1\u03bf\u03c5\u03bd\u03ad\u03b9", + "NA": "\u039d\u03b1\u03bc\u03af\u03bc\u03c0\u03b9\u03b1", + "NR": "\u039d\u03b1\u03bf\u03c5\u03c1\u03bf\u03cd", + "NZ": "\u039d\u03ad\u03b1 \u0396\u03b7\u03bb\u03b1\u03bd\u03b4\u03af\u03b1", + "NC": "\u039d\u03ad\u03b1 \u039a\u03b1\u03bb\u03b7\u03b4\u03bf\u03bd\u03af\u03b1", + "NP": "\u039d\u03b5\u03c0\u03ac\u03bb", + "MP": "\u039d\u03ae\u03c3\u03bf\u03b9 \u0392\u03cc\u03c1\u03b5\u03b9\u03b5\u03c2 \u039c\u03b1\u03c1\u03b9\u03ac\u03bd\u03b5\u03c2", + "KY": "\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03ad\u03b9\u03bc\u03b1\u03bd", + "CC": "\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03cc\u03ba\u03bf\u03c2 (\u039a\u03af\u03bb\u03b9\u03bd\u03b3\u03ba)", + "CK": "\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03bf\u03c5\u03ba", + "MH": "\u039d\u03ae\u03c3\u03bf\u03b9 \u039c\u03ac\u03c1\u03c3\u03b1\u03bb", + "GS": "\u039d\u03ae\u03c3\u03bf\u03b9 \u039d\u03cc\u03c4\u03b9\u03b1 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03b9 \u039d\u03cc\u03c4\u03b9\u03b5\u03c2 \u03a3\u03ac\u03bd\u03c4\u03bf\u03c5\u03b9\u03c4\u03c2", + "AX": "\u039d\u03ae\u03c3\u03bf\u03b9 \u038c\u03bb\u03b1\u03bd\u03c4", + "PN": "\u039d\u03ae\u03c3\u03bf\u03b9 \u03a0\u03af\u03c4\u03ba\u03b5\u03c1\u03bd", + "SB": "\u039d\u03ae\u03c3\u03bf\u03b9 \u03a3\u03bf\u03bb\u03bf\u03bc\u03ce\u03bd\u03c4\u03bf\u03c2", + "TC": "\u039d\u03ae\u03c3\u03bf\u03b9 \u03a4\u03b5\u03c1\u03ba\u03c2 \u03ba\u03b1\u03b9 \u039a\u03ac\u03b9\u03ba\u03bf\u03c2", + "FO": "\u039d\u03ae\u03c3\u03bf\u03b9 \u03a6\u03b5\u03c1\u03cc\u03b5\u03c2", + "FK": "\u039d\u03ae\u03c3\u03bf\u03b9 \u03a6\u03cc\u03ba\u03bb\u03b1\u03bd\u03c4", + "HM": "\u039d\u03ae\u03c3\u03bf\u03b9 \u03a7\u03b5\u03c1\u03bd\u03c4 \u03ba\u03b1\u03b9 \u039c\u03b1\u03ba\u03bd\u03c4\u03cc\u03bd\u03b1\u03bb\u03bd\u03c4", + "BV": "\u039d\u03ae\u03c3\u03bf\u03c2 \u039c\u03c0\u03bf\u03c5\u03b2\u03ad", + "NF": "\u039d\u03ae\u03c3\u03bf\u03c2 \u039d\u03cc\u03c1\u03c6\u03bf\u03bb\u03ba", + "IM": "\u039d\u03ae\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039c\u03b1\u03bd", + "CX": "\u039d\u03ae\u03c3\u03bf\u03c2 \u03c4\u03c9\u03bd \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03c5\u03b3\u03ad\u03bd\u03bd\u03c9\u03bd", + "NE": "\u039d\u03af\u03b3\u03b7\u03c1\u03b1\u03c2", + "NG": "\u039d\u03b9\u03b3\u03b7\u03c1\u03af\u03b1", + "NI": "\u039d\u03b9\u03ba\u03b1\u03c1\u03ac\u03b3\u03bf\u03c5\u03b1", + "NU": "\u039d\u03b9\u03bf\u03cd\u03b5", + "NO": "\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03af\u03b1", + "ZA": "\u039d\u03cc\u03c4\u03b9\u03b1 \u0391\u03c6\u03c1\u03b9\u03ba\u03ae", + "KR": "\u039d\u03cc\u03c4\u03b9\u03b1 \u039a\u03bf\u03c1\u03ad\u03b1", + "SS": "\u039d\u03cc\u03c4\u03b9\u03bf \u03a3\u03bf\u03c5\u03b4\u03ac\u03bd", + "DM": "\u039d\u03c4\u03bf\u03bc\u03af\u03bd\u03b9\u03ba\u03b1", + "NL": "\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03af\u03b1", + "BQ": "\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03af\u03b1 \u039a\u03b1\u03c1\u03b1\u03ca\u03b2\u03b9\u03ba\u03ae\u03c2", + "OM": "\u039f\u03bc\u03ac\u03bd", + "HN": "\u039f\u03bd\u03b4\u03bf\u03cd\u03c1\u03b1", + "HU": "\u039f\u03c5\u03b3\u03b3\u03b1\u03c1\u03af\u03b1", + "UG": "\u039f\u03c5\u03b3\u03ba\u03ac\u03bd\u03c4\u03b1", + "UZ": "\u039f\u03c5\u03b6\u03bc\u03c0\u03b5\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd", + "UA": "\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03af\u03b1", + "UY": "\u039f\u03c5\u03c1\u03bf\u03c5\u03b3\u03bf\u03c5\u03ac\u03b7", + "PK": "\u03a0\u03b1\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd", + "PS": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03c3\u03c4\u03b9\u03bd\u03b9\u03b1\u03ba\u03ac \u0395\u03b4\u03ac\u03c6\u03b7", + "PW": "\u03a0\u03b1\u03bb\u03ac\u03bf\u03c5", + "PA": "\u03a0\u03b1\u03bd\u03b1\u03bc\u03ac\u03c2", + "PG": "\u03a0\u03b1\u03c0\u03bf\u03cd\u03b1 \u039d\u03ad\u03b1 \u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1", + "PY": "\u03a0\u03b1\u03c1\u03b1\u03b3\u03bf\u03c5\u03ac\u03b7", + "PE": "\u03a0\u03b5\u03c1\u03bf\u03cd", + "PL": "\u03a0\u03bf\u03bb\u03c9\u03bd\u03af\u03b1", + "PT": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03af\u03b1", + "PR": "\u03a0\u03bf\u03c5\u03ad\u03c1\u03c4\u03bf \u03a1\u03af\u03ba\u03bf", + "CV": "\u03a0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf \u0391\u03ba\u03c1\u03c9\u03c4\u03ae\u03c1\u03b9\u03bf", + "RE": "\u03a1\u03b5\u03ca\u03bd\u03b9\u03cc\u03bd", + "RW": "\u03a1\u03bf\u03c5\u03ac\u03bd\u03c4\u03b1", + "RO": "\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03af\u03b1", + "RU": "\u03a1\u03c9\u03c3\u03af\u03b1", + "WS": "\u03a3\u03b1\u03bc\u03cc\u03b1", + "ST": "\u03a3\u03ac\u03bf \u03a4\u03bf\u03bc\u03ad \u03ba\u03b1\u03b9 \u03a0\u03c1\u03af\u03bd\u03c3\u03b9\u03c0\u03b5", + "SA": "\u03a3\u03b1\u03bf\u03c5\u03b4\u03b9\u03ba\u03ae \u0391\u03c1\u03b1\u03b2\u03af\u03b1", + "SJ": "\u03a3\u03b2\u03ac\u03bb\u03bc\u03c0\u03b1\u03c1\u03bd\u03c4 \u03ba\u03b1\u03b9 \u0393\u03b9\u03b1\u03bd \u039c\u03b1\u03b3\u03b9\u03ad\u03bd", + "KN": "\u03a3\u03b5\u03bd \u039a\u03b9\u03c4\u03c2 \u03ba\u03b1\u03b9 \u039d\u03ad\u03b2\u03b9\u03c2", + "PM": "\u03a3\u03b5\u03bd \u03a0\u03b9\u03b5\u03c1 \u03ba\u03b1\u03b9 \u039c\u03b9\u03ba\u03b5\u03bb\u03cc\u03bd", + "SN": "\u03a3\u03b5\u03bd\u03b5\u03b3\u03ac\u03bb\u03b7", + "RS": "\u03a3\u03b5\u03c1\u03b2\u03af\u03b1", + "SC": "\u03a3\u03b5\u03cb\u03c7\u03ad\u03bb\u03bb\u03b5\u03c2", + "SG": "\u03a3\u03b9\u03b3\u03ba\u03b1\u03c0\u03bf\u03cd\u03c1\u03b7", + "SL": "\u03a3\u03b9\u03ad\u03c1\u03b1 \u039b\u03b5\u03cc\u03bd\u03b5", + "SK": "\u03a3\u03bb\u03bf\u03b2\u03b1\u03ba\u03af\u03b1", + "SI": "\u03a3\u03bb\u03bf\u03b2\u03b5\u03bd\u03af\u03b1", + "SO": "\u03a3\u03bf\u03bc\u03b1\u03bb\u03af\u03b1", + "SZ": "\u03a3\u03bf\u03c5\u03b1\u03b6\u03b9\u03bb\u03ac\u03bd\u03b4\u03b7", + "SD": "\u03a3\u03bf\u03c5\u03b4\u03ac\u03bd", + "SE": "\u03a3\u03bf\u03c5\u03b7\u03b4\u03af\u03b1", + "SR": "\u03a3\u03bf\u03c5\u03c1\u03b9\u03bd\u03ac\u03bc", + "LK": "\u03a3\u03c1\u03b9 \u039b\u03ac\u03bd\u03ba\u03b1", + "SY": "\u03a3\u03c5\u03c1\u03af\u03b1", + "TW": "\u03a4\u03b1\u03ca\u03b2\u03ac\u03bd", + "TH": "\u03a4\u03b1\u03ca\u03bb\u03ac\u03bd\u03b4\u03b7", + "TZ": "\u03a4\u03b1\u03bd\u03b6\u03b1\u03bd\u03af\u03b1", + "TJ": "\u03a4\u03b1\u03c4\u03b6\u03b9\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd", + "JM": "\u03a4\u03b6\u03b1\u03bc\u03ac\u03b9\u03ba\u03b1", + "JE": "\u03a4\u03b6\u03ad\u03c1\u03b6\u03b9", + "DJ": "\u03a4\u03b6\u03b9\u03bc\u03c0\u03bf\u03c5\u03c4\u03af", + "TL": "\u03a4\u03b9\u03bc\u03cc\u03c1-\u039b\u03ad\u03c3\u03c4\u03b5", + "TG": "\u03a4\u03cc\u03b3\u03ba\u03bf", + "TK": "\u03a4\u03bf\u03ba\u03b5\u03bb\u03ac\u03bf\u03c5", + "TO": "\u03a4\u03cc\u03bd\u03b3\u03ba\u03b1", + "TV": "\u03a4\u03bf\u03c5\u03b2\u03b1\u03bb\u03bf\u03cd", + "TR": "\u03a4\u03bf\u03c5\u03c1\u03ba\u03af\u03b1", + "TM": "\u03a4\u03bf\u03c5\u03c1\u03ba\u03bc\u03b5\u03bd\u03b9\u03c3\u03c4\u03ac\u03bd", + "TT": "\u03a4\u03c1\u03b9\u03bd\u03b9\u03bd\u03c4\u03ac\u03bd\u03c4 \u03ba\u03b1\u03b9 \u03a4\u03bf\u03bc\u03c0\u03ac\u03b3\u03ba\u03bf", + "TD": "\u03a4\u03c3\u03b1\u03bd\u03c4", + "CZ": "\u03a4\u03c3\u03b5\u03c7\u03af\u03b1", + "TN": "\u03a4\u03c5\u03bd\u03b7\u03c3\u03af\u03b1", + "YE": "\u03a5\u03b5\u03bc\u03ad\u03bd\u03b7", + "PH": "\u03a6\u03b9\u03bb\u03b9\u03c0\u03c0\u03af\u03bd\u03b5\u03c2", + "FI": "\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03af\u03b1", + "FJ": "\u03a6\u03af\u03c4\u03b6\u03b9", + "CL": "\u03a7\u03b9\u03bb\u03ae", + "HK": "\u03a7\u03bf\u03bd\u03b3\u03ba \u039a\u03bf\u03bd\u03b3\u03ba \u0395\u0394\u03a0 \u039a\u03af\u03bd\u03b1\u03c2" +} diff --git a/public/intl/country/en-GB.json b/public/intl/country/en-GB.json new file mode 100644 index 0000000..95a4e32 --- /dev/null +++ b/public/intl/country/en-GB.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AX": "\u00c5land Islands", + "AL": "Albania", + "DZ": "Algeria", + "AS": "American Samoa", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarctica", + "AG": "Antigua & Barbuda", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaijan", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BY": "Belarus", + "BE": "Belgium", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia & Herzegovina", + "BW": "Botswana", + "BV": "Bouvet Island", + "BR": "Brazil", + "IO": "British Indian Ocean Territory", + "VG": "British Virgin Islands", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodia", + "CM": "Cameroon", + "CA": "Canada", + "CV": "Cape Verde", + "BQ": "Caribbean Netherlands", + "KY": "Cayman Islands", + "CF": "Central African Republic", + "TD": "Chad", + "CL": "Chile", + "CN": "China", + "CX": "Christmas Island", + "CC": "Cocos (Keeling) Islands", + "CO": "Colombia", + "KM": "Comoros", + "CG": "Congo - Brazzaville", + "CD": "Congo - Kinshasa", + "CK": "Cook Islands", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croatia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "CY": "Cyprus", + "CZ": "Czechia", + "DK": "Denmark", + "DJ": "Djibouti", + "DM": "Dominica", + "DO": "Dominican Republic", + "EC": "Ecuador", + "EG": "Egypt", + "SV": "El Salvador", + "GQ": "Equatorial Guinea", + "ER": "Eritrea", + "EE": "Estonia", + "SZ": "Eswatini", + "ET": "Ethiopia", + "FK": "Falkland Islands", + "FO": "Faroe Islands", + "FJ": "Fiji", + "FI": "Finland", + "FR": "France", + "GF": "French Guiana", + "PF": "French Polynesia", + "TF": "French Southern Territories", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "DE": "Germany", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Greece", + "GL": "Greenland", + "GD": "Grenada", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard & McDonald Islands", + "HN": "Honduras", + "HK": "Hong Kong SAR China", + "HU": "Hungary", + "IS": "Iceland", + "IN": "India", + "ID": "Indonesia", + "IR": "Iran", + "IQ": "Iraq", + "IE": "Ireland", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Italy", + "JM": "Jamaica", + "JP": "Japan", + "JE": "Jersey", + "JO": "Jordan", + "KZ": "Kazakhstan", + "KE": "Kenya", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuwait", + "KG": "Kyrgyzstan", + "LA": "Laos", + "LV": "Latvia", + "LB": "Lebanon", + "LS": "Lesotho", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Lithuania", + "LU": "Luxembourg", + "MO": "Macao SAR China", + "MG": "Madagascar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldives", + "ML": "Mali", + "MT": "Malta", + "MH": "Marshall Islands", + "MQ": "Martinique", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexico", + "FM": "Micronesia", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MA": "Morocco", + "MZ": "Mozambique", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NL": "Netherlands", + "NC": "New Caledonia", + "NZ": "New Zealand", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "NF": "Norfolk Island", + "KP": "North Korea", + "MK": "North Macedonia", + "MP": "Northern Mariana Islands", + "NO": "Norway", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinian Territories", + "PA": "Panama", + "PG": "Papua New Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PH": "Philippines", + "PN": "Pitcairn Islands", + "PL": "Poland", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "RE": "R\u00e9union", + "RO": "Romania", + "RU": "Russia", + "RW": "Rwanda", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 & Pr\u00edncipe", + "SA": "Saudi Arabia", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SK": "Slovakia", + "SI": "Slovenia", + "SB": "Solomon Islands", + "SO": "Somalia", + "ZA": "South Africa", + "GS": "South Georgia & South Sandwich Islands", + "KR": "South Korea", + "SS": "South Sudan", + "ES": "Spain", + "LK": "Sri Lanka", + "BL": "St. Barth\u00e9lemy", + "SH": "St. Helena", + "KN": "St. Kitts & Nevis", + "LC": "St. Lucia", + "MF": "St. Martin", + "PM": "St. Pierre & Miquelon", + "VC": "St. Vincent & Grenadines", + "SD": "Sudan", + "SR": "Suriname", + "SJ": "Svalbard & Jan Mayen", + "SE": "Sweden", + "CH": "Switzerland", + "SY": "Syria", + "TW": "Taiwan", + "TJ": "Tajikistan", + "TZ": "Tanzania", + "TH": "Thailand", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad & Tobago", + "TN": "Tunisia", + "TR": "Turkey", + "TM": "Turkmenistan", + "TC": "Turks & Caicos Islands", + "TV": "Tuvalu", + "UM": "U.S. Outlying Islands", + "VI": "U.S. Virgin Islands", + "UG": "Uganda", + "UA": "Ukraine", + "AE": "United Arab Emirates", + "GB": "United Kingdom", + "US": "United States", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatican City", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis & Futuna", + "EH": "Western Sahara", + "YE": "Yemen", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/en-US.json b/public/intl/country/en-US.json new file mode 100644 index 0000000..95a4e32 --- /dev/null +++ b/public/intl/country/en-US.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AX": "\u00c5land Islands", + "AL": "Albania", + "DZ": "Algeria", + "AS": "American Samoa", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarctica", + "AG": "Antigua & Barbuda", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaijan", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BY": "Belarus", + "BE": "Belgium", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia & Herzegovina", + "BW": "Botswana", + "BV": "Bouvet Island", + "BR": "Brazil", + "IO": "British Indian Ocean Territory", + "VG": "British Virgin Islands", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodia", + "CM": "Cameroon", + "CA": "Canada", + "CV": "Cape Verde", + "BQ": "Caribbean Netherlands", + "KY": "Cayman Islands", + "CF": "Central African Republic", + "TD": "Chad", + "CL": "Chile", + "CN": "China", + "CX": "Christmas Island", + "CC": "Cocos (Keeling) Islands", + "CO": "Colombia", + "KM": "Comoros", + "CG": "Congo - Brazzaville", + "CD": "Congo - Kinshasa", + "CK": "Cook Islands", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croatia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "CY": "Cyprus", + "CZ": "Czechia", + "DK": "Denmark", + "DJ": "Djibouti", + "DM": "Dominica", + "DO": "Dominican Republic", + "EC": "Ecuador", + "EG": "Egypt", + "SV": "El Salvador", + "GQ": "Equatorial Guinea", + "ER": "Eritrea", + "EE": "Estonia", + "SZ": "Eswatini", + "ET": "Ethiopia", + "FK": "Falkland Islands", + "FO": "Faroe Islands", + "FJ": "Fiji", + "FI": "Finland", + "FR": "France", + "GF": "French Guiana", + "PF": "French Polynesia", + "TF": "French Southern Territories", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "DE": "Germany", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Greece", + "GL": "Greenland", + "GD": "Grenada", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard & McDonald Islands", + "HN": "Honduras", + "HK": "Hong Kong SAR China", + "HU": "Hungary", + "IS": "Iceland", + "IN": "India", + "ID": "Indonesia", + "IR": "Iran", + "IQ": "Iraq", + "IE": "Ireland", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Italy", + "JM": "Jamaica", + "JP": "Japan", + "JE": "Jersey", + "JO": "Jordan", + "KZ": "Kazakhstan", + "KE": "Kenya", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuwait", + "KG": "Kyrgyzstan", + "LA": "Laos", + "LV": "Latvia", + "LB": "Lebanon", + "LS": "Lesotho", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Lithuania", + "LU": "Luxembourg", + "MO": "Macao SAR China", + "MG": "Madagascar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldives", + "ML": "Mali", + "MT": "Malta", + "MH": "Marshall Islands", + "MQ": "Martinique", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexico", + "FM": "Micronesia", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MA": "Morocco", + "MZ": "Mozambique", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NL": "Netherlands", + "NC": "New Caledonia", + "NZ": "New Zealand", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "NF": "Norfolk Island", + "KP": "North Korea", + "MK": "North Macedonia", + "MP": "Northern Mariana Islands", + "NO": "Norway", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinian Territories", + "PA": "Panama", + "PG": "Papua New Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PH": "Philippines", + "PN": "Pitcairn Islands", + "PL": "Poland", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "RE": "R\u00e9union", + "RO": "Romania", + "RU": "Russia", + "RW": "Rwanda", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 & Pr\u00edncipe", + "SA": "Saudi Arabia", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SK": "Slovakia", + "SI": "Slovenia", + "SB": "Solomon Islands", + "SO": "Somalia", + "ZA": "South Africa", + "GS": "South Georgia & South Sandwich Islands", + "KR": "South Korea", + "SS": "South Sudan", + "ES": "Spain", + "LK": "Sri Lanka", + "BL": "St. Barth\u00e9lemy", + "SH": "St. Helena", + "KN": "St. Kitts & Nevis", + "LC": "St. Lucia", + "MF": "St. Martin", + "PM": "St. Pierre & Miquelon", + "VC": "St. Vincent & Grenadines", + "SD": "Sudan", + "SR": "Suriname", + "SJ": "Svalbard & Jan Mayen", + "SE": "Sweden", + "CH": "Switzerland", + "SY": "Syria", + "TW": "Taiwan", + "TJ": "Tajikistan", + "TZ": "Tanzania", + "TH": "Thailand", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad & Tobago", + "TN": "Tunisia", + "TR": "Turkey", + "TM": "Turkmenistan", + "TC": "Turks & Caicos Islands", + "TV": "Tuvalu", + "UM": "U.S. Outlying Islands", + "VI": "U.S. Virgin Islands", + "UG": "Uganda", + "UA": "Ukraine", + "AE": "United Arab Emirates", + "GB": "United Kingdom", + "US": "United States", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatican City", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis & Futuna", + "EH": "Western Sahara", + "YE": "Yemen", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/es-ES.json b/public/intl/country/es-ES.json new file mode 100644 index 0000000..50aaa51 --- /dev/null +++ b/public/intl/country/es-ES.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganist\u00e1n", + "AL": "Albania", + "DE": "Alemania", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguila", + "AQ": "Ant\u00e1rtida", + "AG": "Antigua y Barbuda", + "SA": "Arabia Saud\u00ed", + "DZ": "Argelia", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaiy\u00e1n", + "BS": "Bahamas", + "BD": "Banglad\u00e9s", + "BB": "Barbados", + "BH": "Bar\u00e9in", + "BE": "B\u00e9lgica", + "BZ": "Belice", + "BJ": "Ben\u00edn", + "BM": "Bermudas", + "BY": "Bielorrusia", + "BO": "Bolivia", + "BA": "Bosnia y Herzegovina", + "BW": "Botsuana", + "BR": "Brasil", + "BN": "Brun\u00e9i", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "But\u00e1n", + "CV": "Cabo Verde", + "KH": "Camboya", + "CM": "Camer\u00fan", + "CA": "Canad\u00e1", + "BQ": "Caribe neerland\u00e9s", + "QA": "Catar", + "TD": "Chad", + "CZ": "Chequia", + "CL": "Chile", + "CN": "China", + "CY": "Chipre", + "VA": "Ciudad del Vaticano", + "CO": "Colombia", + "KM": "Comoras", + "CG": "Congo", + "KP": "Corea del Norte", + "KR": "Corea del Sur", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croacia", + "CU": "Cuba", + "CW": "Curazao", + "DK": "Dinamarca", + "DM": "Dominica", + "EC": "Ecuador", + "EG": "Egipto", + "SV": "El Salvador", + "AE": "Emiratos \u00c1rabes Unidos", + "ER": "Eritrea", + "SK": "Eslovaquia", + "SI": "Eslovenia", + "ES": "Espa\u00f1a", + "US": "Estados Unidos", + "EE": "Estonia", + "SZ": "Esuatini", + "ET": "Etiop\u00eda", + "PH": "Filipinas", + "FI": "Finlandia", + "FJ": "Fiyi", + "FR": "Francia", + "GA": "Gab\u00f3n", + "GM": "Gambia", + "GE": "Georgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Granada", + "GR": "Grecia", + "GL": "Groenlandia", + "GP": "Guadalupe", + "GU": "Guam", + "GT": "Guatemala", + "GF": "Guayana Francesa", + "GG": "Guernsey", + "GN": "Guinea", + "GQ": "Guinea Ecuatorial", + "GW": "Guinea-Bis\u00e1u", + "GY": "Guyana", + "HT": "Hait\u00ed", + "HN": "Honduras", + "HU": "Hungr\u00eda", + "IN": "India", + "ID": "Indonesia", + "IQ": "Irak", + "IR": "Ir\u00e1n", + "IE": "Irlanda", + "BV": "Isla Bouvet", + "IM": "Isla de Man", + "CX": "Isla de Navidad", + "NF": "Isla Norfolk", + "IS": "Islandia", + "AX": "Islas \u00c5land", + "KY": "Islas Caim\u00e1n", + "CC": "Islas Cocos", + "CK": "Islas Cook", + "FO": "Islas Feroe", + "GS": "Islas Georgia del Sur y Sandwich del Sur", + "HM": "Islas Heard y McDonald", + "FK": "Islas Malvinas", + "MP": "Islas Marianas del Norte", + "MH": "Islas Marshall", + "UM": "Islas menores alejadas de EE. UU.", + "PN": "Islas Pitcairn", + "SB": "Islas Salom\u00f3n", + "TC": "Islas Turcas y Caicos", + "VG": "Islas V\u00edrgenes Brit\u00e1nicas", + "VI": "Islas V\u00edrgenes de EE. UU.", + "IL": "Israel", + "IT": "Italia", + "JM": "Jamaica", + "JP": "Jap\u00f3n", + "JE": "Jersey", + "JO": "Jordania", + "KZ": "Kazajist\u00e1n", + "KE": "Kenia", + "KG": "Kirguist\u00e1n", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesoto", + "LV": "Letonia", + "LB": "L\u00edbano", + "LR": "Liberia", + "LY": "Libia", + "LI": "Liechtenstein", + "LT": "Lituania", + "LU": "Luxemburgo", + "MK": "Macedonia del Norte", + "MG": "Madagascar", + "MY": "Malasia", + "MW": "Malaui", + "MV": "Maldivas", + "ML": "Mali", + "MT": "Malta", + "MA": "Marruecos", + "MQ": "Martinica", + "MU": "Mauricio", + "MR": "Mauritania", + "YT": "Mayotte", + "MX": "M\u00e9xico", + "FM": "Micronesia", + "MD": "Moldavia", + "MC": "M\u00f3naco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MM": "Myanmar (Birmania)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "N\u00edger", + "NG": "Nigeria", + "NU": "Niue", + "NO": "Noruega", + "NC": "Nueva Caledonia", + "NZ": "Nueva Zelanda", + "OM": "Om\u00e1n", + "NL": "Pa\u00edses Bajos", + "PK": "Pakist\u00e1n", + "PW": "Palaos", + "PA": "Panam\u00e1", + "PG": "Pap\u00faa Nueva Guinea", + "PY": "Paraguay", + "PE": "Per\u00fa", + "PF": "Polinesia Francesa", + "PL": "Polonia", + "PT": "Portugal", + "PR": "Puerto Rico", + "HK": "RAE de Hong Kong (China)", + "MO": "RAE de Macao (China)", + "GB": "Reino Unido", + "CF": "Rep\u00fablica Centroafricana", + "CD": "Rep\u00fablica Democr\u00e1tica del Congo", + "DO": "Rep\u00fablica Dominicana", + "RE": "Reuni\u00f3n", + "RW": "Ruanda", + "RO": "Ruman\u00eda", + "RU": "Rusia", + "EH": "S\u00e1hara Occidental", + "WS": "Samoa", + "AS": "Samoa Americana", + "BL": "San Bartolom\u00e9", + "KN": "San Crist\u00f3bal y Nieves", + "SM": "San Marino", + "MF": "San Mart\u00edn", + "PM": "San Pedro y Miquel\u00f3n", + "VC": "San Vicente y las Granadinas", + "SH": "Santa Elena", + "LC": "Santa Luc\u00eda", + "ST": "Santo Tom\u00e9 y Pr\u00edncipe", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leona", + "SG": "Singapur", + "SX": "Sint Maarten", + "SY": "Siria", + "SO": "Somalia", + "LK": "Sri Lanka", + "ZA": "Sud\u00e1frica", + "SD": "Sud\u00e1n", + "SS": "Sud\u00e1n del Sur", + "SE": "Suecia", + "CH": "Suiza", + "SR": "Surinam", + "SJ": "Svalbard y Jan Mayen", + "TH": "Tailandia", + "TW": "Taiw\u00e1n", + "TZ": "Tanzania", + "TJ": "Tayikist\u00e1n", + "IO": "Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico", + "TF": "Territorios Australes Franceses", + "PS": "Territorios Palestinos", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad y Tobago", + "TN": "T\u00fanez", + "TM": "Turkmenist\u00e1n", + "TR": "Turqu\u00eda", + "TV": "Tuvalu", + "UA": "Ucrania", + "UG": "Uganda", + "UY": "Uruguay", + "UZ": "Uzbekist\u00e1n", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis y Futuna", + "YE": "Yemen", + "DJ": "Yibuti", + "ZM": "Zambia", + "ZW": "Zimbabue" +} diff --git a/public/intl/country/es-MX.json b/public/intl/country/es-MX.json new file mode 100644 index 0000000..c35fc95 --- /dev/null +++ b/public/intl/country/es-MX.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganist\u00e1n", + "AL": "Albania", + "DE": "Alemania", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguila", + "AQ": "Ant\u00e1rtida", + "AG": "Antigua y Barbuda", + "SA": "Arabia Saudita", + "DZ": "Argelia", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaiy\u00e1n", + "BS": "Bahamas", + "BD": "Banglad\u00e9s", + "BB": "Barbados", + "BH": "Bar\u00e9in", + "BE": "B\u00e9lgica", + "BZ": "Belice", + "BJ": "Ben\u00edn", + "BM": "Bermudas", + "BY": "Bielorrusia", + "BO": "Bolivia", + "BA": "Bosnia y Herzegovina", + "BW": "Botsuana", + "BR": "Brasil", + "BN": "Brun\u00e9i", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "But\u00e1n", + "CV": "Cabo Verde", + "KH": "Camboya", + "CM": "Camer\u00fan", + "CA": "Canad\u00e1", + "BQ": "Caribe neerland\u00e9s", + "QA": "Catar", + "TD": "Chad", + "CZ": "Chequia", + "CL": "Chile", + "CN": "China", + "CY": "Chipre", + "VA": "Ciudad del Vaticano", + "CO": "Colombia", + "KM": "Comoras", + "CG": "Congo", + "KP": "Corea del Norte", + "KR": "Corea del Sur", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croacia", + "CU": "Cuba", + "CW": "Curazao", + "DK": "Dinamarca", + "DM": "Dominica", + "EC": "Ecuador", + "EG": "Egipto", + "SV": "El Salvador", + "AE": "Emiratos \u00c1rabes Unidos", + "ER": "Eritrea", + "SK": "Eslovaquia", + "SI": "Eslovenia", + "ES": "Espa\u00f1a", + "US": "Estados Unidos", + "EE": "Estonia", + "SZ": "Eswatini", + "ET": "Etiop\u00eda", + "PH": "Filipinas", + "FI": "Finlandia", + "FJ": "Fiyi", + "FR": "Francia", + "GA": "Gab\u00f3n", + "GM": "Gambia", + "GE": "Georgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Granada", + "GR": "Grecia", + "GL": "Groenlandia", + "GP": "Guadalupe", + "GU": "Guam", + "GT": "Guatemala", + "GF": "Guayana Francesa", + "GG": "Guernsey", + "GN": "Guinea", + "GQ": "Guinea Ecuatorial", + "GW": "Guinea-Bis\u00e1u", + "GY": "Guyana", + "HT": "Hait\u00ed", + "HN": "Honduras", + "HU": "Hungr\u00eda", + "IN": "India", + "ID": "Indonesia", + "IQ": "Irak", + "IR": "Ir\u00e1n", + "IE": "Irlanda", + "BV": "Isla Bouvet", + "IM": "Isla de Man", + "CX": "Isla de Navidad", + "NF": "Isla Norfolk", + "IS": "Islandia", + "AX": "Islas \u00c5land", + "KY": "Islas Caim\u00e1n", + "CC": "Islas Cocos", + "CK": "Islas Cook", + "FO": "Islas Feroe", + "GS": "Islas Georgia del Sur y Sandwich del Sur", + "HM": "Islas Heard y McDonald", + "FK": "Islas Malvinas", + "MP": "Islas Marianas del Norte", + "MH": "Islas Marshall", + "UM": "Islas menores alejadas de EE. UU.", + "PN": "Islas Pitcairn", + "SB": "Islas Salom\u00f3n", + "TC": "Islas Turcas y Caicos", + "VG": "Islas V\u00edrgenes Brit\u00e1nicas", + "VI": "Islas V\u00edrgenes de EE. UU.", + "IL": "Israel", + "IT": "Italia", + "JM": "Jamaica", + "JP": "Jap\u00f3n", + "JE": "Jersey", + "JO": "Jordania", + "KZ": "Kazajist\u00e1n", + "KE": "Kenia", + "KG": "Kirguist\u00e1n", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesoto", + "LV": "Letonia", + "LB": "L\u00edbano", + "LR": "Liberia", + "LY": "Libia", + "LI": "Liechtenstein", + "LT": "Lituania", + "LU": "Luxemburgo", + "MK": "Macedonia del Norte", + "MG": "Madagascar", + "MY": "Malasia", + "MW": "Malaui", + "MV": "Maldivas", + "ML": "Mali", + "MT": "Malta", + "MA": "Marruecos", + "MQ": "Martinica", + "MU": "Mauricio", + "MR": "Mauritania", + "YT": "Mayotte", + "MX": "M\u00e9xico", + "FM": "Micronesia", + "MD": "Moldavia", + "MC": "M\u00f3naco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MM": "Myanmar (Birmania)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "N\u00edger", + "NG": "Nigeria", + "NU": "Niue", + "NO": "Noruega", + "NC": "Nueva Caledonia", + "NZ": "Nueva Zelanda", + "OM": "Om\u00e1n", + "NL": "Pa\u00edses Bajos", + "PK": "Pakist\u00e1n", + "PW": "Palaos", + "PA": "Panam\u00e1", + "PG": "Pap\u00faa Nueva Guinea", + "PY": "Paraguay", + "PE": "Per\u00fa", + "PF": "Polinesia Francesa", + "PL": "Polonia", + "PT": "Portugal", + "PR": "Puerto Rico", + "HK": "RAE de Hong Kong (China)", + "MO": "RAE de Macao (China)", + "GB": "Reino Unido", + "CF": "Rep\u00fablica Centroafricana", + "CD": "Rep\u00fablica Democr\u00e1tica del Congo", + "DO": "Rep\u00fablica Dominicana", + "RE": "Reuni\u00f3n", + "RW": "Ruanda", + "RO": "Rumania", + "RU": "Rusia", + "EH": "S\u00e1hara Occidental", + "WS": "Samoa", + "AS": "Samoa Americana", + "BL": "San Bartolom\u00e9", + "KN": "San Crist\u00f3bal y Nieves", + "SM": "San Marino", + "MF": "San Mart\u00edn", + "PM": "San Pedro y Miquel\u00f3n", + "VC": "San Vicente y las Granadinas", + "SH": "Santa Elena", + "LC": "Santa Luc\u00eda", + "ST": "Santo Tom\u00e9 y Pr\u00edncipe", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leona", + "SG": "Singapur", + "SX": "Sint Maarten", + "SY": "Siria", + "SO": "Somalia", + "LK": "Sri Lanka", + "ZA": "Sud\u00e1frica", + "SD": "Sud\u00e1n", + "SS": "Sud\u00e1n del Sur", + "SE": "Suecia", + "CH": "Suiza", + "SR": "Surinam", + "SJ": "Svalbard y Jan Mayen", + "TH": "Tailandia", + "TW": "Taiw\u00e1n", + "TZ": "Tanzania", + "TJ": "Tayikist\u00e1n", + "IO": "Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico", + "TF": "Territorios Australes Franceses", + "PS": "Territorios Palestinos", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad y Tobago", + "TN": "T\u00fanez", + "TM": "Turkmenist\u00e1n", + "TR": "Turqu\u00eda", + "TV": "Tuvalu", + "UA": "Ucrania", + "UG": "Uganda", + "UY": "Uruguay", + "UZ": "Uzbekist\u00e1n", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis y Futuna", + "YE": "Yemen", + "DJ": "Yibuti", + "ZM": "Zambia", + "ZW": "Zimbabue" +} diff --git a/public/intl/country/fa-IR.json b/public/intl/country/fa-IR.json new file mode 100644 index 0000000..80314a6 --- /dev/null +++ b/public/intl/country/fa-IR.json @@ -0,0 +1,252 @@ +{ + "AR": "\u0622\u0631\u0698\u0627\u0646\u062a\u06cc\u0646", + "AW": "\u0622\u0631\u0648\u0628\u0627", + "AL": "\u0622\u0644\u0628\u0627\u0646\u06cc", + "DE": "\u0622\u0644\u0645\u0627\u0646", + "AG": "\u0622\u0646\u062a\u06cc\u06af\u0648\u0627 \u0648 \u0628\u0627\u0631\u0628\u0648\u062f\u0627", + "AD": "\u0622\u0646\u062f\u0648\u0631\u0627", + "AO": "\u0622\u0646\u06af\u0648\u0644\u0627", + "AI": "\u0622\u0646\u06af\u0648\u06cc\u0644\u0627", + "AT": "\u0627\u062a\u0631\u06cc\u0634", + "ET": "\u0627\u062a\u06cc\u0648\u067e\u06cc", + "JO": "\u0627\u0631\u062f\u0646", + "AM": "\u0627\u0631\u0645\u0646\u0633\u062a\u0627\u0646", + "UY": "\u0627\u0631\u0648\u06af\u0648\u0626\u0647", + "ER": "\u0627\u0631\u06cc\u062a\u0631\u0647", + "UZ": "\u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646", + "ES": "\u0627\u0633\u067e\u0627\u0646\u06cc\u0627", + "AU": "\u0627\u0633\u062a\u0631\u0627\u0644\u06cc\u0627", + "EE": "\u0627\u0633\u062a\u0648\u0646\u06cc", + "IL": "\u0627\u0633\u0631\u0627\u0626\u06cc\u0644", + "SK": "\u0627\u0633\u0644\u0648\u0627\u06a9\u06cc", + "SI": "\u0627\u0633\u0644\u0648\u0648\u0646\u06cc", + "SZ": "\u0627\u0633\u0648\u0627\u062a\u06cc\u0646\u06cc", + "ZA": "\u0627\u0641\u0631\u06cc\u0642\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc", + "AF": "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646", + "EC": "\u0627\u06a9\u0648\u0627\u062f\u0648\u0631", + "DZ": "\u0627\u0644\u062c\u0632\u0627\u06cc\u0631", + "SV": "\u0627\u0644\u0633\u0627\u0644\u0648\u0627\u062f\u0648\u0631", + "AE": "\u0627\u0645\u0627\u0631\u0627\u062a \u0645\u062a\u062d\u062f\u0647\u0654 \u0639\u0631\u0628\u06cc", + "ID": "\u0627\u0646\u062f\u0648\u0646\u0632\u06cc", + "UA": "\u0627\u0648\u06a9\u0631\u0627\u06cc\u0646", + "UG": "\u0627\u0648\u06af\u0627\u0646\u062f\u0627", + "US": "\u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647", + "IT": "\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627", + "IR": "\u0627\u06cc\u0631\u0627\u0646", + "IE": "\u0627\u06cc\u0631\u0644\u0646\u062f", + "IS": "\u0627\u06cc\u0633\u0644\u0646\u062f", + "BB": "\u0628\u0627\u0631\u0628\u0627\u062f\u0648\u0633", + "BS": "\u0628\u0627\u0647\u0627\u0645\u0627", + "BH": "\u0628\u062d\u0631\u06cc\u0646", + "BR": "\u0628\u0631\u0632\u06cc\u0644", + "BM": "\u0628\u0631\u0645\u0648\u062f\u0627", + "BN": "\u0628\u0631\u0648\u0646\u0626\u06cc", + "GB": "\u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627", + "BY": "\u0628\u0644\u0627\u0631\u0648\u0633", + "BE": "\u0628\u0644\u0698\u06cc\u06a9", + "BG": "\u0628\u0644\u063a\u0627\u0631\u0633\u062a\u0627\u0646", + "BZ": "\u0628\u0644\u06cc\u0632", + "BD": "\u0628\u0646\u06af\u0644\u0627\u062f\u0634", + "BJ": "\u0628\u0646\u06cc\u0646", + "BT": "\u0628\u0648\u062a\u0627\u0646", + "BW": "\u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627", + "BF": "\u0628\u0648\u0631\u06a9\u06cc\u0646\u0627\u0641\u0627\u0633\u0648", + "BI": "\u0628\u0648\u0631\u0648\u0646\u062f\u06cc", + "BA": "\u0628\u0648\u0633\u0646\u06cc \u0648 \u0647\u0631\u0632\u06af\u0648\u06cc\u0646", + "BO": "\u0628\u0648\u0644\u06cc\u0648\u06cc", + "PG": "\u067e\u0627\u067e\u0648\u0627 \u06af\u06cc\u0646\u0647\u0654 \u0646\u0648", + "PY": "\u067e\u0627\u0631\u0627\u06af\u0648\u0626\u0647", + "PK": "\u067e\u0627\u06a9\u0633\u062a\u0627\u0646", + "PW": "\u067e\u0627\u0644\u0627\u0626\u0648", + "PA": "\u067e\u0627\u0646\u0627\u0645\u0627", + "PT": "\u067e\u0631\u062a\u063a\u0627\u0644", + "PE": "\u067e\u0631\u0648", + "PF": "\u067e\u0644\u06cc\u200c\u0646\u0632\u06cc \u0641\u0631\u0627\u0646\u0633\u0647", + "PR": "\u067e\u0648\u0631\u062a\u0648\u0631\u06cc\u06a9\u0648", + "TJ": "\u062a\u0627\u062c\u06cc\u06a9\u0633\u062a\u0627\u0646", + "TZ": "\u062a\u0627\u0646\u0632\u0627\u0646\u06cc\u0627", + "TH": "\u062a\u0627\u06cc\u0644\u0646\u062f", + "TW": "\u062a\u0627\u06cc\u0648\u0627\u0646", + "TM": "\u062a\u0631\u06a9\u0645\u0646\u0633\u062a\u0627\u0646", + "TR": "\u062a\u0631\u06a9\u06cc\u0647", + "TT": "\u062a\u0631\u06cc\u0646\u06cc\u062f\u0627\u062f \u0648 \u062a\u0648\u0628\u0627\u06af\u0648", + "TK": "\u062a\u0648\u06a9\u0644\u0627\u0626\u0648", + "TG": "\u062a\u0648\u06af\u0648", + "TN": "\u062a\u0648\u0646\u0633", + "TO": "\u062a\u0648\u0646\u06af\u0627", + "TV": "\u062a\u0648\u0648\u0627\u0644\u0648", + "TL": "\u062a\u06cc\u0645\u0648\u0631-\u0644\u0633\u062a\u0647", + "JM": "\u062c\u0627\u0645\u0627\u0626\u06cc\u06a9\u0627", + "GI": "\u062c\u0628\u0644\u200c\u0627\u0644\u0637\u0627\u0631\u0642", + "JE": "\u062c\u0631\u0632\u06cc", + "AX": "\u062c\u0632\u0627\u06cc\u0631 \u0622\u0644\u0627\u0646\u062f", + "PN": "\u062c\u0632\u0627\u06cc\u0631 \u067e\u06cc\u062a\u200c\u06a9\u0631\u0646", + "TC": "\u062c\u0632\u0627\u06cc\u0631 \u062a\u0648\u0631\u06a9\u0633 \u0648 \u06a9\u0627\u06cc\u06a9\u0648\u0633", + "UM": "\u062c\u0632\u0627\u06cc\u0631 \u062f\u0648\u0631\u0627\u0641\u062a\u0627\u062f\u0647\u0654 \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647", + "SB": "\u062c\u0632\u0627\u06cc\u0631 \u0633\u0644\u06cc\u0645\u0627\u0646", + "FO": "\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0631\u0648", + "FK": "\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0644\u06a9\u0644\u0646\u062f", + "BQ": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0627\u0631\u0627\u0626\u06cc\u0628 \u0647\u0644\u0646\u062f", + "CK": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9", + "CC": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9\u0648\u0633", + "KY": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0650\u06cc\u0645\u0646", + "MH": "\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u0634\u0627\u0644", + "MP": "\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u06cc\u0627\u0646\u0627\u06cc \u0634\u0645\u0627\u0644\u06cc", + "VI": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647", + "VG": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627", + "BV": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0628\u0648\u0648\u0647", + "CX": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u06a9\u0631\u06cc\u0633\u0645\u0633", + "IM": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0645\u0646", + "NF": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0646\u0648\u0631\u0641\u0648\u0644\u06a9", + "AZ": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646", + "CF": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0641\u0631\u06cc\u0642\u0627\u06cc \u0645\u0631\u06a9\u0632\u06cc", + "DO": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0646", + "AQ": "\u062c\u0646\u0648\u0628\u06af\u0627\u0646", + "GS": "\u062c\u0648\u0631\u062c\u06cc\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u062c\u0632\u0627\u06cc\u0631 \u0633\u0627\u0646\u062f\u0648\u06cc\u0686 \u062c\u0646\u0648\u0628\u06cc", + "DJ": "\u062c\u06cc\u0628\u0648\u062a\u06cc", + "TD": "\u0686\u0627\u062f", + "CZ": "\u0686\u06a9", + "CN": "\u0686\u06cc\u0646", + "DK": "\u062f\u0627\u0646\u0645\u0627\u0631\u06a9", + "DM": "\u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0627", + "RE": "\u0631\u0626\u0648\u0646\u06cc\u0648\u0646", + "RW": "\u0631\u0648\u0627\u0646\u062f\u0627", + "RU": "\u0631\u0648\u0633\u06cc\u0647", + "RO": "\u0631\u0648\u0645\u0627\u0646\u06cc", + "ZM": "\u0632\u0627\u0645\u0628\u06cc\u0627", + "ZW": "\u0632\u06cc\u0645\u0628\u0627\u0628\u0648\u0647", + "JP": "\u0698\u0627\u067e\u0646", + "ST": "\u0633\u0627\u0626\u0648\u062a\u0648\u0645\u0647 \u0648 \u067e\u0631\u06cc\u0646\u0633\u06cc\u067e", + "CI": "\u0633\u0627\u062d\u0644 \u0639\u0627\u062c", + "WS": "\u0633\u0627\u0645\u0648\u0622", + "AS": "\u0633\u0627\u0645\u0648\u0622\u06cc \u0627\u0645\u0631\u06cc\u06a9\u0627", + "SM": "\u0633\u0627\u0646\u200c\u0645\u0627\u0631\u06cc\u0646\u0648", + "TF": "\u0633\u0631\u0632\u0645\u06cc\u0646\u200c\u0647\u0627\u06cc \u062c\u0646\u0648\u0628 \u0641\u0631\u0627\u0646\u0633\u0647", + "PS": "\u0633\u0631\u0632\u0645\u06cc\u0646\u200c\u0647\u0627\u06cc \u0641\u0644\u0633\u0637\u06cc\u0646\u06cc", + "LK": "\u0633\u0631\u06cc\u200c\u0644\u0627\u0646\u06a9\u0627", + "BL": "\u0633\u0646 \u0628\u0627\u0631\u062a\u0644\u0645\u06cc", + "PM": "\u0633\u0646 \u067e\u06cc\u0631 \u0648 \u0645\u06cc\u06a9\u0644\u0646", + "KN": "\u0633\u0646\u062a \u06a9\u06cc\u062a\u0633 \u0648 \u0646\u0648\u06cc\u0633", + "LC": "\u0633\u0646\u062a \u0644\u0648\u0633\u06cc\u0627", + "SX": "\u0633\u0646\u062a \u0645\u0627\u0631\u062a\u0646", + "MF": "\u0633\u0646\u062a \u0645\u0627\u0631\u062a\u06cc\u0646", + "VC": "\u0633\u0646\u062a \u0648\u06cc\u0646\u0633\u0646\u062a \u0648 \u06af\u0631\u0646\u0627\u062f\u06cc\u0646", + "SH": "\u0633\u0646\u062a \u0647\u0644\u0646", + "SG": "\u0633\u0646\u06af\u0627\u067e\u0648\u0631", + "SN": "\u0633\u0646\u06af\u0627\u0644", + "SJ": "\u0633\u0648\u0627\u0644\u0628\u0627\u0631\u062f \u0648 \u06cc\u0627\u0646 \u0645\u0627\u06cc\u0646", + "SE": "\u0633\u0648\u0626\u062f", + "CH": "\u0633\u0648\u0626\u06cc\u0633", + "SD": "\u0633\u0648\u062f\u0627\u0646", + "SS": "\u0633\u0648\u062f\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc", + "SR": "\u0633\u0648\u0631\u06cc\u0646\u0627\u0645", + "SY": "\u0633\u0648\u0631\u06cc\u0647", + "SO": "\u0633\u0648\u0645\u0627\u0644\u06cc", + "SL": "\u0633\u06cc\u0631\u0627\u0644\u0626\u0648\u0646", + "SC": "\u0633\u06cc\u0634\u0644", + "CL": "\u0634\u06cc\u0644\u06cc", + "EH": "\u0635\u062d\u0631\u0627\u06cc \u063a\u0631\u0628\u06cc", + "RS": "\u0635\u0631\u0628\u0633\u062a\u0627\u0646", + "IQ": "\u0639\u0631\u0627\u0642", + "SA": "\u0639\u0631\u0628\u0633\u062a\u0627\u0646 \u0633\u0639\u0648\u062f\u06cc", + "OM": "\u0639\u0645\u0627\u0646", + "GH": "\u063a\u0646\u0627", + "FR": "\u0641\u0631\u0627\u0646\u0633\u0647", + "FI": "\u0641\u0646\u0644\u0627\u0646\u062f", + "FJ": "\u0641\u06cc\u062c\u06cc", + "PH": "\u0641\u06cc\u0644\u06cc\u067e\u06cc\u0646", + "CY": "\u0642\u0628\u0631\u0633", + "KG": "\u0642\u0631\u0642\u06cc\u0632\u0633\u062a\u0627\u0646", + "KZ": "\u0642\u0632\u0627\u0642\u0633\u062a\u0627\u0646", + "QA": "\u0642\u0637\u0631", + "IO": "\u0642\u0644\u0645\u0631\u0648 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627 \u062f\u0631 \u0627\u0642\u06cc\u0627\u0646\u0648\u0633 \u0647\u0646\u062f", + "CR": "\u06a9\u0627\u0633\u062a\u0627\u0631\u06cc\u06a9\u0627", + "NC": "\u06a9\u0627\u0644\u062f\u0648\u0646\u06cc\u0627\u06cc \u062c\u062f\u06cc\u062f", + "KH": "\u06a9\u0627\u0645\u0628\u0648\u062c", + "CM": "\u06a9\u0627\u0645\u0631\u0648\u0646", + "CA": "\u06a9\u0627\u0646\u0627\u062f\u0627", + "HR": "\u06a9\u0631\u0648\u0627\u0633\u06cc", + "KR": "\u06a9\u0631\u0647\u0654 \u062c\u0646\u0648\u0628\u06cc", + "KP": "\u06a9\u0631\u0647\u0654 \u0634\u0645\u0627\u0644\u06cc", + "CO": "\u06a9\u0644\u0645\u0628\u06cc\u0627", + "CG": "\u06a9\u0646\u06af\u0648 - \u0628\u0631\u0627\u0632\u0648\u06cc\u0644", + "CD": "\u06a9\u0646\u06af\u0648 - \u06a9\u06cc\u0646\u0634\u0627\u0633\u0627", + "KE": "\u06a9\u0646\u06cc\u0627", + "CU": "\u06a9\u0648\u0628\u0627", + "XK": "\u06a9\u0648\u0633\u0648\u0648", + "CW": "\u06a9\u0648\u0631\u0627\u0633\u0627\u0626\u0648", + "KM": "\u06a9\u0648\u0645\u0648\u0631", + "KW": "\u06a9\u0648\u06cc\u062a", + "CV": "\u06a9\u06cc\u067e\u200c\u0648\u0631\u062f", + "KI": "\u06a9\u06cc\u0631\u06cc\u0628\u0627\u062a\u06cc", + "GA": "\u06af\u0627\u0628\u0646", + "GM": "\u06af\u0627\u0645\u0628\u06cc\u0627", + "GE": "\u06af\u0631\u062c\u0633\u062a\u0627\u0646", + "GD": "\u06af\u0631\u0646\u0627\u062f\u0627", + "GG": "\u06af\u0631\u0646\u0632\u06cc", + "GL": "\u06af\u0631\u06cc\u0646\u0644\u0646\u062f", + "GT": "\u06af\u0648\u0627\u062a\u0645\u0627\u0644\u0627", + "GP": "\u06af\u0648\u0627\u062f\u0644\u0648\u067e", + "GU": "\u06af\u0648\u0627\u0645", + "GY": "\u06af\u0648\u06cc\u0627\u0646", + "GF": "\u06af\u0648\u06cc\u0627\u0646 \u0641\u0631\u0627\u0646\u0633\u0647", + "GN": "\u06af\u06cc\u0646\u0647", + "GQ": "\u06af\u06cc\u0646\u0647\u0654 \u0627\u0633\u062a\u0648\u0627\u06cc\u06cc", + "GW": "\u06af\u06cc\u0646\u0647\u0654 \u0628\u06cc\u0633\u0627\u0626\u0648", + "LA": "\u0644\u0627\u0626\u0648\u0633", + "LB": "\u0644\u0628\u0646\u0627\u0646", + "LV": "\u0644\u062a\u0648\u0646\u06cc", + "LS": "\u0644\u0633\u0648\u062a\u0648", + "LU": "\u0644\u0648\u06a9\u0632\u0627\u0645\u0628\u0648\u0631\u06af", + "PL": "\u0644\u0647\u0633\u062a\u0627\u0646", + "LR": "\u0644\u06cc\u0628\u0631\u06cc\u0627", + "LY": "\u0644\u06cc\u0628\u06cc", + "LT": "\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc", + "LI": "\u0644\u06cc\u062e\u062a\u0646\u200c\u0627\u0634\u062a\u0627\u06cc\u0646", + "MG": "\u0645\u0627\u062f\u0627\u06af\u0627\u0633\u06a9\u0627\u0631", + "MQ": "\u0645\u0627\u0631\u062a\u06cc\u0646\u06cc\u06a9", + "MO": "\u0645\u0627\u06a9\u0627\u0626\u0648\u060c \u0645\u0646\u0637\u0642\u0647\u0654 \u0648\u06cc\u0698\u0647\u0654 \u0627\u062f\u0627\u0631\u06cc \u0686\u06cc\u0646", + "MW": "\u0645\u0627\u0644\u0627\u0648\u06cc", + "MT": "\u0645\u0627\u0644\u062a", + "MV": "\u0645\u0627\u0644\u062f\u06cc\u0648", + "MY": "\u0645\u0627\u0644\u0632\u06cc", + "ML": "\u0645\u0627\u0644\u06cc", + "YT": "\u0645\u0627\u06cc\u0648\u062a", + "HU": "\u0645\u062c\u0627\u0631\u0633\u062a\u0627\u0646", + "MA": "\u0645\u0631\u0627\u06a9\u0634", + "EG": "\u0645\u0635\u0631", + "MN": "\u0645\u063a\u0648\u0644\u0633\u062a\u0627\u0646", + "MK": "\u0645\u0642\u062f\u0648\u0646\u06cc\u0647\u0654 \u0634\u0645\u0627\u0644\u06cc", + "MX": "\u0645\u06a9\u0632\u06cc\u06a9", + "MR": "\u0645\u0648\u0631\u06cc\u062a\u0627\u0646\u06cc", + "MU": "\u0645\u0648\u0631\u06cc\u0633", + "MZ": "\u0645\u0648\u0632\u0627\u0645\u0628\u06cc\u06a9", + "MD": "\u0645\u0648\u0644\u062f\u0627\u0648\u06cc", + "MC": "\u0645\u0648\u0646\u0627\u06a9\u0648", + "MS": "\u0645\u0648\u0646\u062a\u200c\u0633\u0631\u0627\u062a", + "ME": "\u0645\u0648\u0646\u062a\u0647\u200c\u0646\u06af\u0631\u0648", + "MM": "\u0645\u06cc\u0627\u0646\u0645\u0627\u0631 (\u0628\u0631\u0645\u0647)", + "FM": "\u0645\u06cc\u06a9\u0631\u0648\u0646\u0632\u06cc", + "NR": "\u0646\u0627\u0626\u0648\u0631\u0648", + "NA": "\u0646\u0627\u0645\u06cc\u0628\u06cc\u0627", + "NP": "\u0646\u067e\u0627\u0644", + "NO": "\u0646\u0631\u0648\u0698", + "NE": "\u0646\u06cc\u062c\u0631", + "NG": "\u0646\u06cc\u062c\u0631\u06cc\u0647", + "NI": "\u0646\u06cc\u06a9\u0627\u0631\u0627\u06af\u0648\u0626\u0647", + "NU": "\u0646\u06cc\u0648\u0626\u0647", + "NZ": "\u0646\u06cc\u0648\u0632\u06cc\u0644\u0646\u062f", + "VA": "\u0648\u0627\u062a\u06cc\u06a9\u0627\u0646", + "WF": "\u0648\u0627\u0644\u06cc\u0633 \u0648 \u0641\u0648\u062a\u0648\u0646\u0627", + "VU": "\u0648\u0627\u0646\u0648\u0627\u062a\u0648", + "VE": "\u0648\u0646\u0632\u0648\u0626\u0644\u0627", + "VN": "\u0648\u06cc\u062a\u0646\u0627\u0645", + "HT": "\u0647\u0627\u0626\u06cc\u062a\u06cc", + "HM": "\u0647\u0631\u062f \u0648 \u062c\u0632\u0627\u06cc\u0631 \u0645\u06a9\u200c\u062f\u0648\u0646\u0627\u0644\u062f", + "NL": "\u0647\u0644\u0646\u062f", + "IN": "\u0647\u0646\u062f", + "HN": "\u0647\u0646\u062f\u0648\u0631\u0627\u0633", + "HK": "\u0647\u0646\u06af\u200c\u06a9\u0646\u06af\u060c \u0645\u0646\u0637\u0642\u0647\u0654 \u0648\u06cc\u0698\u0647\u0654 \u0627\u062f\u0627\u0631\u06cc \u0686\u06cc\u0646", + "YE": "\u06cc\u0645\u0646", + "GR": "\u06cc\u0648\u0646\u0627\u0646" +} diff --git a/public/intl/country/fi-FI.json b/public/intl/country/fi-FI.json new file mode 100644 index 0000000..de70839 --- /dev/null +++ b/public/intl/country/fi-FI.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AX": "Ahvenanmaa", + "NL": "Alankomaat", + "AL": "Albania", + "DZ": "Algeria", + "AS": "Amerikan Samoa", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua ja Barbuda", + "AE": "Arabiemiirikunnat", + "AR": "Argentiina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AZ": "Azerbaid\u017ean", + "BS": "Bahama", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BE": "Belgia", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia ja Hertsegovina", + "BW": "Botswana", + "BV": "Bouvet\u2019nsaari", + "BR": "Brasilia", + "IO": "Brittil\u00e4inen Intian valtameren alue", + "VG": "Brittil\u00e4iset Neitsytsaaret", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "KY": "Caymansaaret", + "CL": "Chile", + "CK": "Cookinsaaret", + "CR": "Costa Rica", + "CW": "Cura\u00e7ao", + "DJ": "Djibouti", + "DM": "Dominica", + "DO": "Dominikaaninen tasavalta", + "EC": "Ecuador", + "EG": "Egypti", + "SV": "El Salvador", + "ER": "Eritrea", + "ES": "Espanja", + "ZA": "Etel\u00e4-Afrikka", + "GS": "Etel\u00e4-Georgia ja Etel\u00e4iset Sandwichsaaret", + "KR": "Etel\u00e4-Korea", + "SS": "Etel\u00e4-Sudan", + "ET": "Etiopia", + "FK": "Falklandinsaaret", + "FJ": "Fid\u017ei", + "PH": "Filippiinit", + "FO": "F\u00e4rsaaret", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GL": "Gr\u00f6nlanti", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard ja McDonaldinsaaret", + "HN": "Honduras", + "HK": "Hongkong \u2013 Kiinan e.h.a.", + "SJ": "Huippuvuoret ja Jan Mayen", + "ID": "Indonesia", + "IN": "Intia", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irlanti", + "IS": "Islanti", + "GB": "Iso-Britannia", + "IL": "Israel", + "IT": "Italia", + "TL": "It\u00e4-Timor", + "AT": "It\u00e4valta", + "JM": "Jamaika", + "JP": "Japani", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordania", + "CX": "Joulusaari", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kap Verde", + "BQ": "Karibian Alankomaat", + "KZ": "Kazakstan", + "KE": "Kenia", + "CF": "Keski-Afrikan tasavalta", + "CN": "Kiina", + "KG": "Kirgisia", + "KI": "Kiribati", + "CO": "Kolumbia", + "KM": "Komorit", + "CD": "Kongon demokraattinen tasavalta", + "CG": "Kongon tasavalta", + "CC": "Kookossaaret (Keelingsaaret)", + "XK": "Kosovo", + "GR": "Kreikka", + "HR": "Kroatia", + "CU": "Kuuba", + "KW": "Kuwait", + "CY": "Kypros", + "LA": "Laos", + "LV": "Latvia", + "LS": "Lesotho", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Liettua", + "LU": "Luxemburg", + "EH": "L\u00e4nsi-Sahara", + "MO": "Macao \u2013 Kiinan e.h.a.", + "MG": "Madagaskar", + "MW": "Malawi", + "MV": "Malediivit", + "MY": "Malesia", + "ML": "Mali", + "MT": "Malta", + "IM": "Mansaari", + "MA": "Marokko", + "MH": "Marshallinsaaret", + "MQ": "Martinique", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Meksiko", + "FM": "Mikronesian liittovaltio", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mosambik", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "NF": "Norfolkinsaari", + "NO": "Norja", + "CI": "Norsunluurannikko", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestiinalaisalueet", + "PA": "Panama", + "PG": "Papua-Uusi-Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairn", + "KP": "Pohjois-Korea", + "MK": "Pohjois-Makedonia", + "MP": "Pohjois-Mariaanit", + "PT": "Portugali", + "PR": "Puerto Rico", + "PL": "Puola", + "GQ": "P\u00e4iv\u00e4ntasaajan Guinea", + "QA": "Qatar", + "FR": "Ranska", + "TF": "Ranskan etel\u00e4iset alueet", + "GF": "Ranskan Guayana", + "PF": "Ranskan Polynesia", + "RE": "R\u00e9union", + "RO": "Romania", + "RW": "Ruanda", + "SE": "Ruotsi", + "SH": "Saint Helena", + "KN": "Saint Kitts ja Nevis", + "LC": "Saint Lucia", + "VC": "Saint Vincent ja Grenadiinit", + "BL": "Saint-Barth\u00e9lemy", + "MF": "Saint-Martin", + "PM": "Saint-Pierre ja Miquelon", + "DE": "Saksa", + "SB": "Salomonsaaret", + "ZM": "Sambia", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 ja Pr\u00edncipe", + "SA": "Saudi-Arabia", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychellit", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SK": "Slovakia", + "SI": "Slovenia", + "SO": "Somalia", + "LK": "Sri Lanka", + "SD": "Sudan", + "FI": "Suomi", + "SR": "Suriname", + "CH": "Sveitsi", + "SZ": "Swazimaa", + "SY": "Syyria", + "TJ": "Tad\u017eikistan", + "TW": "Taiwan", + "TZ": "Tansania", + "DK": "Tanska", + "TH": "Thaimaa", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad ja Tobago", + "TD": "T\u0161ad", + "CZ": "T\u0161ekki", + "TN": "Tunisia", + "TR": "Turkki", + "TM": "Turkmenistan", + "TC": "Turks- ja Caicossaaret", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraina", + "HU": "Unkari", + "UY": "Uruguay", + "NC": "Uusi-Kaledonia", + "NZ": "Uusi-Seelanti", + "UZ": "Uzbekistan", + "BY": "Valko-Ven\u00e4j\u00e4", + "VU": "Vanuatu", + "VA": "Vatikaani", + "VE": "Venezuela", + "RU": "Ven\u00e4j\u00e4", + "VN": "Vietnam", + "EE": "Viro", + "WF": "Wallis ja Futuna", + "US": "Yhdysvallat", + "UM": "Yhdysvaltain erillissaaret", + "VI": "Yhdysvaltain Neitsytsaaret", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/fo-FO.json b/public/intl/country/fo-FO.json new file mode 100644 index 0000000..6fab7fc --- /dev/null +++ b/public/intl/country/fo-FO.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AX": "\u00c1land", + "AL": "Albania", + "DZ": "Algeria", + "AS": "Amerikanska Samoa", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua & Barbuda", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AZ": "Aserbadjan", + "AU": "Avstralia", + "BS": "Bahamaoyggjar", + "BD": "Bangladesj", + "BB": "Barbados", + "BH": "Barein", + "BE": "Belgia", + "BZ": "Belis", + "BJ": "Benin", + "BM": "Bermuda", + "BO": "Bolivia", + "BA": "Bosnia-Hersegovina", + "BW": "Botsvana", + "BV": "Bouvetoyggj", + "BR": "Brasil", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "Butan", + "KY": "Caymanoyggjar", + "CK": "Cooksoyggjar", + "CW": "Cura\u00e7ao", + "DK": "Danmark", + "DJ": "Djibuti", + "DM": "Dominika", + "DO": "Dominikal\u00fd\u00f0veldi\u00f0", + "EG": "Egyptaland", + "EC": "Ekvador", + "GQ": "Ekvatorguinea", + "SV": "El Salvador", + "ER": "Eritrea", + "EE": "Estland", + "SZ": "Esvatini", + "ET": "Etiopia", + "AT": "Eysturr\u00edki", + "TL": "Eysturtimor", + "FK": "Falklandsoyggjar", + "FJ": "Fiji", + "CI": "F\u00edlabeinsstrondin", + "PH": "Filipsoyggjar", + "FI": "Finnland", + "FR": "Frakland", + "GF": "Franska Gujana", + "PF": "Franska Polynesia", + "TF": "Fronsku sunnaru landa\u00f8ki", + "FO": "F\u00f8royar", + "GA": "Gabon", + "GM": "Gambia", + "GH": "Gana", + "GE": "Georgia", + "GI": "Gibraltar", + "GD": "Grenada", + "GR": "Grikkaland", + "CV": "Gr\u00f8nh\u00f8vdaoyggjar", + "GL": "Gr\u00f8nland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Gujana", + "HT": "Haiti", + "HM": "Heard og McDonaldoyggjar", + "HN": "Honduras", + "HK": "Hong Kong SAR Kina", + "BY": "Hv\u00edtarussland", + "IN": "India", + "ID": "Indonesia", + "IQ": "Irak", + "IR": "Iran", + "IE": "\u00cdrland", + "IS": "\u00cdsland", + "IM": "Isle of Man", + "IL": "\u00cdsrael", + "IT": "Italia", + "JM": "Jamaika", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "CX": "J\u00f3laoyggjin", + "JO": "Jordan", + "KH": "Kambodja", + "CM": "Kamerun", + "CA": "Kanada", + "KZ": "Kasakstan", + "QA": "Katar", + "CZ": "Kekkia", + "KE": "Kenja", + "CL": "Kili", + "CN": "Kina", + "KG": "Kirgisia", + "KI": "Kiribati", + "TD": "Kjad", + "CC": "Kokosoyggjar", + "CO": "Kolombia", + "KM": "Komoroyggjar", + "CG": "Kongo", + "CD": "Kongo, Dem. L\u00fd\u00f0veldi\u00f0", + "CR": "Kosta Rika", + "XK": "Kosovo", + "HR": "Kroatia", + "CU": "Kuba", + "KW": "Kuvait", + "CY": "K\u00fdpros", + "LA": "Laos", + "LS": "Lesoto", + "LV": "Lettland", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liktinstein", + "LT": "Litava", + "LU": "Luksemborg", + "MG": "Madagaskar", + "MO": "Makao SAR Kina", + "MY": "Malaisia", + "MW": "Malavi", + "MV": "Maldivoyggjar", + "ML": "Mali", + "MT": "Malta", + "MA": "Marokko", + "MH": "Marshalloyggjar", + "MQ": "Martinique", + "YT": "Mayotte", + "MX": "Meksiko", + "CF": "Mi\u00f0afrikal\u00fd\u00f0veldi\u00f0", + "FM": "Mikronesiasamveldi\u00f0", + "MD": "Moldova", + "MC": "Monako", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MR": "M\u00f3ritania", + "MU": "M\u00f3ritius", + "MZ": "Mosambik", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NL": "Ni\u00f0urlond", + "BQ": "Ni\u00f0urlonds Karibia", + "NE": "Niger", + "NG": "Nigeria", + "NI": "Nikaragua", + "NU": "Niue", + "MP": "Nor\u00f0aru Mariuoyggjar", + "KP": "Nor\u00f0urkorea", + "NO": "Noreg", + "NF": "Norfolksoyggj", + "MK": "North Macedonia", + "NC": "N\u00fdkaled\u00f3nia", + "NZ": "N\u00fds\u00e6land", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinskt land\u00f8ki", + "PA": "Panama", + "PG": "Papua N\u00fdguinea", + "PY": "Paraguai", + "PE": "Peru", + "PN": "Pitcairnoyggjar", + "PL": "P\u00f3lland", + "PT": "Portugal", + "PR": "Puerto Riko", + "RE": "R\u00e9union", + "RW": "Ruanda", + "RO": "Rumenia", + "RU": "Russland", + "PM": "Saint Pierre & Miquelon", + "SB": "Salomonoyggjar", + "US": "Sambandsr\u00edki Amerika", + "UM": "Sambandsr\u00edki Amerikas fjarskotnu oyggjar", + "VI": "Sambandsr\u00edki Amerikas Jomfr\u00faoyggjar", + "ZM": "Sambia", + "AE": "Sameindu Emirr\u00edkini", + "WS": "Samoa", + "SM": "San Marino", + "ST": "Sao Tome & Prinsipi", + "SA": "Saudiarabia", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seyskelloyggjar", + "SL": "Sierra Leona", + "ZW": "Simbabvi", + "SG": "Singapor", + "SX": "Sint Maarten", + "SK": "Slovakia", + "SI": "Slovenia", + "SO": "Somalia", + "ES": "Spania", + "LK": "Sri Lanka", + "MF": "St-Martin", + "BL": "St. Barth\u00e9lemy", + "SH": "St. Helena", + "KN": "St. Kitts & Nevis", + "LC": "St. Lusia", + "VC": "St. Vinsent & Grenadinoyggjar", + "IO": "St\u00f3ra Bretlands Indiahavoyggjar", + "VG": "St\u00f3ra Bretlands Jomfr\u00faoyggjar", + "GB": "St\u00f3rabretland", + "SD": "Sudan", + "ZA": "Su\u00f0urafrika", + "GS": "Su\u00f0urgeorgia og Su\u00f0ursandwichoyggjar", + "KR": "Su\u00f0urkorea", + "SS": "Su\u00f0ursudan", + "SR": "Surinam", + "SJ": "Svalbard & Jan Mayen", + "CH": "Sveis", + "SE": "Sv\u00f8r\u00edki", + "SY": "S\u00fdria", + "TJ": "Tadsjikistan", + "TH": "Tailand", + "TW": "Taivan", + "TZ": "Tansania", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad & Tobago", + "TN": "Tunesia", + "TR": "Turkaland", + "TM": "Turkmenistan", + "TC": "Turks- og Caicosoyggjar", + "TV": "Tuvalu", + "DE": "T\u00fdskland", + "UG": "Uganda", + "UA": "Ukraina", + "HU": "Ungarn", + "UY": "Uruguai", + "UZ": "Usbekistan", + "VU": "Vanuatu", + "VA": "Vatikanb\u00fdur", + "VE": "Venesuela", + "EH": "Vestursahara", + "VN": "Vjetnam", + "WF": "Wallis- og Futunaoyggjar" +} diff --git a/public/intl/country/fr-FR.json b/public/intl/country/fr-FR.json new file mode 100644 index 0000000..1b4ab43 --- /dev/null +++ b/public/intl/country/fr-FR.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "ZA": "Afrique du Sud", + "AL": "Albanie", + "DZ": "Alg\u00e9rie", + "DE": "Allemagne", + "AD": "Andorre", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarctique", + "AG": "Antigua-et-Barbuda", + "SA": "Arabie saoudite", + "AR": "Argentine", + "AM": "Arm\u00e9nie", + "AW": "Aruba", + "AU": "Australie", + "AT": "Autriche", + "AZ": "Azerba\u00efdjan", + "BS": "Bahamas", + "BH": "Bahre\u00efn", + "BD": "Bangladesh", + "BB": "Barbade", + "BE": "Belgique", + "BZ": "Belize", + "BJ": "B\u00e9nin", + "BM": "Bermudes", + "BT": "Bhoutan", + "BY": "Bi\u00e9lorussie", + "BO": "Bolivie", + "BA": "Bosnie-Herz\u00e9govine", + "BW": "Botswana", + "BR": "Br\u00e9sil", + "BN": "Brun\u00e9i Darussalam", + "BG": "Bulgarie", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodge", + "CM": "Cameroun", + "CA": "Canada", + "CV": "Cap-Vert", + "CL": "Chili", + "CN": "Chine", + "CY": "Chypre", + "CO": "Colombie", + "KM": "Comores", + "CG": "Congo-Brazzaville", + "CD": "Congo-Kinshasa", + "KP": "Cor\u00e9e du Nord", + "KR": "Cor\u00e9e du Sud", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croatie", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DK": "Danemark", + "DJ": "Djibouti", + "DM": "Dominique", + "EG": "\u00c9gypte", + "AE": "\u00c9mirats arabes unis", + "EC": "\u00c9quateur", + "ER": "\u00c9rythr\u00e9e", + "ES": "Espagne", + "EE": "Estonie", + "SZ": "Eswatini", + "VA": "\u00c9tat de la Cit\u00e9 du Vatican", + "FM": "\u00c9tats f\u00e9d\u00e9r\u00e9s de Micron\u00e9sie", + "US": "\u00c9tats-Unis", + "ET": "\u00c9thiopie", + "FJ": "Fidji", + "FI": "Finlande", + "FR": "France", + "GA": "Gabon", + "GM": "Gambie", + "GE": "G\u00e9orgie", + "GS": "G\u00e9orgie du Sud et \u00eeles Sandwich du Sud", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Gr\u00e8ce", + "GD": "Grenade", + "GL": "Groenland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernesey", + "GN": "Guin\u00e9e", + "GQ": "Guin\u00e9e \u00e9quatoriale", + "GW": "Guin\u00e9e-Bissau", + "GY": "Guyana", + "GF": "Guyane fran\u00e7aise", + "HT": "Ha\u00efti", + "HN": "Honduras", + "HU": "Hongrie", + "BV": "\u00cele Bouvet", + "CX": "\u00cele Christmas", + "IM": "\u00cele de Man", + "NF": "\u00cele Norfolk", + "AX": "\u00celes \u00c5land", + "KY": "\u00celes Ca\u00efmans", + "CC": "\u00celes Cocos", + "CK": "\u00celes Cook", + "FO": "\u00celes F\u00e9ro\u00e9", + "HM": "\u00celes Heard et McDonald", + "FK": "\u00celes Malouines", + "MP": "\u00celes Mariannes du Nord", + "MH": "\u00celes Marshall", + "UM": "\u00celes mineures \u00e9loign\u00e9es des \u00c9tats-Unis", + "PN": "\u00celes Pitcairn", + "SB": "\u00celes Salomon", + "TC": "\u00celes Turques-et-Ca\u00efques", + "VG": "\u00celes Vierges britanniques", + "VI": "\u00celes Vierges des \u00c9tats-Unis", + "IN": "Inde", + "ID": "Indon\u00e9sie", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irlande", + "IS": "Islande", + "IL": "Isra\u00ebl", + "IT": "Italie", + "JM": "Jama\u00efque", + "JP": "Japon", + "JE": "Jersey", + "JO": "Jordanie", + "KZ": "Kazakhstan", + "KE": "Kenya", + "KG": "Kirghizistan", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kowe\u00eft", + "RE": "La R\u00e9union", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Lettonie", + "LB": "Liban", + "LR": "Lib\u00e9ria", + "LY": "Libye", + "LI": "Liechtenstein", + "LT": "Lituanie", + "LU": "Luxembourg", + "MK": "Mac\u00e9doine du Nord", + "MG": "Madagascar", + "MY": "Malaisie", + "MW": "Malawi", + "MV": "Maldives", + "ML": "Mali", + "MT": "Malte", + "MA": "Maroc", + "MQ": "Martinique", + "MU": "Maurice", + "MR": "Mauritanie", + "YT": "Mayotte", + "MX": "Mexique", + "MD": "Moldavie", + "MC": "Monaco", + "MN": "Mongolie", + "ME": "Mont\u00e9n\u00e9gro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MM": "Myanmar (Birmanie)", + "NA": "Namibie", + "NR": "Nauru", + "NP": "N\u00e9pal", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nig\u00e9ria", + "NU": "Niue", + "NO": "Norv\u00e8ge", + "NC": "Nouvelle-Cal\u00e9donie", + "NZ": "Nouvelle-Z\u00e9lande", + "OM": "Oman", + "UG": "Ouganda", + "UZ": "Ouzb\u00e9kistan", + "PK": "Pakistan", + "PW": "Palaos", + "PA": "Panama", + "PG": "Papouasie-Nouvelle-Guin\u00e9e", + "PY": "Paraguay", + "NL": "Pays-Bas", + "BQ": "Pays-Bas carib\u00e9ens", + "PE": "P\u00e9rou", + "PH": "Philippines", + "PL": "Pologne", + "PF": "Polyn\u00e9sie fran\u00e7aise", + "PR": "Porto Rico", + "PT": "Portugal", + "QA": "Qatar", + "HK": "R.A.S. chinoise de Hong Kong", + "MO": "R.A.S. chinoise de Macao", + "CF": "R\u00e9publique centrafricaine", + "DO": "R\u00e9publique dominicaine", + "RO": "Roumanie", + "GB": "Royaume-Uni", + "RU": "Russie", + "RW": "Rwanda", + "EH": "Sahara occidental", + "BL": "Saint-Barth\u00e9lemy", + "KN": "Saint-Christophe-et-Ni\u00e9v\u00e8s", + "SM": "Saint-Marin", + "MF": "Saint-Martin", + "SX": "Saint-Martin (partie n\u00e9erlandaise)", + "PM": "Saint-Pierre-et-Miquelon", + "VC": "Saint-Vincent-et-les-Grenadines", + "SH": "Sainte-H\u00e9l\u00e8ne", + "LC": "Sainte-Lucie", + "SV": "Salvador", + "WS": "Samoa", + "AS": "Samoa am\u00e9ricaines", + "ST": "Sao Tom\u00e9-et-Principe", + "SN": "S\u00e9n\u00e9gal", + "RS": "Serbie", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapour", + "SK": "Slovaquie", + "SI": "Slov\u00e9nie", + "SO": "Somalie", + "SD": "Soudan", + "SS": "Soudan du Sud", + "LK": "Sri Lanka", + "SE": "Su\u00e8de", + "CH": "Suisse", + "SR": "Suriname", + "SJ": "Svalbard et Jan Mayen", + "SY": "Syrie", + "TJ": "Tadjikistan", + "TW": "Ta\u00efwan", + "TZ": "Tanzanie", + "TD": "Tchad", + "CZ": "Tch\u00e9quie", + "TF": "Terres australes fran\u00e7aises", + "IO": "Territoire britannique de l\u2019oc\u00e9an Indien", + "PS": "Territoires palestiniens", + "TH": "Tha\u00eflande", + "TL": "Timor oriental", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinit\u00e9-et-Tobago", + "TN": "Tunisie", + "TM": "Turkm\u00e9nistan", + "TR": "Turquie", + "TV": "Tuvalu", + "UA": "Ukraine", + "UY": "Uruguay", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis-et-Futuna", + "YE": "Y\u00e9men", + "ZM": "Zambie", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/he-IL.json b/public/intl/country/he-IL.json new file mode 100644 index 0000000..0b1f1a9 --- /dev/null +++ b/public/intl/country/he-IL.json @@ -0,0 +1,252 @@ +{ + "UG": "\u05d0\u05d5\u05d2\u05e0\u05d3\u05d4", + "UZ": "\u05d0\u05d5\u05d6\u05d1\u05e7\u05d9\u05e1\u05d8\u05df", + "AT": "\u05d0\u05d5\u05e1\u05d8\u05e8\u05d9\u05d4", + "AU": "\u05d0\u05d5\u05e1\u05d8\u05e8\u05dc\u05d9\u05d4", + "UA": "\u05d0\u05d5\u05e7\u05e8\u05d0\u05d9\u05e0\u05d4", + "UY": "\u05d0\u05d5\u05e8\u05d5\u05d2\u05d5\u05d5\u05d0\u05d9", + "AZ": "\u05d0\u05d6\u05e8\u05d1\u05d9\u05d9\u05d2\u05f3\u05df", + "CX": "\u05d0\u05d9 \u05d7\u05d2 \u05d4\u05de\u05d5\u05dc\u05d3", + "AE": "\u05d0\u05d9\u05d7\u05d5\u05d3 \u05d4\u05d0\u05de\u05d9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05e2\u05e8\u05d1\u05d9\u05d5\u05ea", + "IT": "\u05d0\u05d9\u05d8\u05dc\u05d9\u05d4", + "AX": "\u05d0\u05d9\u05d9 \u05d0\u05d5\u05dc\u05e0\u05d3", + "BS": "\u05d0\u05d9\u05d9 \u05d1\u05d4\u05d0\u05de\u05d4", + "VG": "\u05d0\u05d9\u05d9 \u05d4\u05d1\u05ea\u05d5\u05dc\u05d4 \u05d4\u05d1\u05e8\u05d9\u05d8\u05d9\u05d9\u05dd", + "VI": "\u05d0\u05d9\u05d9 \u05d4\u05d1\u05ea\u05d5\u05dc\u05d4 \u05e9\u05dc \u05d0\u05e8\u05e6\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea", + "HM": "\u05d0\u05d9\u05d9 \u05d4\u05e8\u05d3 \u05d5\u05de\u05e7\u05d3\u05d5\u05e0\u05dc\u05d3", + "WF": "\u05d0\u05d9\u05d9 \u05d5\u05d5\u05dc\u05d9\u05e1 \u05d5\u05e4\u05d5\u05d8\u05d5\u05e0\u05d4", + "TC": "\u05d0\u05d9\u05d9 \u05d8\u05e8\u05e7\u05e1 \u05d5\u05e7\u05d9\u05d9\u05e7\u05d5\u05e1", + "MP": "\u05d0\u05d9\u05d9 \u05de\u05e8\u05d9\u05d0\u05e0\u05d4 \u05d4\u05e6\u05e4\u05d5\u05e0\u05d9\u05d9\u05dd", + "MH": "\u05d0\u05d9\u05d9 \u05de\u05e8\u05e9\u05dc", + "SC": "\u05d0\u05d9\u05d9 \u05e1\u05d9\u05d9\u05e9\u05dc", + "FO": "\u05d0\u05d9\u05d9 \u05e4\u05d0\u05e8\u05d5", + "FK": "\u05d0\u05d9\u05d9 \u05e4\u05d5\u05e7\u05dc\u05e0\u05d3", + "PN": "\u05d0\u05d9\u05d9 \u05e4\u05d9\u05d8\u05e7\u05e8\u05df", + "CK": "\u05d0\u05d9\u05d9 \u05e7\u05d5\u05e7", + "CC": "\u05d0\u05d9\u05d9 \u05e7\u05d5\u05e7\u05d5\u05e1 (\u05e7\u05d9\u05dc\u05d9\u05e0\u05d2)", + "KY": "\u05d0\u05d9\u05d9 \u05e7\u05d9\u05d9\u05de\u05df", + "SB": "\u05d0\u05d9\u05d9 \u05e9\u05dc\u05de\u05d4", + "ID": "\u05d0\u05d9\u05e0\u05d3\u05d5\u05e0\u05d6\u05d9\u05d4", + "IS": "\u05d0\u05d9\u05e1\u05dc\u05e0\u05d3", + "IR": "\u05d0\u05d9\u05e8\u05d0\u05df", + "IE": "\u05d0\u05d9\u05e8\u05dc\u05e0\u05d3", + "SV": "\u05d0\u05dc \u05e1\u05dc\u05d1\u05d3\u05d5\u05e8", + "AL": "\u05d0\u05dc\u05d1\u05e0\u05d9\u05d4", + "DZ": "\u05d0\u05dc\u05d2\u05f3\u05d9\u05e8\u05d9\u05d4", + "AI": "\u05d0\u05e0\u05d2\u05d5\u05d5\u05d9\u05dc\u05d4", + "AO": "\u05d0\u05e0\u05d2\u05d5\u05dc\u05d4", + "AD": "\u05d0\u05e0\u05d3\u05d5\u05e8\u05d4", + "AQ": "\u05d0\u05e0\u05d8\u05d0\u05e8\u05e7\u05d8\u05d9\u05e7\u05d4", + "AG": "\u05d0\u05e0\u05d8\u05d9\u05d2\u05d5\u05d0\u05d4 \u05d5\u05d1\u05e8\u05d1\u05d5\u05d3\u05d4", + "SZ": "\u05d0\u05e1\u05d5\u05d5\u05d0\u05d8\u05d9\u05e0\u05d9", + "EE": "\u05d0\u05e1\u05d8\u05d5\u05e0\u05d9\u05d4", + "AF": "\u05d0\u05e4\u05d2\u05e0\u05d9\u05e1\u05d8\u05df", + "EC": "\u05d0\u05e7\u05d5\u05d5\u05d3\u05d5\u05e8", + "AR": "\u05d0\u05e8\u05d2\u05e0\u05d8\u05d9\u05e0\u05d4", + "AW": "\u05d0\u05e8\u05d5\u05d1\u05d4", + "ER": "\u05d0\u05e8\u05d9\u05ea\u05e8\u05d9\u05d0\u05d4", + "AM": "\u05d0\u05e8\u05de\u05e0\u05d9\u05d4", + "US": "\u05d0\u05e8\u05e6\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea", + "ET": "\u05d0\u05ea\u05d9\u05d5\u05e4\u05d9\u05d4", + "BT": "\u05d1\u05d4\u05d5\u05d8\u05df", + "BG": "\u05d1\u05d5\u05dc\u05d2\u05e8\u05d9\u05d4", + "BO": "\u05d1\u05d5\u05dc\u05d9\u05d1\u05d9\u05d4", + "BA": "\u05d1\u05d5\u05e1\u05e0\u05d9\u05d4 \u05d5\u05d4\u05e8\u05e6\u05d2\u05d5\u05d1\u05d9\u05e0\u05d4", + "BW": "\u05d1\u05d5\u05e6\u05d5\u05d5\u05d0\u05e0\u05d4", + "BI": "\u05d1\u05d5\u05e8\u05d5\u05e0\u05d3\u05d9", + "BF": "\u05d1\u05d5\u05e8\u05e7\u05d9\u05e0\u05d4 \u05e4\u05d0\u05e1\u05d5", + "BH": "\u05d1\u05d7\u05e8\u05d9\u05d9\u05df", + "BY": "\u05d1\u05dc\u05d0\u05e8\u05d5\u05e1", + "BE": "\u05d1\u05dc\u05d2\u05d9\u05d4", + "BZ": "\u05d1\u05dc\u05d9\u05d6", + "BD": "\u05d1\u05e0\u05d2\u05dc\u05d3\u05e9", + "BJ": "\u05d1\u05e0\u05d9\u05df", + "BB": "\u05d1\u05e8\u05d1\u05d3\u05d5\u05e1", + "BN": "\u05d1\u05e8\u05d5\u05e0\u05d9\u05d9", + "BR": "\u05d1\u05e8\u05d6\u05d9\u05dc", + "GB": "\u05d1\u05e8\u05d9\u05d8\u05e0\u05d9\u05d4", + "BM": "\u05d1\u05e8\u05de\u05d5\u05d3\u05d4", + "GS": "\u05d2\u05f3\u05d5\u05e8\u05d2\u05f3\u05d9\u05d4 \u05d4\u05d3\u05e8\u05d5\u05de\u05d9\u05ea \u05d5\u05d0\u05d9\u05d9 \u05e1\u05e0\u05d3\u05d5\u05d5\u05d9\u05e5\u05f3 \u05d4\u05d3\u05e8\u05d5\u05de\u05d9\u05d9\u05dd", + "DJ": "\u05d2\u05f3\u05d9\u05d1\u05d5\u05d8\u05d9", + "JM": "\u05d2\u05f3\u05de\u05d9\u05d9\u05e7\u05d4", + "JE": "\u05d2\u05f3\u05e8\u05d6\u05d9", + "GE": "\u05d2\u05d0\u05d5\u05e8\u05d2\u05d9\u05d4", + "GH": "\u05d2\u05d0\u05e0\u05d4", + "GA": "\u05d2\u05d1\u05d5\u05df", + "GT": "\u05d2\u05d5\u05d0\u05d8\u05de\u05dc\u05d4", + "GU": "\u05d2\u05d5\u05d0\u05dd", + "GP": "\u05d2\u05d5\u05d5\u05d0\u05d3\u05dc\u05d5\u05e4", + "GY": "\u05d2\u05d9\u05d0\u05e0\u05d4", + "GF": "\u05d2\u05d9\u05d0\u05e0\u05d4 \u05d4\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea", + "GI": "\u05d2\u05d9\u05d1\u05e8\u05dc\u05d8\u05e8", + "GN": "\u05d2\u05d9\u05e0\u05d0\u05d4", + "GQ": "\u05d2\u05d9\u05e0\u05d0\u05d4 \u05d4\u05de\u05e9\u05d5\u05d5\u05e0\u05d9\u05ea", + "GW": "\u05d2\u05d9\u05e0\u05d0\u05d4-\u05d1\u05d9\u05e1\u05d0\u05d5", + "GM": "\u05d2\u05de\u05d1\u05d9\u05d4", + "GL": "\u05d2\u05e8\u05d9\u05e0\u05dc\u05e0\u05d3", + "DE": "\u05d2\u05e8\u05de\u05e0\u05d9\u05d4", + "GD": "\u05d2\u05e8\u05e0\u05d3\u05d4", + "GG": "\u05d2\u05e8\u05e0\u05d6\u05d9", + "DM": "\u05d3\u05d5\u05de\u05d9\u05e0\u05d9\u05e7\u05d4", + "DK": "\u05d3\u05e0\u05de\u05e8\u05e7", + "ZA": "\u05d3\u05e8\u05d5\u05dd \u05d0\u05e4\u05e8\u05d9\u05e7\u05d4", + "SS": "\u05d3\u05e8\u05d5\u05dd \u05e1\u05d5\u05d3\u05df", + "BV": "\u05d4\u05d0\u05d9 \u05d1\u05d5\u05d1\u05d4", + "IM": "\u05d4\u05d0\u05d9 \u05de\u05d0\u05df", + "NF": "\u05d4\u05d0\u05d9 \u05e0\u05d5\u05e8\u05e4\u05d5\u05e7", + "HT": "\u05d4\u05d0\u05d9\u05d8\u05d9", + "MV": "\u05d4\u05d0\u05d9\u05d9\u05dd \u05d4\u05de\u05dc\u05d3\u05d9\u05d1\u05d9\u05d9\u05dd", + "UM": "\u05d4\u05d0\u05d9\u05d9\u05dd \u05d4\u05de\u05e8\u05d5\u05d7\u05e7\u05d9\u05dd \u05d4\u05e7\u05d8\u05e0\u05d9\u05dd \u05e9\u05dc \u05d0\u05e8\u05d4\u05f4\u05d1", + "BQ": "\u05d4\u05d0\u05d9\u05d9\u05dd \u05d4\u05e7\u05e8\u05d9\u05d1\u05d9\u05d9\u05dd \u05d4\u05d4\u05d5\u05dc\u05e0\u05d3\u05d9\u05d9\u05dd", + "IN": "\u05d4\u05d5\u05d3\u05d5", + "VA": "\u05d4\u05d5\u05d5\u05ea\u05d9\u05e7\u05df", + "NL": "\u05d4\u05d5\u05dc\u05e0\u05d3", + "HK": "\u05d4\u05d5\u05e0\u05d2 \u05e7\u05d5\u05e0\u05d2 (\u05d0\u05d6\u05d5\u05e8 \u05de\u05e0\u05d4\u05dc\u05d9 \u05de\u05d9\u05d5\u05d7\u05d3 \u05e9\u05dc \u05e1\u05d9\u05df)", + "HU": "\u05d4\u05d5\u05e0\u05d2\u05e8\u05d9\u05d4", + "HN": "\u05d4\u05d5\u05e0\u05d3\u05d5\u05e8\u05e1", + "IO": "\u05d4\u05d8\u05e8\u05d9\u05d8\u05d5\u05e8\u05d9\u05d4 \u05d4\u05d1\u05e8\u05d9\u05d8\u05d9\u05ea \u05d1\u05d0\u05d5\u05e7\u05d9\u05d9\u05e0\u05d5\u05e1 \u05d4\u05d4\u05d5\u05d3\u05d9", + "TF": "\u05d4\u05d8\u05e8\u05d9\u05d8\u05d5\u05e8\u05d9\u05d5\u05ea \u05d4\u05d3\u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05e9\u05dc \u05e6\u05e8\u05e4\u05ea", + "PH": "\u05d4\u05e4\u05d9\u05dc\u05d9\u05e4\u05d9\u05e0\u05d9\u05dd", + "DO": "\u05d4\u05e8\u05e4\u05d5\u05d1\u05dc\u05d9\u05e7\u05d4 \u05d4\u05d3\u05d5\u05de\u05d9\u05e0\u05d9\u05e7\u05e0\u05d9\u05ea", + "CF": "\u05d4\u05e8\u05e4\u05d5\u05d1\u05dc\u05d9\u05e7\u05d4 \u05d4\u05de\u05e8\u05db\u05d6-\u05d0\u05e4\u05e8\u05d9\u05e7\u05d0\u05d9\u05ea", + "PS": "\u05d4\u05e9\u05d8\u05d7\u05d9\u05dd \u05d4\u05e4\u05dc\u05e1\u05d8\u05d9\u05e0\u05d9\u05d9\u05dd", + "VN": "\u05d5\u05d9\u05d9\u05d8\u05e0\u05d0\u05dd", + "VU": "\u05d5\u05e0\u05d5\u05d0\u05d8\u05d5", + "VE": "\u05d5\u05e0\u05e6\u05d5\u05d0\u05dc\u05d4", + "ZW": "\u05d6\u05d9\u05de\u05d1\u05d1\u05d5\u05d0\u05d4", + "ZM": "\u05d6\u05de\u05d1\u05d9\u05d4", + "CI": "\u05d7\u05d5\u05e3 \u05d4\u05e9\u05e0\u05d4\u05d1", + "TJ": "\u05d8\u05d2\u05f3\u05d9\u05e7\u05d9\u05e1\u05d8\u05df", + "TV": "\u05d8\u05d5\u05d1\u05d0\u05dc\u05d5", + "TG": "\u05d8\u05d5\u05d2\u05d5", + "TO": "\u05d8\u05d5\u05e0\u05d2\u05d4", + "TK": "\u05d8\u05d5\u05e7\u05dc\u05d0\u05d5", + "TR": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05d4", + "TM": "\u05d8\u05d5\u05e8\u05e7\u05de\u05e0\u05d9\u05e1\u05d8\u05df", + "TW": "\u05d8\u05d9\u05d9\u05d5\u05d5\u05d0\u05df", + "TL": "\u05d8\u05d9\u05de\u05d5\u05e8-\u05dc\u05e1\u05d8\u05d4", + "TZ": "\u05d8\u05e0\u05d6\u05e0\u05d9\u05d4", + "TT": "\u05d8\u05e8\u05d9\u05e0\u05d9\u05d3\u05d3 \u05d5\u05d8\u05d5\u05d1\u05d2\u05d5", + "GR": "\u05d9\u05d5\u05d5\u05df", + "JP": "\u05d9\u05e4\u05df", + "JO": "\u05d9\u05e8\u05d3\u05df", + "IL": "\u05d9\u05e9\u05e8\u05d0\u05dc", + "KW": "\u05db\u05d5\u05d5\u05d9\u05ea", + "CV": "\u05db\u05e3 \u05d5\u05e8\u05d3\u05d4", + "LA": "\u05dc\u05d0\u05d5\u05e1", + "LB": "\u05dc\u05d1\u05e0\u05d5\u05df", + "LY": "\u05dc\u05d5\u05d1", + "LU": "\u05dc\u05d5\u05e7\u05e1\u05de\u05d1\u05d5\u05e8\u05d2", + "LV": "\u05dc\u05d8\u05d1\u05d9\u05d4", + "LR": "\u05dc\u05d9\u05d1\u05e8\u05d9\u05d4", + "LT": "\u05dc\u05d9\u05d8\u05d0", + "LI": "\u05dc\u05d9\u05db\u05d8\u05e0\u05e9\u05d8\u05d9\u05d9\u05df", + "LS": "\u05dc\u05e1\u05d5\u05d8\u05d5", + "MR": "\u05de\u05d0\u05d5\u05e8\u05d9\u05d8\u05e0\u05d9\u05d4", + "MU": "\u05de\u05d0\u05d5\u05e8\u05d9\u05e6\u05d9\u05d5\u05e1", + "YT": "\u05de\u05d0\u05d9\u05d5\u05d8", + "ML": "\u05de\u05d0\u05dc\u05d9", + "MG": "\u05de\u05d3\u05d2\u05e1\u05e7\u05e8", + "MZ": "\u05de\u05d5\u05d6\u05de\u05d1\u05d9\u05e7", + "MD": "\u05de\u05d5\u05dc\u05d3\u05d5\u05d1\u05d4", + "MN": "\u05de\u05d5\u05e0\u05d2\u05d5\u05dc\u05d9\u05d4", + "ME": "\u05de\u05d5\u05e0\u05d8\u05e0\u05d2\u05e8\u05d5", + "MS": "\u05de\u05d5\u05e0\u05e1\u05e8\u05d0\u05d8", + "MC": "\u05de\u05d5\u05e0\u05e7\u05d5", + "MM": "\u05de\u05d9\u05d0\u05e0\u05de\u05e8 (\u05d1\u05d5\u05e8\u05de\u05d4)", + "FM": "\u05de\u05d9\u05e7\u05e8\u05d5\u05e0\u05d6\u05d9\u05d4", + "MW": "\u05de\u05dc\u05d0\u05d5\u05d5\u05d9", + "MY": "\u05de\u05dc\u05d6\u05d9\u05d4", + "MT": "\u05de\u05dc\u05d8\u05d4", + "EG": "\u05de\u05e6\u05e8\u05d9\u05dd", + "MO": "\u05de\u05e7\u05d0\u05d5 (\u05d0\u05d6\u05d5\u05e8 \u05de\u05e0\u05d4\u05dc\u05d9 \u05de\u05d9\u05d5\u05d7\u05d3 \u05e9\u05dc \u05e1\u05d9\u05df)", + "MK": "\u05de\u05e7\u05d3\u05d5\u05e0\u05d9\u05d4 \u05d4\u05e6\u05e4\u05d5\u05e0\u05d9\u05ea", + "MX": "\u05de\u05e7\u05e1\u05d9\u05e7\u05d5", + "MA": "\u05de\u05e8\u05d5\u05e7\u05d5", + "MQ": "\u05de\u05e8\u05d8\u05d9\u05e0\u05d9\u05e7", + "NR": "\u05e0\u05d0\u05d5\u05e8\u05d5", + "NO": "\u05e0\u05d5\u05e8\u05d5\u05d5\u05d2\u05d9\u05d4", + "NG": "\u05e0\u05d9\u05d2\u05e8\u05d9\u05d4", + "NZ": "\u05e0\u05d9\u05d5 \u05d6\u05d9\u05dc\u05e0\u05d3", + "NU": "\u05e0\u05d9\u05d5\u05d5\u05d4", + "NE": "\u05e0\u05d9\u05d6\u05f3\u05e8", + "NI": "\u05e0\u05d9\u05e7\u05e8\u05d2\u05d5\u05d0\u05d4", + "NA": "\u05e0\u05de\u05d9\u05d1\u05d9\u05d4", + "NP": "\u05e0\u05e4\u05d0\u05dc", + "ST": "\u05e1\u05d0\u05d5 \u05d8\u05d5\u05de\u05d4 \u05d5\u05e4\u05e8\u05d9\u05e0\u05e1\u05d9\u05e4\u05d4", + "SJ": "\u05e1\u05d1\u05d0\u05dc\u05d1\u05e8\u05d3 \u05d5\u05d9\u05d0\u05df \u05de\u05d0\u05d9\u05d9\u05df", + "EH": "\u05e1\u05d4\u05e8\u05d4 \u05d4\u05de\u05e2\u05e8\u05d1\u05d9\u05ea", + "SD": "\u05e1\u05d5\u05d3\u05df", + "SO": "\u05e1\u05d5\u05de\u05dc\u05d9\u05d4", + "SY": "\u05e1\u05d5\u05e8\u05d9\u05d4", + "SR": "\u05e1\u05d5\u05e8\u05d9\u05e0\u05d0\u05dd", + "SL": "\u05e1\u05d9\u05d9\u05e8\u05d4 \u05dc\u05d0\u05d5\u05e0\u05d4", + "CN": "\u05e1\u05d9\u05df", + "SG": "\u05e1\u05d9\u05e0\u05d2\u05e4\u05d5\u05e8", + "SI": "\u05e1\u05dc\u05d5\u05d1\u05e0\u05d9\u05d4", + "SK": "\u05e1\u05dc\u05d5\u05d1\u05e7\u05d9\u05d4", + "WS": "\u05e1\u05de\u05d5\u05d0\u05d4", + "AS": "\u05e1\u05de\u05d5\u05d0\u05d4 \u05d4\u05d0\u05de\u05e8\u05d9\u05e7\u05e0\u05d9\u05ea", + "MF": "\u05e1\u05df \u05de\u05e8\u05d8\u05df", + "SM": "\u05e1\u05df \u05de\u05e8\u05d9\u05e0\u05d5", + "SN": "\u05e1\u05e0\u05d2\u05dc", + "BL": "\u05e1\u05e0\u05d8 \u05d1\u05e8\u05ea\u05d5\u05dc\u05d5\u05de\u05d9\u05d0\u05d5", + "SH": "\u05e1\u05e0\u05d8 \u05d4\u05dc\u05e0\u05d4", + "VC": "\u05e1\u05e0\u05d8 \u05d5\u05d9\u05e0\u05e1\u05e0\u05d8 \u05d5\u05d4\u05d2\u05e8\u05e0\u05d3\u05d9\u05e0\u05d9\u05dd", + "LC": "\u05e1\u05e0\u05d8 \u05dc\u05d5\u05e1\u05d9\u05d4", + "SX": "\u05e1\u05e0\u05d8 \u05de\u05d0\u05e8\u05d8\u05df", + "PM": "\u05e1\u05e0\u05d8 \u05e4\u05d9\u05d9\u05e8 \u05d5\u05de\u05d9\u05e7\u05dc\u05d5\u05df", + "KN": "\u05e1\u05e0\u05d8 \u05e7\u05d9\u05d8\u05e1 \u05d5\u05e0\u05d5\u05d5\u05d9\u05e1", + "ES": "\u05e1\u05e4\u05e8\u05d3", + "RS": "\u05e1\u05e8\u05d1\u05d9\u05d4", + "LK": "\u05e1\u05e8\u05d9 \u05dc\u05e0\u05e7\u05d4", + "OM": "\u05e2\u05d5\u05de\u05d0\u05df", + "IQ": "\u05e2\u05d9\u05e8\u05d0\u05e7", + "SA": "\u05e2\u05e8\u05d1 \u05d4\u05e1\u05e2\u05d5\u05d3\u05d9\u05ea", + "PR": "\u05e4\u05d5\u05d0\u05e8\u05d8\u05d5 \u05e8\u05d9\u05e7\u05d5", + "PL": "\u05e4\u05d5\u05dc\u05d9\u05df", + "PF": "\u05e4\u05d5\u05dc\u05d9\u05e0\u05d6\u05d9\u05d4 \u05d4\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea", + "PT": "\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc", + "FJ": "\u05e4\u05d9\u05d2\u05f3\u05d9", + "FI": "\u05e4\u05d9\u05e0\u05dc\u05e0\u05d3", + "PW": "\u05e4\u05dc\u05d0\u05d5", + "PA": "\u05e4\u05e0\u05de\u05d4", + "PG": "\u05e4\u05e4\u05d5\u05d0\u05d4 \u05d2\u05d9\u05e0\u05d0\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4", + "PK": "\u05e4\u05e7\u05d9\u05e1\u05d8\u05df", + "PY": "\u05e4\u05e8\u05d2\u05d5\u05d5\u05d0\u05d9", + "PE": "\u05e4\u05e8\u05d5", + "TD": "\u05e6\u05f3\u05d0\u05d3", + "CL": "\u05e6\u05f3\u05d9\u05dc\u05d4", + "CZ": "\u05e6\u05f3\u05db\u05d9\u05d4", + "FR": "\u05e6\u05e8\u05e4\u05ea", + "CU": "\u05e7\u05d5\u05d1\u05d4", + "CO": "\u05e7\u05d5\u05dc\u05d5\u05de\u05d1\u05d9\u05d4", + "KM": "\u05e7\u05d5\u05de\u05d5\u05e8\u05d5", + "CG": "\u05e7\u05d5\u05e0\u05d2\u05d5 - \u05d1\u05e8\u05d6\u05d0\u05d5\u05d9\u05dc", + "CD": "\u05e7\u05d5\u05e0\u05d2\u05d5 - \u05e7\u05d9\u05e0\u05e9\u05d0\u05e1\u05d4", + "XK": "\u05e7\u05d5\u05e1\u05d5\u05d1\u05d5", + "CR": "\u05e7\u05d5\u05e1\u05d8\u05d4 \u05e8\u05d9\u05e7\u05d4", + "CW": "\u05e7\u05d5\u05e8\u05d0\u05e1\u05d0\u05d5", + "KR": "\u05e7\u05d5\u05e8\u05d9\u05d0\u05d4 \u05d4\u05d3\u05e8\u05d5\u05de\u05d9\u05ea", + "KP": "\u05e7\u05d5\u05e8\u05d9\u05d0\u05d4 \u05d4\u05e6\u05e4\u05d5\u05e0\u05d9\u05ea", + "KZ": "\u05e7\u05d6\u05d7\u05e1\u05d8\u05df", + "QA": "\u05e7\u05d8\u05d0\u05e8", + "KG": "\u05e7\u05d9\u05e8\u05d2\u05d9\u05d6\u05e1\u05d8\u05df", + "KI": "\u05e7\u05d9\u05e8\u05d9\u05d1\u05d0\u05d8\u05d9", + "NC": "\u05e7\u05dc\u05d3\u05d5\u05e0\u05d9\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4", + "KH": "\u05e7\u05de\u05d1\u05d5\u05d3\u05d9\u05d4", + "CM": "\u05e7\u05de\u05e8\u05d5\u05df", + "CA": "\u05e7\u05e0\u05d3\u05d4", + "KE": "\u05e7\u05e0\u05d9\u05d4", + "CY": "\u05e7\u05e4\u05e8\u05d9\u05e1\u05d9\u05df", + "HR": "\u05e7\u05e8\u05d5\u05d0\u05d8\u05d9\u05d4", + "RE": "\u05e8\u05d0\u05d5\u05e0\u05d9\u05d5\u05df", + "RW": "\u05e8\u05d5\u05d0\u05e0\u05d3\u05d4", + "RO": "\u05e8\u05d5\u05de\u05e0\u05d9\u05d4", + "RU": "\u05e8\u05d5\u05e1\u05d9\u05d4", + "SE": "\u05e9\u05d5\u05d5\u05d3\u05d9\u05d4", + "CH": "\u05e9\u05d5\u05d5\u05d9\u05d9\u05e5", + "TH": "\u05ea\u05d0\u05d9\u05dc\u05e0\u05d3", + "TN": "\u05ea\u05d5\u05e0\u05d9\u05e1\u05d9\u05d4", + "YE": "\u05ea\u05d9\u05de\u05df" +} diff --git a/public/intl/country/hi-IN.json b/public/intl/country/hi-IN.json new file mode 100644 index 0000000..a1eb1f2 --- /dev/null +++ b/public/intl/country/hi-IN.json @@ -0,0 +1,252 @@ +{ + "AO": "\u0905\u0902\u0917\u094b\u0932\u093e", + "AQ": "\u0905\u0902\u091f\u093e\u0930\u094d\u0915\u091f\u093f\u0915\u093e", + "AZ": "\u0905\u091c\u093c\u0930\u092c\u0948\u091c\u093e\u0928", + "AF": "\u0905\u092b\u093c\u0917\u093e\u0928\u093f\u0938\u094d\u0924\u093e\u0928", + "AS": "\u0905\u092e\u0947\u0930\u093f\u0915\u0940 \u0938\u092e\u094b\u0906", + "AW": "\u0905\u0930\u0942\u092c\u093e", + "AR": "\u0905\u0930\u094d\u091c\u0947\u0902\u091f\u0940\u0928\u093e", + "SV": "\u0905\u0932 \u0938\u0932\u094d\u0935\u093e\u0921\u094b\u0930", + "DZ": "\u0905\u0932\u094d\u091c\u0940\u0930\u093f\u092f\u093e", + "AL": "\u0905\u0932\u094d\u092c\u093e\u0928\u093f\u092f\u093e", + "IM": "\u0906\u0907\u0932 \u0911\u092b\u093c \u092e\u0948\u0928", + "IS": "\u0906\u0907\u0938\u0932\u0948\u0902\u0921", + "IE": "\u0906\u092f\u0930\u0932\u0948\u0902\u0921", + "AM": "\u0906\u0930\u094d\u092e\u0947\u0928\u093f\u092f\u093e", + "ID": "\u0907\u0902\u0921\u094b\u0928\u0947\u0936\u093f\u092f\u093e", + "EC": "\u0907\u0915\u094d\u0935\u093e\u0921\u094b\u0930", + "GQ": "\u0907\u0915\u094d\u0935\u0947\u091f\u094b\u0930\u093f\u092f\u0932 \u0917\u093f\u0928\u0940", + "IL": "\u0907\u091c\u093c\u0930\u093e\u0907\u0932", + "IT": "\u0907\u091f\u0932\u0940", + "ET": "\u0907\u0925\u093f\u092f\u094b\u092a\u093f\u092f\u093e", + "IQ": "\u0907\u0930\u093e\u0915", + "ER": "\u0907\u0930\u093f\u091f\u094d\u0930\u093f\u092f\u093e", + "IR": "\u0908\u0930\u093e\u0928", + "UZ": "\u0909\u091c\u093c\u094d\u092c\u0947\u0915\u093f\u0938\u094d\u0924\u093e\u0928", + "KP": "\u0909\u0924\u094d\u0924\u0930 \u0915\u094b\u0930\u093f\u092f\u093e", + "MK": "\u0909\u0924\u094d\u0924\u0930\u0940 \u092e\u0915\u0926\u0942\u0928\u093f\u092f\u093e", + "MP": "\u0909\u0924\u094d\u0924\u0930\u0940 \u092e\u093e\u0930\u093f\u092f\u093e\u0928\u093e \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "UY": "\u0909\u0930\u0942\u0917\u094d\u0935\u0947", + "AI": "\u090f\u0902\u0917\u094d\u0935\u093f\u0932\u093e", + "AG": "\u090f\u0902\u091f\u093f\u0917\u0941\u0906 \u0914\u0930 \u092c\u0930\u092c\u0941\u0921\u093e", + "AD": "\u090f\u0902\u0921\u094b\u0930\u093e", + "AX": "\u090f\u0932\u0948\u0902\u0921 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "EE": "\u090f\u0938\u094d\u091f\u094b\u0928\u093f\u092f\u093e", + "AT": "\u0911\u0938\u094d\u091f\u094d\u0930\u093f\u092f\u093e", + "AU": "\u0911\u0938\u094d\u091f\u094d\u0930\u0947\u0932\u093f\u092f\u093e", + "OM": "\u0913\u092e\u093e\u0928", + "KH": "\u0915\u0902\u092c\u094b\u0921\u093f\u092f\u093e", + "KZ": "\u0915\u091c\u093c\u093e\u0916\u0938\u094d\u0924\u093e\u0928", + "QA": "\u0915\u093c\u0924\u0930", + "CA": "\u0915\u0928\u093e\u0921\u093e", + "CD": "\u0915\u093e\u0902\u0917\u094b - \u0915\u093f\u0902\u0936\u093e\u0938\u093e", + "CG": "\u0915\u093e\u0902\u0917\u094b \u2013 \u092c\u094d\u0930\u093e\u091c\u093c\u093e\u0935\u093f\u0932", + "KI": "\u0915\u093f\u0930\u093f\u092c\u093e\u0924\u0940", + "KG": "\u0915\u093f\u0930\u094d\u0917\u093f\u091c\u093c\u0938\u094d\u0924\u093e\u0928", + "CK": "\u0915\u0941\u0915 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "KW": "\u0915\u0941\u0935\u0948\u0924", + "KE": "\u0915\u0947\u0928\u094d\u092f\u093e", + "CV": "\u0915\u0947\u092a \u0935\u0930\u094d\u0921", + "CM": "\u0915\u0948\u092e\u0930\u0942\u0928", + "KY": "\u0915\u0948\u092e\u0947\u0928 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "BQ": "\u0915\u0948\u0930\u093f\u092c\u093f\u092f\u0928 \u0928\u0940\u0926\u0930\u0932\u0948\u0902\u0921", + "CC": "\u0915\u094b\u0915\u094b\u0938 (\u0915\u0940\u0932\u093f\u0902\u0917) \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "CI": "\u0915\u094b\u091f \u0921\u0940 \u0906\u0907\u0935\u0930", + "KM": "\u0915\u094b\u092e\u094b\u0930\u094b\u0938", + "CO": "\u0915\u094b\u0932\u0902\u092c\u093f\u092f\u093e", + "XK": "\u0915\u094b\u0938\u094b\u0935\u094b", + "CR": "\u0915\u094b\u0938\u094d\u091f\u093e\u0930\u093f\u0915\u093e", + "CU": "\u0915\u094d\u092f\u0942\u092c\u093e", + "CW": "\u0915\u094d\u092f\u0942\u0930\u093e\u0938\u093e\u0913", + "CX": "\u0915\u094d\u0930\u093f\u0938\u092e\u0938 \u0926\u094d\u0935\u0940\u092a", + "HR": "\u0915\u094d\u0930\u094b\u090f\u0936\u093f\u092f\u093e", + "GG": "\u0917\u0930\u094d\u0928\u0938\u0940", + "GM": "\u0917\u093e\u092e\u094d\u092c\u093f\u092f\u093e", + "GN": "\u0917\u093f\u0928\u0940", + "GW": "\u0917\u093f\u0928\u0940-\u092c\u093f\u0938\u093e\u0909", + "GU": "\u0917\u0941\u0906\u092e", + "GY": "\u0917\u0941\u092f\u093e\u0928\u093e", + "GA": "\u0917\u0948\u092c\u0949\u0928", + "GL": "\u0917\u094d\u0930\u0940\u0928\u0932\u0948\u0902\u0921", + "GD": "\u0917\u094d\u0930\u0947\u0928\u093e\u0921\u093e", + "GT": "\u0917\u094d\u0935\u093e\u091f\u0947\u092e\u093e\u0932\u093e", + "GP": "\u0917\u094d\u0935\u093e\u0921\u0947\u0932\u0942\u092a", + "GH": "\u0918\u093e\u0928\u093e", + "TD": "\u091a\u093e\u0921", + "CL": "\u091a\u093f\u0932\u0940", + "CN": "\u091a\u0940\u0928", + "CZ": "\u091a\u0947\u0915\u093f\u092f\u093e", + "JM": "\u091c\u092e\u0948\u0915\u093e", + "DE": "\u091c\u0930\u094d\u092e\u0928\u0940", + "JE": "\u091c\u0930\u094d\u0938\u0940", + "JP": "\u091c\u093e\u092a\u093e\u0928", + "ZM": "\u091c\u093c\u093e\u092e\u094d\u092c\u093f\u092f\u093e", + "DJ": "\u091c\u093f\u092c\u0942\u0924\u0940", + "GI": "\u091c\u093f\u092c\u094d\u0930\u093e\u0932\u094d\u091f\u0930", + "ZW": "\u091c\u093c\u093f\u092e\u094d\u092c\u093e\u092c\u094d\u0935\u0947", + "GE": "\u091c\u0949\u0930\u094d\u091c\u093f\u092f\u093e", + "JO": "\u091c\u0949\u0930\u094d\u0921\u0928", + "TO": "\u091f\u094b\u0902\u0917\u093e", + "TG": "\u091f\u094b\u0917\u094b", + "TN": "\u091f\u094d\u092f\u0942\u0928\u0940\u0936\u093f\u092f\u093e", + "DK": "\u0921\u0947\u0928\u092e\u093e\u0930\u094d\u0915", + "DO": "\u0921\u094b\u092e\u093f\u0928\u093f\u0915\u0928 \u0917\u0923\u0930\u093e\u091c\u094d\u092f", + "DM": "\u0921\u094b\u092e\u093f\u0928\u093f\u0915\u093e", + "TZ": "\u0924\u0902\u091c\u093c\u093e\u0928\u093f\u092f\u093e", + "TW": "\u0924\u093e\u0907\u0935\u093e\u0928", + "TJ": "\u0924\u093e\u091c\u093c\u093f\u0915\u093f\u0938\u094d\u0924\u093e\u0928", + "TL": "\u0924\u093f\u092e\u094b\u0930-\u0932\u0947\u0938\u094d\u0924", + "TC": "\u0924\u0941\u0930\u094d\u0915 \u0914\u0930 \u0915\u0948\u0915\u094b\u091c\u093c \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "TM": "\u0924\u0941\u0930\u094d\u0915\u092e\u0947\u0928\u093f\u0938\u094d\u0924\u093e\u0928", + "TR": "\u0924\u0941\u0930\u094d\u0915\u0940", + "TV": "\u0924\u0941\u0935\u093e\u0932\u0942", + "TK": "\u0924\u094b\u0915\u0947\u0932\u093e\u0909", + "TT": "\u0924\u094d\u0930\u093f\u0928\u093f\u0926\u093e\u0926 \u0914\u0930 \u091f\u094b\u092c\u0948\u0917\u094b", + "TH": "\u0925\u093e\u0908\u0932\u0948\u0902\u0921", + "ZA": "\u0926\u0915\u094d\u0937\u093f\u0923 \u0905\u092b\u093c\u094d\u0930\u0940\u0915\u093e", + "KR": "\u0926\u0915\u094d\u0937\u093f\u0923 \u0915\u094b\u0930\u093f\u092f\u093e", + "GS": "\u0926\u0915\u094d\u0937\u093f\u0923 \u091c\u0949\u0930\u094d\u091c\u093f\u092f\u093e \u0914\u0930 \u0926\u0915\u094d\u0937\u093f\u0923 \u0938\u0948\u0902\u0921\u0935\u093f\u091a \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "SS": "\u0926\u0915\u094d\u0937\u093f\u0923 \u0938\u0942\u0921\u093e\u0928", + "NE": "\u0928\u093e\u0907\u091c\u0930", + "NG": "\u0928\u093e\u0907\u091c\u0940\u0930\u093f\u092f\u093e", + "NR": "\u0928\u093e\u0909\u0930\u0941", + "NA": "\u0928\u093e\u092e\u0940\u092c\u093f\u092f\u093e", + "NI": "\u0928\u093f\u0915\u093e\u0930\u093e\u0917\u0941\u0906", + "NL": "\u0928\u0940\u0926\u0930\u0932\u0948\u0902\u0921", + "NU": "\u0928\u0940\u092f\u0942", + "NP": "\u0928\u0947\u092a\u093e\u0932", + "NF": "\u0928\u0949\u0930\u092b\u093c\u0949\u0915 \u0926\u094d\u0935\u0940\u092a", + "NO": "\u0928\u0949\u0930\u094d\u0935\u0947", + "NC": "\u0928\u094d\u092f\u0942 \u0915\u0948\u0932\u0947\u0921\u094b\u0928\u093f\u092f\u093e", + "NZ": "\u0928\u094d\u092f\u0942\u091c\u093c\u0940\u0932\u0948\u0902\u0921", + "PA": "\u092a\u0928\u093e\u092e\u093e", + "PY": "\u092a\u0930\u093e\u0917\u094d\u0935\u0947", + "PW": "\u092a\u0932\u093e\u090a", + "EH": "\u092a\u0936\u094d\u091a\u093f\u092e\u0940 \u0938\u0939\u093e\u0930\u093e", + "PK": "\u092a\u093e\u0915\u093f\u0938\u094d\u0924\u093e\u0928", + "PG": "\u092a\u093e\u092a\u0941\u0906 \u0928\u094d\u092f\u0942 \u0917\u093f\u0928\u0940", + "PN": "\u092a\u093f\u091f\u0915\u0948\u0930\u094d\u0928 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "PT": "\u092a\u0941\u0930\u094d\u0924\u0917\u093e\u0932", + "PE": "\u092a\u0947\u0930\u0942", + "PR": "\u092a\u094b\u0930\u094d\u091f\u094b \u0930\u093f\u0915\u094b", + "PL": "\u092a\u094b\u0932\u0948\u0902\u0921", + "FJ": "\u092b\u093c\u093f\u091c\u0940", + "FI": "\u092b\u093c\u093f\u0928\u0932\u0948\u0902\u0921", + "PH": "\u092b\u093c\u093f\u0932\u093f\u092a\u0940\u0902\u0938", + "PS": "\u092b\u093c\u093f\u0932\u093f\u0938\u094d\u0924\u0940\u0928\u0940 \u0915\u094d\u0937\u0947\u0924\u094d\u0930", + "FO": "\u092b\u093c\u0947\u0930\u094b \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "FK": "\u092b\u093c\u0949\u0915\u0932\u0948\u0902\u0921 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "FR": "\u092b\u093c\u094d\u0930\u093e\u0902\u0938", + "TF": "\u092b\u093c\u094d\u0930\u093e\u0902\u0938\u0940\u0938\u0940 \u0926\u0915\u094d\u0937\u093f\u0923\u0940 \u0915\u094d\u0937\u0947\u0924\u094d\u0930", + "GF": "\u092b\u093c\u094d\u0930\u0947\u0902\u091a \u0917\u0941\u092f\u093e\u0928\u093e", + "PF": "\u092b\u093c\u094d\u0930\u0947\u0902\u091a \u092a\u094b\u0932\u093f\u0928\u0947\u0936\u093f\u092f\u093e", + "BM": "\u092c\u0930\u092e\u0942\u0921\u093e", + "BH": "\u092c\u0939\u0930\u0940\u0928", + "BS": "\u092c\u0939\u093e\u092e\u093e\u0938", + "BD": "\u092c\u093e\u0902\u0917\u094d\u0932\u093e\u0926\u0947\u0936", + "BB": "\u092c\u093e\u0930\u092c\u093e\u0921\u094b\u0938", + "BI": "\u092c\u0941\u0930\u0941\u0902\u0921\u0940", + "BF": "\u092c\u0941\u0930\u094d\u0915\u093f\u0928\u093e \u092b\u093c\u093e\u0938\u094b", + "BG": "\u092c\u0941\u0932\u094d\u0917\u093e\u0930\u093f\u092f\u093e", + "BJ": "\u092c\u0947\u0928\u093f\u0928", + "BY": "\u092c\u0947\u0932\u093e\u0930\u0942\u0938", + "BZ": "\u092c\u0947\u0932\u0940\u091c\u093c", + "BE": "\u092c\u0947\u0932\u094d\u091c\u093f\u092f\u092e", + "BW": "\u092c\u094b\u0924\u094d\u0938\u094d\u0935\u093e\u0928\u093e", + "BO": "\u092c\u094b\u0932\u0940\u0935\u093f\u092f\u093e", + "BV": "\u092c\u094b\u0935\u0947\u0924 \u0926\u094d\u0935\u0940\u092a", + "BA": "\u092c\u094b\u0938\u094d\u0928\u093f\u092f\u093e \u0914\u0930 \u0939\u0930\u094d\u091c\u093c\u0947\u0917\u094b\u0935\u093f\u0928\u093e", + "BR": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932", + "VG": "\u092c\u094d\u0930\u093f\u091f\u093f\u0936 \u0935\u0930\u094d\u091c\u093f\u0928 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "IO": "\u092c\u094d\u0930\u093f\u091f\u093f\u0936 \u0939\u093f\u0902\u0926 \u092e\u0939\u093e\u0938\u093e\u0917\u0930\u0940\u092f \u0915\u094d\u0937\u0947\u0924\u094d\u0930", + "BN": "\u092c\u094d\u0930\u0942\u0928\u0947\u0908", + "IN": "\u092d\u093e\u0930\u0924", + "BT": "\u092d\u0942\u091f\u093e\u0928", + "MN": "\u092e\u0902\u0917\u094b\u0932\u093f\u092f\u093e", + "MO": "\u092e\u0915\u093e\u090a (\u0935\u093f\u0936\u0947\u0937 \u092a\u094d\u0930\u0936\u093e\u0938\u0928\u093f\u0915 \u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u091a\u0940\u0928)", + "CF": "\u092e\u0927\u094d\u092f \u0905\u092b\u093c\u094d\u0930\u0940\u0915\u0940 \u0917\u0923\u0930\u093e\u091c\u094d\u092f", + "MW": "\u092e\u0932\u093e\u0935\u0940", + "MY": "\u092e\u0932\u0947\u0936\u093f\u092f\u093e", + "FM": "\u092e\u093e\u0907\u0915\u094d\u0930\u094b\u0928\u0947\u0936\u093f\u092f\u093e", + "YT": "\u092e\u093e\u092f\u094b\u0924\u0947", + "MQ": "\u092e\u093e\u0930\u094d\u091f\u0940\u0928\u093f\u0915", + "MH": "\u092e\u093e\u0930\u094d\u0936\u0932 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "MV": "\u092e\u093e\u0932\u0926\u0940\u0935", + "ML": "\u092e\u093e\u0932\u0940", + "MT": "\u092e\u093e\u0932\u094d\u091f\u093e", + "EG": "\u092e\u093f\u0938\u094d\u0930", + "MG": "\u092e\u0947\u0921\u093e\u0917\u093e\u0938\u094d\u0915\u0930", + "MX": "\u092e\u0948\u0915\u094d\u0938\u093f\u0915\u094b", + "MR": "\u092e\u0949\u0930\u093f\u091f\u093e\u0928\u093f\u092f\u093e", + "MU": "\u092e\u0949\u0930\u0940\u0936\u0938", + "MD": "\u092e\u0949\u0932\u094d\u0921\u094b\u0935\u093e", + "MS": "\u092e\u094b\u0902\u091f\u0938\u0947\u0930\u093e\u0924", + "ME": "\u092e\u094b\u0902\u091f\u0947\u0928\u0947\u0917\u094d\u0930\u094b", + "MZ": "\u092e\u094b\u091c\u093c\u093e\u0902\u092c\u093f\u0915", + "MC": "\u092e\u094b\u0928\u093e\u0915\u094b", + "MA": "\u092e\u094b\u0930\u0915\u094d\u0915\u094b", + "MM": "\u092e\u094d\u092f\u093e\u0902\u092e\u093e\u0930 (\u092c\u0930\u094d\u092e\u093e)", + "YE": "\u092f\u092e\u0928", + "UG": "\u092f\u0941\u0917\u093e\u0902\u0921\u093e", + "UM": "\u092f\u0942\u0970\u090f\u0938\u0970 \u0906\u0909\u091f\u0932\u093e\u0907\u0902\u0917 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "VI": "\u092f\u0942\u0970\u090f\u0938\u0970 \u0935\u0930\u094d\u091c\u093f\u0928 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "UA": "\u092f\u0942\u0915\u094d\u0930\u0947\u0928", + "GB": "\u092f\u0942\u0928\u093e\u0907\u091f\u0947\u0921 \u0915\u093f\u0902\u0917\u0921\u092e", + "GR": "\u092f\u0942\u0928\u093e\u0928", + "RW": "\u0930\u0935\u093e\u0902\u0921\u093e", + "RE": "\u0930\u093f\u092f\u0942\u0928\u093f\u092f\u0928", + "RU": "\u0930\u0942\u0938", + "RO": "\u0930\u094b\u092e\u093e\u0928\u093f\u092f\u093e", + "LU": "\u0932\u0917\u094d\u091c\u093c\u092e\u092c\u0930\u094d\u0917", + "LR": "\u0932\u093e\u0907\u092c\u0947\u0930\u093f\u092f\u093e", + "LA": "\u0932\u093e\u0913\u0938", + "LV": "\u0932\u093e\u0924\u0935\u093f\u092f\u093e", + "LI": "\u0932\u093f\u091a\u0947\u0902\u0938\u094d\u091f\u0940\u0928", + "LT": "\u0932\u093f\u0925\u0941\u0906\u0928\u093f\u092f\u093e", + "LY": "\u0932\u0940\u092c\u093f\u092f\u093e", + "LB": "\u0932\u0947\u092c\u0928\u093e\u0928", + "LS": "\u0932\u0947\u0938\u094b\u0925\u094b", + "VU": "\u0935\u0928\u0941\u0906\u0924\u0942", + "WF": "\u0935\u093e\u0932\u093f\u0938 \u0914\u0930 \u092b\u093c\u094d\u092f\u0942\u091a\u0942\u0928\u093e", + "VN": "\u0935\u093f\u092f\u0924\u0928\u093e\u092e", + "VA": "\u0935\u0947\u091f\u093f\u0915\u0928 \u0938\u093f\u091f\u0940", + "VE": "\u0935\u0947\u0928\u0947\u091c\u093c\u0941\u090f\u0932\u093e", + "LK": "\u0936\u094d\u0930\u0940\u0932\u0902\u0915\u093e", + "AE": "\u0938\u0902\u092f\u0941\u0915\u094d\u0924 \u0905\u0930\u092c \u0905\u092e\u0940\u0930\u093e\u0924", + "US": "\u0938\u0902\u092f\u0941\u0915\u094d\u0924 \u0930\u093e\u091c\u094d\u092f", + "SA": "\u0938\u090a\u0926\u0940 \u0905\u0930\u092c", + "WS": "\u0938\u092e\u094b\u0906", + "RS": "\u0938\u0930\u094d\u092c\u093f\u092f\u093e", + "CY": "\u0938\u093e\u0907\u092a\u094d\u0930\u0938", + "ST": "\u0938\u093e\u0913 \u091f\u094b\u092e \u0914\u0930 \u092a\u094d\u0930\u093f\u0902\u0938\u093f\u092a\u0947", + "SG": "\u0938\u093f\u0902\u0917\u093e\u092a\u0941\u0930", + "SX": "\u0938\u093f\u0902\u091f \u092e\u093e\u0930\u094d\u091f\u093f\u0928", + "SL": "\u0938\u093f\u090f\u0930\u093e \u0932\u093f\u092f\u094b\u0928", + "SY": "\u0938\u0940\u0930\u093f\u092f\u093e", + "SD": "\u0938\u0942\u0921\u093e\u0928", + "SR": "\u0938\u0942\u0930\u0940\u0928\u093e\u092e", + "KN": "\u0938\u0947\u0902\u091f \u0915\u093f\u091f\u094d\u0938 \u0914\u0930 \u0928\u0947\u0935\u093f\u0938", + "PM": "\u0938\u0947\u0902\u091f \u092a\u093f\u090f\u0930\u0947 \u0914\u0930 \u092e\u093f\u0915\u094d\u0935\u0947\u0932\u093e\u0928", + "BL": "\u0938\u0947\u0902\u091f \u092c\u093e\u0930\u094d\u0925\u0947\u0932\u0947\u092e\u0940", + "MF": "\u0938\u0947\u0902\u091f \u092e\u093e\u0930\u094d\u091f\u093f\u0928", + "LC": "\u0938\u0947\u0902\u091f \u0932\u0942\u0938\u093f\u092f\u093e", + "VC": "\u0938\u0947\u0902\u091f \u0935\u093f\u0902\u0938\u0947\u0902\u091f \u0914\u0930 \u0917\u094d\u0930\u0947\u0928\u093e\u0921\u093e\u0907\u0902\u0938", + "SH": "\u0938\u0947\u0902\u091f \u0939\u0947\u0932\u0947\u0928\u093e", + "SN": "\u0938\u0947\u0928\u0947\u0917\u0932", + "SC": "\u0938\u0947\u0936\u0947\u0932\u094d\u0938", + "SM": "\u0938\u0948\u0928 \u092e\u0947\u0930\u0940\u0928\u094b", + "SO": "\u0938\u094b\u092e\u093e\u0932\u093f\u092f\u093e", + "SB": "\u0938\u094b\u0932\u094b\u092e\u0928 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "ES": "\u0938\u094d\u092a\u0947\u0928", + "SK": "\u0938\u094d\u0932\u094b\u0935\u093e\u0915\u093f\u092f\u093e", + "SI": "\u0938\u094d\u0932\u094b\u0935\u0947\u0928\u093f\u092f\u093e", + "SZ": "\u0938\u094d\u0935\u093e\u091c\u093c\u0940\u0932\u0948\u0902\u0921", + "SJ": "\u0938\u094d\u0935\u093e\u0932\u092c\u093e\u0930\u094d\u0921 \u0914\u0930 \u091c\u093e\u0928 \u092e\u093e\u092f\u0947\u0928", + "CH": "\u0938\u094d\u0935\u093f\u091f\u094d\u091c\u093c\u0930\u0932\u0948\u0902\u0921", + "SE": "\u0938\u094d\u0935\u0940\u0921\u0928", + "HU": "\u0939\u0902\u0917\u0930\u0940", + "HM": "\u0939\u0930\u094d\u0921 \u0926\u094d\u0935\u0940\u092a \u0914\u0930 \u092e\u0948\u0915\u0921\u094b\u0928\u0949\u0932\u094d\u0921 \u0926\u094d\u0935\u0940\u092a\u0938\u092e\u0942\u0939", + "HK": "\u0939\u093e\u0901\u0917 \u0915\u093e\u0901\u0917 (\u091a\u0940\u0928 \u0935\u093f\u0936\u0947\u0937 \u092a\u094d\u0930\u0936\u093e\u0938\u0928\u093f\u0915 \u0915\u094d\u0937\u0947\u0924\u094d\u0930)", + "HT": "\u0939\u0948\u0924\u0940", + "HN": "\u0939\u094b\u0902\u0921\u0942\u0930\u093e\u0938" +} diff --git a/public/intl/country/hr-HR.json b/public/intl/country/hr-HR.json new file mode 100644 index 0000000..40360e6 --- /dev/null +++ b/public/intl/country/hr-HR.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AX": "\u00c5landski otoci", + "AL": "Albanija", + "DZ": "Al\u017eir", + "AS": "Ameri\u010dka Samoa", + "VI": "Ameri\u010dki Djevi\u010danski otoci", + "AD": "Andora", + "AO": "Angola", + "AI": "Angvila", + "AQ": "Antarktika", + "AG": "Antigva i Barbuda", + "AR": "Argentina", + "AM": "Armenija", + "AW": "Aruba", + "AU": "Australija", + "AT": "Austrija", + "AZ": "Azerbajd\u017ean", + "BS": "Bahami", + "BH": "Bahrein", + "BD": "Banglade\u0161", + "BB": "Barbados", + "BE": "Belgija", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermudi", + "BY": "Bjelorusija", + "BW": "Bocvana", + "BO": "Bolivija", + "BA": "Bosna i Hercegovina", + "CX": "Bo\u017ei\u0107ni otok", + "BR": "Brazil", + "VG": "Britanski Djevi\u010danski otoci", + "IO": "Britanski Indijskooceanski teritorij", + "BN": "Brunej", + "BG": "Bugarska", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "Butan", + "CY": "Cipar", + "CK": "Cookovi Otoci", + "ME": "Crna Gora", + "CW": "Cura\u00e7ao", + "TD": "\u010cad", + "CZ": "\u010ce\u0161ka", + "CL": "\u010cile", + "DK": "Danska", + "DM": "Dominika", + "DO": "Dominikanska Republika", + "DJ": "D\u017eibuti", + "EG": "Egipat", + "EC": "Ekvador", + "GQ": "Ekvatorska Gvineja", + "ER": "Eritreja", + "EE": "Estonija", + "SZ": "Esvatini", + "ET": "Etiopija", + "FK": "Falklandski otoci", + "FO": "Farski otoci", + "FJ": "Fid\u017ei", + "PH": "Filipini", + "FI": "Finska", + "FR": "Francuska", + "GF": "Francuska Gijana", + "PF": "Francuska Polinezija", + "TF": "Francuski ju\u017eni i antarkti\u010dki teritoriji", + "GA": "Gabon", + "GM": "Gambija", + "GH": "Gana", + "GI": "Gibraltar", + "GR": "Gr\u010dka", + "GD": "Grenada", + "GL": "Grenland", + "GE": "Gruzija", + "GP": "Guadalupe", + "GU": "Guam", + "GG": "Guernsey", + "GY": "Gvajana", + "GT": "Gvatemala", + "GN": "Gvineja", + "GW": "Gvineja Bisau", + "HT": "Haiti", + "HN": "Honduras", + "HR": "Hrvatska", + "IN": "Indija", + "ID": "Indonezija", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irska", + "IS": "Island", + "IT": "Italija", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordan", + "GS": "Ju\u017ena Georgija i Ju\u017eni Sendvi\u010dki Otoci", + "KR": "Ju\u017ena Koreja", + "SS": "Ju\u017eni Sudan", + "ZA": "Ju\u017enoafri\u010dka Republika", + "KY": "Kajmanski otoci", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "BQ": "Karipski otoci Nizozemske", + "QA": "Katar", + "KZ": "Kazahstan", + "KE": "Kenija", + "CN": "Kina", + "KG": "Kirgistan", + "KI": "Kiribati", + "CC": "Kokosovi (Keelingovi) otoci", + "CO": "Kolumbija", + "KM": "Komori", + "CG": "Kongo - Brazzaville", + "CD": "Kongo - Kinshasa", + "XK": "Kosovo", + "CR": "Kostarika", + "CU": "Kuba", + "KW": "Kuvajt", + "LA": "Laos", + "LV": "Latvija", + "LS": "Lesoto", + "LB": "Libanon", + "LR": "Liberija", + "LY": "Libija", + "LI": "Lihten\u0161tajn", + "LT": "Litva", + "LU": "Luksemburg", + "MG": "Madagaskar", + "HU": "Ma\u0111arska", + "MW": "Malavi", + "MV": "Maldivi", + "MY": "Malezija", + "ML": "Mali", + "UM": "Mali udaljeni otoci SAD-a", + "MT": "Malta", + "MA": "Maroko", + "MH": "Mar\u0161alovi Otoci", + "MQ": "Martinique", + "MR": "Mauretanija", + "MU": "Mauricijus", + "YT": "Mayotte", + "MX": "Meksiko", + "FM": "Mikronezija", + "MM": "Mjanmar (Burma)", + "MD": "Moldavija", + "MC": "Monako", + "MN": "Mongolija", + "MS": "Montserrat", + "MZ": "Mozambik", + "NA": "Namibija", + "NR": "Nauru", + "NP": "Nepal", + "NE": "Niger", + "NG": "Nigerija", + "NI": "Nikaragva", + "NU": "Niue", + "NL": "Nizozemska", + "NO": "Norve\u0161ka", + "NC": "Nova Kaledonija", + "NZ": "Novi Zeland", + "DE": "Njema\u010dka", + "CI": "Obala Bjelokosti", + "OM": "Oman", + "HM": "Otoci Heard i McDonald", + "PN": "Otoci Pitcairn", + "TC": "Otoci Turks i Caicos", + "BV": "Otok Bouvet", + "IM": "Otok Man", + "NF": "Otok Norfolk", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinsko podru\u010dje", + "PA": "Panama", + "PG": "Papua Nova Gvineja", + "PY": "Paragvaj", + "PE": "Peru", + "PL": "Poljska", + "PR": "Portoriko", + "PT": "Portugal", + "HK": "PUP Hong Kong Kina", + "MO": "PUP Makao Kina", + "RE": "R\u00e9union", + "RW": "Ruanda", + "RO": "Rumunjska", + "RU": "Rusija", + "BL": "Saint Barth\u00e9lemy", + "MF": "Saint Martin", + "PM": "Saint-Pierre-et-Miquelon", + "SB": "Salomonski Otoci", + "SV": "Salvador", + "WS": "Samoa", + "SM": "San Marino", + "SA": "Saudijska Arabija", + "SC": "Sej\u0161eli", + "SN": "Senegal", + "SL": "Sijera Leone", + "SG": "Singapur", + "SX": "Sint Maarten", + "SY": "Sirija", + "US": "Sjedinjene Ameri\u010dke Dr\u017eave", + "KP": "Sjeverna Koreja", + "MK": "Sjeverna Makedonija", + "MP": "Sjevernomarijanski otoci", + "SK": "Slova\u010dka", + "SI": "Slovenija", + "SO": "Somalija", + "RS": "Srbija", + "CF": "Srednjoafri\u010dka Republika", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard i Jan Mayen", + "SH": "Sveta Helena", + "LC": "Sveta Lucija", + "KN": "Sveti Kristofor i Nevis", + "ST": "Sveti Toma i Princip", + "VC": "Sveti Vincent i Grenadini", + "ES": "\u0160panjolska", + "LK": "\u0160ri Lanka", + "SE": "\u0160vedska", + "CH": "\u0160vicarska", + "TJ": "Tad\u017eikistan", + "TH": "Tajland", + "TW": "Tajvan", + "TZ": "Tanzanija", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad i Tobago", + "TN": "Tunis", + "TM": "Turkmenistan", + "TR": "Turska", + "TV": "Tuvalu", + "UG": "Uganda", + "AE": "Ujedinjeni Arapski Emirati", + "GB": "Ujedinjeno Kraljevstvo", + "UA": "Ukrajina", + "UY": "Urugvaj", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatikanski Grad", + "VE": "Venezuela", + "VN": "Vijetnam", + "WF": "Wallis i Futuna", + "ZM": "Zambija", + "EH": "Zapadna Sahara", + "CV": "Zelenortska Republika", + "ZW": "Zimbabve" +} diff --git a/public/intl/country/hu-HU.json b/public/intl/country/hu-HU.json new file mode 100644 index 0000000..69624a5 --- /dev/null +++ b/public/intl/country/hu-HU.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganiszt\u00e1n", + "AX": "\u00c5land-szigetek", + "AL": "Alb\u00e1nia", + "DZ": "Alg\u00e9ria", + "AS": "Amerikai Szamoa", + "VI": "Amerikai Virgin-szigetek", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktisz", + "AG": "Antigua \u00e9s Barbuda", + "AR": "Argent\u00edna", + "AW": "Aruba", + "AU": "Ausztr\u00e1lia", + "AT": "Ausztria", + "UM": "Az USA lakatlan k\u00fclbirtokai", + "AZ": "Azerbajdzs\u00e1n", + "BS": "Bahama-szigetek", + "BH": "Bahrein", + "BD": "Banglades", + "BB": "Barbados", + "BY": "Belarusz", + "BE": "Belgium", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhut\u00e1n", + "GW": "Bissau-Guinea", + "BO": "Bol\u00edvia", + "BA": "Bosznia-Hercegovina", + "BW": "Botswana", + "BV": "Bouvet-sziget", + "BR": "Braz\u00edlia", + "IO": "Brit Indiai-\u00f3ce\u00e1ni Ter\u00fclet", + "VG": "Brit Virgin-szigetek", + "BN": "Brunei", + "BG": "Bulg\u00e1ria", + "BF": "Burkina Faso", + "BI": "Burundi", + "CL": "Chile", + "CY": "Ciprus", + "KM": "Comore-szigetek", + "CK": "Cook-szigetek", + "CR": "Costa Rica", + "CW": "Cura\u00e7ao", + "TD": "Cs\u00e1d", + "CZ": "Csehorsz\u00e1g", + "DK": "D\u00e1nia", + "ZA": "D\u00e9l-afrikai K\u00f6zt\u00e1rsas\u00e1g", + "KR": "D\u00e9l-Korea", + "SS": "D\u00e9l-Szud\u00e1n", + "GS": "D\u00e9li-Georgia \u00e9s D\u00e9li-Sandwich-szigetek", + "DM": "Dominika", + "DO": "Dominikai K\u00f6zt\u00e1rsas\u00e1g", + "DJ": "Dzsibuti", + "EC": "Ecuador", + "GQ": "Egyenl\u00edt\u0151i-Guinea", + "US": "Egyes\u00fclt \u00c1llamok", + "AE": "Egyes\u00fclt Arab Em\u00edrs\u00e9gek", + "GB": "Egyes\u00fclt Kir\u00e1lys\u00e1g", + "EG": "Egyiptom", + "CI": "Elef\u00e1ntcsontpart", + "ER": "Eritrea", + "KP": "\u00c9szak-Korea", + "MK": "\u00c9szak-Maced\u00f3nia", + "MP": "\u00c9szaki Mariana-szigetek", + "EE": "\u00c9sztorsz\u00e1g", + "ET": "Eti\u00f3pia", + "FK": "Falkland-szigetek", + "FO": "Fer\u00f6er szigetek", + "FJ": "Fidzsi", + "FI": "Finnorsz\u00e1g", + "TF": "Francia D\u00e9li Ter\u00fcletek", + "GF": "Francia Guyana", + "PF": "Francia Polin\u00e9zia", + "FR": "Franciaorsz\u00e1g", + "PH": "F\u00fcl\u00f6p-szigetek", + "GA": "Gabon", + "GM": "Gambia", + "GH": "Gh\u00e1na", + "GI": "Gibralt\u00e1r", + "GR": "G\u00f6r\u00f6gorsz\u00e1g", + "GD": "Grenada", + "GL": "Gr\u00f6nland", + "GE": "Gr\u00fazia", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard-sziget \u00e9s McDonald-szigetek", + "BQ": "Holland Karib-t\u00e9rs\u00e9g", + "NL": "Hollandia", + "HN": "Honduras", + "HK": "Hongkong KKT", + "HR": "Horv\u00e1torsz\u00e1g", + "IN": "India", + "ID": "Indon\u00e9zia", + "IQ": "Irak", + "IR": "Ir\u00e1n", + "IE": "\u00cdrorsz\u00e1g", + "IS": "Izland", + "IL": "Izrael", + "JM": "Jamaica", + "JP": "Jap\u00e1n", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jord\u00e1nia", + "KY": "Kajm\u00e1n-szigetek", + "KH": "Kambodzsa", + "CM": "Kamerun", + "CA": "Kanada", + "CX": "Kar\u00e1csony-sziget", + "QA": "Katar", + "KZ": "Kazahszt\u00e1n", + "TL": "Kelet-Timor", + "KE": "Kenya", + "CN": "K\u00edna", + "KG": "Kirgiziszt\u00e1n", + "KI": "Kiribati", + "CC": "K\u00f3kusz (Keeling)-szigetek", + "CO": "Kolumbia", + "CG": "Kong\u00f3 - Brazzaville", + "CD": "Kong\u00f3 - Kinshasa", + "XK": "Kosovo", + "CF": "K\u00f6z\u00e9p-afrikai K\u00f6zt\u00e1rsas\u00e1g", + "CU": "Kuba", + "KW": "Kuvait", + "LA": "Laosz", + "PL": "Lengyelorsz\u00e1g", + "LS": "Lesotho", + "LV": "Lettorsz\u00e1g", + "LB": "Libanon", + "LR": "Lib\u00e9ria", + "LY": "L\u00edbia", + "LI": "Liechtenstein", + "LT": "Litv\u00e1nia", + "LU": "Luxemburg", + "MG": "Madagaszk\u00e1r", + "HU": "Magyarorsz\u00e1g", + "MO": "Maka\u00f3 KKT", + "MY": "Malajzia", + "MW": "Malawi", + "MV": "Mald\u00edv-szigetek", + "ML": "Mali", + "MT": "M\u00e1lta", + "IM": "Man-sziget", + "MA": "Marokk\u00f3", + "MH": "Marshall-szigetek", + "MQ": "Martinique", + "MR": "Maurit\u00e1nia", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexik\u00f3", + "MM": "Mianmar", + "FM": "Mikron\u00e9zia", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mong\u00f3lia", + "ME": "Montenegr\u00f3", + "MS": "Montserrat", + "MZ": "Mozambik", + "NA": "Nam\u00edbia", + "NR": "Nauru", + "DE": "N\u00e9metorsz\u00e1g", + "NP": "Nep\u00e1l", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nig\u00e9ria", + "NU": "Niue", + "NF": "Norfolk-sziget", + "NO": "Norv\u00e9gia", + "EH": "Nyugat-Szahara", + "IT": "Olaszorsz\u00e1g", + "OM": "Om\u00e1n", + "RU": "Oroszorsz\u00e1g", + "AM": "\u00d6rm\u00e9nyorsz\u00e1g", + "PK": "Pakiszt\u00e1n", + "PW": "Palau", + "PS": "Palesztin Ter\u00fclet", + "PA": "Panama", + "PG": "P\u00e1pua \u00daj-Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairn-szigetek", + "PT": "Portug\u00e1lia", + "PR": "Puerto Rico", + "RE": "R\u00e9union", + "RO": "Rom\u00e1nia", + "RW": "Ruanda", + "KN": "Saint Kitts \u00e9s Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "VC": "Saint Vincent \u00e9s a Grenadine-szigetek", + "BL": "Saint-Barth\u00e9lemy", + "PM": "Saint-Pierre \u00e9s Miquelon", + "SB": "Salamon-szigetek", + "SV": "Salvador", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 \u00e9s Pr\u00edncipe", + "SC": "Seychelle-szigetek", + "SL": "Sierra Leone", + "SX": "Sint Maarten", + "ES": "Spanyolorsz\u00e1g", + "LK": "Sr\u00ed Lanka", + "SR": "Suriname", + "CH": "Sv\u00e1jc", + "SJ": "Svalbard \u00e9s Jan Mayen", + "SE": "Sv\u00e9dorsz\u00e1g", + "WS": "Szamoa", + "SA": "Sza\u00fad-Ar\u00e1bia", + "SN": "Szeneg\u00e1l", + "SH": "Szent Ilona", + "RS": "Szerbia", + "SG": "Szingap\u00far", + "SY": "Sz\u00edria", + "SK": "Szlov\u00e1kia", + "SI": "Szlov\u00e9nia", + "SO": "Szom\u00e1lia", + "SD": "Szud\u00e1n", + "SZ": "Szv\u00e1zif\u00f6ld", + "TJ": "T\u00e1dzsikiszt\u00e1n", + "TW": "Tajvan", + "TZ": "Tanz\u00e1nia", + "TH": "Thaif\u00f6ld", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TR": "T\u00f6r\u00f6korsz\u00e1g", + "TT": "Trinidad \u00e9s Tobago", + "TN": "Tun\u00e9zia", + "TC": "Turks- \u00e9s Caicos-szigetek", + "TV": "Tuvalu", + "TM": "T\u00fcrkmeniszt\u00e1n", + "UG": "Uganda", + "NC": "\u00daj-Kaled\u00f3nia", + "NZ": "\u00daj-Z\u00e9land", + "UA": "Ukrajna", + "UY": "Uruguay", + "UZ": "\u00dczbegiszt\u00e1n", + "VU": "Vanuatu", + "VA": "Vatik\u00e1n", + "VE": "Venezuela", + "VN": "Vietn\u00e1m", + "WF": "Wallis \u00e9s Futuna", + "ZM": "Zambia", + "ZW": "Zimbabwe", + "CV": "Z\u00f6ld-foki K\u00f6zt\u00e1rsas\u00e1g" +} diff --git a/public/intl/country/id-ID.json b/public/intl/country/id-ID.json new file mode 100644 index 0000000..951706e --- /dev/null +++ b/public/intl/country/id-ID.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "ZA": "Afrika Selatan", + "AL": "Albania", + "DZ": "Aljazair", + "US": "Amerika Serikat", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktika", + "AG": "Antigua dan Barbuda", + "SA": "Arab Saudi", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaijan", + "BS": "Bahama", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "NL": "Belanda", + "BQ": "Belanda Karibia", + "BY": "Belarus", + "BE": "Belgia", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia dan Herzegovina", + "BW": "Botswana", + "BR": "Brasil", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "TD": "Cad", + "CZ": "Ceko", + "CL": "Cile", + "CI": "C\u00f4te d\u2019Ivoire", + "CW": "Cura\u00e7ao", + "DK": "Denmark", + "DM": "Dominika", + "EC": "Ekuador", + "SV": "El Salvador", + "ER": "Eritrea", + "EE": "Estonia", + "SZ": "eSwatini", + "ET": "Etiopia", + "FJ": "Fiji", + "PH": "Filipina", + "FI": "Finlandia", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GS": "Georgia Selatan & Kep. Sandwich Selatan", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GL": "Grinlandia", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GQ": "Guinea Ekuatorial", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "GF": "Guyana Prancis", + "HT": "Haiti", + "HN": "Honduras", + "HK": "Hong Kong DAK Tiongkok", + "HU": "Hungaria", + "IN": "India", + "ID": "Indonesia", + "GB": "Inggris Raya", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irlandia", + "IS": "Islandia", + "IL": "Israel", + "IT": "Italia", + "JM": "Jamaika", + "JP": "Jepang", + "DE": "Jerman", + "JE": "Jersey", + "DJ": "Jibuti", + "NC": "Kaledonia Baru", + "KH": "Kamboja", + "CM": "Kamerun", + "CA": "Kanada", + "KZ": "Kazakstan", + "KE": "Kenya", + "AX": "Kepulauan Aland", + "KY": "Kepulauan Cayman", + "CC": "Kepulauan Cocos (Keeling)", + "CK": "Kepulauan Cook", + "FK": "Kepulauan Falkland", + "FO": "Kepulauan Faroe", + "MP": "Kepulauan Mariana Utara", + "MH": "Kepulauan Marshall", + "NF": "Kepulauan Norfolk", + "PN": "Kepulauan Pitcairn", + "SB": "Kepulauan Solomon", + "SJ": "Kepulauan Svalbard dan Jan Mayen", + "UM": "Kepulauan Terluar A.S.", + "TC": "Kepulauan Turks dan Caicos", + "VI": "Kepulauan Virgin Amerika Serikat", + "VG": "Kepulauan Virgin Britania Raya", + "WF": "Kepulauan Wallis dan Futuna", + "KG": "Kirgistan", + "KI": "Kiribati", + "CO": "Kolombia", + "KM": "Komoro", + "CG": "Kongo - Brazzaville", + "CD": "Kongo - Kinshasa", + "KR": "Korea Selatan", + "KP": "Korea Utara", + "XK": "Kosovo", + "CR": "Kosta Rika", + "HR": "Kroasia", + "CU": "Kuba", + "KW": "Kuwait", + "LA": "Laos", + "LV": "Latvia", + "LB": "Lebanon", + "LS": "Lesotho", + "LR": "Liberia", + "LY": "Libia", + "LI": "Liechtenstein", + "LT": "Lituania", + "LU": "Luksemburg", + "MG": "Madagaskar", + "MO": "Makau DAK Tiongkok", + "MK": "Makedonia Utara", + "MV": "Maladewa", + "MW": "Malawi", + "MY": "Malaysia", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroko", + "MQ": "Martinik", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Meksiko", + "EG": "Mesir", + "FM": "Mikronesia", + "MD": "Moldova", + "MC": "Monako", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambik", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NE": "Niger", + "NG": "Nigeria", + "NI": "Nikaragua", + "NU": "Niue", + "NO": "Norwegia", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua Nugini", + "PY": "Paraguay", + "PE": "Peru", + "PL": "Polandia", + "PF": "Polinesia Prancis", + "PT": "Portugal", + "FR": "Prancis", + "PR": "Puerto Riko", + "BV": "Pulau Bouvet", + "HM": "Pulau Heard dan Kepulauan McDonald", + "IM": "Pulau Man", + "CX": "Pulau Natal", + "QA": "Qatar", + "CF": "Republik Afrika Tengah", + "DO": "Republik Dominika", + "RE": "R\u00e9union", + "RO": "Rumania", + "RU": "Rusia", + "RW": "Rwanda", + "EH": "Sahara Barat", + "BL": "Saint Barth\u00e9lemy", + "SH": "Saint Helena", + "KN": "Saint Kitts dan Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "PM": "Saint Pierre dan Miquelon", + "VC": "Saint Vincent dan Grenadine", + "WS": "Samoa", + "AS": "Samoa Amerika", + "SM": "San Marino", + "ST": "Sao Tome dan Principe", + "NZ": "Selandia Baru", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapura", + "SX": "Sint Maarten", + "CY": "Siprus", + "SK": "Slovakia", + "SI": "Slovenia", + "SO": "Somalia", + "ES": "Spanyol", + "LK": "Sri Lanka", + "SD": "Sudan", + "SS": "Sudan Selatan", + "SY": "Suriah", + "SR": "Suriname", + "SE": "Swedia", + "CH": "Swiss", + "TW": "Taiwan", + "TJ": "Tajikistan", + "CV": "Tanjung Verde", + "TZ": "Tanzania", + "TH": "Thailand", + "TL": "Timor Leste", + "CN": "Tiongkok", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad dan Tobago", + "TN": "Tunisia", + "TR": "Turki", + "TM": "Turkimenistan", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraina", + "AE": "Uni Emirat Arab", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatikan", + "VE": "Venezuela", + "VN": "Vietnam", + "IO": "Wilayah Inggris di Samudra Hindia", + "PS": "Wilayah Palestina", + "TF": "Wilayah Selatan Perancis", + "YE": "Yaman", + "JO": "Yordania", + "GR": "Yunani", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/it-IT.json b/public/intl/country/it-IT.json new file mode 100644 index 0000000..aba559e --- /dev/null +++ b/public/intl/country/it-IT.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AL": "Albania", + "DZ": "Algeria", + "UM": "Altre isole americane del Pacifico", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antartide", + "AG": "Antigua e Barbuda", + "SA": "Arabia Saudita", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaigian", + "BS": "Bahamas", + "BH": "Bahrein", + "BD": "Bangladesh", + "BB": "Barbados", + "BE": "Belgio", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BY": "Bielorussia", + "BO": "Bolivia", + "BA": "Bosnia ed Erzegovina", + "BW": "Botswana", + "BR": "Brasile", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambogia", + "CM": "Camerun", + "CA": "Canada", + "CV": "Capo Verde", + "BQ": "Caraibi olandesi", + "CZ": "Cechia", + "TD": "Ciad", + "CL": "Cile", + "CN": "Cina", + "CY": "Cipro", + "VA": "Citt\u00e0 del Vaticano", + "CO": "Colombia", + "KM": "Comore", + "CD": "Congo - Kinshasa", + "CG": "Congo-Brazzaville", + "KP": "Corea del Nord", + "KR": "Corea del Sud", + "CI": "Costa d\u2019Avorio", + "CR": "Costa Rica", + "HR": "Croazia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DK": "Danimarca", + "DM": "Dominica", + "EC": "Ecuador", + "EG": "Egitto", + "SV": "El Salvador", + "AE": "Emirati Arabi Uniti", + "ER": "Eritrea", + "EE": "Estonia", + "ET": "Etiopia", + "FJ": "Figi", + "PH": "Filippine", + "FI": "Finlandia", + "FR": "Francia", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GS": "Georgia del Sud e Sandwich australi", + "DE": "Germania", + "GH": "Ghana", + "JM": "Giamaica", + "JP": "Giappone", + "GI": "Gibilterra", + "DJ": "Gibuti", + "JO": "Giordania", + "GR": "Grecia", + "GD": "Grenada", + "GL": "Groenlandia", + "GP": "Guadalupa", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GQ": "Guinea Equatoriale", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "GF": "Guyana francese", + "HT": "Haiti", + "HN": "Honduras", + "IN": "India", + "ID": "Indonesia", + "IR": "Iran", + "IQ": "Iraq", + "IE": "Irlanda", + "IS": "Islanda", + "BV": "Isola Bouvet", + "CX": "Isola Christmas", + "IM": "Isola di Man", + "NF": "Isola Norfolk", + "AX": "Isole \u00c5land", + "KY": "Isole Cayman", + "CC": "Isole Cocos (Keeling)", + "CK": "Isole Cook", + "FO": "Isole F\u00e6r \u00d8er", + "FK": "Isole Falkland", + "HM": "Isole Heard e McDonald", + "MP": "Isole Marianne settentrionali", + "MH": "Isole Marshall", + "PN": "Isole Pitcairn", + "SB": "Isole Salomone", + "TC": "Isole Turks e Caicos", + "VI": "Isole Vergini Americane", + "VG": "Isole Vergini Britanniche", + "IL": "Israele", + "IT": "Italia", + "JE": "Jersey", + "KZ": "Kazakistan", + "KE": "Kenya", + "XK": "Kosovo", + "KG": "Kirghizistan", + "KI": "Kiribati", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Lettonia", + "LB": "Libano", + "LR": "Liberia", + "LY": "Libia", + "LI": "Liechtenstein", + "LT": "Lituania", + "LU": "Lussemburgo", + "MK": "Macedonia del Nord", + "MG": "Madagascar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldive", + "ML": "Mali", + "MT": "Malta", + "MA": "Marocco", + "MQ": "Martinica", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Messico", + "FM": "Micronesia", + "MD": "Moldavia", + "MC": "Monaco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambico", + "MM": "Myanmar (Birmania)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "NO": "Norvegia", + "NC": "Nuova Caledonia", + "NZ": "Nuova Zelanda", + "OM": "Oman", + "NL": "Paesi Bassi", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panam\u00e1", + "PG": "Papua Nuova Guinea", + "PY": "Paraguay", + "PE": "Per\u00f9", + "PF": "Polinesia francese", + "PL": "Polonia", + "PT": "Portogallo", + "PR": "Portorico", + "QA": "Qatar", + "HK": "RAS di Hong Kong", + "MO": "RAS di Macao", + "GB": "Regno Unito", + "CF": "Repubblica Centrafricana", + "DO": "Repubblica Dominicana", + "RE": "Riunione", + "RO": "Romania", + "RW": "Ruanda", + "RU": "Russia", + "EH": "Sahara occidentale", + "KN": "Saint Kitts e Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "VC": "Saint Vincent e Grenadine", + "BL": "Saint-Barth\u00e9lemy", + "PM": "Saint-Pierre e Miquelon", + "WS": "Samoa", + "AS": "Samoa americane", + "SM": "San Marino", + "SH": "Sant\u2019Elena", + "ST": "S\u00e3o Tom\u00e9 e Pr\u00edncipe", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SY": "Siria", + "SK": "Slovacchia", + "SI": "Slovenia", + "SO": "Somalia", + "ES": "Spagna", + "LK": "Sri Lanka", + "US": "Stati Uniti", + "SS": "Sud Sudan", + "ZA": "Sudafrica", + "SD": "Sudan", + "SR": "Suriname", + "SJ": "Svalbard e Jan Mayen", + "SE": "Svezia", + "CH": "Svizzera", + "SZ": "Swaziland", + "TJ": "Tagikistan", + "TW": "Taiwan", + "TZ": "Tanzania", + "TF": "Terre australi francesi", + "PS": "Territori palestinesi", + "IO": "Territorio britannico dell\u2019Oceano Indiano", + "TH": "Thailandia", + "TL": "Timor Est", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad e Tobago", + "TN": "Tunisia", + "TR": "Turchia", + "TM": "Turkmenistan", + "TV": "Tuvalu", + "UA": "Ucraina", + "UG": "Uganda", + "HU": "Ungheria", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis e Futuna", + "YE": "Yemen", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/ja-JP.json b/public/intl/country/ja-JP.json new file mode 100644 index 0000000..b460a3a --- /dev/null +++ b/public/intl/country/ja-JP.json @@ -0,0 +1,252 @@ +{ + "IS": "\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9", + "IE": "\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9", + "AZ": "\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3", + "AF": "\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3", + "US": "\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd", + "AE": "\u30a2\u30e9\u30d6\u9996\u9577\u56fd\u9023\u90a6", + "DZ": "\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2", + "AR": "\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3", + "AW": "\u30a2\u30eb\u30d0", + "AL": "\u30a2\u30eb\u30d0\u30cb\u30a2", + "AM": "\u30a2\u30eb\u30e1\u30cb\u30a2", + "AI": "\u30a2\u30f3\u30ae\u30e9", + "AO": "\u30a2\u30f3\u30b4\u30e9", + "AG": "\u30a2\u30f3\u30c6\u30a3\u30b0\u30a2\u30fb\u30d0\u30fc\u30d6\u30fc\u30c0", + "AD": "\u30a2\u30f3\u30c9\u30e9", + "YE": "\u30a4\u30a8\u30e1\u30f3", + "GB": "\u30a4\u30ae\u30ea\u30b9", + "IL": "\u30a4\u30b9\u30e9\u30a8\u30eb", + "IT": "\u30a4\u30bf\u30ea\u30a2", + "IQ": "\u30a4\u30e9\u30af", + "IR": "\u30a4\u30e9\u30f3", + "IN": "\u30a4\u30f3\u30c9", + "ID": "\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2", + "WF": "\u30a6\u30a9\u30ea\u30b9\u30fb\u30d5\u30c4\u30ca", + "UG": "\u30a6\u30ac\u30f3\u30c0", + "UA": "\u30a6\u30af\u30e9\u30a4\u30ca", + "UZ": "\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3", + "UY": "\u30a6\u30eb\u30b0\u30a2\u30a4", + "EC": "\u30a8\u30af\u30a2\u30c9\u30eb", + "EG": "\u30a8\u30b8\u30d7\u30c8", + "EE": "\u30a8\u30b9\u30c8\u30cb\u30a2", + "SZ": "\u30a8\u30b9\u30ef\u30c6\u30a3\u30cb", + "ET": "\u30a8\u30c1\u30aa\u30d4\u30a2", + "ER": "\u30a8\u30ea\u30c8\u30ea\u30a2", + "SV": "\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb", + "AU": "\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2", + "AT": "\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2", + "AX": "\u30aa\u30fc\u30e9\u30f3\u30c9\u8af8\u5cf6", + "OM": "\u30aa\u30de\u30fc\u30f3", + "NL": "\u30aa\u30e9\u30f3\u30c0", + "BQ": "\u30aa\u30e9\u30f3\u30c0\u9818\u30ab\u30ea\u30d6", + "GH": "\u30ac\u30fc\u30ca", + "CV": "\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7", + "GG": "\u30ac\u30fc\u30f3\u30b8\u30fc", + "GY": "\u30ac\u30a4\u30a2\u30ca", + "KZ": "\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3", + "QA": "\u30ab\u30bf\u30fc\u30eb", + "CA": "\u30ab\u30ca\u30c0", + "GA": "\u30ac\u30dc\u30f3", + "CM": "\u30ab\u30e1\u30eb\u30fc\u30f3", + "GM": "\u30ac\u30f3\u30d3\u30a2", + "KH": "\u30ab\u30f3\u30dc\u30b8\u30a2", + "GN": "\u30ae\u30cb\u30a2", + "GW": "\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6", + "CY": "\u30ad\u30d7\u30ed\u30b9", + "CU": "\u30ad\u30e5\u30fc\u30d0", + "CW": "\u30ad\u30e5\u30e9\u30bd\u30fc", + "GR": "\u30ae\u30ea\u30b7\u30e3", + "KI": "\u30ad\u30ea\u30d0\u30b9", + "KG": "\u30ad\u30eb\u30ae\u30b9", + "GT": "\u30b0\u30a2\u30c6\u30de\u30e9", + "GP": "\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7", + "GU": "\u30b0\u30a2\u30e0", + "KW": "\u30af\u30a6\u30a7\u30fc\u30c8", + "CK": "\u30af\u30c3\u30af\u8af8\u5cf6", + "GL": "\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9", + "CX": "\u30af\u30ea\u30b9\u30de\u30b9\u5cf6", + "GD": "\u30b0\u30ec\u30ca\u30c0", + "HR": "\u30af\u30ed\u30a2\u30c1\u30a2", + "KY": "\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6", + "KE": "\u30b1\u30cb\u30a2", + "CI": "\u30b3\u30fc\u30c8\u30b8\u30dc\u30ef\u30fc\u30eb", + "CC": "\u30b3\u30b3\u30b9(\u30ad\u30fc\u30ea\u30f3\u30b0)\u8af8\u5cf6", + "CR": "\u30b3\u30b9\u30bf\u30ea\u30ab", + "XK": "\u30b3\u30bd\u30dc", + "KM": "\u30b3\u30e2\u30ed", + "CO": "\u30b3\u30ed\u30f3\u30d3\u30a2", + "CG": "\u30b3\u30f3\u30b4\u5171\u548c\u56fd(\u30d6\u30e9\u30b6\u30d3\u30eb)", + "CD": "\u30b3\u30f3\u30b4\u6c11\u4e3b\u5171\u548c\u56fd(\u30ad\u30f3\u30b7\u30e3\u30b5)", + "SA": "\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2", + "GS": "\u30b5\u30a6\u30b9\u30b8\u30e7\u30fc\u30b8\u30a2\u30fb\u30b5\u30a6\u30b9\u30b5\u30f3\u30c9\u30a6\u30a3\u30c3\u30c1\u8af8\u5cf6", + "WS": "\u30b5\u30e2\u30a2", + "BL": "\u30b5\u30f3\u30fb\u30d0\u30eb\u30c6\u30eb\u30df\u30fc", + "MF": "\u30b5\u30f3\u30fb\u30de\u30eb\u30bf\u30f3", + "ST": "\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da", + "ZM": "\u30b6\u30f3\u30d3\u30a2", + "PM": "\u30b5\u30f3\u30d4\u30a8\u30fc\u30eb\u5cf6\u30fb\u30df\u30af\u30ed\u30f3\u5cf6", + "SM": "\u30b5\u30f3\u30de\u30ea\u30ce", + "SL": "\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd", + "DJ": "\u30b8\u30d6\u30c1", + "GI": "\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb", + "JE": "\u30b8\u30e3\u30fc\u30b8\u30fc", + "JM": "\u30b8\u30e3\u30de\u30a4\u30ab", + "GE": "\u30b8\u30e7\u30fc\u30b8\u30a2", + "SY": "\u30b7\u30ea\u30a2", + "SG": "\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb", + "SX": "\u30b7\u30f3\u30c8\u30fb\u30de\u30fc\u30eb\u30c6\u30f3", + "ZW": "\u30b8\u30f3\u30d0\u30d6\u30a8", + "CH": "\u30b9\u30a4\u30b9", + "SE": "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3", + "SD": "\u30b9\u30fc\u30c0\u30f3", + "SJ": "\u30b9\u30d0\u30fc\u30eb\u30d0\u30eb\u8af8\u5cf6\u30fb\u30e4\u30f3\u30de\u30a4\u30a8\u30f3\u5cf6", + "ES": "\u30b9\u30da\u30a4\u30f3", + "SR": "\u30b9\u30ea\u30ca\u30e0", + "LK": "\u30b9\u30ea\u30e9\u30f3\u30ab", + "SK": "\u30b9\u30ed\u30d0\u30ad\u30a2", + "SI": "\u30b9\u30ed\u30d9\u30cb\u30a2", + "SC": "\u30bb\u30fc\u30b7\u30a7\u30eb", + "SN": "\u30bb\u30cd\u30ac\u30eb", + "RS": "\u30bb\u30eb\u30d3\u30a2", + "KN": "\u30bb\u30f3\u30c8\u30af\u30ea\u30b9\u30c8\u30d5\u30a1\u30fc\u30fb\u30cd\u30fc\u30f4\u30a3\u30b9", + "VC": "\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u53ca\u3073\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3\u8af8\u5cf6", + "SH": "\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca", + "LC": "\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2", + "SO": "\u30bd\u30de\u30ea\u30a2", + "SB": "\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6", + "TC": "\u30bf\u30fc\u30af\u30b9\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6", + "TH": "\u30bf\u30a4", + "TJ": "\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3", + "TZ": "\u30bf\u30f3\u30b6\u30cb\u30a2", + "CZ": "\u30c1\u30a7\u30b3", + "TD": "\u30c1\u30e3\u30c9", + "TN": "\u30c1\u30e5\u30cb\u30b8\u30a2", + "CL": "\u30c1\u30ea", + "TV": "\u30c4\u30d0\u30eb", + "DK": "\u30c7\u30f3\u30de\u30fc\u30af", + "DE": "\u30c9\u30a4\u30c4", + "TG": "\u30c8\u30fc\u30b4", + "TK": "\u30c8\u30b1\u30e9\u30a6", + "DO": "\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd", + "DM": "\u30c9\u30df\u30cb\u30ab\u56fd", + "TT": "\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4", + "TM": "\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3", + "TR": "\u30c8\u30eb\u30b3", + "TO": "\u30c8\u30f3\u30ac", + "NG": "\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2", + "NR": "\u30ca\u30a6\u30eb", + "NA": "\u30ca\u30df\u30d3\u30a2", + "NU": "\u30cb\u30a6\u30a8", + "NI": "\u30cb\u30ab\u30e9\u30b0\u30a2", + "NE": "\u30cb\u30b8\u30a7\u30fc\u30eb", + "NC": "\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2", + "NZ": "\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9", + "NP": "\u30cd\u30d1\u30fc\u30eb", + "NF": "\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6", + "NO": "\u30ce\u30eb\u30a6\u30a7\u30fc", + "HM": "\u30cf\u30fc\u30c9\u5cf6\u30fb\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u8af8\u5cf6", + "BH": "\u30d0\u30fc\u30ec\u30fc\u30f3", + "HT": "\u30cf\u30a4\u30c1", + "PK": "\u30d1\u30ad\u30b9\u30bf\u30f3", + "VA": "\u30d0\u30c1\u30ab\u30f3\u5e02\u56fd", + "PA": "\u30d1\u30ca\u30de", + "VU": "\u30d0\u30cc\u30a2\u30c4", + "BS": "\u30d0\u30cf\u30de", + "PG": "\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2", + "BM": "\u30d0\u30df\u30e5\u30fc\u30c0", + "PW": "\u30d1\u30e9\u30aa", + "PY": "\u30d1\u30e9\u30b0\u30a2\u30a4", + "BB": "\u30d0\u30eb\u30d0\u30c9\u30b9", + "PS": "\u30d1\u30ec\u30b9\u30c1\u30ca\u81ea\u6cbb\u533a", + "HU": "\u30cf\u30f3\u30ac\u30ea\u30fc", + "BD": "\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5", + "PN": "\u30d4\u30c8\u30b1\u30a2\u30f3\u8af8\u5cf6", + "FJ": "\u30d5\u30a3\u30b8\u30fc", + "PH": "\u30d5\u30a3\u30ea\u30d4\u30f3", + "FI": "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9", + "BT": "\u30d6\u30fc\u30bf\u30f3", + "BV": "\u30d6\u30fc\u30d9\u5cf6", + "PR": "\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3", + "FO": "\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6", + "FK": "\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\u8af8\u5cf6", + "BR": "\u30d6\u30e9\u30b8\u30eb", + "FR": "\u30d5\u30e9\u30f3\u30b9", + "BG": "\u30d6\u30eb\u30ac\u30ea\u30a2", + "BF": "\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd", + "BN": "\u30d6\u30eb\u30cd\u30a4", + "BI": "\u30d6\u30eb\u30f3\u30b8", + "VN": "\u30d9\u30c8\u30ca\u30e0", + "BJ": "\u30d9\u30ca\u30f3", + "VE": "\u30d9\u30cd\u30ba\u30a8\u30e9", + "BY": "\u30d9\u30e9\u30eb\u30fc\u30b7", + "BZ": "\u30d9\u30ea\u30fc\u30ba", + "PE": "\u30da\u30eb\u30fc", + "BE": "\u30d9\u30eb\u30ae\u30fc", + "PL": "\u30dd\u30fc\u30e9\u30f3\u30c9", + "BA": "\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca", + "BW": "\u30dc\u30c4\u30ef\u30ca", + "BO": "\u30dc\u30ea\u30d3\u30a2", + "PT": "\u30dd\u30eb\u30c8\u30ac\u30eb", + "HN": "\u30db\u30f3\u30b8\u30e5\u30e9\u30b9", + "MH": "\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6", + "MG": "\u30de\u30c0\u30ac\u30b9\u30ab\u30eb", + "YT": "\u30de\u30e8\u30c3\u30c8", + "MW": "\u30de\u30e9\u30a6\u30a4", + "ML": "\u30de\u30ea", + "MT": "\u30de\u30eb\u30bf", + "MQ": "\u30de\u30eb\u30c6\u30a3\u30cb\u30fc\u30af", + "MY": "\u30de\u30ec\u30fc\u30b7\u30a2", + "IM": "\u30de\u30f3\u5cf6", + "FM": "\u30df\u30af\u30ed\u30cd\u30b7\u30a2\u9023\u90a6", + "MM": "\u30df\u30e3\u30f3\u30de\u30fc (\u30d3\u30eb\u30de)", + "MX": "\u30e1\u30ad\u30b7\u30b3", + "MU": "\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9", + "MR": "\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2", + "MZ": "\u30e2\u30b6\u30f3\u30d3\u30fc\u30af", + "MC": "\u30e2\u30ca\u30b3", + "MV": "\u30e2\u30eb\u30c7\u30a3\u30d6", + "MD": "\u30e2\u30eb\u30c9\u30d0", + "MA": "\u30e2\u30ed\u30c3\u30b3", + "MN": "\u30e2\u30f3\u30b4\u30eb", + "ME": "\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed", + "MS": "\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8", + "JO": "\u30e8\u30eb\u30c0\u30f3", + "LA": "\u30e9\u30aa\u30b9", + "LV": "\u30e9\u30c8\u30d3\u30a2", + "LT": "\u30ea\u30c8\u30a2\u30cb\u30a2", + "LY": "\u30ea\u30d3\u30a2", + "LI": "\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3", + "LR": "\u30ea\u30d9\u30ea\u30a2", + "RO": "\u30eb\u30fc\u30de\u30cb\u30a2", + "LU": "\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af", + "RW": "\u30eb\u30ef\u30f3\u30c0", + "LS": "\u30ec\u30bd\u30c8", + "LB": "\u30ec\u30d0\u30ce\u30f3", + "RE": "\u30ec\u30e6\u30cb\u30aa\u30f3", + "RU": "\u30ed\u30b7\u30a2", + "IO": "\u82f1\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df", + "VG": "\u82f1\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6", + "KR": "\u97d3\u56fd", + "UM": "\u5408\u8846\u56fd\u9818\u6709\u5c0f\u96e2\u5cf6", + "EH": "\u897f\u30b5\u30cf\u30e9", + "GQ": "\u8d64\u9053\u30ae\u30cb\u30a2", + "TW": "\u53f0\u6e7e", + "CF": "\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd", + "MO": "\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u56fd\u30de\u30ab\u30aa\u7279\u5225\u884c\u653f\u533a", + "HK": "\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u56fd\u9999\u6e2f\u7279\u5225\u884c\u653f\u533a", + "CN": "\u4e2d\u56fd", + "TL": "\u6771\u30c6\u30a3\u30e2\u30fc\u30eb", + "ZA": "\u5357\u30a2\u30d5\u30ea\u30ab", + "SS": "\u5357\u30b9\u30fc\u30c0\u30f3", + "AQ": "\u5357\u6975", + "JP": "\u65e5\u672c", + "GF": "\u4ecf\u9818\u30ae\u30a2\u30ca", + "PF": "\u4ecf\u9818\u30dd\u30ea\u30cd\u30b7\u30a2", + "TF": "\u4ecf\u9818\u6975\u5357\u8af8\u5cf6", + "VI": "\u7c73\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6", + "AS": "\u7c73\u9818\u30b5\u30e2\u30a2", + "MK": "\u5317\u30de\u30b1\u30c9\u30cb\u30a2", + "MP": "\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6", + "KP": "\u5317\u671d\u9bae" +} diff --git a/public/intl/country/km-KH.json b/public/intl/country/km-KH.json new file mode 100644 index 0000000..5f966a8 --- /dev/null +++ b/public/intl/country/km-KH.json @@ -0,0 +1,252 @@ +{ + "KH": "\u1780\u1798\u17d2\u1796\u17bb\u1787\u17b6", + "CA": "\u1780\u17b6\u178e\u17b6\u178a\u17b6", + "QA": "\u1780\u17b6\u178f\u17b6", + "CV": "\u1780\u17b6\u1794\u17cb\u179c\u17c2\u179a", + "CM": "\u1780\u17b6\u1798\u17c1\u179a\u17bc\u1793", + "KZ": "\u1780\u17b6\u17a0\u17d2\u179f\u17b6\u1780\u17cb\u179f\u17d2\u1790\u17b6\u1793", + "CG": "\u1780\u17bb\u1784\u17a0\u17d2\u1782\u17c4 - \u1794\u17d2\u179a\u17b6\u17a0\u17d2\u179f\u17b6\u179c\u17b8\u179b", + "CD": "\u1780\u17bb\u1784\u17a0\u17d2\u1782\u17c4- \u1782\u17b8\u1793\u179f\u17d2\u17a0\u17b6\u179f\u17b6", + "CI": "\u1780\u17bc\u178f\u178c\u17b8\u179c\u17d0\u179a", + "KM": "\u1780\u17bc\u1798\u17d0\u179a", + "CW": "\u1780\u17bc\u179a\u17c9\u17b6\u1780\u17c5", + "KP": "\u1780\u17bc\u179a\u17c9\u17c1\u200b\u1781\u17b6\u1784\u200b\u1787\u17be\u1784", + "KR": "\u1780\u17bc\u179a\u17c9\u17c1\u200b\u1781\u17b6\u1784\u200b\u178f\u17d2\u1794\u17bc\u1784", + "KW": "\u1780\u17bc\u179c\u17c9\u17c2\u178f", + "CR": "\u1780\u17bc\u179f\u17d2\u178f\u17b6\u179a\u17b8\u1780\u17b6", + "XK": "\u1780\u17bc\u179f\u17bc\u179c\u17c9\u17bc", + "CO": "\u1780\u17bc\u17a1\u17bb\u17c6\u1794\u17ca\u17b8", + "KG": "\u1780\u17c0\u17a0\u17d2\u179f\u17ca\u17b8\u179f\u17ca\u17b8\u179f\u17d2\u1790\u17b6\u1793", + "KE": "\u1780\u17c1\u1793\u1799\u17c9\u17b6", + "CC": "\u1780\u17c4\u17c7\u200b\u1780\u17bc\u1780\u17bc\u179f (\u1782\u17b8\u179b\u17b8\u1784)", + "KY": "\u1780\u17c4\u17c7\u200b\u1780\u17c3\u1798\u17c9\u1784\u17cb", + "CK": "\u1780\u17c4\u17c7\u200b\u1781\u17bc\u1780", + "CX": "\u1780\u17c4\u17c7\u200b\u1782\u17d2\u179a\u17b8\u179f\u17d2\u1798\u17b6\u179f", + "NF": "\u1780\u17c4\u17c7\u200b\u178e\u17d0\u179a\u17a0\u17d2\u179c\u1780\u17cb", + "TC": "\u1780\u17c4\u17c7\u200b\u1791\u17bd\u1782 \u1793\u17b7\u1784 \u1780\u17c3\u1780\u17bc\u179f", + "BV": "\u1780\u17c4\u17c7\u200b\u1794\u17ca\u17bc\u179c\u17c9\u17c1\u178f", + "PN": "\u1780\u17c4\u17c7\u200b\u1797\u17b8\u178f\u1780\u17b6\u1793", + "MP": "\u1780\u17c4\u17c7\u200b\u1798\u17c9\u17b6\u179a\u17b8\u178e\u17b6\u200b\u1781\u17b6\u1784\u200b\u1787\u17be\u1784", + "MH": "\u1780\u17c4\u17c7\u200b\u1798\u17c9\u17b6\u179f\u17cb\u179f\u179b", + "VG": "\u1780\u17c4\u17c7\u200b\u179c\u17ba\u1787\u17b7\u1793\u200b\u1785\u1780\u17d2\u179a\u1797\u1796\u200b\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f", + "VI": "\u1780\u17c4\u17c7\u200b\u179c\u17ba\u1787\u17b8\u1793\u200b\u17a2\u17b6\u1798\u17c1\u179a\u17b7\u1780", + "SB": "\u1780\u17c4\u17c7\u200b\u179f\u17bc\u17a1\u17bc\u1798\u17c9\u17bb\u1784", + "HM": "\u1780\u17c4\u17c7\u200b\u17a0\u17ba\u178a \u1793\u17b7\u1784\u200b\u1798\u17c9\u17b6\u1780\u17cb\u178a\u17bc\u178e\u17b6\u179b\u17cb", + "FK": "\u1780\u17c4\u17c7\u200b\u17a0\u17d2\u179c\u1780\u17cb\u17a1\u17c2\u1793", + "FO": "\u1780\u17c4\u17c7\u200b\u17a0\u17d2\u179c\u17b6\u179a\u17c9\u17bc", + "GS": "\u1780\u17c4\u17c7\u200b\u17a0\u17d2\u179f\u1780\u17a0\u17d2\u179f\u17ca\u17b8\u200b\u1781\u17b6\u1784\u178f\u17d2\u1794\u17bc\u1784 \u1793\u17b7\u1784 \u179f\u1784\u17cb\u179c\u17b7\u1785\u200b\u1781\u17b6\u1784\u178f\u17d2\u1794\u17bc\u1784", + "AX": "\u1780\u17c4\u17c7\u200b\u17a2\u17b6\u17a1\u1784\u17cb", + "UM": "\u1780\u17c4\u17c7\u200b\u17a2\u17c5\u17a1\u17b6\u1799\u17b8\u1784\u200b\u17a2\u17b6\u1798\u17c1\u179a\u17b7\u1780", + "GR": "\u1780\u17d2\u179a\u17b7\u1780", + "HR": "\u1780\u17d2\u179a\u17bc\u17a2\u17b6\u179f\u17ca\u17b8", + "GT": "\u1780\u17d2\u179c\u17b6\u178f\u17c1\u1798\u17c9\u17b6\u17a1\u17b6", + "KI": "\u1782\u17b7\u179a\u17b8\u1794\u17b6\u1791\u17b8", + "CU": "\u1782\u17bb\u1799\u1794\u17b6", + "GB": "\u1785\u1780\u17d2\u179a\u1797\u1796\u200b\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f", + "CN": "\u1785\u17b7\u1793", + "TD": "\u1786\u17b6\u178a", + "CZ": "\u1786\u17c2\u1782\u17b6", + "JP": "\u1787\u1794\u17c9\u17bb\u1793", + "DJ": "\u1787\u17b8\u1794\u17ca\u17bc\u1791\u17b8", + "JE": "\u1787\u17ba\u179f\u17ca\u17b8", + "DK": "\u178a\u17b6\u178e\u17ba\u1798\u17c9\u17b6\u1780", + "DM": "\u178a\u17bc\u1798\u17b8\u1793\u17b8\u1780", + "TF": "\u178a\u17c2\u1793\u178a\u17b8\u200b\u1794\u17b6\u179a\u17b6\u17c6\u1784\u200b\u1793\u17c5\u200b\u1797\u17b6\u1782\u1781\u17b6\u1784\u178f\u17d2\u1794\u17bc\u1784", + "PS": "\u178a\u17c2\u1793\u200b\u178a\u17b8\u1794\u17c9\u17b6\u179b\u17c1\u179f\u17d2\u1791\u17b8\u1793", + "IO": "\u178a\u17c2\u1793\u178a\u17b8\u200b\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f\u200b\u1793\u17c5\u200b\u1798\u17a0\u17b6\u200b\u179f\u1798\u17bb\u1791\u17d2\u179a\u200b\u17a5\u178e\u17d2\u178c\u17b6", + "NA": "\u178e\u17b6\u1798\u17b8\u1794\u17ca\u17b8", + "NR": "\u178e\u17bc\u179a\u17bc", + "NU": "\u178e\u17c0", + "TZ": "\u178f\u1784\u17cb\u179f\u17b6\u1793\u17b8", + "TJ": "\u178f\u17b6\u17a0\u17d2\u179f\u17ca\u17b8\u1782\u17b8\u179f\u17d2\u1790\u17b6\u1793", + "TO": "\u178f\u17bb\u1784\u17a0\u17d2\u1782\u17b6", + "TK": "\u178f\u17bc\u1781\u17c1\u17a1\u17c5", + "TG": "\u178f\u17bc\u17a0\u17d2\u1782\u17c4", + "TR": "\u178f\u17bd\u1780\u1782\u17b8", + "TM": "\u178f\u17bd\u1780\u1798\u17c9\u17c1\u1793\u17b8\u179f\u17d2\u1790\u17b6\u1793", + "TW": "\u178f\u17c3\u179c\u17c9\u17b6\u1793\u17cb", + "TH": "\u1790\u17c3", + "TL": "\u1791\u17b8\u1798\u17d0\u179a\u179b\u17c1\u179f\u17d2\u178f\u17c1", + "TN": "\u1791\u17bb\u1799\u1793\u17b8\u179f\u17ca\u17b8", + "TV": "\u1791\u17bc\u179c\u17c9\u17b6\u179b\u17bc", + "TT": "\u1791\u17d2\u179a\u17b8\u1793\u17b8\u178a\u17b6\u178f \u1793\u17b7\u1784\u200b\u178f\u17bc\u1794\u17b6\u17a0\u17d2\u1782\u17c4", + "NO": "\u1793\u17d0\u179a\u179c\u17c2\u179f", + "NI": "\u1793\u17b8\u1780\u17b6\u179a\u17c9\u17b6\u17a0\u17d2\u1782\u17b6", + "NE": "\u1793\u17b8\u17a0\u17d2\u179f\u17c1", + "NG": "\u1793\u17b8\u17a0\u17d2\u179f\u17c1\u179a\u17b8\u1799\u17c9\u17b6", + "NC": "\u1793\u17bc\u179c\u17c2\u179b\u200b\u1780\u17b6\u17a1\u17c1\u178a\u17bc\u1793\u17b8", + "NZ": "\u1793\u17bc\u179c\u17c2\u179b\u200b\u179f\u17c1\u17a1\u1784\u17cb", + "NP": "\u1793\u17c1\u1794\u17c9\u17b6\u179b\u17cb", + "BD": "\u1794\u1784\u17cb\u1780\u17d2\u179b\u17b6\u178a\u17c2\u179f", + "PK": "\u1794\u17c9\u17b6\u1782\u17b8\u179f\u17d2\u1790\u17b6\u1793", + "PA": "\u1794\u17c9\u17b6\u178e\u17b6\u1798\u17c9\u17b6", + "BB": "\u1794\u17b6\u1794\u17b6\u178a\u17bb\u179f", + "PG": "\u1794\u17c9\u17b6\u1796\u17bc\u17a2\u17b6\u179f\u17ca\u17b8\u200b\u1793\u17bc\u179c\u17c2\u179b\u17a0\u17d2\u1782\u17b8\u178e\u17c1", + "PY": "\u1794\u17c9\u17b6\u179a\u17c9\u17b6\u17a0\u17d2\u1782\u17b6\u1799", + "BH": "\u1794\u17b6\u179a\u17c9\u17c2\u1793", + "FR": "\u1794\u17b6\u179a\u17b6\u17c6\u1784", + "BS": "\u1794\u17b6\u17a0\u17b6\u1798\u17c9\u17b6", + "BM": "\u1794\u17ca\u17ba\u1798\u17bb\u1799\u178a\u17b6", + "BW": "\u1794\u17bb\u178f\u179f\u17d2\u179c\u17b6\u178e\u17b6", + "VA": "\u1794\u17bb\u179a\u17b8\u200b\u179c\u17c9\u17b6\u1791\u17b8\u1780\u1784\u17cb", + "BG": "\u1794\u17ca\u17bb\u179b\u17a0\u17d2\u1782\u17b6\u179a\u17b8", + "BT": "\u1794\u17ca\u17bc\u178f\u1784\u17cb", + "BI": "\u1794\u17ca\u17bc\u179a\u17bb\u1793\u178c\u17b8", + "PF": "\u1794\u17c9\u17bc\u179b\u17b8\u200b\u178e\u17c1\u179f\u17ca\u17b8\u200b\u1794\u17b6\u179a\u17b6\u17c6\u1784", + "BO": "\u1794\u17bc\u179b\u17b8\u179c\u17b8", + "BA": "\u1794\u17bc\u179f\u17d2\u1793\u17b8 \u1793\u17b7\u1784\u17a0\u17ba\u17a0\u17d2\u179f\u17b8\u17a0\u17d2\u1782\u17bc\u179c\u17b8\u178e\u17b6", + "PL": "\u1794\u17c9\u17bc\u17a1\u17bc\u1789", + "BF": "\u1794\u17bd\u1782\u17b8\u178e\u17b6\u17a0\u17d2\u179c\u17b6\u179f\u17bc", + "BJ": "\u1794\u17c1\u178e\u17b6\u17c6\u1784", + "PE": "\u1794\u17c9\u17c1\u179a\u17bc", + "BZ": "\u1794\u17c1\u179b\u17b8", + "BY": "\u1794\u17c1\u17a1\u17b6\u179a\u17bb\u179f", + "BE": "\u1794\u17c2\u179b\u17a0\u17d2\u179f\u17ca\u17b7\u1780", + "BR": "\u1794\u17d2\u179a\u17c1\u179f\u17ca\u17b8\u179b", + "PW": "\u1795\u17c5\u17a1\u17bc", + "PR": "\u1796\u17d0\u179a\u178f\u17bc\u179a\u17b8\u1780\u17bc", + "PT": "\u1796\u17d0\u179a\u1791\u17bb\u1799\u17a0\u17d2\u1782\u17b6\u179b\u17cb", + "BN": "\u1796\u17d2\u179a\u17bb\u1799\u178e\u17c1", + "MO": "\u1798\u17c9\u17b6\u1780\u17b6\u179c \u178f\u17c6\u1794\u1793\u17cb\u179a\u178a\u17d2\u178b\u1794\u17b6\u179b\u1796\u17b7\u179f\u17c1\u179f\u1785\u17b7\u1793", + "MG": "\u1798\u17c9\u17b6\u178a\u17b6\u17a0\u17d2\u1782\u17b6\u179f\u17d2\u1780\u17b6", + "MQ": "\u1798\u17c9\u17b6\u1791\u17b8\u1793\u17b8\u1780", + "YT": "\u1798\u17c9\u17b6\u1799\u17bb\u178f", + "MA": "\u1798\u17c9\u17b6\u179a\u17c9\u17bb\u1780", + "MV": "\u1798\u17c9\u17b6\u179b\u17cb\u178c\u17b8\u179c", + "MT": "\u1798\u17c9\u17b6\u179b\u17cb\u178f\u17cd", + "ML": "\u1798\u17c9\u17b6\u179b\u17b8", + "MK": "\u1798\u17c9\u17b6\u179f\u17c1\u178a\u17d2\u179c\u17b6\u1793\u1781\u17b6\u1784\u1787\u17be\u1784", + "MW": "\u1798\u17c9\u17b6\u17a1\u17b6\u179c\u17b8", + "MY": "\u1798\u17c9\u17b6\u17a1\u17c1\u179f\u17ca\u17b8", + "MX": "\u1798\u17c9\u17b7\u1780\u179f\u17ca\u17b7\u1780", + "FM": "\u1798\u17b8\u1780\u17d2\u179a\u17bc\u178e\u17c1\u179f\u17ca\u17b8", + "MM": "\u1798\u17b8\u1799\u17c9\u17b6\u1793\u17cb\u1798\u17c9\u17b6 (\u1797\u17bc\u1798\u17b6)", + "ME": "\u1798\u17c9\u17bb\u1784\u178f\u17c1\u178e\u17c1\u17a0\u17d2\u1782\u17d2\u179a\u17c4", + "MS": "\u1798\u17c9\u17bb\u1784\u179f\u17ca\u17c2\u179a\u17c9\u17b6", + "MN": "\u1798\u17c9\u17bb\u1784\u17a0\u17d2\u1782\u17c4\u179b\u17b8", + "MD": "\u1798\u17c9\u17bb\u179b\u178a\u17b6\u179c\u17b8", + "MC": "\u1798\u17c9\u17bc\u178e\u17b6\u1780\u17bc", + "MR": "\u1798\u17c9\u17bc\u179a\u17b8\u178f\u17b6\u1793\u17b8", + "MU": "\u1798\u17c9\u17bc\u179a\u17b8\u179f", + "MZ": "\u1798\u17c9\u17bc\u179f\u17c6\u1794\u17ca\u17b7\u1780", + "YE": "\u1799\u17c1\u1798\u17c9\u17c2\u1793", + "RW": "\u179a\u179c\u17c9\u17b6\u1793\u17cb\u178a\u17b6", + "RU": "\u179a\u17bb\u179f\u17d2\u179f\u17ca\u17b8", + "RO": "\u179a\u17bc\u1798\u17c9\u17b6\u1793\u17b8", + "RE": "\u179a\u17c1\u17a2\u17bb\u1799\u1789\u17c9\u17bb\u1784", + "LI": "\u179b\u17b7\u1785\u178f\u17b7\u1793\u179f\u17d2\u178a\u17b6\u1789", + "LT": "\u179b\u17b8\u1791\u17bb\u1799\u17a2\u17b6\u1793\u17b8", + "LB": "\u179b\u17b8\u1794\u1784\u17cb", + "LY": "\u179b\u17b8\u1794\u17ca\u17b8", + "LR": "\u179b\u17b8\u1794\u17c1\u179a\u17b8\u1799\u17c9\u17b6", + "LU": "\u179b\u17bb\u1785\u179f\u17c6\u1794\u17bd", + "VU": "\u179c\u17c9\u17b6\u1793\u17bc\u1791\u17bc", + "WF": "\u179c\u17c9\u17b6\u179b\u17b8\u179f \u1793\u17b7\u1784\u200b\u17a0\u17d2\u179c\u17bc\u1791\u17bc\u178e\u17b6", + "VN": "\u179c\u17c0\u178f\u178e\u17b6\u1798", + "VE": "\u179c\u17c9\u17c1\u178e\u17c1\u179f\u17ca\u17bb\u1799\u17a2\u17c1\u17a1\u17b6", + "PM": "\u179f\u1784\u17cb\u1796\u17d2\u1799\u17c2\u179a \u1793\u17b7\u1784\u200b\u1798\u17b8\u1782\u17b8\u17a1\u17bb\u1784", + "SH": "\u179f\u1784\u17cb\u200b\u17a0\u17c1\u17a1\u17c1\u178e\u17b6", + "US": "\u179f\u17a0\u179a\u178a\u17d2\u178b\u17a2\u17b6\u1798\u17c1\u179a\u17b7\u1780", + "DO": "\u179f\u17b6\u1792\u17b6\u179a\u178e\u179a\u178a\u17d2\u178b\u200b\u178a\u17bc\u1798\u17b8\u1793\u17b8\u1780", + "CF": "\u179f\u17b6\u1792\u17b6\u179a\u178e\u179a\u178a\u17d2\u178b\u17a2\u17b6\u17a0\u17d2\u179c\u17d2\u179a\u17b7\u1780\u1780\u178e\u17d2\u178a\u17b6\u179b", + "SM": "\u179f\u17b6\u1793\u200b\u1798\u17c9\u17b6\u179a\u17b8\u178e\u17bc", + "WS": "\u179f\u17b6\u1798\u17d0\u179a", + "AS": "\u179f\u17b6\u1798\u17d0\u179a \u17a2\u17b6\u1798\u17c1\u179a\u17b7\u1780\u17b6\u17c6\u1784", + "EH": "\u179f\u17b6\u17a0\u17b6\u179a\u17c9\u17b6\u1781\u17b6\u1784\u179b\u17b7\u1785", + "SG": "\u179f\u17b7\u1784\u17d2\u17a0\u1794\u17bb\u179a\u17b8", + "SX": "\u179f\u17b8\u1784\u200b\u1798\u17c9\u17b6\u1792\u17b8\u1793", + "CY": "\u179f\u17ca\u17b8\u1794", + "ZW": "\u179f\u17ca\u17b8\u1798\u1794\u17b6\u179c\u17c9\u17c1", + "SY": "\u179f\u17ca\u17b8\u179a\u17b8", + "CL": "\u179f\u17ca\u17b8\u179b\u17b8", + "SC": "\u179f\u17b8\u179f\u17d2\u17a0\u17c2\u179b", + "SE": "\u179f\u17ca\u17bb\u1799\u17a2\u17c2\u178f", + "SD": "\u179f\u17ca\u17bc\u178a\u1784\u17cb", + "SS": "\u179f\u17ca\u17bc\u178a\u1784\u17cb\u200b\u1781\u17b6\u1784\u200b\u178f\u17d2\u1794\u17bc\u1784", + "SO": "\u179f\u17bc\u1798\u17c9\u17b6\u179b\u17b8", + "SR": "\u179f\u17bc\u179a\u17b8\u178e\u17b6\u1798", + "SL": "\u179f\u17c0\u179a\u17c9\u17b6\u17a1\u17c1\u17a2\u17bc\u1793", + "SN": "\u179f\u17c1\u178e\u17c1\u17a0\u17d2\u1782\u17b6\u179b\u17cb", + "RS": "\u179f\u17c2\u1794\u17ca\u17b8", + "ST": "\u179f\u17c5\u178f\u17bc\u1798\u17c9\u17c1 \u1793\u17b7\u1784 \u1794\u17d2\u179a\u17b6\u17c6\u1784\u179f\u17ca\u17b8\u1794", + "ZM": "\u179f\u17c6\u1794\u17ca\u17b8", + "KN": "\u179f\u17b6\u17c6\u1784\u200b\u1782\u17b8\u178f \u1793\u17b7\u1784 \u178e\u17c1\u179c\u17b8\u179f", + "BL": "\u179f\u17b6\u17c6\u1784\u200b\u1794\u17b6\u1790\u17c1\u17a1\u17c1\u1798\u17b8", + "MF": "\u179f\u17b6\u17c6\u1784\u200b\u1798\u17c9\u17b6\u1791\u17b8\u1793", + "LC": "\u179f\u17b6\u17c6\u1784\u179b\u17bc\u179f\u17ca\u17b8", + "VC": "\u179f\u17b6\u17c6\u1784\u200b\u179c\u17c9\u17b6\u17c6\u1784\u179f\u1784\u17cb \u1793\u17b7\u1784 \u17a0\u17d2\u1782\u17d2\u179a\u17c1\u178e\u17b6\u178c\u17b8\u1793", + "LK": "\u179f\u17d2\u179a\u17b8\u179b\u1784\u17d2\u1780\u17b6", + "SK": "\u179f\u17d2\u179b\u17bc\u179c\u17c9\u17b6\u1782\u17b8", + "SI": "\u179f\u17d2\u179b\u17bc\u179c\u17c1\u1793\u17b8", + "SJ": "\u179f\u17d2\u179c\u17b6\u179b\u1794\u17b6\u178a \u1793\u17b7\u1784 \u17a0\u17d2\u179f\u1784\u17cb\u1798\u17c9\u17b6\u1799\u17c1\u1793", + "SZ": "\u179f\u17d2\u179c\u17b6\u179f\u17ca\u17b8\u17a1\u1784\u17cb", + "CH": "\u179f\u17d2\u179c\u17b8\u179f", + "HK": "\u17a0\u17bb\u1784\u1780\u17bb\u1784", + "HU": "\u17a0\u17bb\u1784\u1782\u17d2\u179a\u17b8", + "HN": "\u17a0\u17bb\u1784\u178c\u17bc\u179a\u17c9\u17b6\u179f", + "NL": "\u17a0\u17bc\u17a1\u1784\u17cb", + "BQ": "\u17a0\u17bc\u17a1\u1784\u17cb \u1780\u17b6\u179a\u17c9\u17b6\u1794\u17ca\u17b8\u1793", + "HT": "\u17a0\u17c3\u1791\u17b8", + "GH": "\u17a0\u17d2\u1782\u17b6\u178e\u17b6", + "GA": "\u17a0\u17d2\u1782\u17b6\u1794\u17bb\u1784", + "GN": "\u17a0\u17d2\u1782\u17b8\u178e\u17c1", + "GW": "\u17a0\u17d2\u1782\u17b8\u178e\u17c1\u1794\u17ca\u17b8\u179f\u17d2\u179f\u17bc", + "GQ": "\u17a0\u17d2\u1782\u17b8\u178e\u17c1\u17a2\u17c1\u1780\u17d2\u179c\u17b6\u1791\u17d0\u179a", + "GY": "\u17a0\u17d2\u1782\u17b8\u1799\u17c9\u17b6\u1793", + "GF": "\u17a0\u17d2\u1782\u17b8\u17a2\u17b6\u178e\u17b6 \u1794\u17b6\u179a\u17b6\u17c6\u1784", + "GG": "\u17a0\u17d2\u1782\u17c1\u1793\u179f\u17ca\u17b8", + "GP": "\u17a0\u17d2\u1782\u17c4\u178a\u17ba\u17a1\u17bb\u1794", + "GM": "\u17a0\u17d2\u1782\u17c6\u1794\u17ca\u17b8", + "GU": "\u17a0\u17d2\u1782\u17b6\u17c6", + "GD": "\u17a0\u17d2\u1782\u17d2\u179a\u17be\u178e\u17b6\u178a", + "GL": "\u17a0\u17d2\u1782\u17d2\u179a\u17c4\u17a2\u1784\u17cb\u17a1\u1784\u17cb", + "FJ": "\u17a0\u17d2\u179c\u17b8\u1787\u17b8", + "PH": "\u17a0\u17d2\u179c\u17b8\u179b\u17b8\u1796\u17b8\u1793", + "FI": "\u17a0\u17d2\u179c\u17b6\u17c6\u1784\u17a1\u1784\u17cb", + "JO": "\u17a0\u17ca\u17d2\u179f\u1780\u178a\u17b6\u1793\u17b8", + "GE": "\u17a0\u17d2\u179f\u1780\u17a0\u17d2\u179f\u17ca\u17b8", + "JM": "\u17a0\u17d2\u179f\u17b6\u1798\u17c9\u17b6\u17a2\u17ca\u17b8\u1780", + "GI": "\u17a0\u17d2\u179f\u17ca\u17b8\u1794\u17d2\u179a\u17b6\u179b\u17cb\u178f\u17b6", + "LA": "\u17a1\u17b6\u179c", + "LV": "\u17a1\u17c1\u178f\u17bc\u1793\u17b8", + "LS": "\u17a1\u17c1\u179f\u17bc\u178f\u17bc", + "AD": "\u17a2\u1784\u17cb\u178a\u17bc\u179a\u17c9\u17b6", + "AQ": "\u17a2\u1784\u17cb\u178f\u17b6\u1780\u17cb\u1791\u17b7\u1780", + "AG": "\u17a2\u1784\u17cb\u1791\u17b8\u17a0\u17d2\u1782\u17b6 \u1793\u17b7\u1784 \u1794\u17b6\u1794\u17ca\u17bb\u1799\u178a\u17b6", + "AI": "\u17a2\u1784\u17cb\u17a0\u17d2\u1782\u17b8\u17a1\u17b6", + "AO": "\u17a2\u1784\u17cb\u17a0\u17d2\u1782\u17c4\u17a1\u17b6", + "AM": "\u17a2\u17b6\u1798\u17c1\u1793\u17b8", + "SA": "\u17a2\u17b6\u179a\u17c9\u17b6\u1794\u17ca\u17b8\u179f\u17b6\u17a2\u17bc\u178c\u17b8\u178f", + "AW": "\u17a2\u17b6\u179a\u17bc\u1794\u17b6", + "AL": "\u17a2\u17b6\u179b\u17cb\u1794\u17b6\u1793\u17b8", + "DZ": "\u17a2\u17b6\u179b\u17cb\u17a0\u17d2\u179f\u17c1\u179a\u17b8", + "DE": "\u17a2\u17b6\u179b\u17d2\u179b\u17ba\u1798\u17c9\u1784\u17cb", + "AZ": "\u17a2\u17b6\u179f\u17ca\u17c2\u1794\u17c3\u17a0\u17d2\u179f\u1784\u17cb", + "AF": "\u17a2\u17b6\u17a0\u17d2\u179c\u17a0\u17d2\u1782\u17b6\u1793\u17b8\u179f\u17d2\u1790\u17b6\u1793", + "ZA": "\u17a2\u17b6\u17a0\u17d2\u179c\u17d2\u179a\u17b7\u1780\u1781\u17b6\u1784\u178f\u17d2\u1794\u17bc\u1784", + "AR": "\u17a2\u17b6\u17a0\u17d2\u179f\u1784\u17cb\u1791\u17b8\u1793", + "IN": "\u17a5\u178e\u17d2\u178c\u17b6", + "ID": "\u17a5\u178e\u17d2\u178c\u17bc\u178e\u17c1\u179f\u17ca\u17b8", + "IT": "\u17a2\u17ca\u17b8\u178f\u17b6\u179b\u17b8", + "IR": "\u17a2\u17ca\u17b8\u179a\u17c9\u1784\u17cb", + "IQ": "\u17a2\u17ca\u17b8\u179a\u17c9\u17b6\u1780\u17cb", + "IL": "\u17a2\u17ca\u17b8\u179f\u17d2\u179a\u17b6\u17a2\u17c2\u179b", + "IS": "\u17a2\u17ca\u17b8\u179f\u17d2\u179b\u1784\u17cb", + "UA": "\u17a2\u17ca\u17bb\u1799\u1780\u17d2\u179a\u17c2\u1793", + "UY": "\u17a2\u17ca\u17bb\u1799\u179a\u17bc\u17a0\u17d2\u1782\u17b6\u1799", + "AT": "\u17a2\u17bc\u1791\u17d2\u179a\u17b8\u179f", + "OM": "\u17a2\u17bc\u1798\u17c9\u1784\u17cb", + "UZ": "\u17a2\u17ca\u17bc\u179f\u1794\u17c1\u1782\u17b8\u179f\u17d2\u1790\u17b6\u1793", + "AU": "\u17a2\u17bc\u179f\u17d2\u178f\u17d2\u179a\u17b6\u179b\u17b8", + "UG": "\u17a2\u17ca\u17bc\u17a0\u17d2\u1782\u1784\u17cb\u178a\u17b6", + "IE": "\u17a2\u17c0\u179a\u17a1\u1784\u17cb", + "EC": "\u17a2\u17c1\u1780\u17d2\u179c\u17b6\u1791\u17d0\u179a", + "ET": "\u17a2\u17c1\u178f\u17d2\u1799\u17bc\u1796\u17b8", + "AE": "\u17a2\u17c1\u1798\u17b8\u179a\u17c9\u17b6\u178f\u200b\u17a2\u17b6\u179a\u17c9\u17b6\u1794\u17cb\u200b\u179a\u17bd\u1798", + "ER": "\u17a2\u17c1\u179a\u17b8\u178f\u17d2\u179a\u17c1", + "EE": "\u17a2\u17c1\u179f\u17d2\u178f\u17bc\u1793\u17b8", + "ES": "\u17a2\u17c1\u179f\u17d2\u1794\u17c9\u17b6\u1789", + "EG": "\u17a2\u17c1\u17a0\u17d2\u179f\u17ca\u17b8\u1794", + "SV": "\u17a2\u17c2\u179b\u179f\u17b6\u179b\u17cb\u179c\u17c9\u17b6\u178c\u17d0\u179a", + "IM": "\u17a2\u17c2\u179b\u17a2\u17bb\u17a0\u17d2\u179c\u1798\u17c2\u1793" +} diff --git a/public/intl/country/ko-KR.json b/public/intl/country/ko-KR.json new file mode 100644 index 0000000..52ed6a9 --- /dev/null +++ b/public/intl/country/ko-KR.json @@ -0,0 +1,252 @@ +{ + "GH": "\uac00\ub098", + "GA": "\uac00\ubd09", + "GY": "\uac00\uc774\uc544\ub098", + "GM": "\uac10\ube44\uc544", + "GG": "\uac74\uc9c0", + "GP": "\uacfc\ub4e4\ub8e8\ud504", + "GT": "\uacfc\ud14c\ub9d0\ub77c", + "GU": "\uad0c", + "GD": "\uadf8\ub808\ub098\ub2e4", + "GR": "\uadf8\ub9ac\uc2a4", + "GL": "\uadf8\ub9b0\ub780\ub4dc", + "GN": "\uae30\ub2c8", + "GW": "\uae30\ub2c8\ube44\uc0ac\uc6b0", + "NA": "\ub098\ubbf8\ube44\uc544", + "NR": "\ub098\uc6b0\ub8e8", + "NG": "\ub098\uc774\uc9c0\ub9ac\uc544", + "AQ": "\ub0a8\uadf9 \ub300\ub959", + "SS": "\ub0a8\uc218\ub2e8", + "ZA": "\ub0a8\uc544\ud504\ub9ac\uce74", + "NL": "\ub124\ub35c\ub780\ub4dc", + "BQ": "\ub124\ub35c\ub780\ub4dc\ub839 \uce74\ub9ac\ube0c", + "NP": "\ub124\ud314", + "NO": "\ub178\ub974\uc6e8\uc774", + "NF": "\ub178\ud37d\uc12c", + "NZ": "\ub274\uc9c8\ub79c\ub4dc", + "NC": "\ub274\uce7c\ub808\ub3c4\ub2c8\uc544", + "NU": "\ub2c8\uc6b0\uc5d0", + "NE": "\ub2c8\uc81c\ub974", + "NI": "\ub2c8\uce74\ub77c\uacfc", + "TW": "\ub300\ub9cc", + "KR": "\ub300\ud55c\ubbfc\uad6d", + "DK": "\ub374\ub9c8\ud06c", + "DM": "\ub3c4\ubbf8\ub2c8\uce74", + "DO": "\ub3c4\ubbf8\ub2c8\uce74 \uacf5\ud654\uad6d", + "DE": "\ub3c5\uc77c", + "TL": "\ub3d9\ud2f0\ubaa8\ub974", + "LA": "\ub77c\uc624\uc2a4", + "LR": "\ub77c\uc774\ubca0\ub9ac\uc544", + "LV": "\ub77c\ud2b8\ube44\uc544", + "RU": "\ub7ec\uc2dc\uc544", + "LB": "\ub808\ubc14\ub17c", + "LS": "\ub808\uc18c\ud1a0", + "RO": "\ub8e8\ub9c8\ub2c8\uc544", + "LU": "\ub8e9\uc148\ubd80\ub974\ud06c", + "RW": "\ub974\uc644\ub2e4", + "LY": "\ub9ac\ube44\uc544", + "RE": "\ub9ac\uc720\ub2c8\uc628", + "LT": "\ub9ac\ud22c\uc544\ub2c8\uc544", + "LI": "\ub9ac\ud788\ud150\uc288\ud0c0\uc778", + "MG": "\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974", + "MQ": "\ub9c8\ub974\ud2f0\ub2c8\ud06c", + "MH": "\ub9c8\uc15c \uc81c\ub3c4", + "YT": "\ub9c8\uc694\ud2b8", + "MO": "\ub9c8\uce74\uc624(\uc911\uad6d \ud2b9\ubcc4\ud589\uc815\uad6c)", + "MW": "\ub9d0\ub77c\uc704", + "MY": "\ub9d0\ub808\uc774\uc2dc\uc544", + "ML": "\ub9d0\ub9ac", + "IM": "\ub9e8 \uc12c", + "MX": "\uba55\uc2dc\ucf54", + "MC": "\ubaa8\ub098\ucf54", + "MA": "\ubaa8\ub85c\ucf54", + "MU": "\ubaa8\ub9ac\uc154\uc2a4", + "MR": "\ubaa8\ub9ac\ud0c0\ub2c8", + "MZ": "\ubaa8\uc7a0\ube44\ud06c", + "ME": "\ubaac\ud14c\ub124\uadf8\ub85c", + "MS": "\ubaac\ud2b8\uc138\ub77c\ud2b8", + "MD": "\ubab0\ub3c4\ubc14", + "MV": "\ubab0\ub514\ube0c", + "MT": "\ubab0\ud0c0", + "MN": "\ubabd\uace8", + "US": "\ubbf8\uad6d", + "VI": "\ubbf8\uad6d\ub839 \ubc84\uc9c4\uc544\uc77c\ub79c\ub4dc", + "UM": "\ubbf8\uad6d\ub839 \ud574\uc678 \uc81c\ub3c4", + "MM": "\ubbf8\uc580\ub9c8", + "FM": "\ubbf8\ud06c\ub85c\ub124\uc2dc\uc544", + "VU": "\ubc14\ub204\uc544\ud22c", + "BH": "\ubc14\ub808\uc778", + "BB": "\ubc14\ubca0\uc774\ub3c4\uc2a4", + "VA": "\ubc14\ud2f0\uce78 \uc2dc\uad6d", + "BS": "\ubc14\ud558\ub9c8", + "BD": "\ubc29\uae00\ub77c\ub370\uc2dc", + "BM": "\ubc84\ubba4\ub2e4", + "BJ": "\ubca0\ub0c9", + "VE": "\ubca0\ub124\uc218\uc5d8\ub77c", + "VN": "\ubca0\ud2b8\ub0a8", + "BE": "\ubca8\uae30\uc5d0", + "BY": "\ubca8\ub77c\ub8e8\uc2a4", + "BZ": "\ubca8\ub9ac\uc988", + "BA": "\ubcf4\uc2a4\ub2c8\uc544 \ud5e4\ub974\uccb4\uace0\ube44\ub098", + "BW": "\ubcf4\uce20\uc640\ub098", + "BO": "\ubcfc\ub9ac\ube44\uc544", + "BI": "\ubd80\ub8ec\ub514", + "BF": "\ubd80\ub974\ud0a4\ub098\ud30c\uc18c", + "BV": "\ubd80\ubca0\uc12c", + "BT": "\ubd80\ud0c4", + "MP": "\ubd81\ub9c8\ub9ac\uc544\ub098\uc81c\ub3c4", + "MK": "\ubd81\ub9c8\ucf00\ub3c4\ub2c8\uc544", + "KP": "\ubd81\ud55c", + "BG": "\ubd88\uac00\ub9ac\uc544", + "BR": "\ube0c\ub77c\uc9c8", + "BN": "\ube0c\ub8e8\ub098\uc774", + "WS": "\uc0ac\ubaa8\uc544", + "SA": "\uc0ac\uc6b0\ub514\uc544\ub77c\ube44\uc544", + "GS": "\uc0ac\uc6b0\uc2a4\uc870\uc9c0\uc544 \uc0ac\uc6b0\uc2a4\uc0cc\ub4dc\uc704\uce58 \uc81c\ub3c4", + "SM": "\uc0b0\ub9c8\ub9ac\ub178", + "ST": "\uc0c1\ud22c\uba54 \ud504\ub9b0\uc2dc\ud398", + "MF": "\uc0dd\ub9c8\ub974\ud0f1", + "BL": "\uc0dd\ubc14\ub974\ud154\ub808\ubbf8", + "PM": "\uc0dd\ud53c\uc5d0\ub974 \ubbf8\ud074\ub871", + "EH": "\uc11c\uc0ac\ud558\ub77c", + "SN": "\uc138\ub124\uac08", + "RS": "\uc138\ub974\ube44\uc544", + "SC": "\uc138\uc774\uc178", + "LC": "\uc138\uc778\ud2b8\ub8e8\uc2dc\uc544", + "VC": "\uc138\uc778\ud2b8\ube48\uc13c\ud2b8\uadf8\ub808\ub098\ub518", + "KN": "\uc138\uc778\ud2b8\ud0a4\uce20 \ub124\ube44\uc2a4", + "SH": "\uc138\uc778\ud2b8\ud5ec\ub808\ub098", + "SO": "\uc18c\ub9d0\ub9ac\uc544", + "SB": "\uc194\ub85c\ubaac \uc81c\ub3c4", + "SD": "\uc218\ub2e8", + "SR": "\uc218\ub9ac\ub0a8", + "LK": "\uc2a4\ub9ac\ub791\uce74", + "SJ": "\uc2a4\ubc1c\ubc14\ub974\uc81c\ub3c4-\uc580\ub9c8\uc6ec\uc12c", + "SE": "\uc2a4\uc6e8\ub374", + "CH": "\uc2a4\uc704\uc2a4", + "ES": "\uc2a4\ud398\uc778", + "SK": "\uc2ac\ub85c\ubc14\ud0a4\uc544", + "SI": "\uc2ac\ub85c\ubca0\ub2c8\uc544", + "SY": "\uc2dc\ub9ac\uc544", + "SL": "\uc2dc\uc5d0\ub77c\ub9ac\uc628", + "SX": "\uc2e0\ud2b8\ub9c8\ub974\ud134", + "SG": "\uc2f1\uac00\ud3ec\ub974", + "AE": "\uc544\ub78d\uc5d0\ubbf8\ub9ac\ud2b8", + "AW": "\uc544\ub8e8\ubc14", + "AM": "\uc544\ub974\uba54\ub2c8\uc544", + "AR": "\uc544\ub974\ud5e8\ud2f0\ub098", + "AS": "\uc544\uba54\ub9ac\uce78 \uc0ac\ubaa8\uc544", + "IS": "\uc544\uc774\uc2ac\ub780\ub4dc", + "HT": "\uc544\uc774\ud2f0", + "IE": "\uc544\uc77c\ub79c\ub4dc", + "AZ": "\uc544\uc81c\ub974\ubc14\uc774\uc794", + "AF": "\uc544\ud504\uac00\ub2c8\uc2a4\ud0c4", + "AD": "\uc548\ub3c4\ub77c", + "AL": "\uc54c\ubc14\ub2c8\uc544", + "DZ": "\uc54c\uc81c\ub9ac", + "AO": "\uc559\uace8\ub77c", + "AG": "\uc564\ud2f0\uac00 \ubc14\ubd80\ub2e4", + "AI": "\uc575\uadc8\ub77c", + "ER": "\uc5d0\ub9ac\ud2b8\ub9ac\uc544", + "SZ": "\uc5d0\uc2a4\uc640\ud2f0\ub2c8", + "EE": "\uc5d0\uc2a4\ud1a0\ub2c8\uc544", + "EC": "\uc5d0\ucf70\ub3c4\ub974", + "ET": "\uc5d0\ud2f0\uc624\ud53c\uc544", + "SV": "\uc5d8\uc0b4\ubc14\ub3c4\ub974", + "GB": "\uc601\uad6d", + "VG": "\uc601\uad6d\ub839 \ubc84\uc9c4\uc544\uc77c\ub79c\ub4dc", + "IO": "\uc601\uad6d\ub839 \uc778\ub3c4\uc591 \uc2dd\ubbfc\uc9c0", + "YE": "\uc608\uba58", + "OM": "\uc624\ub9cc", + "AU": "\uc624\uc2a4\ud2b8\ub808\uc77c\ub9ac\uc544", + "AT": "\uc624\uc2a4\ud2b8\ub9ac\uc544", + "HN": "\uc628\ub450\ub77c\uc2a4", + "AX": "\uc62c\ub780\ub4dc \uc81c\ub3c4", + "WF": "\uc648\ub9ac\uc2a4-\ud478\ud22c\ub098 \uc81c\ub3c4", + "JO": "\uc694\ub974\ub2e8", + "UG": "\uc6b0\uac04\ub2e4", + "UY": "\uc6b0\ub8e8\uacfc\uc774", + "UZ": "\uc6b0\uc988\ubca0\ud0a4\uc2a4\ud0c4", + "UA": "\uc6b0\ud06c\ub77c\uc774\ub098", + "IQ": "\uc774\ub77c\ud06c", + "IR": "\uc774\ub780", + "IL": "\uc774\uc2a4\ub77c\uc5d8", + "EG": "\uc774\uc9d1\ud2b8", + "IT": "\uc774\ud0c8\ub9ac\uc544", + "IN": "\uc778\ub3c4", + "ID": "\uc778\ub3c4\ub124\uc2dc\uc544", + "JP": "\uc77c\ubcf8", + "JM": "\uc790\uba54\uc774\uce74", + "ZM": "\uc7a0\ube44\uc544", + "JE": "\uc800\uc9c0", + "GQ": "\uc801\ub3c4 \uae30\ub2c8", + "GE": "\uc870\uc9c0\uc544", + "CN": "\uc911\uad6d", + "CF": "\uc911\uc559 \uc544\ud504\ub9ac\uce74 \uacf5\ud654\uad6d", + "DJ": "\uc9c0\ubd80\ud2f0", + "GI": "\uc9c0\ube0c\ub864\ud130", + "ZW": "\uc9d0\ubc14\ube0c\uc6e8", + "TD": "\ucc28\ub4dc", + "CZ": "\uccb4\ucf54", + "CL": "\uce60\ub808", + "CM": "\uce74\uba54\ub8ec", + "CV": "\uce74\ubcf4\ubca0\ub974\ub370", + "KZ": "\uce74\uc790\ud750\uc2a4\ud0c4", + "QA": "\uce74\ud0c0\ub974", + "KH": "\uce84\ubcf4\ub514\uc544", + "CA": "\uce90\ub098\ub2e4", + "KE": "\ucf00\ub0d0", + "KY": "\ucf00\uc774\ub9e8 \uc81c\ub3c4", + "KM": "\ucf54\ubaa8\ub85c", + "CR": "\ucf54\uc2a4\ud0c0\ub9ac\uce74", + "XK": "\ucf54\uc18c\ubcf4", + "CC": "\ucf54\ucf54\uc2a4 \uc81c\ub3c4", + "CI": "\ucf54\ud2b8\ub514\ubd80\uc544\ub974", + "CO": "\ucf5c\ub86c\ube44\uc544", + "CG": "\ucf69\uace0-\ube0c\ub77c\uc790\ube4c", + "CD": "\ucf69\uace0-\ud0a8\uc0e4\uc0ac", + "CU": "\ucfe0\ubc14", + "KW": "\ucfe0\uc6e8\uc774\ud2b8", + "CK": "\ucfe1 \uc81c\ub3c4", + "CW": "\ud034\ub77c\uc18c", + "HR": "\ud06c\ub85c\uc544\ud2f0\uc544", + "CX": "\ud06c\ub9ac\uc2a4\ub9c8\uc2a4\uc12c", + "KG": "\ud0a4\ub974\uae30\uc2a4\uc2a4\ud0c4", + "KI": "\ud0a4\ub9ac\ubc14\uc2dc", + "CY": "\ud0a4\ud504\ub85c\uc2a4", + "TJ": "\ud0c0\uc9c0\ud0a4\uc2a4\ud0c4", + "TZ": "\ud0c4\uc790\ub2c8\uc544", + "TH": "\ud0dc\uad6d", + "TC": "\ud130\ud06c\uc2a4 \ucf00\uc774\ucee4\uc2a4 \uc81c\ub3c4", + "TR": "\ud130\ud0a4", + "TG": "\ud1a0\uace0", + "TK": "\ud1a0\ucf08\ub77c\uc6b0", + "TO": "\ud1b5\uac00", + "TM": "\ud22c\ub974\ud06c\uba54\ub2c8\uc2a4\ud0c4", + "TV": "\ud22c\ubc1c\ub8e8", + "TN": "\ud280\ub2c8\uc9c0", + "TT": "\ud2b8\ub9ac\ub2c8\ub2e4\ub4dc \ud1a0\ubc14\uace0", + "PA": "\ud30c\ub098\ub9c8", + "PY": "\ud30c\ub77c\uacfc\uc774", + "PK": "\ud30c\ud0a4\uc2a4\ud0c4", + "PG": "\ud30c\ud478\uc544\ub274\uae30\ub2c8", + "PW": "\ud314\ub77c\uc6b0", + "PS": "\ud314\ub808\uc2a4\ud0c0\uc778 \uc9c0\uad6c", + "FO": "\ud398\ub85c \uc81c\ub3c4", + "PE": "\ud398\ub8e8", + "PT": "\ud3ec\ub974\ud22c\uac08", + "FK": "\ud3ec\ud074\ub79c\ub4dc \uc81c\ub3c4", + "PL": "\ud3f4\ub780\ub4dc", + "PR": "\ud478\uc5d0\ub974\ud1a0\ub9ac\ucf54", + "FR": "\ud504\ub791\uc2a4", + "TF": "\ud504\ub791\uc2a4 \ub0a8\ubd80 \uc9c0\ubc29", + "GF": "\ud504\ub791\uc2a4\ub839 \uae30\uc544\ub098", + "PF": "\ud504\ub791\uc2a4\ub839 \ud3f4\ub9ac\ub124\uc2dc\uc544", + "FJ": "\ud53c\uc9c0", + "FI": "\ud540\ub780\ub4dc", + "PH": "\ud544\ub9ac\ud540", + "PN": "\ud54f\ucf00\uc5b8 \uc12c", + "HM": "\ud5c8\ub4dc \ub9e5\ub3c4\ub110\ub4dc \uc81c\ub3c4", + "HU": "\ud5dd\uac00\ub9ac", + "HK": "\ud64d\ucf69(\uc911\uad6d \ud2b9\ubcc4\ud589\uc815\uad6c)" +} diff --git a/public/intl/country/lt-LT.json b/public/intl/country/lt-LT.json new file mode 100644 index 0000000..970c65c --- /dev/null +++ b/public/intl/country/lt-LT.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistanas", + "IE": "Airija", + "AX": "Aland\u0173 Salos", + "AL": "Albanija", + "DZ": "Al\u017eyras", + "AS": "Amerikos Samoa", + "AD": "Andora", + "AI": "Angilija", + "AO": "Angola", + "AQ": "Antarktida", + "AG": "Antigva ir Barbuda", + "AR": "Argentina", + "AM": "Arm\u0117nija", + "AW": "Aruba", + "AU": "Australija", + "AT": "Austrija", + "AZ": "Azerbaid\u017eanas", + "BS": "Bahamos", + "BH": "Bahreinas", + "BY": "Baltarusija", + "BD": "Banglade\u0161as", + "BB": "Barbadosas", + "BE": "Belgija", + "BZ": "Belizas", + "BJ": "Beninas", + "BM": "Bermuda", + "GW": "Bisau Gvin\u0117ja", + "BO": "Bolivija", + "BA": "Bosnija ir Hercegovina", + "BW": "Botsvana", + "BR": "Brazilija", + "BN": "Brun\u0117jus", + "BG": "Bulgarija", + "BF": "Burkina Fasas", + "BI": "Burundis", + "BT": "Butanas", + "BV": "Buv\u0117 Sala", + "CF": "Centrin\u0117s Afrikos Respublika", + "TD": "\u010cadas", + "CZ": "\u010cekija", + "CL": "\u010cil\u0117", + "DK": "Danija", + "VG": "Did\u017eiosios Britanijos Mergeli\u0173 Salos", + "DM": "Dominika", + "DO": "Dominikos Respublika", + "CI": "Dramblio Kaulo Krantas", + "JE": "D\u017eersis", + "DJ": "D\u017eibutis", + "EG": "Egiptas", + "EC": "Ekvadoras", + "ER": "Eritr\u0117ja", + "EE": "Estija", + "ET": "Etiopija", + "FO": "Farer\u0173 Salos", + "FJ": "Fid\u017eis", + "PH": "Filipinai", + "FK": "Folklando Salos", + "GA": "Gabonas", + "GY": "Gajana", + "GM": "Gambija", + "GH": "Gana", + "GG": "Gernsis", + "GI": "Gibraltaras", + "GR": "Graikija", + "GD": "Grenada", + "GL": "Grenlandija", + "GE": "Gruzija", + "GU": "Guamas", + "GP": "Gvadelupa", + "GT": "Gvatemala", + "GN": "Gvin\u0117ja", + "HT": "Haitis", + "HM": "Herdo ir Makdonaldo Salos", + "HN": "Hond\u016bras", + "IN": "Indija", + "IO": "Indijos Vandenyno Brit\u0173 Sritis", + "ID": "Indonezija", + "HK": "Ypatingasis Administracinis Kinijos Regionas Honkongas", + "MO": "Ypatingasis Administracinis Kinijos Regionas Makao", + "IQ": "Irakas", + "IR": "Iranas", + "IS": "Islandija", + "ES": "Ispanija", + "IT": "Italija", + "IL": "Izraelis", + "JM": "Jamaika", + "JP": "Japonija", + "YE": "Jemenas", + "JO": "Jordanija", + "GB": "Jungtin\u0117 Karalyst\u0117", + "US": "Jungtin\u0117s Valstijos", + "AE": "Jungtiniai Arab\u0173 Emyratai", + "UM": "Jungtini\u0173 Valstij\u0173 Ma\u017eosios Tolimosios Salos", + "VI": "Jungtini\u0173 Valstij\u0173 Mergeli\u0173 Salos", + "ME": "Juodkalnija", + "KY": "Kaiman\u0173 Salos", + "CX": "Kal\u0117d\u0173 Sala", + "KH": "Kambod\u017ea", + "CM": "Kamer\u016bnas", + "CA": "Kanada", + "BQ": "Karib\u0173 Nyderlandai", + "QA": "Kataras", + "KZ": "Kazachstanas", + "KE": "Kenija", + "CN": "Kinija", + "CY": "Kipras", + "KG": "Kirgizija", + "KI": "Kiribatis", + "CW": "Kiurasao", + "CC": "Kokos\u0173 (Kilingo) Salos", + "CO": "Kolumbija", + "KM": "Komorai", + "CG": "Kongas-Brazavilis", + "CD": "Kongas-Kin\u0161asa", + "XK": "Kosovas", + "CR": "Kosta Rika", + "HR": "Kroatija", + "CU": "Kuba", + "CK": "Kuko Salos", + "KW": "Kuveitas", + "LA": "Laosas", + "LV": "Latvija", + "PL": "Lenkija", + "LS": "Lesotas", + "LB": "Libanas", + "LR": "Liberija", + "LY": "Libija", + "LI": "Lichten\u0161teinas", + "LT": "Lietuva", + "LU": "Liuksemburgas", + "MG": "Madagaskaras", + "YT": "Majotas", + "MY": "Malaizija", + "MW": "Malavis", + "MV": "Maldyvai", + "ML": "Malis", + "MT": "Malta", + "MP": "Marianos \u0160iaurin\u0117s Salos", + "MA": "Marokas", + "MH": "Mar\u0161alo Salos", + "MQ": "Martinika", + "MU": "Mauricijus", + "MR": "Mauritanija", + "MX": "Meksika", + "IM": "Meno Sala", + "MM": "Mianmaras (Birma)", + "FM": "Mikronezija", + "MD": "Moldova", + "MC": "Monakas", + "MN": "Mongolija", + "MS": "Montseratas", + "MZ": "Mozambikas", + "NA": "Namibija", + "NC": "Naujoji Kaledonija", + "NZ": "Naujoji Zelandija", + "NR": "Nauru", + "NP": "Nepalas", + "NL": "Nyderlandai", + "NG": "Nigerija", + "NE": "Nigeris", + "NI": "Nikaragva", + "NU": "Niuj\u0117", + "NF": "Norfolko sala", + "NO": "Norvegija", + "OM": "Omanas", + "PK": "Pakistanas", + "PW": "Palau", + "PS": "Palestinos teritorija", + "PA": "Panama", + "PG": "Papua Naujoji Gvin\u0117ja", + "PY": "Paragvajus", + "PE": "Peru", + "ZA": "Piet\u0173 Afrika", + "GS": "Piet\u0173 D\u017eord\u017eija ir Piet\u0173 Sandvi\u010do salos", + "KR": "Piet\u0173 Kor\u0117ja", + "SS": "Piet\u0173 Sudanas", + "PN": "Pitkerno salos", + "PT": "Portugalija", + "FR": "Pranc\u016bzija", + "GF": "Pranc\u016bzijos Gviana", + "TF": "Pranc\u016bzijos Piet\u0173 sritys", + "PF": "Pranc\u016bzijos Polinezija", + "PR": "Puerto Rikas", + "GQ": "Pusiaujo Gvin\u0117ja", + "RE": "Reunjonas", + "TL": "Ryt\u0173 Timoras", + "RW": "Ruanda", + "RO": "Rumunija", + "RU": "Rusija", + "SB": "Saliamono Salos", + "SV": "Salvadoras", + "WS": "Samoa", + "SM": "San Marinas", + "ST": "San Tom\u0117 ir Prinsip\u0117", + "SA": "Saudo Arabija", + "SC": "Sei\u0161eliai", + "BL": "Sen Bartelemi", + "MF": "Sen Martenas", + "PM": "Sen Pjeras ir Mikelonas", + "SN": "Senegalas", + "KN": "Sent Kitsas ir Nevis", + "LC": "Sent Lusija", + "RS": "Serbija", + "SL": "Siera Leon\u0117", + "SG": "Singap\u016bras", + "SX": "Sint Martenas", + "SY": "Sirija", + "SK": "Slovakija", + "SI": "Slov\u0117nija", + "SO": "Somalis", + "SD": "Sudanas", + "FI": "Suomija", + "SR": "Surinamas", + "SJ": "Svalbardas ir Janas Majenas", + "SZ": "Svazilandas", + "KP": "\u0160iaur\u0117s Kor\u0117ja", + "MK": "\u0160iaur\u0117s Makedonija", + "LK": "\u0160ri Lanka", + "SH": "\u0160v. Elenos Sala", + "SE": "\u0160vedija", + "CH": "\u0160veicarija", + "VC": "\u0160ventasis Vincentas ir Grenadinai", + "TJ": "Tad\u017eikija", + "TH": "Tailandas", + "TW": "Taivanas", + "TZ": "Tanzanija", + "TC": "Terkso ir Kaikoso Salos", + "TG": "Togas", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidadas ir Tobagas", + "TN": "Tunisas", + "TR": "Turkija", + "TM": "Turkm\u0117nistanas", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraina", + "UY": "Urugvajus", + "UZ": "Uzbekistanas", + "EH": "Vakar\u0173 Sachara", + "VU": "Vanuatu", + "VA": "Vatikano Miesto Valstyb\u0117", + "VE": "Venesuela", + "HU": "Vengrija", + "VN": "Vietnamas", + "DE": "Vokietija", + "WF": "Volisas ir Fut\u016bna", + "ZM": "Zambija", + "ZW": "Zimbabv\u0117", + "CV": "\u017daliasis Ky\u0161ulys" +} diff --git a/public/intl/country/mn-MN.json b/public/intl/country/mn-MN.json new file mode 100644 index 0000000..a288424 --- /dev/null +++ b/public/intl/country/mn-MN.json @@ -0,0 +1,252 @@ +{ + "AU": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438", + "AT": "\u0410\u0432\u0441\u0442\u0440\u0438", + "AZ": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0436\u0430\u043d", + "AX": "\u0410\u043b\u0430\u043d\u0434\u044b\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "AL": "\u0410\u043b\u0431\u0430\u043d\u0438", + "DZ": "\u0410\u043b\u0436\u0438\u0440", + "US": "\u0410\u043c\u0435\u0440\u0438\u043a\u0438\u0439\u043d \u041d\u044d\u0433\u0434\u0441\u044d\u043d \u0423\u043b\u0441", + "UM": "\u0410\u043c\u0435\u0440\u0438\u043a\u0438\u0439\u043d \u041d\u044d\u0433\u0434\u0441\u044d\u043d \u0423\u043b\u0441\u044b\u043d \u0431\u0430\u0433\u0430 \u0430\u0440\u043b\u0443\u0443\u0434", + "AS": "\u0410\u043c\u0435\u0440\u0438\u043a\u0438\u0439\u043d \u0421\u0430\u043c\u043e\u0430", + "AI": "\u0410\u043d\u0433\u0438\u043b\u044c\u044f", + "AO": "\u0410\u043d\u0433\u043e\u043b", + "AD": "\u0410\u043d\u0434\u043e\u0440\u0440\u0430", + "AQ": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u0434", + "AG": "\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0431\u0430 \u0411\u0430\u0440\u0431\u0443\u0434\u0430", + "VI": "\u0410\u041d\u0423-\u044b\u043d \u0412\u0438\u0440\u0436\u0438\u043d\u0438\u0439 \u0430\u0440\u043b\u0443\u0443\u0434", + "AE": "\u0410\u0440\u0430\u0431\u044b\u043d \u041d\u044d\u0433\u0434\u0441\u044d\u043d \u042d\u043c\u0438\u0440\u0442 \u0423\u043b\u0441", + "AR": "\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d", + "AM": "\u0410\u0440\u043c\u0435\u043d\u0438", + "AW": "\u0410\u0440\u0443\u0431\u0430", + "AF": "\u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d", + "BS": "\u0411\u0430\u0433\u0430\u043c\u044b\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "NP": "\u0411\u0430\u043b\u0431\u0430", + "BD": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448", + "BB": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441", + "EH": "\u0411\u0430\u0440\u0443\u0443\u043d \u0421\u0430\u0445\u0430\u0440", + "BH": "\u0411\u0430\u0445\u0440\u0435\u0439\u043d", + "BY": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c", + "BZ": "\u0411\u0435\u043b\u0438\u0437\u0435", + "BE": "\u0411\u0435\u043b\u044c\u0433\u0438", + "BJ": "\u0411\u0435\u043d\u0438\u043d", + "BM": "\u0411\u0435\u0440\u043c\u0443\u0434\u0430", + "MO": "\u0411\u041d\u0425\u0410\u0423-\u044b\u043d \u0422\u0443\u0441\u0433\u0430\u0439 \u0437\u0430\u0445\u0438\u0440\u0433\u0430\u0430\u043d\u044b \u0431\u04af\u0441 \u041c\u0430\u043a\u0430\u043e", + "HK": "\u0411\u041d\u0425\u0410\u0423-\u044b\u043d \u0422\u0443\u0441\u0433\u0430\u0439 \u0437\u0430\u0445\u0438\u0440\u0433\u0430\u0430\u043d\u044b \u0431\u04af\u0441 \u0425\u043e\u043d\u0433 \u041a\u043e\u043d\u0433", + "BG": "\u0411\u043e\u043b\u0433\u0430\u0440", + "BO": "\u0411\u043e\u043b\u0438\u0432\u0438", + "BA": "\u0411\u043e\u0441\u043d\u0438-\u0413\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d", + "BW": "\u0411\u043e\u0442\u0441\u0432\u0430\u043d", + "BR": "\u0411\u0440\u0430\u0437\u0438\u043b", + "VG": "\u0411\u0440\u0438\u0442\u0430\u043d\u0438\u0439\u043d \u0412\u0438\u0440\u0436\u0438\u043d\u0438\u0439 \u0430\u0440\u043b\u0443\u0443\u0434", + "IO": "\u0411\u0440\u0438\u0442\u0430\u043d\u0438\u0439\u043d \u0445\u0430\u0440\u044c\u044f\u0430 \u042d\u043d\u044d\u0442\u0445\u044d\u0433\u0438\u0439\u043d \u0434\u0430\u043b\u0430\u0439 \u0434\u0430\u0445\u044c \u043d\u0443\u0442\u0430\u0433 \u0434\u044d\u0432\u0441\u0433\u044d\u0440", + "BN": "\u0411\u0440\u0443\u043d\u0435\u0439", + "BV": "\u0411\u0443\u0432\u0435 \u0430\u0440\u0430\u043b", + "BF": "\u0411\u0443\u0440\u043a\u0438\u043d\u0430 \u0424\u0430\u0441\u043e", + "BI": "\u0411\u0443\u0440\u0443\u043d\u0434\u0438", + "BT": "\u0411\u0443\u0442\u0430\u043d", + "DO": "\u0411\u04af\u0433\u0434 \u041d\u0430\u0439\u0440\u0430\u043c\u0434\u0430\u0445 \u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d \u0423\u043b\u0441", + "VU": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443", + "VA": "\u0412\u0430\u0442\u0438\u043a\u0430\u043d \u0445\u043e\u0442 \u0443\u043b\u0441", + "VE": "\u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b", + "VN": "\u0412\u044c\u0435\u0442\u043d\u0430\u043c", + "GA": "\u0413\u0430\u0431\u043e\u043d", + "HT": "\u0413\u0430\u0438\u0442\u0438", + "GY": "\u0413\u0430\u0439\u0430\u043d\u0430", + "GM": "\u0413\u0430\u043c\u0431\u0438", + "GH": "\u0413\u0430\u043d\u0430", + "GP": "\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f", + "GT": "\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b", + "GN": "\u0413\u0432\u0438\u043d\u0435\u0439", + "GW": "\u0413\u0432\u0438\u043d\u0435\u0439-\u0411\u0438\u0441\u0430\u0443", + "DE": "\u0413\u0435\u0440\u043c\u0430\u043d", + "GG": "\u0413\u0435\u0440\u043d\u0441\u0438", + "GI": "\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440", + "HN": "\u0413\u043e\u043d\u0434\u0443\u0440\u0430\u0441", + "GR": "\u0413\u0440\u0435\u043a", + "GD": "\u0413\u0440\u0435\u043d\u0430\u0434\u0430", + "GL": "\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434", + "GU": "\u0413\u0443\u0430\u043c", + "GE": "\u0413\u04af\u0440\u0436", + "DK": "\u0414\u0430\u043d\u0438", + "DJ": "\u0414\u0436\u0438\u0431\u0443\u0442\u0438", + "DM": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430", + "EG": "\u0415\u0433\u0438\u043f\u0435\u0442", + "JE": "\u0416\u0435\u0440\u0441\u0438", + "ZM": "\u0417\u0430\u043c\u0431\u0438", + "ZW": "\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435", + "CX": "\u0417\u0443\u043b \u0441\u0430\u0440\u044b\u043d \u0430\u0440\u0430\u043b", + "IL": "\u0418\u0437\u0440\u0430\u0438\u043b\u044c", + "ID": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437", + "IQ": "\u0418\u0440\u0430\u043a", + "IR": "\u0418\u0440\u0430\u043d", + "IE": "\u0418\u0440\u043b\u0430\u043d\u0434", + "IS": "\u0418\u0441\u043b\u0430\u043d\u0434", + "ES": "\u0418\u0441\u043f\u0430\u043d\u0438", + "IT": "\u0418\u0442\u0430\u043b\u0438", + "GB": "\u0418\u0445 \u0411\u0440\u0438\u0442\u0430\u043d\u0438", + "YE": "\u0419\u0435\u043c\u0435\u043d", + "JO": "\u0419\u043e\u0440\u0434\u0430\u043d", + "CV": "\u041a\u0430\u0431\u043e-\u0412\u0435\u0440\u0434\u0435", + "KZ": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", + "KY": "\u041a\u0430\u0439\u043c\u0430\u043d\u044b \u0430\u0440\u043b\u0443\u0443\u0434", + "KH": "\u041a\u0430\u043c\u0431\u043e\u0436", + "CM": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d", + "CA": "\u041a\u0430\u043d\u0430\u0434", + "BQ": "\u041a\u0430\u0440\u0438\u0431\u044b\u043d \u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434", + "QA": "\u041a\u0430\u0442\u0430\u0440", + "KE": "\u041a\u0435\u043d\u0438", + "CY": "\u041a\u0438\u043f\u0440", + "KI": "\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438", + "CC": "\u041a\u043e\u043a\u043e\u0441 (\u041a\u0438\u0439\u043b\u0438\u043d\u0433) \u0430\u0440\u043b\u0443\u0443\u0434", + "CO": "\u041a\u043e\u043b\u0443\u043c\u0431\u0438", + "KM": "\u041a\u043e\u043c\u043e\u0440\u044b\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "CG": "\u041a\u043e\u043d\u0433\u043e-\u0411\u0440\u0430\u0437\u0437\u0430\u0432\u0438\u043b\u044c", + "CD": "\u041a\u043e\u043d\u0433\u043e-\u041a\u0438\u043d\u0448\u0430\u0441\u0430", + "CR": "\u041a\u043e\u0441\u0442\u0430-\u0420\u0438\u043a\u0430", + "XK": "\u041a\u043e\u0441\u043e\u0432\u043e", + "CI": "\u041a\u043e\u0442-\u0434\u2019\u0418\u0432\u0443\u0430\u0440", + "CU": "\u041a\u0443\u0431\u0430", + "KW": "\u041a\u0443\u0432\u0435\u0439\u0442", + "CK": "\u041a\u04af\u04af\u043a\u0438\u0439\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "KG": "\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u0442\u0430\u043d", + "CW": "\u041a\u044e\u0440\u0430\u0441\u0430\u043e", + "LA": "\u041b\u0430\u043e\u0441", + "LV": "\u041b\u0430\u0442\u0432\u0438", + "LS": "\u041b\u0435\u0441\u043e\u0442\u043e", + "LR": "\u041b\u0438\u0431\u0435\u0440\u0438", + "LB": "\u041b\u0438\u0432\u0430\u043d", + "LY": "\u041b\u0438\u0432\u0438", + "LT": "\u041b\u0438\u0442\u0432\u0430", + "LI": "\u041b\u0438\u0445\u0442\u0435\u043d\u0448\u0442\u0435\u0439\u043d", + "LU": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433", + "MU": "\u041c\u0430\u0432\u0440\u0438\u043a\u0438\u0439", + "MR": "\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438", + "MG": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440", + "YT": "\u041c\u0430\u0439\u043e\u0442\u0442\u0430", + "MW": "\u041c\u0430\u043b\u0430\u0432\u0438", + "MY": "\u041c\u0430\u043b\u0430\u0439\u0437", + "ML": "\u041c\u0430\u043b\u0438", + "MV": "\u041c\u0430\u043b\u044c\u0434\u0438\u0432", + "MT": "\u041c\u0430\u043b\u044c\u0442\u0430", + "MQ": "\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a", + "MH": "\u041c\u0430\u0440\u0448\u0430\u043b\u043b\u044b\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "MX": "\u041c\u0435\u043a\u0441\u0438\u043a", + "FM": "\u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438", + "MZ": "\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a", + "MD": "\u041c\u043e\u043b\u0434\u043e\u0432\u0430", + "MC": "\u041c\u043e\u043d\u0430\u043a\u043e", + "MN": "\u041c\u043e\u043d\u0433\u043e\u043b", + "ME": "\u041c\u043e\u043d\u0442\u0435\u043d\u0435\u0433\u0440\u043e", + "MS": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0440\u0430\u0442", + "MA": "\u041c\u043e\u0440\u043e\u043a\u043a\u043e", + "MM": "\u041c\u044c\u044f\u043d\u043c\u0430\u0440", + "IM": "\u041c\u044d\u043d \u0410\u0440\u0430\u043b", + "NA": "\u041d\u0430\u043c\u0438\u0431\u0438", + "NR": "\u041d\u0430\u0443\u0440\u0443", + "NE": "\u041d\u0438\u0433\u0435\u0440", + "NG": "\u041d\u0438\u0433\u0435\u0440\u0438", + "NL": "\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434", + "NI": "\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430", + "NU": "\u041d\u0438\u0443\u044d", + "NO": "\u041d\u043e\u0440\u0432\u0435\u0433\u0438", + "NF": "\u041d\u043e\u0440\u0444\u043e\u043b\u043a \u0430\u0440\u0430\u043b", + "OM": "\u041e\u043c\u0430\u043d", + "RU": "\u041e\u0440\u043e\u0441", + "ZA": "\u04e8\u043c\u043d\u04e9\u0434 \u0410\u0444\u0440\u0438\u043a", + "GS": "\u04e8\u043c\u043d\u04e9\u0434 \u0416\u043e\u0440\u0436\u0438\u0430 \u0431\u0430 \u04e8\u043c\u043d\u04e9\u0434 \u0421\u044d\u043d\u0434\u0432\u0438\u0447\u0438\u0439\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "KR": "\u04e8\u043c\u043d\u04e9\u0434 \u0421\u043e\u043b\u043e\u043d\u0433\u043e\u0441", + "SS": "\u04e8\u043c\u043d\u04e9\u0434 \u0421\u0443\u0434\u0430\u043d", + "PK": "\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d", + "PW": "\u041f\u0430\u043b\u0430\u0443", + "PS": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u044b \u043d\u0443\u0442\u0430\u0433 \u0434\u044d\u0432\u0441\u0433\u044d\u0440", + "PA": "\u041f\u0430\u043d\u0430\u043c", + "PG": "\u041f\u0430\u043f\u0443\u0430 \u0428\u0438\u043d\u044d \u0413\u0432\u0438\u043d\u0435\u0439", + "PY": "\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439", + "PE": "\u041f\u0435\u0440\u0443", + "PN": "\u041f\u0438\u0442\u043a\u044d\u0440\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "PL": "\u041f\u043e\u043b\u044c\u0448", + "PT": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b", + "PR": "\u041f\u0443\u044d\u0440\u0442\u043e-\u0420\u0438\u043a\u043e", + "RE": "\u0420\u0435\u044e\u043d\u0438\u043e\u043d", + "RW": "\u0420\u0443\u0430\u043d\u0434\u0430", + "RO": "\u0420\u0443\u043c\u044b\u043d", + "WS": "\u0421\u0430\u043c\u043e\u0430", + "SM": "\u0421\u0430\u043d-\u041c\u0430\u0440\u0438\u043d\u043e", + "ST": "\u0421\u0430\u043d-\u0422\u043e\u043c\u0435 \u0431\u0430 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438", + "SA": "\u0421\u0430\u0443\u0434\u044b\u043d \u0410\u0440\u0430\u0431", + "SJ": "\u0421\u0432\u0430\u043b\u0431\u0430\u0440\u0434 \u0431\u0430 \u042f\u043d \u041c\u0430\u0439\u0435\u043d", + "SC": "\u0421\u0435\u0439\u0448\u0435\u043b\u0438\u0439\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "SN": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b", + "LC": "\u0421\u0435\u043d\u0442 \u041b\u044e\u0441\u0438\u0430", + "SH": "\u0421\u0435\u043d\u0442 \u0425\u0435\u043b\u0435\u043d\u0430", + "BL": "\u0421\u0435\u043d\u0442-\u0411\u0430\u0440\u0442\u0435\u043b\u044c\u043c\u0438", + "VC": "\u0421\u0435\u043d\u0442-\u0412\u0438\u043d\u0441\u0435\u043d\u0442 \u0431\u0430 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d", + "KN": "\u0421\u0435\u043d\u0442-\u041a\u0438\u0442\u0442\u0441 \u0431\u0430 \u041d\u0435\u0432\u0438\u0441", + "MF": "\u0421\u0435\u043d\u0442-\u041c\u0430\u0440\u0442\u0438\u043d", + "PM": "\u0421\u0435\u043d\u0442-\u041f\u044c\u0435\u0440 \u0431\u0430 \u041c\u0438\u043a\u0435\u043b\u043e", + "RS": "\u0421\u0435\u0440\u0431\u0438", + "SG": "\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440", + "SX": "\u0421\u0438\u043d\u0442 \u041c\u0430\u0440\u0442\u0435\u043d", + "SY": "\u0421\u0438\u0440\u0438", + "SK": "\u0421\u043b\u043e\u0432\u0430\u043a", + "SI": "\u0421\u043b\u043e\u0432\u0435\u043d\u0438", + "SB": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u044b \u0430\u0440\u043b\u0443\u0443\u0434", + "SO": "\u0421\u043e\u043c\u0430\u043b\u0438", + "SD": "\u0421\u0443\u0434\u0430\u043d", + "SR": "\u0421\u0443\u0440\u0438\u043d\u0430\u043c", + "SL": "\u0421\u044c\u0435\u0440\u0440\u0430-\u041b\u0435\u043e\u043d\u0435", + "TJ": "\u0422\u0430\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d", + "TW": "\u0422\u0430\u0439\u0432\u0430\u043d\u044c", + "TH": "\u0422\u0430\u0439\u043b\u0430\u043d\u0434", + "TZ": "\u0422\u0430\u043d\u0437\u0430\u043d\u0438", + "TL": "\u0422\u0438\u043c\u043e\u0440-\u041b\u0435\u0441\u0442\u0435", + "TG": "\u0422\u043e\u0433\u043e", + "TK": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443", + "TO": "\u0422\u043e\u043d\u0433\u0430", + "CF": "\u0422\u04e9\u0432 \u0410\u0444\u0440\u0438\u043a\u0438\u0439\u043d \u0411\u04af\u0433\u0434 \u041d\u0430\u0439\u0440\u0430\u043c\u0434\u0430\u0445 \u0423\u043b\u0441", + "TT": "\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0431\u0430 \u0422\u043e\u0431\u0430\u0433\u043e", + "TV": "\u0422\u0443\u0432\u0430\u043b\u0443", + "TN": "\u0422\u0443\u043d\u0438\u0441", + "TR": "\u0422\u0443\u0440\u043a", + "TC": "\u0422\u0443\u0440\u043a \u0431\u0430 \u041a\u0430\u0439\u043a\u043e\u0441\u044b\u043d \u0410\u0440\u043b\u0443\u0443\u0434", + "TM": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d", + "UG": "\u0423\u0433\u0430\u043d\u0434\u0430", + "UZ": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d", + "UA": "\u0423\u043a\u0440\u0430\u0438\u043d", + "HU": "\u0423\u043d\u0433\u0430\u0440", + "WF": "\u0423\u043e\u043b\u043b\u0438\u0441 \u0431\u0430 \u0424\u0443\u0442\u0443\u043d\u0430", + "UY": "\u0423\u0440\u0443\u0433\u0432\u0430\u0439", + "FO": "\u0424\u0430\u0440\u0435\u0440\u044b\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "FJ": "\u0424\u0438\u0436\u0438", + "PH": "\u0424\u0438\u043b\u0438\u043f\u043f\u0438\u043d", + "FI": "\u0424\u0438\u043d\u043b\u044f\u043d\u0434", + "FK": "\u0424\u043e\u043b\u043a\u043b\u0435\u043d\u0434\u0438\u0439\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "FR": "\u0424\u0440\u0430\u043d\u0446", + "GF": "\u0424\u0440\u0430\u043d\u0446\u044b\u043d \u0413\u0432\u0438\u0430\u043d\u0430", + "TF": "\u0424\u0440\u0430\u043d\u0446\u044b\u043d \u04e9\u043c\u043d\u04e9\u0434 \u0433\u0430\u0437\u0430\u0440 \u043d\u0443\u0442\u0430\u0433", + "PF": "\u0424\u0440\u0430\u043d\u0446\u044b\u043d \u041f\u043e\u043b\u0438\u043d\u0435\u0437", + "HM": "\u0425\u0435\u0440\u0434 \u0431\u0430 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u044c\u0434\u0438\u0439\u043d \u0430\u0440\u043b\u0443\u0443\u0434", + "MK": "\u0425\u043e\u0439\u0434 \u041c\u0430\u043a\u0435\u0434\u043e\u043d", + "MP": "\u0425\u043e\u0439\u0434 \u041c\u0430\u0440\u0438\u0430\u043d\u044b \u0430\u0440\u043b\u0443\u0443\u0434", + "KP": "\u0425\u043e\u0439\u0434 \u0421\u043e\u043b\u043e\u043d\u0433\u043e\u0441", + "HR": "\u0425\u043e\u0440\u0432\u0430\u0442", + "CN": "\u0425\u044f\u0442\u0430\u0434", + "TD": "\u0427\u0430\u0434", + "CZ": "\u0427\u0435\u0445", + "CL": "\u0427\u0438\u043b\u0438", + "SE": "\u0428\u0432\u0435\u0434", + "CH": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u044c", + "NZ": "\u0428\u0438\u043d\u044d \u0417\u0435\u043b\u0430\u043d\u0434", + "NC": "\u0428\u0438\u043d\u044d \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438", + "LK": "\u0428\u0440\u0438-\u041b\u0430\u043d\u043a\u0430", + "EC": "\u042d\u043a\u0432\u0430\u0434\u043e\u0440", + "GQ": "\u042d\u043a\u0432\u0430\u0442\u043e\u0440\u044b\u043d \u0413\u0432\u0438\u043d\u0435\u0439", + "SV": "\u042d\u043b\u044c \u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440", + "IN": "\u042d\u043d\u044d\u0442\u0445\u044d\u0433", + "ER": "\u042d\u0440\u0438\u0442\u0440\u0435\u0439", + "SZ": "\u042d\u0441\u0432\u0430\u0442\u0438\u043d\u0438", + "EE": "\u042d\u0441\u0442\u043e\u043d\u0438", + "ET": "\u042d\u0442\u0438\u043e\u043f", + "JM": "\u042f\u043c\u0430\u0439\u043a\u0430", + "JP": "\u042f\u043f\u043e\u043d" +} diff --git a/public/intl/country/ms-MY.json b/public/intl/country/ms-MY.json new file mode 100644 index 0000000..d54ed0a --- /dev/null +++ b/public/intl/country/ms-MY.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "ZA": "Afrika Selatan", + "AL": "Albania", + "DZ": "Algeria", + "US": "Amerika Syarikat", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antartika", + "AG": "Antigua dan Barbuda", + "SA": "Arab Saudi", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaijan", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "NL": "Belanda", + "BQ": "Belanda Caribbean", + "BY": "Belarus", + "BE": "Belgium", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia dan Herzegovina", + "BW": "Botswana", + "BR": "Brazil", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "CM": "Cameroon", + "CV": "Cape Verde", + "TD": "Chad", + "CL": "Chile", + "CN": "China", + "CO": "Colombia", + "KM": "Comoros", + "CG": "Congo - Brazzaville", + "CD": "Congo - Kinshasa", + "CR": "Costa Rica", + "CI": "Cote d\u2019Ivoire", + "HR": "Croatia", + "CU": "Cuba", + "CW": "Curacao", + "CY": "Cyprus", + "CZ": "Czechia", + "DK": "Denmark", + "DJ": "Djibouti", + "DM": "Dominica", + "EC": "Ecuador", + "SV": "El Salvador", + "AE": "Emiriah Arab Bersatu", + "ER": "Eritrea", + "EE": "Estonia", + "ET": "Ethiopia", + "FJ": "Fiji", + "PH": "Filipina", + "FI": "Finland", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Greece", + "GL": "Greenland", + "GD": "Grenada", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GF": "Guiana Perancis", + "GN": "Guinea", + "GW": "Guinea Bissau", + "GQ": "Guinea Khatulistiwa", + "GY": "Guyana", + "HT": "Haiti", + "HN": "Honduras", + "HK": "Hong Kong SAR China", + "HU": "Hungary", + "IS": "Iceland", + "IN": "India", + "ID": "Indonesia", + "IR": "Iran", + "IQ": "Iraq", + "IE": "Ireland", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Itali", + "JM": "Jamaica", + "JP": "Jepun", + "DE": "Jerman", + "JE": "Jersey", + "JO": "Jordan", + "CA": "Kanada", + "KZ": "Kazakhstan", + "KH": "Kemboja", + "KE": "Kenya", + "AX": "Kepulauan Aland", + "KY": "Kepulauan Cayman", + "CC": "Kepulauan Cocos (Keeling)", + "CK": "Kepulauan Cook", + "FK": "Kepulauan Falkland", + "FO": "Kepulauan Faroe", + "GS": "Kepulauan Georgia Selatan & Sandwich Selatan", + "HM": "Kepulauan Heard & McDonald", + "MP": "Kepulauan Mariana Utara", + "MH": "Kepulauan Marshall", + "PN": "Kepulauan Pitcairn", + "SB": "Kepulauan Solomon", + "UM": "Kepulauan Terpencil A.S.", + "TC": "Kepulauan Turks dan Caicos", + "VI": "Kepulauan Virgin A.S.", + "VG": "Kepulauan Virgin British", + "KI": "Kiribati", + "KR": "Korea Selatan", + "KP": "Korea Utara", + "XK": "Kosovo", + "VA": "Kota Vatican", + "KW": "Kuwait", + "KG": "Kyrgyzstan", + "LA": "Laos", + "LV": "Latvia", + "LS": "Lesotho", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Lithuania", + "LB": "Lubnan", + "LU": "Luxembourg", + "MO": "Macau SAR China", + "MK": "Macedonia Utara", + "MG": "Madagaskar", + "MA": "Maghribi", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldives", + "ML": "Mali", + "MT": "Malta", + "MQ": "Martinique", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "EG": "Mesir", + "MX": "Mexico", + "FM": "Micronesia", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NC": "New Caledonia", + "NZ": "New Zealand", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "NO": "Norway", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua New Guinea", + "PY": "Paraguay", + "FR": "Perancis", + "PE": "Peru", + "PL": "Poland", + "PF": "Polinesia Perancis", + "PT": "Portugal", + "PR": "Puerto Rico", + "BV": "Pulau Bouvet", + "CX": "Pulau Krismas", + "NF": "Pulau Norfolk", + "QA": "Qatar", + "CF": "Republik Afrika Tengah", + "DO": "Republik Dominica", + "RE": "Reunion", + "RO": "Romania", + "RU": "Rusia", + "RW": "Rwanda", + "EH": "Sahara Barat", + "SH": "Saint Helena", + "KN": "Saint Kitts dan Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "PM": "Saint Pierre dan Miquelon", + "VC": "Saint Vincent dan Grenadines", + "WS": "Samoa", + "AS": "Samoa Amerika", + "SM": "San Marino", + "ST": "Sao Tome dan Principe", + "SN": "Senegal", + "ES": "Sepanyol", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapura", + "SX": "Sint Maarten", + "SK": "Slovakia", + "SI": "Slovenia", + "SO": "Somalia", + "LK": "Sri Lanka", + "BL": "St. Barthelemy", + "SD": "Sudan", + "SS": "Sudan Selatan", + "SR": "Surinam", + "SJ": "Svalbard dan Jan Mayen", + "SZ": "Swaziland", + "SE": "Sweden", + "CH": "Switzerland", + "SY": "Syria", + "TW": "Taiwan", + "TJ": "Tajikistan", + "TZ": "Tanzania", + "TH": "Thailand", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad dan Tobago", + "TN": "Tunisia", + "TR": "Turki", + "TM": "Turkmenistan", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraine", + "GB": "United Kingdom", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis dan Futuna", + "IO": "Wilayah Lautan Hindi British", + "PS": "Wilayah Palestin", + "TF": "Wilayah Selatan Perancis", + "YE": "Yaman", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/my-MM.json b/public/intl/country/my-MM.json new file mode 100644 index 0000000..523ab10 --- /dev/null +++ b/public/intl/country/my-MM.json @@ -0,0 +1,252 @@ +{ + "CA": "\u1000\u1014\u1031\u1012\u102b", + "KG": "\u1000\u102c\u1002\u103b\u1005\u1039\u1005\u1010\u1014\u103a", + "KZ": "\u1000\u102c\u1007\u1000\u103a\u1005\u1010\u1014\u103a", + "XK": "\u1000\u102d\u102f\u1006\u102d\u102f\u1017\u102d\u102f", + "QA": "\u1000\u102c\u1010\u102c", + "BQ": "\u1000\u102c\u101b\u1005\u103a\u1018\u102e\u101a\u1036 \u1014\u101a\u103a\u101e\u102c\u101c\u1014\u103a", + "KW": "\u1000\u1030\u101d\u102d\u1010\u103a", + "KY": "\u1000\u1031\u1019\u1014\u103a \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "CC": "\u1000\u102d\u102f\u1000\u102d\u102f\u1038\u1000\u103b\u103d\u1014\u103a\u1038", + "KM": "\u1000\u102d\u102f\u1019\u102d\u102f\u101b\u102d\u102f\u1005\u103a", + "CO": "\u1000\u102d\u102f\u101c\u1036\u1018\u102e\u101a\u102c", + "CR": "\u1000\u102d\u102f\u1037\u1005\u103a\u1010\u102c\u101b\u102e\u1000\u102c", + "CI": "\u1000\u102d\u102f\u1037\u1010\u103a \u1012\u102e\u1017\u103d\u102c", + "KE": "\u1000\u1004\u103a\u100a\u102c", + "CM": "\u1000\u1004\u103a\u1019\u101b\u103d\u1014\u103a\u1038", + "CV": "\u1000\u102d\u1010\u103a\u1017\u102c\u1012\u102e", + "KH": "\u1000\u1019\u1039\u1018\u1031\u102c\u1012\u102e\u1038\u101a\u102c\u1038", + "CW": "\u1000\u103b\u1030\u101b\u1031\u1038\u1000\u102d\u102f\u1038\u1005\u103a", + "CU": "\u1000\u103b\u1030\u1038\u1018\u102c\u1038", + "CK": "\u1000\u103d\u1010\u103a \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "CD": "\u1000\u103d\u1014\u103a\u1002\u102d\u102f", + "CG": "\u1000\u103d\u1014\u103a\u1002\u102d\u102f-\u1018\u101b\u102c\u1007\u102c\u1017\u102e\u1038\u101c\u103a", + "HR": "\u1001\u101b\u102d\u102f\u1021\u1031\u1038\u101b\u103e\u102c\u1038", + "CX": "\u1001\u101b\u1005\u103a\u1005\u1019\u1010\u103a \u1000\u103b\u103d\u1014\u103a\u1038", + "KI": "\u1001\u102e\u101b\u102e\u1018\u102c\u1010\u102e", + "CL": "\u1001\u103b\u102e\u101c\u102e", + "CZ": "\u1001\u103b\u1000\u103a\u1000\u102e\u101a\u102c\u1038", + "TD": "\u1001\u103b\u1012\u103a", + "GR": "\u1002\u101b\u102d", + "GD": "\u1002\u101b\u102e\u1014\u1031\u1012\u102b", + "GL": "\u1002\u101b\u1004\u103a\u1038\u101c\u1014\u103a\u1038", + "GH": "\u1002\u102b\u1014\u102c", + "GA": "\u1002\u102b\u1018\u103d\u1014\u103a", + "GN": "\u1002\u102e\u1014\u102e", + "GW": "\u1002\u102e\u1014\u102e-\u1018\u102e\u1005\u1031\u102c", + "GU": "\u1002\u1030\u1021\u1019\u103a", + "GY": "\u1002\u102d\u102f\u1004\u103a\u101a\u102c\u1014\u102c", + "GM": "\u1002\u1019\u103a\u1018\u102e\u101b\u102c", + "JP": "\u1002\u103b\u1015\u1014\u103a", + "JM": "\u1002\u103b\u1019\u1031\u1000\u102c", + "JE": "\u1002\u103b\u102c\u1005\u102e", + "DE": "\u1002\u103b\u102c\u1019\u1014\u102e", + "GI": "\u1002\u103b\u102e\u1018\u101b\u1031\u102c\u103a\u101c\u103a\u1010\u102c", + "DJ": "\u1002\u103b\u102e\u1018\u1030\u1010\u102e", + "GE": "\u1002\u103b\u1031\u102c\u103a\u1002\u103b\u102e\u101a\u102c", + "JO": "\u1002\u103b\u1031\u102c\u103a\u1012\u1014\u103a", + "GT": "\u1002\u103d\u102b\u1010\u102e\u1019\u102c\u101c\u102c", + "GP": "\u1002\u103d\u102b\u1012\u102e\u101c\u102f", + "GG": "\u1002\u103d\u1014\u103a\u1038\u1007\u102e", + "ES": "\u1005\u1015\u102d\u1014\u103a", + "SJ": "\u1005\u1017\u102d\u102f\u101c\u103a\u1018\u1010\u103a\u1014\u103e\u1004\u1037\u103a\u1002\u103b\u1014\u103a\u1019\u1031\u101b\u1014\u103a", + "KN": "\u1005\u102d\u1014\u1037\u103a\u1000\u1005\u103a\u1014\u103e\u1004\u1037\u103a\u1014\u102e\u1017\u102e\u1005\u103a", + "PM": "\u1005\u102d\u1014\u1037\u103a\u1015\u102e\u1021\u1032\u101b\u103a\u1014\u103e\u1004\u1037\u103a \u1019\u102e\u1000\u103d\u102e\u101c\u103d\u1014\u103a", + "VC": "\u1005\u102d\u1014\u1037\u103a\u1017\u1004\u103a\u1038\u1006\u1004\u1037\u103a\u1014\u103e\u1004\u1037\u103a \u1002\u101b\u102d\u1014\u1031\u1012\u102d\u102f\u1004\u103a", + "BL": "\u1005\u102d\u1014\u1037\u103a\u1018\u102c\u101e\u101a\u103a\u101c\u103a\u1019\u102e", + "MF": "\u1005\u102d\u1014\u1037\u103a\u1019\u102c\u1010\u1004\u103a", + "LC": "\u1005\u102d\u1014\u1037\u103a\u101c\u1030\u1005\u102e\u101a\u102c", + "SH": "\u1005\u102d\u1014\u1037\u103a\u101f\u101a\u103a\u101c\u101a\u103a\u1014\u102c", + "SG": "\u1005\u1004\u103a\u1039\u1000\u102c\u1015\u1030", + "SX": "\u1005\u1004\u1037\u103a\u1019\u102c\u1010\u1004\u103a", + "WS": "\u1006\u1019\u102d\u102f\u1038\u1021\u102c\u1038", + "SI": "\u1006\u101c\u102d\u102f\u1017\u1031\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "SK": "\u1006\u101c\u102d\u102f\u1017\u1000\u103a\u1000\u102e\u1038\u101a\u102c\u1038", + "RS": "\u1006\u102c\u1038\u1018\u102e\u1038\u101a\u102c\u1038", + "SN": "\u1006\u102e\u1014\u102e\u1002\u1031\u102b", + "SL": "\u1006\u102e\u101a\u102c\u101b\u102c \u101c\u102e\u101a\u103d\u1014\u103a\u1038", + "SY": "\u1006\u102e\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "SD": "\u1006\u1030\u1012\u1014\u103a", + "SR": "\u1006\u1030\u101b\u102c\u1014\u1019\u103a", + "SC": "\u1006\u1031\u1038\u101b\u103e\u1032", + "SA": "\u1006\u1031\u102c\u103a\u1012\u102e\u1021\u102c\u101b\u1031\u1038\u1018\u102e\u1038\u101a\u102c\u1038", + "SB": "\u1006\u1031\u102c\u103a\u101c\u1019\u103d\u1014\u103a\u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "SO": "\u1006\u102d\u102f\u1019\u102c\u101c\u102e\u101a\u102c", + "CY": "\u1006\u102d\u102f\u1000\u103a\u1015\u101b\u1015\u103a\u1005\u103a", + "ST": "\u1006\u1031\u102c\u1004\u103a\u1010\u1030\u1019\u1031\u1038\u1014\u103e\u1004\u1037\u103a \u1015\u101b\u1004\u103a\u1005\u102e\u1015\u102e", + "SM": "\u1006\u1014\u103a\u1019\u102c\u101b\u102e\u1014\u102d\u102f", + "SZ": "\u1006\u103d\u102c\u1007\u102e\u101c\u1014\u103a", + "SE": "\u1006\u103d\u102e\u1012\u1004\u103a", + "CH": "\u1006\u103d\u1005\u103a\u1007\u102c\u101c\u1014\u103a", + "ZW": "\u1007\u1004\u103a\u1018\u102c\u1018\u103d\u1031", + "ZM": "\u1007\u1019\u103a\u1018\u102e\u101a\u102c", + "CN": "\u1010\u101b\u102f\u1010\u103a", + "TJ": "\u1010\u102c\u1002\u103b\u102e\u1000\u1005\u1039\u1005\u1010\u1014\u103a", + "TM": "\u1010\u102c\u1037\u1001\u103a\u1019\u1004\u103a\u1014\u1005\u1039\u1005\u1010\u1014\u103a", + "TN": "\u1010\u1030\u1014\u102e\u1038\u101b\u103e\u102c\u1038", + "TV": "\u1010\u1030\u1017\u102c\u1038\u101c\u1030", + "TR": "\u1010\u1030\u101b\u1000\u102e", + "TK": "\u1010\u102d\u102f\u1000\u101c\u1031\u102c\u1004\u103a", + "TG": "\u1010\u102d\u102f\u1002\u102d\u102f", + "TC": "\u1010\u1001\u103a\u1005\u103a\u1014\u103e\u1004\u1037\u103a\u1000\u102c\u1021\u102e\u1000\u102d\u102f\u1005\u103a\u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "GS": "\u1010\u1031\u102c\u1004\u103a \u1002\u103b\u1031\u102c\u103a\u1002\u103b\u102e\u101a\u102c \u1014\u103e\u1004\u1037\u103a \u1010\u1031\u102c\u1004\u103a \u1006\u1004\u103a\u1038\u1012\u101d\u1005\u103a\u1002\u103b\u103a \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f\u1019\u103b\u102c\u1038", + "SS": "\u1010\u1031\u102c\u1004\u103a \u1006\u1030\u1012\u1014\u103a", + "KR": "\u1010\u1031\u102c\u1004\u103a\u1000\u102d\u102f\u101b\u102e\u1038\u101a\u102c\u1038", + "ZA": "\u1010\u1031\u102c\u1004\u103a\u1021\u102c\u1016\u101b\u102d\u1000", + "TZ": "\u1010\u1014\u103a\u1007\u1014\u103a\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "TO": "\u1010\u103d\u1014\u103a\u1002\u102b", + "TT": "\u1011\u101b\u102e\u1014\u102e\u1012\u1010\u103a\u1014\u103e\u1004\u1037\u103a \u1010\u102d\u102f\u1018\u1000\u103a\u1002\u102d\u102f", + "TW": "\u1011\u102d\u102f\u1004\u103a\u101d\u1019\u103a", + "TH": "\u1011\u102d\u102f\u1004\u103a\u1038", + "DM": "\u1012\u102d\u102f\u1019\u102e\u1014\u102e\u1000\u102c", + "DO": "\u1012\u102d\u102f\u1019\u102e\u1014\u102e\u1000\u1014\u103a", + "DK": "\u1012\u102d\u1014\u103a\u1038\u1019\u1010\u103a", + "NA": "\u1014\u1019\u102e\u1038\u1018\u102e\u1038\u101a\u102c\u1038", + "NC": "\u1014\u101a\u1030\u1038 \u1000\u101a\u103a\u101c\u102e\u1012\u102d\u102f\u1014\u102e\u1038\u101a\u102c\u1038", + "NZ": "\u1014\u101a\u1030\u1038\u1007\u102e\u101c\u1014\u103a", + "NI": "\u1014\u102e\u1000\u102c\u101b\u102c\u1002\u103d\u102b", + "NP": "\u1014\u102e\u1015\u1031\u102b", + "NU": "\u1014\u102e\u1025\u1030\u1021\u1031", + "NF": "\u1014\u1031\u102c\u1016\u102f\u1010\u103a\u1000\u103b\u103d\u1014\u103a\u1038", + "NR": "\u1014\u1031\u102c\u103a\u101b\u1030\u1038", + "NO": "\u1014\u1031\u102c\u103a\u101d\u1031", + "NE": "\u1014\u102d\u102f\u1004\u103a\u1002\u103b\u102c", + "NG": "\u1014\u102d\u102f\u1004\u103a\u1002\u103b\u102e\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "NL": "\u1014\u101a\u103a\u101e\u102c\u101c\u1014\u103a", + "PA": "\u1015\u1014\u102c\u1038\u1019\u102c\u1038", + "PW": "\u1015\u101c\u102c\u1021\u102d\u102f", + "PK": "\u1015\u102b\u1000\u1005\u1039\u1005\u1010\u1014\u103a", + "PG": "\u1015\u102b\u1015\u1030\u1021\u102c \u1014\u101a\u1030\u1038\u1002\u102e\u1014\u102e", + "PY": "\u1015\u102b\u101b\u102c\u1002\u103d\u1031\u1038", + "PS": "\u1015\u102b\u101c\u1000\u103a\u1005\u1010\u102d\u102f\u1004\u103a\u1038 \u1015\u102d\u102f\u1004\u103a\u1014\u1000\u103a", + "PE": "\u1015\u102e\u101b\u1030\u1038", + "PT": "\u1015\u1031\u102b\u103a\u1010\u1030\u1002\u102e", + "PR": "\u1015\u1031\u102b\u103a\u1010\u102d\u102f\u101b\u102e\u1000\u102d\u102f", + "PL": "\u1015\u102d\u102f\u101c\u1014\u103a", + "PN": "\u1015\u1005\u103a\u1010\u103a\u1000\u102d\u1014\u103a\u1038\u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "FR": "\u1015\u103c\u1004\u103a\u101e\u1005\u103a", + "GF": "\u1015\u103c\u1004\u103a\u101e\u1005\u103a \u1002\u102e\u101a\u102c\u1014\u102c", + "TF": "\u1015\u103c\u1004\u103a\u101e\u1005\u103a \u1010\u1031\u102c\u1004\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1015\u102d\u102f\u1004\u103a\u1014\u1000\u103a\u1019\u103b\u102c\u1038", + "PF": "\u1015\u103c\u1004\u103a\u101e\u1005\u103a \u1015\u1031\u102b\u103a\u101c\u102e\u1014\u102e\u1038\u101b\u103e\u102c\u1038", + "FO": "\u1016\u102c\u101b\u102d\u102f\u1038 \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f\u1019\u103b\u102c\u1038", + "PH": "\u1016\u102d\u101c\u1005\u103a\u1015\u102d\u102f\u1004\u103a", + "FJ": "\u1016\u102e\u1002\u103b\u102e", + "FK": "\u1016\u1031\u102c\u1037\u1000\u101c\u1014\u103a \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "FI": "\u1016\u1004\u103a\u101c\u1014\u103a", + "VU": "\u1017\u1014\u103d\u102c\u1038\u1010\u1030", + "CF": "\u1017\u101f\u102d\u102f \u1021\u102c\u1016\u101b\u102d\u1000 \u1015\u103c\u100a\u103a\u1011\u1031\u102c\u1004\u103a\u1005\u102f", + "VA": "\u1017\u102c\u1010\u102e\u1000\u1014\u103a\u1005\u102e\u1038\u1010\u102e\u1038", + "VN": "\u1017\u102e\u101a\u1000\u103a\u1014\u1019\u103a", + "VE": "\u1017\u1004\u103a\u1014\u102e\u1007\u103d\u1032\u101c\u102c\u1038", + "VG": "\u1017\u103c\u102d\u1010\u102d\u101e\u103b\u103e \u1017\u102c\u1002\u103b\u1004\u103a\u1038 \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "IO": "\u1017\u103c\u102d\u1010\u102d\u101e\u103b\u103e\u1015\u102d\u102f\u1004\u103a \u1021\u102d\u1014\u1039\u1012\u102d\u101a\u101e\u1019\u102f\u1012\u1039\u1012\u101b\u102c\u1000\u103b\u103d\u1014\u103a\u1038\u1019\u103b\u102c\u1038", + "BR": "\u1018\u101b\u102c\u1007\u102e\u1038", + "BN": "\u1018\u101b\u1030\u1014\u102d\u102f\u1004\u103a\u1038", + "BZ": "\u1018\u101c\u102d\u1007\u103a", + "BS": "\u1018\u101f\u102c\u1038\u1019\u102c\u1038", + "BF": "\u1018\u102c\u1000\u102e\u1038\u1014\u102c\u1038 \u1016\u102c\u1038\u1006\u102d\u102f", + "BB": "\u1018\u102c\u1018\u1031\u1038\u1012\u102d\u102f\u1038\u1005\u103a", + "BM": "\u1018\u102c\u1019\u103c\u1030\u1012\u102b", + "BH": "\u1018\u102c\u101b\u102d\u1014\u103a\u1038", + "BJ": "\u1018\u102e\u1014\u1004\u103a", + "BY": "\u1018\u102e\u101c\u102c\u101b\u102f\u1005\u103a", + "BT": "\u1018\u1030\u1010\u1014\u103a", + "BV": "\u1018\u1030\u1017\u1000\u103a\u1000\u103b\u103d\u1014\u103a\u1038", + "BI": "\u1018\u1030\u101b\u103d\u1014\u103a\u1012\u102e", + "BG": "\u1018\u1030\u101c\u103a\u1002\u1031\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "BA": "\u1018\u1031\u102c\u1037\u1005\u1014\u102e\u1038\u101a\u102c\u1038\u1014\u103e\u1004\u1037\u103a \u101f\u102c\u1007\u102e\u1002\u102d\u102f\u1017\u102e\u1014\u102c\u1038", + "BW": "\u1018\u1031\u102c\u1037\u1006\u103d\u102c\u1014\u102c", + "BO": "\u1018\u102d\u102f\u101c\u102e\u1038\u1017\u102e\u1038\u101a\u102c\u1038", + "BD": "\u1018\u1004\u103a\u1039\u1002\u101c\u102c\u1038\u1012\u1031\u1037\u101b\u103e\u103a", + "BE": "\u1018\u101a\u103a\u101c\u103a\u1002\u103b\u102e\u101a\u1019\u103a", + "MO": "\u1019\u1000\u102c\u1021\u102d\u102f (\u1010\u101b\u102f\u1010\u103a\u1015\u103c\u100a\u103a)", + "MG": "\u1019\u1012\u102b\u1002\u1010\u103a\u1005\u1000\u102c\u1038", + "MY": "\u1019\u101c\u1031\u1038\u101b\u103e\u102c\u1038", + "MQ": "\u1019\u102c\u1010\u102e\u1014\u102d\u1001\u103a", + "MH": "\u1019\u102c\u101b\u103e\u101a\u103a \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "MW": "\u1019\u102c\u101c\u102c\u101d\u102e", + "ML": "\u1019\u102c\u101c\u102e", + "YT": "\u1019\u1031\u101a\u1031\u102c\u1037", + "MU": "\u1019\u1031\u102c\u101b\u1005\u103a\u101b\u103e", + "MS": "\u1019\u1031\u102c\u1004\u1037\u103a\u1005\u1032\u101b\u1000\u103a", + "MR": "\u1019\u1031\u102c\u103a\u101b\u102e\u1010\u1031\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "MA": "\u1019\u1031\u102c\u103a\u101b\u102d\u102f\u1000\u102d\u102f", + "MV": "\u1019\u1031\u102c\u103a\u101c\u103a\u1012\u102d\u102f\u1000\u103a", + "MZ": "\u1019\u102d\u102f\u1007\u1019\u103a\u1018\u1005\u103a", + "MC": "\u1019\u102d\u102f\u1014\u102c\u1000\u102d\u102f", + "MX": "\u1019\u1000\u103a\u1000\u1006\u102e\u1000\u102d\u102f", + "FM": "\u1019\u102d\u102f\u1004\u103a\u1001\u101b\u102d\u102f\u1014\u102e\u101b\u103e\u102c\u1038", + "IM": "\u1019\u1014\u103a\u1000\u103b\u103d\u1014\u103a\u1038", + "MT": "\u1019\u1031\u102c\u101c\u103a\u1010\u102c", + "MD": "\u1019\u1031\u102c\u101c\u103a\u1012\u102d\u102f\u1017\u102c", + "MK": "\u1019\u103c\u1031\u102c\u1000\u103a \u1019\u1000\u103a\u1006\u102e\u1012\u102d\u102f\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "KP": "\u1019\u103c\u1031\u102c\u1000\u103a\u1000\u102d\u102f\u101b\u102e\u1038\u101a\u102c\u1038", + "MP": "\u1019\u103c\u1031\u102c\u1000\u103a\u1015\u102d\u102f\u1004\u103a\u1038\u1019\u102c\u101b\u102e\u1021\u102c\u1014\u102c\u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "MM": "\u1019\u103c\u1014\u103a\u1019\u102c", + "MN": "\u1019\u103d\u1014\u103a\u1002\u102d\u102f\u1038\u101c\u102e\u1038\u101a\u102c\u1038", + "ME": "\u1019\u103d\u1014\u103a\u1010\u102e\u1014\u102d\u1002\u101b\u102d\u102f\u1038", + "YE": "\u101a\u102e\u1019\u1004\u103a", + "UA": "\u101a\u1030\u1000\u101b\u102d\u1014\u103a\u1038", + "UG": "\u101a\u1030\u1002\u1014\u103a\u1038\u1012\u102b\u1038", + "GB": "\u101a\u1030\u1014\u102d\u102f\u1000\u103a\u1010\u1000\u103a\u1000\u1004\u103a\u1038\u1012\u1019\u103a\u1038", + "UM": "\u101a\u1030\u1014\u102d\u102f\u1000\u103a\u1010\u1000\u103a\u1005\u1010\u102d\u1010\u103a \u1000\u103b\u103d\u1014\u103a\u1038\u1014\u102d\u102f\u1004\u103a\u1004\u1036\u1019\u103b\u102c\u1038", + "AE": "\u101a\u1030\u1021\u1031\u1021\u102e\u1038", + "VI": "\u101a\u1030\u1021\u1000\u103a\u1005\u103a \u1017\u102c\u1002\u103b\u1004\u103a\u1038 \u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "RW": "\u101b\u101d\u1014\u103a\u1012\u102b", + "RE": "\u101b\u102e\u101a\u1030\u1014\u102e\u101a\u1014\u103a", + "RU": "\u101b\u102f\u101b\u103e\u102c\u1038", + "RO": "\u101b\u102d\u102f\u1019\u1031\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "LA": "\u101c\u102c\u1021\u102d\u102f", + "LS": "\u101c\u102e\u1006\u102d\u102f\u101e\u102d\u102f", + "LU": "\u101c\u1030\u1007\u1004\u103a\u1018\u1010\u103a", + "LB": "\u101c\u1000\u103a\u1018\u1014\u103d\u1014\u103a", + "LR": "\u101c\u102d\u102f\u1000\u103a\u1018\u1031\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "LI": "\u101c\u1005\u103a\u1010\u1014\u103a\u1005\u1010\u102d\u1014\u103a\u1038", + "LY": "\u101c\u1005\u103a\u1017\u103b\u102c\u1038", + "LT": "\u101c\u1005\u103a\u101e\u1030\u101a\u1031\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "LV": "\u101c\u1010\u103a\u1017\u102e\u1038\u101a\u102c\u1038", + "WF": "\u101d\u1031\u102b\u101c\u1005\u103a\u1014\u103e\u1004\u1037\u103a \u1016\u1030\u1000\u103b\u1030\u1038\u1014\u102c\u1038", + "LK": "\u101e\u102e\u101b\u102d\u101c\u1004\u103a\u1039\u1000\u102c", + "HT": "\u101f\u1031\u1010\u102e", + "HK": "\u101f\u1031\u102c\u1004\u103a\u1000\u1031\u102c\u1004\u103a (\u1010\u101b\u102f\u1010\u103a\u1015\u103c\u100a\u103a)", + "HM": "\u101f\u1010\u103a\u1000\u103b\u103d\u1014\u103a\u1038\u1014\u103e\u1004\u1037\u103a\u1019\u1000\u103a\u1012\u1031\u102b\u1014\u101a\u103a\u1000\u103b\u103d\u1014\u103a\u1038\u1005\u102f", + "HU": "\u101f\u1014\u103a\u1002\u1031\u101b\u102e", + "HN": "\u101f\u103d\u1014\u103a\u1012\u1030\u1038\u101b\u1015\u103a\u1005\u103a", + "AZ": "\u1021\u1007\u102c\u1018\u102d\u102f\u1004\u103a\u1002\u103b\u1014\u103a", + "EH": "\u1021\u1014\u1031\u102c\u1000\u103a \u1006\u102c\u101f\u102c\u101b", + "AS": "\u1021\u1019\u1031\u101b\u102d\u1000\u1014\u103a \u1006\u1019\u102d\u102f\u1038\u1021\u102c\u1038", + "US": "\u1021\u1019\u1031\u101b\u102d\u1000\u1014\u103a \u1015\u103c\u100a\u103a\u1011\u1031\u102c\u1004\u103a\u1005\u102f", + "TL": "\u1021\u101b\u103e\u1031\u1037\u1010\u102e\u1019\u1031\u102c", + "AR": "\u1021\u102c\u1002\u103b\u1004\u103a\u1010\u102e\u1038\u1014\u102c\u1038", + "AF": "\u1021\u102c\u1016\u1002\u1014\u103a\u1014\u1005\u1039\u1005\u1010\u1014\u103a", + "AM": "\u1021\u102c\u1019\u1031\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "AW": "\u1021\u102c\u101b\u1030\u1038\u1017\u102c\u1038", + "AX": "\u1021\u102c\u101c\u1014\u103a\u1000\u103b\u103d\u1014\u103a\u1038", + "GQ": "\u1021\u102e\u1000\u103d\u1031\u1010\u102c \u1002\u102e\u1014\u102e", + "EC": "\u1021\u102e\u1000\u103d\u1031\u1012\u1031\u102b", + "EG": "\u1021\u102e\u1002\u103b\u1005\u103a", + "IT": "\u1021\u102e\u1010\u101c\u102e", + "ER": "\u1021\u102e\u101b\u102e\u1011\u101b\u102e\u1038\u101a\u102c\u1038", + "IQ": "\u1021\u102e\u101b\u1010\u103a", + "IR": "\u1021\u102e\u101b\u1014\u103a", + "ET": "\u1021\u102e\u101e\u102e\u101a\u102d\u102f\u1038\u1015\u102e\u1038\u101a\u102c\u1038", + "UZ": "\u1025\u1007\u1018\u1000\u103a\u1000\u1005\u1039\u1005\u1010\u1014\u103a", + "UY": "\u1025\u101b\u102f\u1002\u103d\u1031\u1038", + "AT": "\u1029\u1005\u1010\u103c\u102e\u1038\u101a\u102c\u1038", + "AU": "\u1029\u1005\u1010\u103c\u1031\u1038\u101c\u103b", + "OM": "\u1021\u102d\u102f\u1019\u1014\u103a", + "EE": "\u1021\u1000\u103a\u1005\u1010\u102d\u102f\u1038\u1014\u102e\u1038\u101a\u102c\u1038", + "IS": "\u1021\u102d\u102f\u1000\u103a\u1005\u101c\u1014\u103a", + "ID": "\u1021\u1004\u103a\u1012\u102d\u102f\u1014\u102e\u1038\u101b\u103e\u102c\u1038", + "IE": "\u1021\u102d\u102f\u1004\u103a\u101a\u102c\u101c\u1014\u103a", + "IL": "\u1021\u1005\u1039\u1005\u101b\u1031\u1038", + "AI": "\u1021\u1014\u103a\u1002\u102e\u101c\u102c", + "AO": "\u1021\u1014\u103a\u1002\u102d\u102f\u101c\u102c", + "AQ": "\u1021\u1014\u103a\u1010\u102c\u1010\u102d\u1000", + "AG": "\u1021\u1014\u103a\u1010\u102e\u1002\u103d\u102b\u1014\u103e\u1004\u1037\u103a \u1018\u102c\u1018\u1030\u1012\u102b", + "AD": "\u1021\u1014\u103a\u1012\u102d\u102f\u101b\u102c", + "IN": "\u1021\u102d\u1014\u1039\u1012\u102d\u101a", + "DZ": "\u1021\u101a\u103a\u101c\u103a\u1002\u103b\u102e\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "SV": "\u1021\u101a\u103a\u101c\u103a\u1006\u102c\u1017\u1031\u1038\u1012\u102d\u102f\u1038", + "AL": "\u1021\u101a\u103a\u101c\u103a\u1018\u1031\u1038\u1014\u102e\u1038\u101a\u102c\u1038" +} diff --git a/public/intl/country/nb-NO.json b/public/intl/country/nb-NO.json new file mode 100644 index 0000000..aed6026 --- /dev/null +++ b/public/intl/country/nb-NO.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AL": "Albania", + "DZ": "Algerie", + "AS": "Amerikansk Samoa", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua og Barbuda", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AZ": "Aserbajdsjan", + "AU": "Australia", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BE": "Belgia", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia-Hercegovina", + "BW": "Botswana", + "BV": "Bouvet\u00f8ya", + "BR": "Brasil", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "CA": "Canada", + "KY": "Cayman\u00f8yene", + "CL": "Chile", + "CX": "Christmas\u00f8ya", + "CO": "Colombia", + "CK": "Cook\u00f8yene", + "CR": "Costa Rica", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DK": "Danmark", + "VI": "De amerikanske jomfru\u00f8yene", + "VG": "De britiske jomfru\u00f8yene", + "AE": "De forente arabiske emirater", + "TF": "De franske s\u00f8rterritorier", + "DO": "Den dominikanske republikk", + "CF": "Den sentralafrikanske republikk", + "IO": "Det britiske territoriet i Indiahavet", + "PS": "Det palestinske omr\u00e5det", + "DJ": "Djibouti", + "DM": "Dominica", + "EC": "Ecuador", + "EG": "Egypt", + "GQ": "Ekvatorial-Guinea", + "SV": "El Salvador", + "CI": "Elfenbenskysten", + "ER": "Eritrea", + "EE": "Estland", + "SZ": "Eswatini", + "ET": "Etiopia", + "FK": "Falklands\u00f8yene", + "FJ": "Fiji", + "PH": "Filippinene", + "FI": "Finland", + "FR": "Frankrike", + "GF": "Fransk Guyana", + "PF": "Fransk Polynesia", + "FO": "F\u00e6r\u00f8yene", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GL": "Gr\u00f8nland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard- og McDonald\u00f8yene", + "GR": "Hellas", + "HN": "Honduras", + "HK": "Hongkong S.A.R. Kina", + "BY": "Hviterussland", + "IN": "India", + "ID": "Indonesia", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irland", + "IS": "Island", + "IL": "Israel", + "IT": "Italia", + "JM": "Jamaica", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordan", + "KH": "Kambodsja", + "CM": "Kamerun", + "CV": "Kapp Verde", + "BQ": "Karibisk Nederland", + "KZ": "Kasakhstan", + "KE": "Kenya", + "CN": "Kina", + "KG": "Kirgisistan", + "KI": "Kiribati", + "CC": "Kokos\u00f8yene", + "KM": "Komorene", + "CG": "Kongo-Brazzaville", + "CD": "Kongo-Kinshasa", + "XK": "Kosovo", + "HR": "Kroatia", + "KW": "Kuwait", + "CY": "Kypros", + "LA": "Laos", + "LV": "Latvia", + "LS": "Lesotho", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Litauen", + "LU": "Luxemburg", + "MO": "Macao S.A.R. Kina", + "MG": "Madagaskar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldivene", + "ML": "Mali", + "MT": "Malta", + "IM": "Man", + "MA": "Marokko", + "MH": "Marshall\u00f8yene", + "MQ": "Martinique", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexico", + "FM": "Mikronesiaf\u00f8derasjonen", + "MD": "Moldova", + "MC": "Monaco", + "MN": "Mongolia", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mosambik", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NL": "Nederland", + "NP": "Nepal", + "NZ": "New Zealand", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "KP": "Nord-Korea", + "MK": "Nord-Makedonia", + "MP": "Nord-Marianene", + "NF": "Norfolk\u00f8ya", + "NO": "Norge", + "NC": "Ny-Caledonia", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua Ny-Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairn\u00f8yene", + "PL": "Polen", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "RE": "R\u00e9union", + "RO": "Romania", + "RU": "Russland", + "RW": "Rwanda", + "KN": "Saint Kitts og Nevis", + "BL": "Saint-Barth\u00e9lemy", + "MF": "Saint-Martin", + "PM": "Saint-Pierre-et-Miquelon", + "SB": "Salomon\u00f8yene", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 og Pr\u00edncipe", + "SA": "Saudi-Arabia", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychellene", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SK": "Slovakia", + "SI": "Slovenia", + "SO": "Somalia", + "ES": "Spania", + "LK": "Sri Lanka", + "SH": "St. Helena", + "LC": "St. Lucia", + "VC": "St. Vincent og Grenadinene", + "GB": "Storbritannia", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard og Jan Mayen", + "CH": "Sveits", + "SE": "Sverige", + "SY": "Syria", + "ZA": "S\u00f8r-Afrika", + "GS": "S\u00f8r-Georgia og S\u00f8r-Sandwich\u00f8yene", + "KR": "S\u00f8r-Korea", + "SS": "S\u00f8r-Sudan", + "TJ": "Tadsjikistan", + "TW": "Taiwan", + "TZ": "Tanzania", + "TH": "Thailand", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad og Tobago", + "TD": "Tsjad", + "CZ": "Tsjekkia", + "TN": "Tunisia", + "TM": "Turkmenistan", + "TC": "Turks- og Caicos\u00f8yene", + "TV": "Tuvalu", + "TR": "Tyrkia", + "DE": "Tyskland", + "UG": "Uganda", + "UA": "Ukraina", + "HU": "Ungarn", + "UY": "Uruguay", + "US": "USA", + "UM": "USAs ytre \u00f8yer", + "UZ": "Usbekistan", + "VU": "Vanuatu", + "VA": "Vatikanstaten", + "VE": "Venezuela", + "EH": "Vest-Sahara", + "VN": "Vietnam", + "WF": "Wallis og Futuna", + "ZM": "Zambia", + "ZW": "Zimbabwe", + "TL": "\u00d8st-Timor", + "AT": "\u00d8sterrike", + "AX": "\u00c5land" +} diff --git a/public/intl/country/nl-NL.json b/public/intl/country/nl-NL.json new file mode 100644 index 0000000..73963cd --- /dev/null +++ b/public/intl/country/nl-NL.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AX": "\u00c5land", + "AL": "Albani\u00eb", + "DZ": "Algerije", + "AS": "Amerikaans-Samoa", + "VI": "Amerikaanse Maagdeneilanden", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarctica", + "AG": "Antigua en Barbuda", + "AR": "Argentini\u00eb", + "AM": "Armeni\u00eb", + "AW": "Aruba", + "AU": "Australi\u00eb", + "AZ": "Azerbeidzjan", + "BS": "Bahama\u2019s", + "BH": "Bahrein", + "BD": "Bangladesh", + "BB": "Barbados", + "BY": "Belarus", + "BE": "Belgi\u00eb", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosni\u00eb en Herzegovina", + "BW": "Botswana", + "BV": "Bouveteiland", + "BR": "Brazili\u00eb", + "IO": "Brits Indische Oceaanterritorium", + "VG": "Britse Maagdeneilanden", + "BN": "Brunei", + "BG": "Bulgarije", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodja", + "CA": "Canada", + "BQ": "Caribisch Nederland", + "CF": "Centraal-Afrikaanse Republiek", + "CL": "Chili", + "CN": "China", + "CX": "Christmaseiland", + "CC": "Cocoseilanden", + "CO": "Colombia", + "KM": "Comoren", + "CG": "Congo-Brazzaville", + "CD": "Congo-Kinshasa", + "CK": "Cookeilanden", + "CR": "Costa Rica", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "CY": "Cyprus", + "DK": "Denemarken", + "DJ": "Djibouti", + "DM": "Dominica", + "DO": "Dominicaanse Republiek", + "DE": "Duitsland", + "EC": "Ecuador", + "EG": "Egypte", + "SV": "El Salvador", + "GQ": "Equatoriaal-Guinea", + "ER": "Eritrea", + "EE": "Estland", + "SZ": "eSwatini", + "ET": "Ethiopi\u00eb", + "FO": "Faer\u00f6er", + "FK": "Falklandeilanden", + "FJ": "Fiji", + "PH": "Filipijnen", + "FI": "Finland", + "FR": "Frankrijk", + "GF": "Frans-Guyana", + "PF": "Frans-Polynesi\u00eb", + "TF": "Franse Gebieden in de zuidelijke Indische Oceaan", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgi\u00eb", + "GH": "Ghana", + "GI": "Gibraltar", + "GD": "Grenada", + "GR": "Griekenland", + "GL": "Groenland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinee", + "GW": "Guinee-Bissau", + "GY": "Guyana", + "HT": "Ha\u00efti", + "HM": "Heard en McDonaldeilanden", + "HN": "Honduras", + "HU": "Hongarije", + "HK": "Hongkong SAR van China", + "IE": "Ierland", + "IS": "IJsland", + "IN": "India", + "ID": "Indonesi\u00eb", + "IQ": "Irak", + "IR": "Iran", + "IM": "Isle of Man", + "IL": "Isra\u00ebl", + "IT": "Itali\u00eb", + "CI": "Ivoorkust", + "JM": "Jamaica", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordani\u00eb", + "KY": "Kaaimaneilanden", + "CV": "Kaapverdi\u00eb", + "CM": "Kameroen", + "KZ": "Kazachstan", + "KE": "Kenia", + "KG": "Kirgizi\u00eb", + "KI": "Kiribati", + "UM": "Kleine afgelegen eilanden van de Verenigde Staten", + "KW": "Koeweit", + "XK": "Kosovo", + "HR": "Kroati\u00eb", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Letland", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libi\u00eb", + "LI": "Liechtenstein", + "LT": "Litouwen", + "LU": "Luxemburg", + "MO": "Macau SAR van China", + "MG": "Madagaskar", + "MW": "Malawi", + "MV": "Maldiven", + "MY": "Maleisi\u00eb", + "ML": "Mali", + "MT": "Malta", + "MA": "Marokko", + "MH": "Marshalleilanden", + "MQ": "Martinique", + "MR": "Mauritani\u00eb", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexico", + "FM": "Micronesia", + "MD": "Moldavi\u00eb", + "MC": "Monaco", + "MN": "Mongoli\u00eb", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MM": "Myanmar (Birma)", + "NA": "Namibi\u00eb", + "NR": "Nauru", + "NL": "Nederland", + "NP": "Nepal", + "NI": "Nicaragua", + "NC": "Nieuw-Caledoni\u00eb", + "NZ": "Nieuw-Zeeland", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "KP": "Noord-Korea", + "MK": "Noord-Macedoni\u00eb", + "MP": "Noordelijke Marianen", + "NO": "Noorwegen", + "NF": "Norfolk", + "UG": "Oeganda", + "UA": "Oekra\u00efne", + "UZ": "Oezbekistan", + "OM": "Oman", + "TL": "Oost-Timor", + "AT": "Oostenrijk", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestijnse gebieden", + "PA": "Panama", + "PG": "Papoea-Nieuw-Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairneilanden", + "PL": "Polen", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "RE": "R\u00e9union", + "RO": "Roemeni\u00eb", + "RU": "Rusland", + "RW": "Rwanda", + "KN": "Saint Kitts en Nevis", + "LC": "Saint Lucia", + "VC": "Saint Vincent en de Grenadines", + "BL": "Saint-Barth\u00e9lemy", + "MF": "Saint-Martin", + "PM": "Saint-Pierre en Miquelon", + "SB": "Salomonseilanden", + "WS": "Samoa", + "SM": "San Marino", + "ST": "Sao Tom\u00e9 en Principe", + "SA": "Saoedi-Arabi\u00eb", + "SN": "Senegal", + "RS": "Servi\u00eb", + "SC": "Seychellen", + "SL": "Sierra Leone", + "SG": "Singapore", + "SH": "Sint-Helena", + "SX": "Sint-Maarten", + "SI": "Sloveni\u00eb", + "SK": "Slowakije", + "SD": "Soedan", + "SO": "Somali\u00eb", + "ES": "Spanje", + "SJ": "Spitsbergen en Jan Mayen", + "LK": "Sri Lanka", + "SR": "Suriname", + "SY": "Syri\u00eb", + "TJ": "Tadzjikistan", + "TW": "Taiwan", + "TZ": "Tanzania", + "TH": "Thailand", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad en Tobago", + "TD": "Tsjaad", + "CZ": "Tsjechi\u00eb", + "TN": "Tunesi\u00eb", + "TR": "Turkije", + "TM": "Turkmenistan", + "TC": "Turks- en Caicoseilanden", + "TV": "Tuvalu", + "UY": "Uruguay", + "VU": "Vanuatu", + "VA": "Vaticaanstad", + "VE": "Venezuela", + "GB": "Verenigd Koninkrijk", + "AE": "Verenigde Arabische Emiraten", + "US": "Verenigde Staten", + "VN": "Vietnam", + "WF": "Wallis en Futuna", + "EH": "Westelijke Sahara", + "ZM": "Zambia", + "ZW": "Zimbabwe", + "ZA": "Zuid-Afrika", + "GS": "Zuid-Georgia en Zuidelijke Sandwicheilanden", + "KR": "Zuid-Korea", + "SS": "Zuid-Soedan", + "SE": "Zweden", + "CH": "Zwitserland" +} diff --git a/public/intl/country/pl-PL.json b/public/intl/country/pl-PL.json new file mode 100644 index 0000000..4f08aaa --- /dev/null +++ b/public/intl/country/pl-PL.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AL": "Albania", + "DZ": "Algieria", + "AD": "Andora", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktyda", + "AG": "Antigua i Barbuda", + "SA": "Arabia Saudyjska", + "AR": "Argentyna", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbejd\u017can", + "BS": "Bahamy", + "BH": "Bahrajn", + "BD": "Bangladesz", + "BB": "Barbados", + "BE": "Belgia", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermudy", + "BT": "Bhutan", + "BY": "Bia\u0142oru\u015b", + "BO": "Boliwia", + "BA": "Bo\u015bnia i Hercegowina", + "BW": "Botswana", + "BR": "Brazylia", + "BN": "Brunei", + "IO": "Brytyjskie Terytorium Oceanu Indyjskiego", + "VG": "Brytyjskie Wyspy Dziewicze", + "BG": "Bu\u0142garia", + "BF": "Burkina Faso", + "BI": "Burundi", + "CL": "Chile", + "CN": "Chiny", + "HR": "Chorwacja", + "CI": "C\u00f4te d\u2019Ivoire", + "CW": "Cura\u00e7ao", + "CY": "Cypr", + "TD": "Czad", + "ME": "Czarnog\u00f3ra", + "CZ": "Czechy", + "UM": "Dalekie Wyspy Mniejsze Stan\u00f3w Zjednoczonych", + "DK": "Dania", + "CD": "Demokratyczna Republika Konga", + "DM": "Dominika", + "DO": "Dominikana", + "DJ": "D\u017cibuti", + "EG": "Egipt", + "EC": "Ekwador", + "ER": "Erytrea", + "EE": "Estonia", + "SZ": "Eswatini", + "ET": "Etiopia", + "FK": "Falklandy", + "FJ": "Fid\u017ci", + "PH": "Filipiny", + "FI": "Finlandia", + "FR": "Francja", + "TF": "Francuskie Terytoria Po\u0142udniowe i Antarktyczne", + "GA": "Gabon", + "GM": "Gambia", + "GS": "Georgia Po\u0142udniowa i Sandwich Po\u0142udniowy", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Grecja", + "GD": "Grenada", + "GL": "Grenlandia", + "GE": "Gruzja", + "GU": "Guam", + "GG": "Guernsey", + "GY": "Gujana", + "GF": "Gujana Francuska", + "GP": "Gwadelupa", + "GT": "Gwatemala", + "GN": "Gwinea", + "GW": "Gwinea Bissau", + "GQ": "Gwinea R\u00f3wnikowa", + "HT": "Haiti", + "ES": "Hiszpania", + "NL": "Holandia", + "HN": "Honduras", + "IN": "Indie", + "ID": "Indonezja", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irlandia", + "IS": "Islandia", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japonia", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordania", + "KY": "Kajmany", + "KH": "Kambod\u017ca", + "CM": "Kamerun", + "CA": "Kanada", + "QA": "Katar", + "KZ": "Kazachstan", + "KE": "Kenia", + "KG": "Kirgistan", + "KI": "Kiribati", + "CO": "Kolumbia", + "KM": "Komory", + "CG": "Kongo", + "KR": "Korea Po\u0142udniowa", + "KP": "Korea P\u00f3\u0142nocna", + "XK": "Kosovo", + "CR": "Kostaryka", + "CU": "Kuba", + "KW": "Kuwejt", + "LA": "Laos", + "LS": "Lesotho", + "LB": "Liban", + "LR": "Liberia", + "LY": "Libia", + "LI": "Liechtenstein", + "LT": "Litwa", + "LU": "Luksemburg", + "LV": "\u0141otwa", + "MK": "Macedonia P\u00f3\u0142nocna", + "MG": "Madagaskar", + "YT": "Majotta", + "MW": "Malawi", + "MV": "Malediwy", + "MY": "Malezja", + "ML": "Mali", + "MT": "Malta", + "MP": "Mariany P\u00f3\u0142nocne", + "MA": "Maroko", + "MQ": "Martynika", + "MR": "Mauretania", + "MU": "Mauritius", + "MX": "Meksyk", + "FM": "Mikronezja", + "MM": "Mjanma (Birma)", + "MD": "Mo\u0142dawia", + "MC": "Monako", + "MN": "Mongolia", + "MS": "Montserrat", + "MZ": "Mozambik", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "BQ": "Niderlandy Karaibskie", + "DE": "Niemcy", + "NE": "Niger", + "NG": "Nigeria", + "NI": "Nikaragua", + "NU": "Niue", + "NF": "Norfolk", + "NO": "Norwegia", + "NC": "Nowa Kaledonia", + "NZ": "Nowa Zelandia", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua-Nowa Gwinea", + "PY": "Paragwaj", + "PE": "Peru", + "PN": "Pitcairn", + "PF": "Polinezja Francuska", + "PL": "Polska", + "PR": "Portoryko", + "PT": "Portugalia", + "ZA": "Republika Po\u0142udniowej Afryki", + "CF": "Republika \u015arodkowoafryka\u0144ska", + "CV": "Republika Zielonego Przyl\u0105dka", + "RE": "Reunion", + "RU": "Rosja", + "RO": "Rumunia", + "RW": "Rwanda", + "EH": "Sahara Zachodnia", + "KN": "Saint Kitts i Nevis", + "LC": "Saint Lucia", + "VC": "Saint Vincent i Grenadyny", + "BL": "Saint-Barth\u00e9lemy", + "MF": "Saint-Martin", + "PM": "Saint-Pierre i Miquelon", + "SV": "Salwador", + "WS": "Samoa", + "AS": "Samoa Ameryka\u0144skie", + "SM": "San Marino", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seszele", + "SL": "Sierra Leone", + "SG": "Singapur", + "SX": "Sint Maarten", + "SK": "S\u0142owacja", + "SI": "S\u0142owenia", + "SO": "Somalia", + "HK": "SRA Hongkong (Chiny)", + "MO": "SRA Makau (Chiny)", + "LK": "Sri Lanka", + "US": "Stany Zjednoczone", + "SD": "Sudan", + "SS": "Sudan Po\u0142udniowy", + "SR": "Surinam", + "SJ": "Svalbard i Jan Mayen", + "SY": "Syria", + "CH": "Szwajcaria", + "SE": "Szwecja", + "TJ": "Tad\u017cykistan", + "TH": "Tajlandia", + "TW": "Tajwan", + "TZ": "Tanzania", + "PS": "Terytoria Palesty\u0144skie", + "TL": "Timor Wschodni", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trynidad i Tobago", + "TN": "Tunezja", + "TR": "Turcja", + "TM": "Turkmenistan", + "TC": "Turks i Caicos", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraina", + "UY": "Urugwaj", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "WF": "Wallis i Futuna", + "VA": "Watykan", + "VE": "Wenezuela", + "HU": "W\u0119gry", + "GB": "Wielka Brytania", + "VN": "Wietnam", + "IT": "W\u0142ochy", + "BV": "Wyspa Bouveta", + "CX": "Wyspa Bo\u017cego Narodzenia", + "IM": "Wyspa Man", + "SH": "Wyspa \u015awi\u0119tej Heleny", + "AX": "Wyspy Alandzkie", + "CK": "Wyspy Cooka", + "VI": "Wyspy Dziewicze Stan\u00f3w Zjednoczonych", + "HM": "Wyspy Heard i McDonalda", + "CC": "Wyspy Kokosowe", + "MH": "Wyspy Marshalla", + "FO": "Wyspy Owcze", + "SB": "Wyspy Salomona", + "ST": "Wyspy \u015awi\u0119tego Tomasza i Ksi\u0105\u017c\u0119ca", + "ZM": "Zambia", + "ZW": "Zimbabwe", + "AE": "Zjednoczone Emiraty Arabskie" +} diff --git a/public/intl/country/pt-BR.json b/public/intl/country/pt-BR.json new file mode 100644 index 0000000..dbdad92 --- /dev/null +++ b/public/intl/country/pt-BR.json @@ -0,0 +1,252 @@ +{ + "AF": "Afeganist\u00e3o", + "ZA": "\u00c1frica do Sul", + "AL": "Alb\u00e2nia", + "DE": "Alemanha", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguila", + "AQ": "Ant\u00e1rtida", + "AG": "Ant\u00edgua e Barbuda", + "SA": "Ar\u00e1bia Saudita", + "DZ": "Arg\u00e9lia", + "AR": "Argentina", + "AM": "Arm\u00eania", + "AW": "Aruba", + "AU": "Austr\u00e1lia", + "AT": "\u00c1ustria", + "AZ": "Azerbaij\u00e3o", + "BS": "Bahamas", + "BH": "Bahrein", + "BD": "Bangladesh", + "BB": "Barbados", + "BE": "B\u00e9lgica", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermudas", + "BY": "Bielorr\u00fassia", + "BO": "Bol\u00edvia", + "BA": "B\u00f3snia e Herzegovina", + "BW": "Botsuana", + "BR": "Brasil", + "BN": "Brunei", + "BG": "Bulg\u00e1ria", + "BF": "Burquina Faso", + "BI": "Burundi", + "BT": "But\u00e3o", + "CV": "Cabo Verde", + "CM": "Camar\u00f5es", + "KH": "Camboja", + "CA": "Canad\u00e1", + "QA": "Catar", + "KZ": "Cazaquist\u00e3o", + "TD": "Chade", + "CL": "Chile", + "CN": "China", + "CY": "Chipre", + "VA": "Cidade do Vaticano", + "CO": "Col\u00f4mbia", + "KM": "Comores", + "CD": "Congo - Kinshasa", + "KP": "Coreia do Norte", + "KR": "Coreia do Sul", + "CI": "Costa do Marfim", + "CR": "Costa Rica", + "HR": "Cro\u00e1cia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DK": "Dinamarca", + "DJ": "Djibuti", + "DM": "Dominica", + "EG": "Egito", + "SV": "El Salvador", + "AE": "Emirados \u00c1rabes Unidos", + "EC": "Equador", + "ER": "Eritreia", + "SK": "Eslov\u00e1quia", + "SI": "Eslov\u00eania", + "ES": "Espanha", + "SZ": "Essuat\u00edni", + "US": "Estados Unidos", + "EE": "Est\u00f4nia", + "ET": "Eti\u00f3pia", + "FJ": "Fiji", + "PH": "Filipinas", + "FI": "Finl\u00e2ndia", + "FR": "Fran\u00e7a", + "GA": "Gab\u00e3o", + "GM": "G\u00e2mbia", + "GH": "Gana", + "GE": "Ge\u00f3rgia", + "GI": "Gibraltar", + "GD": "Granada", + "GR": "Gr\u00e9cia", + "GL": "Groenl\u00e2ndia", + "GP": "Guadalupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GY": "Guiana", + "GF": "Guiana Francesa", + "GN": "Guin\u00e9", + "GQ": "Guin\u00e9 Equatorial", + "GW": "Guin\u00e9-Bissau", + "HT": "Haiti", + "HN": "Honduras", + "HK": "Hong Kong, RAE da China", + "HU": "Hungria", + "YE": "I\u00eamen", + "BV": "Ilha Bouvet", + "CX": "Ilha Christmas", + "IM": "Ilha de Man", + "NF": "Ilha Norfolk", + "AX": "Ilhas Aland", + "KY": "Ilhas Cayman", + "CC": "Ilhas Cocos (Keeling)", + "CK": "Ilhas Cook", + "FO": "Ilhas Faroe", + "GS": "Ilhas Ge\u00f3rgia do Sul e Sandwich do Sul", + "HM": "Ilhas Heard e McDonald", + "FK": "Ilhas Malvinas", + "MP": "Ilhas Marianas do Norte", + "MH": "Ilhas Marshall", + "UM": "Ilhas Menores Distantes dos EUA", + "PN": "Ilhas Pitcairn", + "SB": "Ilhas Salom\u00e3o", + "TC": "Ilhas Turcas e Caicos", + "VI": "Ilhas Virgens Americanas", + "VG": "Ilhas Virgens Brit\u00e2nicas", + "IN": "\u00cdndia", + "ID": "Indon\u00e9sia", + "IR": "Ir\u00e3", + "IQ": "Iraque", + "IE": "Irlanda", + "IS": "Isl\u00e2ndia", + "IL": "Israel", + "IT": "It\u00e1lia", + "JM": "Jamaica", + "JP": "Jap\u00e3o", + "JE": "Jersey", + "JO": "Jord\u00e2nia", + "XK": "Kosovo", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesoto", + "LV": "Let\u00f4nia", + "LB": "L\u00edbano", + "LR": "Lib\u00e9ria", + "LY": "L\u00edbia", + "LI": "Liechtenstein", + "LT": "Litu\u00e2nia", + "LU": "Luxemburgo", + "MO": "Macau, RAE da China", + "MK": "Maced\u00f4nia do Norte", + "MG": "Madagascar", + "MY": "Mal\u00e1sia", + "MW": "Malaui", + "MV": "Maldivas", + "ML": "Mali", + "MT": "Malta", + "MA": "Marrocos", + "MQ": "Martinica", + "MU": "Maur\u00edcio", + "MR": "Maurit\u00e2nia", + "YT": "Mayotte", + "MX": "M\u00e9xico", + "MM": "Mianmar (Birm\u00e2nia)", + "FM": "Micron\u00e9sia", + "MZ": "Mo\u00e7ambique", + "MD": "Moldova", + "MC": "M\u00f4naco", + "MN": "Mong\u00f3lia", + "ME": "Montenegro", + "MS": "Montserrat", + "NA": "Nam\u00edbia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicar\u00e1gua", + "NE": "N\u00edger", + "NG": "Nig\u00e9ria", + "NU": "Niue", + "NO": "Noruega", + "NC": "Nova Caled\u00f4nia", + "NZ": "Nova Zel\u00e2ndia", + "OM": "Om\u00e3", + "NL": "Pa\u00edses Baixos", + "BQ": "Pa\u00edses Baixos Caribenhos", + "PW": "Palau", + "PA": "Panam\u00e1", + "PG": "Papua-Nova Guin\u00e9", + "PK": "Paquist\u00e3o", + "PY": "Paraguai", + "PE": "Peru", + "PF": "Polin\u00e9sia Francesa", + "PL": "Pol\u00f4nia", + "PR": "Porto Rico", + "PT": "Portugal", + "KE": "Qu\u00eania", + "KG": "Quirguist\u00e3o", + "KI": "Quiribati", + "GB": "Reino Unido", + "CF": "Rep\u00fablica Centro-Africana", + "CG": "Rep\u00fablica do Congo", + "DO": "Rep\u00fablica Dominicana", + "RE": "Reuni\u00e3o", + "RO": "Rom\u00eania", + "RW": "Ruanda", + "RU": "R\u00fassia", + "EH": "Saara Ocidental", + "WS": "Samoa", + "AS": "Samoa Americana", + "SM": "San Marino", + "SH": "Santa Helena", + "LC": "Santa L\u00facia", + "BL": "S\u00e3o Bartolomeu", + "KN": "S\u00e3o Crist\u00f3v\u00e3o e N\u00e9vis", + "MF": "S\u00e3o Martinho", + "PM": "S\u00e3o Pedro e Miquel\u00e3o", + "ST": "S\u00e3o Tom\u00e9 e Pr\u00edncipe", + "VC": "S\u00e3o Vicente e Granadinas", + "SC": "Seicheles", + "SN": "Senegal", + "SL": "Serra Leoa", + "RS": "S\u00e9rvia", + "SG": "Singapura", + "SX": "Sint Maarten", + "SY": "S\u00edria", + "SO": "Som\u00e1lia", + "LK": "Sri Lanka", + "SD": "Sud\u00e3o", + "SS": "Sud\u00e3o do Sul", + "SE": "Su\u00e9cia", + "CH": "Su\u00ed\u00e7a", + "SR": "Suriname", + "SJ": "Svalbard e Jan Mayen", + "TJ": "Tadjiquist\u00e3o", + "TH": "Tail\u00e2ndia", + "TW": "Taiwan", + "TZ": "Tanz\u00e2nia", + "CZ": "Tch\u00e9quia", + "IO": "Territ\u00f3rio Brit\u00e2nico do Oceano \u00cdndico", + "TF": "Territ\u00f3rios Franceses do Sul", + "PS": "Territ\u00f3rios palestinos", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad e Tobago", + "TN": "Tun\u00edsia", + "TM": "Turcomenist\u00e3o", + "TR": "Turquia", + "TV": "Tuvalu", + "UA": "Ucr\u00e2nia", + "UG": "Uganda", + "UY": "Uruguai", + "UZ": "Uzbequist\u00e3o", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietn\u00e3", + "WF": "Wallis e Futuna", + "ZM": "Z\u00e2mbia", + "ZW": "Zimb\u00e1bue" +} diff --git a/public/intl/country/pt-PT.json b/public/intl/country/pt-PT.json new file mode 100644 index 0000000..714d082 --- /dev/null +++ b/public/intl/country/pt-PT.json @@ -0,0 +1,252 @@ +{ + "AF": "Afeganist\u00e3o", + "ZA": "\u00c1frica do Sul", + "AX": "Alanda", + "AL": "Alb\u00e2nia", + "DE": "Alemanha", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguila", + "AQ": "Ant\u00e1rtida", + "AG": "Ant\u00edgua e Barbuda", + "SA": "Ar\u00e1bia Saudita", + "DZ": "Arg\u00e9lia", + "AR": "Argentina", + "AM": "Arm\u00e9nia", + "AW": "Aruba", + "AU": "Austr\u00e1lia", + "AT": "\u00c1ustria", + "AZ": "Azerbaij\u00e3o", + "BS": "Baamas", + "BD": "Bangladeche", + "BB": "Barbados", + "BH": "Bar\u00e9m", + "BE": "B\u00e9lgica", + "BZ": "Belize", + "BJ": "Benim", + "BM": "Bermudas", + "BY": "Bielorr\u00fassia", + "BO": "Bol\u00edvia", + "BA": "B\u00f3snia e Herzegovina", + "BW": "Botsuana", + "BR": "Brasil", + "BN": "Brunei", + "BG": "Bulg\u00e1ria", + "BF": "Burquina Faso", + "BI": "Burundi", + "BT": "But\u00e3o", + "CV": "Cabo Verde", + "CM": "Camar\u00f5es", + "KH": "Camboja", + "CA": "Canad\u00e1", + "QA": "Catar", + "KZ": "Cazaquist\u00e3o", + "TD": "Chade", + "CZ": "Ch\u00e9quia", + "CL": "Chile", + "CN": "China", + "CY": "Chipre", + "VA": "Cidade do Vaticano", + "CO": "Col\u00f4mbia", + "KM": "Comores", + "CG": "Congo-Brazzaville", + "CD": "Congo-Kinshasa", + "KP": "Coreia do Norte", + "KR": "Coreia do Sul", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire (Costa do Marfim)", + "HR": "Cro\u00e1cia", + "CU": "Cuba", + "CW": "Cura\u00e7au", + "DK": "Dinamarca", + "DM": "Dom\u00ednica", + "EG": "Egito", + "AE": "Emirados \u00c1rabes Unidos", + "EC": "Equador", + "ER": "Eritreia", + "SK": "Eslov\u00e1quia", + "SI": "Eslov\u00e9nia", + "ES": "Espanha", + "SZ": "Essuat\u00edni", + "US": "Estados Unidos", + "EE": "Est\u00f3nia", + "ET": "Eti\u00f3pia", + "FJ": "Fiji", + "PH": "Filipinas", + "FI": "Finl\u00e2ndia", + "FR": "Fran\u00e7a", + "GA": "Gab\u00e3o", + "GM": "G\u00e2mbia", + "GH": "Gana", + "GE": "Ge\u00f3rgia", + "GI": "Gibraltar", + "GD": "Granada", + "GR": "Gr\u00e9cia", + "GL": "Gronel\u00e2ndia", + "GP": "Guadalupe", + "GU": "Guame", + "GT": "Guatemala", + "GG": "Guernesey", + "GY": "Guiana", + "GF": "Guiana Francesa", + "GN": "Guin\u00e9", + "GQ": "Guin\u00e9 Equatorial", + "GW": "Guin\u00e9-Bissau", + "HT": "Haiti", + "HN": "Honduras", + "HK": "Hong Kong, RAE da China", + "HU": "Hungria", + "YE": "I\u00e9men", + "BV": "Ilha Bouvet", + "IM": "Ilha de Man", + "CX": "Ilha do Natal", + "NF": "Ilha Norfolk", + "KY": "Ilhas Caim\u00e3o", + "CK": "Ilhas Cook", + "CC": "Ilhas dos Cocos (Keeling)", + "FO": "Ilhas Faro\u00e9", + "GS": "Ilhas Ge\u00f3rgia do Sul e Sandwich do Sul", + "HM": "Ilhas Heard e McDonald", + "FK": "Ilhas Malvinas (Falkland)", + "MP": "Ilhas Marianas do Norte", + "MH": "Ilhas Marshall", + "UM": "Ilhas Menores Afastadas dos EUA", + "PN": "Ilhas Pitcairn", + "SB": "Ilhas Salom\u00e3o", + "TC": "Ilhas Turcas e Caicos", + "VG": "Ilhas Virgens Brit\u00e2nicas", + "VI": "Ilhas Virgens dos EUA", + "IN": "\u00cdndia", + "ID": "Indon\u00e9sia", + "IR": "Ir\u00e3o", + "IQ": "Iraque", + "IE": "Irlanda", + "IS": "Isl\u00e2ndia", + "IL": "Israel", + "IT": "It\u00e1lia", + "JM": "Jamaica", + "JP": "Jap\u00e3o", + "JE": "Jersey", + "DJ": "Jibuti", + "JO": "Jord\u00e2nia", + "XK": "Kosovo", + "KW": "Koweit", + "LA": "Laos", + "LS": "Lesoto", + "LV": "Let\u00f3nia", + "LB": "L\u00edbano", + "LR": "Lib\u00e9ria", + "LY": "L\u00edbia", + "LI": "Listenstaine", + "LT": "Litu\u00e2nia", + "LU": "Luxemburgo", + "MO": "Macau, RAE da China", + "MK": "Maced\u00f3nia do Norte", + "MG": "Madag\u00e1scar", + "YT": "Maiote", + "MY": "Mal\u00e1sia", + "MW": "Mal\u00e1ui", + "MV": "Maldivas", + "ML": "Mali", + "MT": "Malta", + "MA": "Marrocos", + "MQ": "Martinica", + "MU": "Maur\u00edcia", + "MR": "Maurit\u00e2nia", + "MX": "M\u00e9xico", + "MM": "Mianmar (Birm\u00e2nia)", + "FM": "Micron\u00e9sia", + "MZ": "Mo\u00e7ambique", + "MD": "Mold\u00e1via", + "MC": "M\u00f3naco", + "MN": "Mong\u00f3lia", + "MS": "Monserrate", + "ME": "Montenegro", + "NA": "Nam\u00edbia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicar\u00e1gua", + "NE": "N\u00edger", + "NG": "Nig\u00e9ria", + "NU": "Niu\u00ea", + "NO": "Noruega", + "NC": "Nova Caled\u00f3nia", + "NZ": "Nova Zel\u00e2ndia", + "OM": "Om\u00e3", + "NL": "Pa\u00edses Baixos", + "BQ": "Pa\u00edses Baixos Caribenhos", + "PW": "Palau", + "PA": "Panam\u00e1", + "PG": "Papua-Nova Guin\u00e9", + "PK": "Paquist\u00e3o", + "PY": "Paraguai", + "PE": "Peru", + "PF": "Polin\u00e9sia Francesa", + "PL": "Pol\u00f3nia", + "PR": "Porto Rico", + "PT": "Portugal", + "KE": "Qu\u00e9nia", + "KG": "Quirguist\u00e3o", + "KI": "Quirib\u00e1ti", + "GB": "Reino Unido", + "CF": "Rep\u00fablica Centro-Africana", + "DO": "Rep\u00fablica Dominicana", + "RE": "Reuni\u00e3o", + "RO": "Rom\u00e9nia", + "RW": "Ruanda", + "RU": "R\u00fassia", + "SV": "Salvador", + "WS": "Samoa", + "AS": "Samoa Americana", + "SH": "Santa Helena", + "LC": "Santa L\u00facia", + "BL": "S\u00e3o Bartolomeu", + "KN": "S\u00e3o Crist\u00f3v\u00e3o e Neves", + "SM": "S\u00e3o Marinho", + "MF": "S\u00e3o Martinho", + "SX": "S\u00e3o Martinho (Sint Maarten)", + "PM": "S\u00e3o Pedro e Miquel\u00e3o", + "ST": "S\u00e3o Tom\u00e9 e Pr\u00edncipe", + "VC": "S\u00e3o Vicente e Granadinas", + "EH": "Sara Ocidental", + "SC": "Seicheles", + "SN": "Senegal", + "SL": "Serra Leoa", + "RS": "S\u00e9rvia", + "SG": "Singapura", + "SY": "S\u00edria", + "SO": "Som\u00e1lia", + "LK": "Sri Lanca", + "SD": "Sud\u00e3o", + "SS": "Sud\u00e3o do Sul", + "SE": "Su\u00e9cia", + "CH": "Su\u00ed\u00e7a", + "SR": "Suriname", + "SJ": "Svalbard e Jan Mayen", + "TH": "Tail\u00e2ndia", + "TW": "Taiwan", + "TJ": "Tajiquist\u00e3o", + "TZ": "Tanz\u00e2nia", + "IO": "Territ\u00f3rio Brit\u00e2nico do Oceano \u00cdndico", + "TF": "Territ\u00f3rios Austrais Franceses", + "PS": "Territ\u00f3rios palestinianos", + "TL": "Timor-Leste", + "TG": "Togo", + "TO": "Tonga", + "TK": "Toquelau", + "TT": "Trindade e Tobago", + "TN": "Tun\u00edsia", + "TM": "Turquemenist\u00e3o", + "TR": "Turquia", + "TV": "Tuvalu", + "UA": "Ucr\u00e2nia", + "UG": "Uganda", + "UY": "Uruguai", + "UZ": "Usbequist\u00e3o", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietname", + "WF": "Wallis e Futuna", + "ZM": "Z\u00e2mbia", + "ZW": "Zimbabu\u00e9" +} diff --git a/public/intl/country/ro-RO.json b/public/intl/country/ro-RO.json new file mode 100644 index 0000000..438a689 --- /dev/null +++ b/public/intl/country/ro-RO.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "ZA": "Africa de Sud", + "AL": "Albania", + "DZ": "Algeria", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarctica", + "AG": "Antigua \u0219i Barbuda", + "SA": "Arabia Saudit\u0103", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AT": "Austria", + "AZ": "Azerbaidjan", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BY": "Belarus", + "BE": "Belgia", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnia \u0219i Her\u021begovina", + "BW": "Botswana", + "BR": "Brazilia", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "KH": "Cambodgia", + "CM": "Camerun", + "CA": "Canada", + "CV": "Capul Verde", + "CZ": "Cehia", + "CL": "Chile", + "CN": "China", + "TD": "Ciad", + "CY": "Cipru", + "CO": "Columbia", + "KM": "Comore", + "CG": "Congo - Brazzaville", + "CD": "Congo - Kinshasa", + "KP": "Coreea de Nord", + "KR": "Coreea de Sud", + "CR": "Costa Rica", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croa\u021bia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DK": "Danemarca", + "DJ": "Djibouti", + "DM": "Dominica", + "EC": "Ecuador", + "EG": "Egipt", + "SV": "El Salvador", + "CH": "Elve\u021bia", + "AE": "Emiratele Arabe Unite", + "ER": "Eritreea", + "EE": "Estonia", + "SZ": "eSwatini", + "ET": "Etiopia", + "FJ": "Fiji", + "PH": "Filipine", + "FI": "Finlanda", + "FR": "Fran\u021ba", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GS": "Georgia de Sud \u0219i Insulele Sandwich de Sud", + "DE": "Germania", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Grecia", + "GD": "Grenada", + "GL": "Groenlanda", + "GP": "Guadelupa", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guineea", + "GQ": "Guineea Ecuatorial\u0103", + "GW": "Guineea-Bissau", + "GY": "Guyana", + "GF": "Guyana Francez\u0103", + "HT": "Haiti", + "HN": "Honduras", + "IN": "India", + "ID": "Indonezia", + "BV": "Insula Bouvet", + "CX": "Insula Christmas", + "HM": "Insula Heard \u0219i Insulele McDonald", + "IM": "Insula Man", + "NF": "Insula Norfolk", + "AX": "Insulele \u00c5land", + "BQ": "Insulele Caraibe Olandeze", + "KY": "Insulele Cayman", + "CC": "Insulele Cocos (Keeling)", + "CK": "Insulele Cook", + "FK": "Insulele Falkland", + "FO": "Insulele Feroe", + "UM": "Insulele \u00cendep\u0103rtate ale S.U.A.", + "MP": "Insulele Mariane de Nord", + "MH": "Insulele Marshall", + "PN": "Insulele Pitcairn", + "SB": "Insulele Solomon", + "TC": "Insulele Turks \u0219i Caicos", + "VI": "Insulele Virgine Americane", + "VG": "Insulele Virgine Britanice", + "JO": "Iordania", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irlanda", + "IS": "Islanda", + "IL": "Israel", + "IT": "Italia", + "JM": "Jamaica", + "JP": "Japonia", + "JE": "Jersey", + "KZ": "Kazahstan", + "KG": "K\u00e2rg\u00e2zstan", + "KE": "Kenya", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuweit", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Letonia", + "LB": "Liban", + "LR": "Liberia", + "LY": "Libia", + "LI": "Liechtenstein", + "LT": "Lituania", + "LU": "Luxemburg", + "MK": "Macedonia de Nord", + "MG": "Madagascar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldive", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroc", + "MQ": "Martinica", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexic", + "FM": "Micronezia", + "MC": "Monaco", + "MN": "Mongolia", + "MS": "Montserrat", + "MZ": "Mozambic", + "ME": "Muntenegru", + "MM": "Myanmar (Birmania)", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "NO": "Norvegia", + "NC": "Noua Caledonie", + "NZ": "Noua Zeeland\u0103", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua-Noua Guinee", + "PY": "Paraguay", + "PE": "Peru", + "PF": "Polinezia Francez\u0103", + "PL": "Polonia", + "PT": "Portugalia", + "PR": "Puerto Rico", + "QA": "Qatar", + "HK": "R.A.S. Hong Kong a Chinei", + "MO": "R.A.S. Macao, China", + "GB": "Regatul Unit", + "CF": "Republica Centrafrican\u0103", + "DO": "Republica Dominican\u0103", + "MD": "Republica Moldova", + "RE": "R\u00e9union", + "RO": "Rom\u00e2nia", + "RU": "Rusia", + "RW": "Rwanda", + "EH": "Sahara Occidental\u0103", + "KN": "Saint Kitts \u0219i Nevis", + "VC": "Saint Vincent \u0219i Grenadinele", + "BL": "Saint-Barth\u00e9lemy", + "PM": "Saint-Pierre \u0219i Miquelon", + "WS": "Samoa", + "AS": "Samoa American\u0103", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 \u0219i Pr\u00edncipe", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SH": "Sf\u00e2nta Elena", + "LC": "Sf\u00e2nta Lucia", + "MF": "Sf\u00e2ntul Martin", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint-Maarten", + "SY": "Siria", + "SK": "Slovacia", + "SI": "Slovenia", + "SO": "Somalia", + "ES": "Spania", + "LK": "Sri Lanka", + "US": "Statele Unite ale Americii", + "VA": "Statul Cet\u0103\u021bii Vaticanului", + "SD": "Sudan", + "SS": "Sudanul de Sud", + "SE": "Suedia", + "SR": "Suriname", + "SJ": "Svalbard \u0219i Jan Mayen", + "TJ": "Tadjikistan", + "TW": "Taiwan", + "TZ": "Tanzania", + "TF": "Teritoriile Australe \u0219i Antarctice Franceze", + "PS": "Teritoriile Palestiniene", + "IO": "Teritoriul Britanic din Oceanul Indian", + "TH": "Thailanda", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad \u0219i Tobago", + "TN": "Tunisia", + "TR": "Turcia", + "TM": "Turkmenistan", + "TV": "Tuvalu", + "NL": "\u021a\u0103rile de Jos", + "UA": "Ucraina", + "UG": "Uganda", + "HU": "Ungaria", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis \u0219i Futuna", + "YE": "Yemen", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/ru-RU.json b/public/intl/country/ru-RU.json new file mode 100644 index 0000000..6e5c488 --- /dev/null +++ b/public/intl/country/ru-RU.json @@ -0,0 +1,252 @@ +{ + "AU": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f", + "AT": "\u0410\u0432\u0441\u0442\u0440\u0438\u044f", + "AZ": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d", + "AX": "\u0410\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430", + "AL": "\u0410\u043b\u0431\u0430\u043d\u0438\u044f", + "DZ": "\u0410\u043b\u0436\u0438\u0440", + "AS": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0435 \u0421\u0430\u043c\u043e\u0430", + "AI": "\u0410\u043d\u0433\u0438\u043b\u044c\u044f", + "AO": "\u0410\u043d\u0433\u043e\u043b\u0430", + "AD": "\u0410\u043d\u0434\u043e\u0440\u0440\u0430", + "AQ": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u0434\u0430", + "AG": "\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0438 \u0411\u0430\u0440\u0431\u0443\u0434\u0430", + "AR": "\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0430", + "AM": "\u0410\u0440\u043c\u0435\u043d\u0438\u044f", + "AW": "\u0410\u0440\u0443\u0431\u0430", + "AF": "\u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d", + "BS": "\u0411\u0430\u0433\u0430\u043c\u044b", + "BD": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448", + "BB": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441", + "BH": "\u0411\u0430\u0445\u0440\u0435\u0439\u043d", + "BY": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c", + "BZ": "\u0411\u0435\u043b\u0438\u0437", + "BE": "\u0411\u0435\u043b\u044c\u0433\u0438\u044f", + "BJ": "\u0411\u0435\u043d\u0438\u043d", + "BM": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430", + "BG": "\u0411\u043e\u043b\u0433\u0430\u0440\u0438\u044f", + "BO": "\u0411\u043e\u043b\u0438\u0432\u0438\u044f", + "BQ": "\u0411\u043e\u043d\u044d\u0439\u0440, \u0421\u0438\u043d\u0442-\u042d\u0441\u0442\u0430\u0442\u0438\u0443\u0441 \u0438 \u0421\u0430\u0431\u0430", + "BA": "\u0411\u043e\u0441\u043d\u0438\u044f \u0438 \u0413\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430", + "BW": "\u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430", + "BR": "\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f", + "IO": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0432 \u0418\u043d\u0434\u0438\u0439\u0441\u043a\u043e\u043c \u043e\u043a\u0435\u0430\u043d\u0435", + "BN": "\u0411\u0440\u0443\u043d\u0435\u0439-\u0414\u0430\u0440\u0443\u0441\u0441\u0430\u043b\u0430\u043c", + "BF": "\u0411\u0443\u0440\u043a\u0438\u043d\u0430-\u0424\u0430\u0441\u043e", + "BI": "\u0411\u0443\u0440\u0443\u043d\u0434\u0438", + "BT": "\u0411\u0443\u0442\u0430\u043d", + "VU": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443", + "VA": "\u0412\u0430\u0442\u0438\u043a\u0430\u043d", + "GB": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f", + "HU": "\u0412\u0435\u043d\u0433\u0440\u0438\u044f", + "VE": "\u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u0430", + "VG": "\u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430 (\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f)", + "VI": "\u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430 (\u0421\u0428\u0410)", + "UM": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u043c\u0430\u043b\u044b\u0435 \u043e-\u0432\u0430 (\u0421\u0428\u0410)", + "TL": "\u0412\u043e\u0441\u0442\u043e\u0447\u043d\u044b\u0439 \u0422\u0438\u043c\u043e\u0440", + "VN": "\u0412\u044c\u0435\u0442\u043d\u0430\u043c", + "GA": "\u0413\u0430\u0431\u043e\u043d", + "HT": "\u0413\u0430\u0438\u0442\u0438", + "GY": "\u0413\u0430\u0439\u0430\u043d\u0430", + "GM": "\u0413\u0430\u043c\u0431\u0438\u044f", + "GH": "\u0413\u0430\u043d\u0430", + "GP": "\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0430", + "GT": "\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430", + "GN": "\u0413\u0432\u0438\u043d\u0435\u044f", + "GW": "\u0413\u0432\u0438\u043d\u0435\u044f-\u0411\u0438\u0441\u0430\u0443", + "DE": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f", + "GG": "\u0413\u0435\u0440\u043d\u0441\u0438", + "GI": "\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440", + "HN": "\u0413\u043e\u043d\u0434\u0443\u0440\u0430\u0441", + "HK": "\u0413\u043e\u043d\u043a\u043e\u043d\u0433 (\u0421\u0410\u0420)", + "GD": "\u0413\u0440\u0435\u043d\u0430\u0434\u0430", + "GL": "\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0438\u044f", + "GR": "\u0413\u0440\u0435\u0446\u0438\u044f", + "GE": "\u0413\u0440\u0443\u0437\u0438\u044f", + "GU": "\u0413\u0443\u0430\u043c", + "DK": "\u0414\u0430\u043d\u0438\u044f", + "JE": "\u0414\u0436\u0435\u0440\u0441\u0438", + "DJ": "\u0414\u0436\u0438\u0431\u0443\u0442\u0438", + "DM": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430", + "DO": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "EG": "\u0415\u0433\u0438\u043f\u0435\u0442", + "ZM": "\u0417\u0430\u043c\u0431\u0438\u044f", + "EH": "\u0417\u0430\u043f\u0430\u0434\u043d\u0430\u044f \u0421\u0430\u0445\u0430\u0440\u0430", + "ZW": "\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435", + "IL": "\u0418\u0437\u0440\u0430\u0438\u043b\u044c", + "IN": "\u0418\u043d\u0434\u0438\u044f", + "ID": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f", + "JO": "\u0418\u043e\u0440\u0434\u0430\u043d\u0438\u044f", + "IQ": "\u0418\u0440\u0430\u043a", + "IR": "\u0418\u0440\u0430\u043d", + "IE": "\u0418\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "IS": "\u0418\u0441\u043b\u0430\u043d\u0434\u0438\u044f", + "ES": "\u0418\u0441\u043f\u0430\u043d\u0438\u044f", + "IT": "\u0418\u0442\u0430\u043b\u0438\u044f", + "YE": "\u0419\u0435\u043c\u0435\u043d", + "CV": "\u041a\u0430\u0431\u043e-\u0412\u0435\u0440\u0434\u0435", + "KZ": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", + "KH": "\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430", + "CM": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d", + "CA": "\u041a\u0430\u043d\u0430\u0434\u0430", + "QA": "\u041a\u0430\u0442\u0430\u0440", + "KE": "\u041a\u0435\u043d\u0438\u044f", + "CY": "\u041a\u0438\u043f\u0440", + "KG": "\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f", + "KI": "\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438", + "CN": "\u041a\u0438\u0442\u0430\u0439", + "KP": "\u041a\u041d\u0414\u0420", + "CC": "\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u044b\u0435 \u043e-\u0432\u0430", + "XK": "\u041A\u043E\u0441\u043E\u0432\u043E", + "CO": "\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f", + "KM": "\u041a\u043e\u043c\u043e\u0440\u044b", + "CG": "\u041a\u043e\u043d\u0433\u043e - \u0411\u0440\u0430\u0437\u0437\u0430\u0432\u0438\u043b\u044c", + "CD": "\u041a\u043e\u043d\u0433\u043e - \u041a\u0438\u043d\u0448\u0430\u0441\u0430", + "CR": "\u041a\u043e\u0441\u0442\u0430-\u0420\u0438\u043a\u0430", + "CI": "\u041a\u043e\u0442-\u0434\u2019\u0418\u0432\u0443\u0430\u0440", + "CU": "\u041a\u0443\u0431\u0430", + "KW": "\u041a\u0443\u0432\u0435\u0439\u0442", + "CW": "\u041a\u044e\u0440\u0430\u0441\u0430\u043e", + "LA": "\u041b\u0430\u043e\u0441", + "LV": "\u041b\u0430\u0442\u0432\u0438\u044f", + "LS": "\u041b\u0435\u0441\u043e\u0442\u043e", + "LR": "\u041b\u0438\u0431\u0435\u0440\u0438\u044f", + "LB": "\u041b\u0438\u0432\u0430\u043d", + "LY": "\u041b\u0438\u0432\u0438\u044f", + "LT": "\u041b\u0438\u0442\u0432\u0430", + "LI": "\u041b\u0438\u0445\u0442\u0435\u043d\u0448\u0442\u0435\u0439\u043d", + "LU": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433", + "MU": "\u041c\u0430\u0432\u0440\u0438\u043a\u0438\u0439", + "MR": "\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438\u044f", + "MG": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440", + "YT": "\u041c\u0430\u0439\u043e\u0442\u0442\u0430", + "MO": "\u041c\u0430\u043a\u0430\u043e (\u0421\u0410\u0420)", + "MW": "\u041c\u0430\u043b\u0430\u0432\u0438", + "MY": "\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f", + "ML": "\u041c\u0430\u043b\u0438", + "MV": "\u041c\u0430\u043b\u044c\u0434\u0438\u0432\u044b", + "MT": "\u041c\u0430\u043b\u044c\u0442\u0430", + "MA": "\u041c\u0430\u0440\u043e\u043a\u043a\u043e", + "MQ": "\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a\u0430", + "MH": "\u041c\u0430\u0440\u0448\u0430\u043b\u043b\u043e\u0432\u044b \u041e\u0441\u0442\u0440\u043e\u0432\u0430", + "MX": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430", + "MZ": "\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a", + "MD": "\u041c\u043e\u043b\u0434\u043e\u0432\u0430", + "MC": "\u041c\u043e\u043d\u0430\u043a\u043e", + "MN": "\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u044f", + "MS": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0440\u0430\u0442", + "MM": "\u041c\u044c\u044f\u043d\u043c\u0430 (\u0411\u0438\u0440\u043c\u0430)", + "NA": "\u041d\u0430\u043c\u0438\u0431\u0438\u044f", + "NR": "\u041d\u0430\u0443\u0440\u0443", + "NP": "\u041d\u0435\u043f\u0430\u043b", + "NE": "\u041d\u0438\u0433\u0435\u0440", + "NG": "\u041d\u0438\u0433\u0435\u0440\u0438\u044f", + "NL": "\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u044b", + "NI": "\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430", + "NU": "\u041d\u0438\u0443\u044d", + "NZ": "\u041d\u043e\u0432\u0430\u044f \u0417\u0435\u043b\u0430\u043d\u0434\u0438\u044f", + "NC": "\u041d\u043e\u0432\u0430\u044f \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u044f", + "NO": "\u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f", + "BV": "\u043e-\u0432 \u0411\u0443\u0432\u0435", + "IM": "\u043e-\u0432 \u041c\u044d\u043d", + "NF": "\u043e-\u0432 \u041d\u043e\u0440\u0444\u043e\u043b\u043a", + "CX": "\u043e-\u0432 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430", + "SH": "\u043e-\u0432 \u0421\u0432. \u0415\u043b\u0435\u043d\u044b", + "PN": "\u043e-\u0432\u0430 \u041f\u0438\u0442\u043a\u044d\u0440\u043d", + "TC": "\u043e-\u0432\u0430 \u0422\u0451\u0440\u043a\u0441 \u0438 \u041a\u0430\u0439\u043a\u043e\u0441", + "HM": "\u043e-\u0432\u0430 \u0425\u0435\u0440\u0434 \u0438 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u044c\u0434", + "AE": "\u041e\u0410\u042d", + "OM": "\u041e\u043c\u0430\u043d", + "KY": "\u041e\u0441\u0442\u0440\u043e\u0432\u0430 \u041a\u0430\u0439\u043c\u0430\u043d", + "CK": "\u041e\u0441\u0442\u0440\u043e\u0432\u0430 \u041a\u0443\u043a\u0430", + "PK": "\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d", + "PW": "\u041f\u0430\u043b\u0430\u0443", + "PS": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438", + "PA": "\u041f\u0430\u043d\u0430\u043c\u0430", + "PG": "\u041f\u0430\u043f\u0443\u0430 \u2014 \u041d\u043e\u0432\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f", + "PY": "\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439", + "PE": "\u041f\u0435\u0440\u0443", + "PL": "\u041f\u043e\u043b\u044c\u0448\u0430", + "PT": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f", + "PR": "\u041f\u0443\u044d\u0440\u0442\u043e-\u0420\u0438\u043a\u043e", + "KR": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0440\u0435\u044f", + "RE": "\u0420\u0435\u044e\u043d\u044c\u043e\u043d", + "RU": "\u0420\u043e\u0441\u0441\u0438\u044f", + "RW": "\u0420\u0443\u0430\u043d\u0434\u0430", + "RO": "\u0420\u0443\u043c\u044b\u043d\u0438\u044f", + "SV": "\u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440", + "WS": "\u0421\u0430\u043c\u043e\u0430", + "SM": "\u0421\u0430\u043d-\u041c\u0430\u0440\u0438\u043d\u043e", + "ST": "\u0421\u0430\u043d-\u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438", + "SA": "\u0421\u0430\u0443\u0434\u043e\u0432\u0441\u043a\u0430\u044f \u0410\u0440\u0430\u0432\u0438\u044f", + "MK": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u044f", + "MP": "\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0435 \u041c\u0430\u0440\u0438\u0430\u043d\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430", + "SC": "\u0421\u0435\u0439\u0448\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430", + "BL": "\u0421\u0435\u043d-\u0411\u0430\u0440\u0442\u0435\u043b\u0435\u043c\u0438", + "MF": "\u0421\u0435\u043d-\u041c\u0430\u0440\u0442\u0435\u043d", + "PM": "\u0421\u0435\u043d-\u041f\u044c\u0435\u0440 \u0438 \u041c\u0438\u043a\u0435\u043b\u043e\u043d", + "SN": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b", + "VC": "\u0421\u0435\u043d\u0442-\u0412\u0438\u043d\u0441\u0435\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u044b", + "KN": "\u0421\u0435\u043d\u0442-\u041a\u0438\u0442\u0441 \u0438 \u041d\u0435\u0432\u0438\u0441", + "LC": "\u0421\u0435\u043d\u0442-\u041b\u044e\u0441\u0438\u044f", + "RS": "\u0421\u0435\u0440\u0431\u0438\u044f", + "SG": "\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440", + "SX": "\u0421\u0438\u043d\u0442-\u041c\u0430\u0440\u0442\u0435\u043d", + "SY": "\u0421\u0438\u0440\u0438\u044f", + "SK": "\u0421\u043b\u043e\u0432\u0430\u043a\u0438\u044f", + "SI": "\u0421\u043b\u043e\u0432\u0435\u043d\u0438\u044f", + "US": "\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b", + "SB": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u044b \u041e\u0441\u0442\u0440\u043e\u0432\u0430", + "SO": "\u0421\u043e\u043c\u0430\u043b\u0438", + "SD": "\u0421\u0443\u0434\u0430\u043d", + "SR": "\u0421\u0443\u0440\u0438\u043d\u0430\u043c", + "SL": "\u0421\u044c\u0435\u0440\u0440\u0430-\u041b\u0435\u043e\u043d\u0435", + "TJ": "\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d", + "TH": "\u0422\u0430\u0438\u043b\u0430\u043d\u0434", + "TW": "\u0422\u0430\u0439\u0432\u0430\u043d\u044c", + "TZ": "\u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f", + "TG": "\u0422\u043e\u0433\u043e", + "TK": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443", + "TO": "\u0422\u043e\u043d\u0433\u0430", + "TT": "\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e", + "TV": "\u0422\u0443\u0432\u0430\u043b\u0443", + "TN": "\u0422\u0443\u043d\u0438\u0441", + "TM": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d", + "TR": "\u0422\u0443\u0440\u0446\u0438\u044f", + "UG": "\u0423\u0433\u0430\u043d\u0434\u0430", + "UZ": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d", + "UA": "\u0423\u043a\u0440\u0430\u0438\u043d\u0430", + "WF": "\u0423\u043e\u043b\u043b\u0438\u0441 \u0438 \u0424\u0443\u0442\u0443\u043d\u0430", + "UY": "\u0423\u0440\u0443\u0433\u0432\u0430\u0439", + "FO": "\u0424\u0430\u0440\u0435\u0440\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430", + "FM": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b \u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u0438", + "FJ": "\u0424\u0438\u0434\u0436\u0438", + "PH": "\u0424\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u044b", + "FI": "\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0438\u044f", + "FK": "\u0424\u043e\u043b\u043a\u043b\u0435\u043d\u0434\u0441\u043a\u0438\u0435 \u043e-\u0432\u0430", + "FR": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f", + "GF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u0413\u0432\u0438\u0430\u043d\u0430", + "PF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u041f\u043e\u043b\u0438\u043d\u0435\u0437\u0438\u044f", + "TF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0435 \u042e\u0436\u043d\u044b\u0435 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438", + "HR": "\u0425\u043e\u0440\u0432\u0430\u0442\u0438\u044f", + "CF": "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "TD": "\u0427\u0430\u0434", + "ME": "\u0427\u0435\u0440\u043d\u043e\u0433\u043e\u0440\u0438\u044f", + "CZ": "\u0427\u0435\u0445\u0438\u044f", + "CL": "\u0427\u0438\u043b\u0438", + "CH": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044f", + "SE": "\u0428\u0432\u0435\u0446\u0438\u044f", + "SJ": "\u0428\u043f\u0438\u0446\u0431\u0435\u0440\u0433\u0435\u043d \u0438 \u042f\u043d-\u041c\u0430\u0439\u0435\u043d", + "LK": "\u0428\u0440\u0438-\u041b\u0430\u043d\u043a\u0430", + "EC": "\u042d\u043a\u0432\u0430\u0434\u043e\u0440", + "GQ": "\u042d\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f", + "ER": "\u042d\u0440\u0438\u0442\u0440\u0435\u044f", + "SZ": "\u042d\u0441\u0432\u0430\u0442\u0438\u043d\u0438", + "EE": "\u042d\u0441\u0442\u043e\u043d\u0438\u044f", + "ET": "\u042d\u0444\u0438\u043e\u043f\u0438\u044f", + "GS": "\u042e\u0436\u043d\u0430\u044f \u0413\u0435\u043e\u0440\u0433\u0438\u044f \u0438 \u042e\u0436\u043d\u044b\u0435 \u0421\u0430\u043d\u0434\u0432\u0438\u0447\u0435\u0432\u044b \u043e-\u0432\u0430", + "ZA": "\u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "SS": "\u042e\u0436\u043d\u044b\u0439 \u0421\u0443\u0434\u0430\u043d", + "JM": "\u042f\u043c\u0430\u0439\u043a\u0430", + "JP": "\u042f\u043f\u043e\u043d\u0438\u044f" +} diff --git a/public/intl/country/si-LK.json b/public/intl/country/si-LK.json new file mode 100644 index 0000000..0591700 --- /dev/null +++ b/public/intl/country/si-LK.json @@ -0,0 +1,252 @@ +{ + "IE": "\u0d85\u0dba\u0dbb\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "IM": "\u0d85\u0dba\u0dd2\u0dbd\u0dca \u0d94\u0dc6\u0dca \u0db8\u0dd1\u0db1\u0dca", + "IS": "\u0d85\u0dba\u0dd2\u0dc3\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "AW": "\u0d85\u0dbb\u0dd6\u0db6\u0dcf", + "AZ": "\u0d85\u0dc3\u0dbb\u0dca\u0db6\u0dba\u0dd2\u0da2\u0dcf\u0db1\u0dba", + "AR": "\u0d86\u0dbb\u0dca\u0da2\u0dd9\u0db1\u0dca\u0da7\u0dd2\u0db1\u0dcf\u0dc0", + "AM": "\u0d86\u0dbb\u0dca\u0db8\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "AI": "\u0d87\u0db1\u0dca\u0d9c\u0dd4\u0dba\u0dd2\u0dbd\u0dcf\u0dc0", + "AO": "\u0d87\u0db1\u0dca\u0d9c\u0ddd\u0dbd\u0dcf\u0dc0", + "AQ": "\u0d87\u0db1\u0dca\u0da7\u0dcf\u0d9a\u0dca\u0da7\u0dd2\u0d9a\u0dcf\u0dc0", + "AG": "\u0d87\u0db1\u0dca\u0da7\u0dd2\u0d9c\u0dd4\u0dc0\u0dcf \u0dc3\u0dc4 \u0db6\u0dcf\u0db6\u0dd2\u0dba\u0dd4\u0da9\u0dcf\u0dc0", + "AD": "\u0d87\u0db1\u0dca\u0da9\u0ddd\u0dbb\u0dcf\u0dc0", + "VI": "\u0d87\u0db8\u0dbb\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0dc0\u0dbb\u0dca\u0da2\u0dd2\u0db1\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "AS": "\u0d87\u0db8\u0dbb\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0dc3\u0dd0\u0db8\u0ddd\u0dc0\u0dcf", + "DZ": "\u0d87\u0dbd\u0dca\u0da2\u0dd3\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "AL": "\u0d87\u0dbd\u0dca\u0db6\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "AF": "\u0d87\u0dc6\u0dca\u0d9c\u0db1\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db1\u0dba", + "EC": "\u0d89\u0d9a\u0dca\u0dc0\u0daf\u0ddd\u0dbb\u0dba", + "IT": "\u0d89\u0dad\u0dcf\u0dbd\u0dd2\u0dba", + "ET": "\u0d89\u0dad\u0dd2\u0dba\u0ddd\u0db4\u0dd2\u0dba\u0dcf\u0dc0", + "IN": "\u0d89\u0db1\u0dca\u0daf\u0dd2\u0dba\u0dcf\u0dc0", + "ID": "\u0d89\u0db1\u0dca\u0daf\u0dd4\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0dc0", + "IQ": "\u0d89\u0dbb\u0dcf\u0d9a\u0dba", + "IR": "\u0d89\u0dbb\u0dcf\u0db1\u0dba", + "EG": "\u0d8a\u0da2\u0dd2\u0db4\u0dca\u0dad\u0dd4\u0dc0", + "IL": "\u0d8a\u0dc1\u0dca\u200d\u0dbb\u0dcf\u0dba\u0dbd\u0dba", + "UG": "\u0d8b\u0d9c\u0db1\u0dca\u0da9\u0dcf\u0dc0", + "KP": "\u0d8b\u0dad\u0dd4\u0dbb\u0dd4 \u0d9a\u0ddc\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "MP": "\u0d8b\u0dad\u0dd4\u0dbb\u0dd4 \u0db8\u0dbb\u0dd2\u0dba\u0dcf\u0db1\u0dcf \u0daf\u0dd6\u0db4\u0dad\u0dca", + "MK": "\u0d8b\u0dad\u0dd4\u0dbb\u0dd4 \u0db8\u0dd0\u0dc3\u0dd2\u0da9\u0ddd\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "UY": "\u0d8b\u0dbb\u0dd4\u0d9c\u0dd4\u0dc0\u0dda", + "UZ": "\u0d8b\u0dc3\u0dca\u0db6\u0dd9\u0d9a\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db1\u0dba", + "AE": "\u0d91\u0d9a\u0dca\u0dc3\u0dad\u0dca \u0d85\u0dbb\u0dcf\u0db6\u0dd2 \u0d91\u0db8\u0dd2\u0dbb\u0dca \u0dbb\u0dcf\u0da2\u0dca\u200d\u0dba\u0dba", + "UM": "\u0d91\u0d9a\u0dca\u0dc3\u0dad\u0dca \u0da2\u0db1\u0db4\u0daf \u0d88\u0dad \u0daf\u0dd6\u0db4\u0dad\u0dca", + "US": "\u0d91\u0d9a\u0dca\u0dc3\u0dad\u0dca \u0da2\u0db1\u0db4\u0daf\u0dba", + "GB": "\u0d91\u0d9a\u0dca\u0dc3\u0dad\u0dca \u0dbb\u0dcf\u0da2\u0db0\u0dcf\u0db1\u0dd2\u0dba", + "ER": "\u0d91\u0dbb\u0dd2\u0dad\u0dca\u200d\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "SV": "\u0d91\u0dbd\u0dca \u0dc3\u0dd0\u0dbd\u0dca\u0dc0\u0daf\u0ddd\u0dbb\u0dba", + "EE": "\u0d91\u0dc3\u0dca\u0dad\u0ddd\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "SZ": "\u0d91\u0dc3\u0dca\u0dc0\u0dcf\u0da7\u0dd2\u0db1\u0dd2", + "AT": "\u0d94\u0dc3\u0dca\u0da7\u0dca\u200d\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "OM": "\u0d95\u0db8\u0dcf\u0db1\u0dba", + "AX": "\u0d95\u0dbd\u0db1\u0dca\u0da9\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "AU": "\u0d95\u0dc3\u0dca\u0da7\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dd2\u0dba\u0dcf\u0dc0", + "QA": "\u0d9a\u0da7\u0dcf\u0dbb\u0dca", + "KZ": "\u0d9a\u0dc3\u0d9a\u0dc3\u0dca\u0dad\u0dcf\u0db1\u0dba", + "KH": "\u0d9a\u0dcf\u0db8\u0dca\u0db6\u0ddd\u0da2\u0dba", + "CA": "\u0d9a\u0dd0\u0db1\u0da9\u0dcf\u0dc0", + "CM": "\u0d9a\u0dd0\u0db8\u0dbb\u0dd6\u0db1\u0dca", + "BQ": "\u0d9a\u0dd0\u0dbb\u0dd2\u0db6\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0db1\u0dd9\u0daf\u0dbb\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "CU": "\u0d9a\u0dd2\u0dba\u0dd4\u0db6\u0dcf\u0dc0", + "KI": "\u0d9a\u0dd2\u0dbb\u0dd2\u0db6\u0dad\u0dd2", + "KG": "\u0d9a\u0dd2\u0dbb\u0dca\u0d9c\u0dd2\u0dc3\u0dca\u0dad\u0dcf\u0db1\u0dba", + "CK": "\u0d9a\u0dd4\u0d9a\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "CW": "\u0d9a\u0dd4\u0dbb\u0d9a\u0dcf\u0dc0\u0ddd", + "KW": "\u0d9a\u0dd4\u0dc0\u0dda\u0da7\u0dba", + "KE": "\u0d9a\u0dd9\u0db1\u0dca\u0dba\u0dcf\u0dc0", + "CV": "\u0d9a\u0dda\u0db4\u0dca \u0dc0\u0dbb\u0dca\u0da9\u0dca", + "KY": "\u0d9a\u0dda\u0db8\u0db1\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "CG": "\u0d9a\u0ddc\u0d82\u0d9c\u0ddc - \u0db6\u0dca\u200d\u0dbb\u0dc3\u0dcf\u0dc0\u0dd2\u0dbd\u0dca", + "CD": "\u0d9a\u0ddc\u0d82\u0d9c\u0ddd\u0dc0 (\u0da9\u0dd3\u0d86\u0dbb\u0dca\u0dc3\u0dd3)", + "CC": "\u0d9a\u0ddc\u0d9a\u0ddd\u0dc3\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "KM": "\u0d9a\u0ddc\u0db8\u0ddc\u0dbb\u0ddd\u0dc3\u0dca", + "CR": "\u0d9a\u0ddc\u0dc3\u0dca\u0da7\u0dbb\u0dd2\u0d9a\u0dcf\u0dc0", + "XK": "\u0d9a\u0ddc\u0dc3\u0ddd\u0dc0\u0ddd", + "CO": "\u0d9a\u0ddc\u0dc5\u0ddc\u0db8\u0dca\u0db6\u0dd2\u0dba\u0dcf\u0dc0", + "CI": "\u0d9a\u0ddd\u0da7\u0dca \u0daf\u0dd2 \u0d85\u0dba\u0dd2\u0dc0\u0dbb\u0dd2", + "CX": "\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0db8\u0dc3\u0dca \u0daf\u0dd6\u0db4\u0dad", + "HR": "\u0d9a\u0dca\u200d\u0dbb\u0ddc\u0d92\u0dc2\u0dd2\u0dba\u0dcf\u0dc0", + "GY": "\u0d9c\u0dba\u0db1\u0dcf\u0dc0", + "GG": "\u0d9c\u0dbb\u0dca\u0db1\u0dca\u0dc3\u0dd2\u0dba", + "GA": "\u0d9c\u0dd0\u0db6\u0ddc\u0db1\u0dca", + "GM": "\u0d9c\u0dd0\u0db8\u0dca\u0db6\u0dd2\u0dba\u0dcf\u0dc0", + "GN": "\u0d9c\u0dd2\u0dab\u0dd2\u0dba\u0dcf\u0dc0", + "GW": "\u0d9c\u0dd2\u0db1\u0dd2 \u0db6\u0dd2\u0dc3\u0dc0\u0dca", + "GU": "\u0d9c\u0dd4\u0dc0\u0dcf\u0db8\u0dca", + "GT": "\u0d9c\u0ddd\u0dad\u0db8\u0dcf\u0dbd\u0dcf\u0dc0", + "GD": "\u0d9c\u0dca\u200d\u0dbb\u0dd0\u0db1\u0da9\u0dcf\u0dc0", + "GL": "\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0db1\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "GR": "\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2\u0dba", + "GP": "\u0d9c\u0dca\u0dc0\u0ddd\u0da9\u0dbd\u0ddd\u0db4\u0dca", + "GH": "\u0d9d\u0dcf\u0db1\u0dcf\u0dc0", + "TD": "\u0da0\u0dd0\u0da0\u0dca", + "CL": "\u0da0\u0dd2\u0dbd\u0dd3", + "CN": "\u0da0\u0dd3\u0db1\u0dba", + "CZ": "\u0da0\u0dd9\u0da0\u0dd2\u0dba\u0dcf\u0dc0", + "JP": "\u0da2\u0db4\u0dcf\u0db1\u0dba", + "DE": "\u0da2\u0dbb\u0dca\u0db8\u0db1\u0dd2\u0dba", + "JE": "\u0da2\u0dbb\u0dca\u0dc3\u0dd2", + "JM": "\u0da2\u0dd0\u0db8\u0dd9\u0dba\u0dd2\u0d9a\u0dcf\u0dc0", + "DJ": "\u0da2\u0dd2\u0db6\u0dd4\u0da7\u0dd2", + "GI": "\u0da2\u0dd2\u0db6\u0dca\u200d\u0dbb\u0ddd\u0dbd\u0dca\u0da7\u0dcf\u0dc0", + "GE": "\u0da2\u0ddd\u0dbb\u0dca\u0da2\u0dd2\u0dba\u0dcf\u0dc0", + "JO": "\u0da2\u0ddd\u0dbb\u0dca\u0daf\u0dcf\u0db1\u0dba", + "TJ": "\u0da7\u0da2\u0dd2\u0d9a\u0dd2\u0dc3\u0dca\u0dad\u0dcf\u0db1\u0dba", + "TM": "\u0da7\u0dbb\u0dca\u0d9a\u0dca\u0db8\u0dd9\u0db1\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db1\u0dba", + "TC": "\u0da7\u0dbb\u0dca\u0d9a\u0dca\u0dc3\u0dca \u0dc3\u0dc4 \u0d9a\u0dba\u0dd2\u0d9a\u0ddc\u0dc3\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "TZ": "\u0da7\u0dd0\u0db1\u0dca\u0dc3\u0dcf\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "TL": "\u0da7\u0dd2\u0db8\u0ddd\u0dbb\u0dca - \u0dbd\u0dd9\u0dc3\u0dca\u0dad\u0dca", + "TN": "\u0da7\u0dd2\u0dba\u0dd4\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0dc0", + "TV": "\u0da7\u0dd4\u0dc0\u0dcf\u0dbd\u0dd6", + "TO": "\u0da7\u0ddc\u0d82\u0d9c\u0dcf", + "TK": "\u0da7\u0ddc\u0d9a\u0dbd\u0dcf\u0dc0\u0dd4", + "TG": "\u0da7\u0ddc\u0d9c\u0ddd", + "TT": "\u0da7\u0dca\u200d\u0dbb\u0dd2\u0db1\u0dd2\u0da9\u0dd1\u0da9\u0dca \u0dc3\u0dc4 \u0da7\u0ddc\u0db6\u0dd0\u0d9c\u0ddd", + "DK": "\u0da9\u0dd9\u0db1\u0dca\u0db8\u0dcf\u0dbb\u0dca\u0d9a\u0dba", + "DO": "\u0da9\u0ddc\u0db8\u0dd2\u0db1\u0dd2\u0d9a\u0dcf \u0da2\u0db1\u0dbb\u0da2\u0dba", + "DM": "\u0da9\u0ddc\u0db8\u0dd2\u0db1\u0dd2\u0d9a\u0dcf\u0dc0", + "TH": "\u0dad\u0dcf\u0dba\u0dd2\u0dbd\u0db1\u0dca\u0dad\u0dba", + "TW": "\u0dad\u0dcf\u0dba\u0dd2\u0dc0\u0dcf\u0db1\u0dba", + "TR": "\u0dad\u0dd4\u0dbb\u0dca\u0d9a\u0dd2\u0dba", + "ZA": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0d85\u0db4\u0dca\u200d\u0dbb\u0dd2\u0d9a\u0dcf\u0dc0", + "KR": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0d9a\u0ddc\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "GS": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0da2\u0ddd\u0dbb\u0dca\u0da2\u0dd2\u0dba\u0dcf\u0dc0 \u0dc3\u0dc4 \u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0dc3\u0dd0\u0db1\u0dca\u0da9\u0dca\u0dc0\u0dd2\u0da0\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "TF": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1 \u0daf\u0dd6\u0db4\u0dad\u0dca \u0dc3\u0db8\u0dd6\u0dc4\u0dba", + "SS": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0dc3\u0dd4\u0da9\u0dcf\u0db1\u0dba", + "NE": "\u0db1\u0dba\u0dd2\u0da2\u0dbb\u0dca", + "NG": "\u0db1\u0dba\u0dd2\u0da2\u0dd3\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "NC": "\u0db1\u0dc0 \u0d9a\u0dd0\u0dbd\u0dd2\u0da9\u0ddd\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "NZ": "\u0db1\u0dc0\u0dc3\u0dd3\u0dbd\u0db1\u0dca\u0dad\u0dba", + "NR": "\u0db1\u0dcf\u0dc0\u0dd4\u0dbb\u0dd4", + "NA": "\u0db1\u0dd0\u0db8\u0dd3\u0db6\u0dd2\u0dba\u0dcf\u0dc0", + "NI": "\u0db1\u0dd2\u0d9a\u0dbb\u0d9c\u0dd4\u0dc0\u0dcf\u0dc0", + "NU": "\u0db1\u0dd2\u0dba\u0dd6", + "NL": "\u0db1\u0dd9\u0daf\u0dbb\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "NP": "\u0db1\u0dda\u0db4\u0dcf\u0dbd\u0dba", + "NO": "\u0db1\u0ddd\u0dbb\u0dca\u0dc0\u0dda", + "NF": "\u0db1\u0ddd\u0dc6\u0ddd\u0d9a\u0dca \u0daf\u0dd6\u0db4\u0dad", + "PS": "\u0db4\u0dbd\u0dc3\u0dca\u0dad\u0dd3\u0db1 \u0dbb\u0dcf\u0da2\u0dca\u200d\u0dba\u0dba", + "PW": "\u0db4\u0dbd\u0dcf\u0dc0\u0dd4", + "PK": "\u0db4\u0dcf\u0d9a\u0dd2\u0dc3\u0dca\u0dad\u0dcf\u0db1\u0dba", + "PA": "\u0db4\u0dd0\u0db1\u0db8\u0dcf\u0dc0", + "PG": "\u0db4\u0dd0\u0db4\u0dd4\u0dc0\u0dcf \u0db1\u0dd2\u0dc0\u0dca \u0d9c\u0dd2\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "PY": "\u0db4\u0dd0\u0dbb\u0d9c\u0dd4\u0dc0\u0dda", + "PN": "\u0db4\u0dd2\u0da7\u0dca\u0d9a\u0dd9\u0dba\u0dca\u0db1\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "PH": "\u0db4\u0dd2\u0dbd\u0dd2\u0db4\u0dd3\u0db1\u0dba", + "PR": "\u0db4\u0dd4\u0dc0\u0dbb\u0dca\u0da7\u0ddd \u0dbb\u0dd2\u0d9a\u0ddd", + "PT": "\u0db4\u0dd8\u0dad\u0dd4\u0d9c\u0dcf\u0dbd\u0dba", + "PE": "\u0db4\u0dda\u0dbb\u0dd4", + "PL": "\u0db4\u0ddd\u0dbd\u0db1\u0dca\u0dad\u0dba", + "GF": "\u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1 \u0d9c\u0dba\u0db1\u0dcf\u0dc0", + "PF": "\u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1 \u0db4\u0ddc\u0dbd\u0dd2\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0dc0", + "FR": "\u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1\u0dba", + "BD": "\u0db6\u0d82\u0d9c\u0dca\u0dbd\u0dcf\u0daf\u0dda\u0dc1\u0dba", + "EH": "\u0db6\u0da7\u0dc4\u0dd2\u0dbb \u0dc3\u0dc4\u0dbb\u0dcf\u0dc0", + "BF": "\u0db6\u0dbb\u0dca\u0d9a\u0dd2\u0db1\u0dcf \u0dc6\u0dcf\u0dc3\u0ddd", + "BM": "\u0db6\u0dbb\u0dca\u0db8\u0dd2\u0dba\u0dd4\u0da9\u0dcf", + "BG": "\u0db6\u0dbd\u0dca\u0d9c\u0dda\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "BS": "\u0db6\u0dc4\u0db8\u0dcf\u0dc3\u0dca", + "BH": "\u0db6\u0dc4\u0dbb\u0dda\u0db1\u0dca", + "BB": "\u0db6\u0dcf\u0db6\u0da9\u0ddd\u0dc3\u0dca", + "BI": "\u0db6\u0dd4\u0dbb\u0dd4\u0db1\u0dca\u0daf\u0dd2", + "BV": "\u0db6\u0dd4\u0dc0\u0da7\u0dca \u0daf\u0dd4\u0db4\u0dad\u0dca", + "BN": "\u0db6\u0df2\u0db1\u0dcf\u0dba\u0dd2", + "BJ": "\u0db6\u0dd9\u0db1\u0dd2\u0db1\u0dca", + "BY": "\u0db6\u0dd9\u0dbd\u0dbb\u0dd4\u0dc3\u0dca", + "BZ": "\u0db6\u0dd9\u0dbd\u0dd3\u0dc3\u0dca", + "BE": "\u0db6\u0dd9\u0dbd\u0dca\u0da2\u0dd2\u0dba\u0db8", + "BW": "\u0db6\u0ddc\u0da7\u0dca\u0dc3\u0dca\u0dc0\u0dcf\u0db1\u0dcf", + "BO": "\u0db6\u0ddc\u0dbd\u0dd3\u0dc0\u0dd2\u0dba\u0dcf\u0dc0", + "BA": "\u0db6\u0ddc\u0dc3\u0dca\u0db1\u0dd2\u0dba\u0dcf\u0dc0 \u0dc3\u0dc4 \u0dc4\u0dbb\u0dca\u0dc3\u0d9c\u0ddc\u0dc0\u0dd3\u0db1\u0dcf\u0dc0", + "BR": "\u0db6\u0dca\u200d\u0dbb\u0dc3\u0dd3\u0dbd\u0dba", + "IO": "\u0db6\u0dca\u200d\u0dbb\u0dd2\u0dad\u0dcf\u0db1\u0dca\u200d\u0dba \u0d89\u0db1\u0dca\u0daf\u0dd3\u0dba \u0dc3\u0dcf\u0d9c\u0dbb \u0db6\u0dbd \u0db4\u0dca\u200d\u0dbb\u0daf\u0dda\u0dc1\u0dba", + "VG": "\u0db6\u0dca\u200d\u0dbb\u0dd2\u0dad\u0dcf\u0db1\u0dca\u200d\u0dba \u0dc0\u0dbb\u0dca\u0da2\u0dd2\u0db1\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "BT": "\u0db7\u0dd6\u0dad\u0dcf\u0db1\u0dba", + "MO": "\u0db8\u0d9a\u0dcf\u0dc0\u0dd4 \u0d91\u0dc3\u0dca\u0d92\u0d86\u0dbb\u0dca", + "CF": "\u0db8\u0db0\u0dca\u200d\u0dba\u0db8 \u0d85\u0db4\u0dca\u200d\u0dbb\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0da2\u0db1\u0dbb\u0da2\u0dba", + "FM": "\u0db8\u0dba\u0dd2\u0d9a\u0dca\u200d\u0dbb\u0ddc\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0dc0", + "YT": "\u0db8\u0dba\u0ddd\u0da7\u0dca", + "MQ": "\u0db8\u0dbb\u0dca\u0da7\u0dd2\u0db1\u0dd2\u0d9a\u0dca", + "MW": "\u0db8\u0dbd\u0dcf\u0dc0\u0dd2", + "MV": "\u0db8\u0dcf\u0dbd \u0daf\u0dd2\u0dc0\u0dba\u0dd2\u0db1", + "ML": "\u0db8\u0dcf\u0dbd\u0dd2", + "MH": "\u0db8\u0dcf\u0dc2\u0dbd\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "MG": "\u0db8\u0dd0\u0da9\u0d9c\u0dc3\u0dca\u0d9a\u0dbb\u0dba", + "MY": "\u0db8\u0dd0\u0dbd\u0dda\u0dc3\u0dd2\u0dba\u0dcf\u0dc0", + "MM": "\u0db8\u0dd2\u0dba\u0db1\u0dca\u0db8\u0dcf\u0dbb\u0dba (\u0db6\u0dd4\u0dbb\u0dd4\u0db8\u0dba)", + "MU": "\u0db8\u0dd4\u0dbb\u0dd4\u0dc3\u0dd2\u0dba", + "MX": "\u0db8\u0dd9\u0d9a\u0dca\u0dc3\u0dd2\u0d9a\u0ddd\u0dc0", + "MC": "\u0db8\u0ddc\u0db1\u0dcf\u0d9a\u0ddd\u0dc0", + "MN": "\u0db8\u0ddc\u0db1\u0dca\u0d9c\u0ddd\u0dbd\u0dd2\u0dba\u0dcf\u0dc0", + "ME": "\u0db8\u0ddc\u0db1\u0dca\u0da7\u0dd9\u0db1\u0dd3\u0d9c\u0dca\u200d\u0dbb\u0ddd", + "MS": "\u0db8\u0ddc\u0db1\u0dca\u0dc3\u0dd9\u0dbb\u0dcf\u0da7\u0dca", + "MR": "\u0db8\u0ddc\u0dbb\u0dd2\u0da7\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "MA": "\u0db8\u0ddc\u0dbb\u0ddc\u0d9a\u0dca\u0d9a\u0ddd\u0dc0", + "MD": "\u0db8\u0ddc\u0dbd\u0dca\u0da9\u0ddd\u0dc0\u0dcf\u0dc0", + "MZ": "\u0db8\u0ddc\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dd2\u0d9a\u0dca", + "MT": "\u0db8\u0ddd\u0dbd\u0dca\u0da7\u0dcf\u0dc0", + "UA": "\u0dba\u0dd4\u0d9a\u0dca\u0dbb\u0dda\u0db1\u0dba", + "YE": "\u0dba\u0dda\u0db8\u0db1\u0dba", + "RE": "\u0dbb\u0dd3\u0dba\u0dd4\u0db1\u0dd2\u0dba\u0db1\u0dca", + "RO": "\u0dbb\u0dd4\u0db8\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "RW": "\u0dbb\u0dd4\u0dc0\u0db1\u0dca\u0da9\u0dcf\u0dc0", + "RU": "\u0dbb\u0dd4\u0dc3\u0dd2\u0dba\u0dcf\u0dc0", + "LU": "\u0dbd\u0d9a\u0dca\u0dc1\u0db8\u0dca\u0db6\u0dbb\u0dca\u0d9c\u0dca", + "LR": "\u0dbd\u0dba\u0dd2\u0db6\u0dd3\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "LA": "\u0dbd\u0dcf\u0d95\u0dc3\u0dba", + "LV": "\u0dbd\u0dd0\u0da7\u0dca\u0dc0\u0dd2\u0dba\u0dcf\u0dc0", + "LI": "\u0dbd\u0dd2\u0d9a\u0dca\u0da7\u0db1\u0dca\u0dc3\u0dca\u0da7\u0dba\u0dd2\u0db1\u0dca", + "LT": "\u0dbd\u0dd2\u0dad\u0dd4\u0dc0\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "LY": "\u0dbd\u0dd2\u0db6\u0dd2\u0dba\u0dcf\u0dc0", + "LB": "\u0dbd\u0dd9\u0db6\u0db1\u0db1\u0dba", + "LS": "\u0dbd\u0dd9\u0dc3\u0dad\u0ddd", + "VA": "\u0dc0\u0dad\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0db1\u0d9c\u0dbb\u0dba", + "VU": "\u0dc0\u0db1\u0dd4\u0dc0\u0dcf\u0da7\u0dd4", + "WF": "\u0dc0\u0dd0\u0dbd\u0dd2\u0dc3\u0dca \u0dc3\u0dc4 \u0dc6\u0dd4\u0da7\u0dd4\u0db1\u0dcf", + "VN": "\u0dc0\u0dd2\u0dba\u0da7\u0dca\u0db1\u0dcf\u0db8\u0dba", + "VE": "\u0dc0\u0dd9\u0db1\u0dd2\u0dc3\u0dd2\u0dba\u0dd4\u0dbd\u0dcf\u0dc0", + "KN": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0d9a\u0dd2\u0da7\u0dca\u0dc3\u0dca \u0dc3\u0dc4 \u0db1\u0dda\u0dc0\u0dd2\u0dc3\u0dca", + "PM": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0db4\u0dd2\u0dba\u0dbb\u0dda \u0dc3\u0dc4 \u0db8\u0dd0\u0d9a\u0ddd\u0dbd\u0db1\u0dca", + "BL": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0db6\u0dbb\u0dca\u0dad\u0dbd\u0dd9\u0db8\u0dd2", + "MF": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0db8\u0dcf\u0dbb\u0dca\u0da7\u0dd2\u0db1\u0dca", + "SX": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0db8\u0dcf\u0dbb\u0dca\u0da7\u0dd9\u0db1\u0dca", + "LC": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0dbd\u0dd4\u0dc3\u0dd2\u0dba\u0dcf", + "VC": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0dc0\u0dd2\u0db1\u0dca\u0dc3\u0db1\u0dca\u0da7\u0dca \u0dc3\u0dc4 \u0d9c\u0dca\u200d\u0dbb\u0dd9\u0db1\u0da9\u0dd2\u0db1\u0dca\u0dc3\u0dca", + "SH": "\u0dc1\u0dcf\u0db1\u0dca\u0dad \u0dc4\u0dd9\u0dbd\u0dda\u0db1\u0dcf", + "LK": "\u0dc1\u0dca\u200d\u0dbb\u0dd3 \u0dbd\u0d82\u0d9a\u0dcf\u0dc0", + "GQ": "\u0dc3\u0db8\u0d9a \u0d9c\u0dd2\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "CY": "\u0dc3\u0dba\u0dd2\u0db4\u0dca\u200d\u0dbb\u0dc3\u0dba", + "RS": "\u0dc3\u0dbb\u0dca\u0db6\u0dd2\u0dba\u0dcf\u0dc0", + "ST": "\u0dc3\u0dcf\u0d95 \u0dad\u0ddd\u0db8\u0dca \u0dc3\u0dc4 \u0db4\u0dca\u200d\u0dbb\u0dd2\u0db1\u0dca\u0dc3\u0dd2\u0db4\u0dca", + "SM": "\u0dc3\u0dd0\u0db1\u0dca \u0db8\u0dd0\u0dbb\u0dd2\u0db1\u0ddd", + "WS": "\u0dc3\u0dd0\u0db8\u0ddd\u0dc0\u0dcf", + "ZM": "\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dd2\u0dba\u0dcf\u0dc0", + "SG": "\u0dc3\u0dd2\u0d82\u0d9c\u0db4\u0dca\u0db4\u0dd6\u0dbb\u0dd4\u0dc0", + "ZW": "\u0dc3\u0dd2\u0db8\u0dca\u0db6\u0dcf\u0db6\u0dca\u0dc0\u0dda", + "SL": "\u0dc3\u0dd2\u0dba\u0dbb\u0dcf\u0dbd\u0dd2\u0dba\u0ddd\u0db1\u0dca", + "SY": "\u0dc3\u0dd2\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "SC": "\u0dc3\u0dd3\u0dc1\u0dd9\u0dbd\u0dca\u0dc3\u0dca", + "SR": "\u0dc3\u0dd4\u0dbb\u0dd2\u0db1\u0dcf\u0db8\u0dba", + "SD": "\u0dc3\u0dd6\u0da9\u0dcf\u0db1\u0dba", + "SN": "\u0dc3\u0dd9\u0db1\u0d9c\u0dcf\u0dbd\u0dba", + "SB": "\u0dc3\u0ddc\u0dbd\u0db8\u0db1\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "SO": "\u0dc3\u0ddd\u0db8\u0dcf\u0dbd\u0dd2\u0dba\u0dcf\u0dc0", + "SA": "\u0dc3\u0dde\u0daf\u0dd2 \u0d85\u0dbb\u0dcf\u0db6\u0dd2\u0dba", + "ES": "\u0dc3\u0dca\u0db4\u0dcf\u0da4\u0dca\u0da4\u0dba", + "SK": "\u0dc3\u0dca\u0dbd\u0ddd\u0dc0\u0dd0\u0d9a\u0dd2\u0dba\u0dcf\u0dc0", + "SI": "\u0dc3\u0dca\u0dbd\u0ddd\u0dc0\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0dc0", + "CH": "\u0dc3\u0dca\u0dc0\u0dd2\u0dc3\u0dca\u0da7\u0dbb\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "SE": "\u0dc3\u0dca\u0dc0\u0dd3\u0da9\u0db1\u0dba", + "SJ": "\u0dc3\u0dca\u0dc0\u0dd9\u0dbd\u0dca\u0db6\u0dbb\u0dca\u0da9\u0dca \u0dc3\u0dc4 \u0da2\u0dda\u0db1\u0dca \u0db8\u0dba\u0dda\u0db1\u0dca", + "HU": "\u0dc4\u0db1\u0dca\u0d9c\u0dda\u0dbb\u0dd2\u0dba\u0dcf\u0dc0", + "HT": "\u0dc4\u0dba\u0dd2\u0da7\u0dd2", + "HM": "\u0dc4\u0dbb\u0dca\u0da9\u0dca \u0daf\u0dd6\u0db4\u0dad \u0dc3\u0dc4 \u0db8\u0dd0\u0d9a\u0dca\u0da9\u0ddc\u0db1\u0dbd\u0dca\u0da9\u0dca \u0daf\u0dd6\u0db4\u0dad\u0dca", + "HK": "\u0dc4\u0ddc\u0d82\u0d9a\u0ddc\u0d82 \u0da0\u0dd3\u0db1 \u0dc0\u0dd2\u0dc1\u0dda\u0dc2 \u0db4\u0dbb\u0dd2\u0db4\u0dcf\u0dbd\u0db1 \u0d9a\u0dbd\u0dcf\u0db4\u0dba", + "HN": "\u0dc4\u0ddc\u0db1\u0dca\u0da9\u0dd4\u0dbb\u0dcf\u0dc3\u0dca", + "FO": "\u0dc6\u0dd0\u0dbb\u0ddd \u0daf\u0dd6\u0db4\u0dad\u0dca", + "FI": "\u0dc6\u0dd2\u0db1\u0dca\u0dbd\u0db1\u0dca\u0dad\u0dba", + "FJ": "\u0dc6\u0dd3\u0da2\u0dd3", + "FK": "\u0dc6\u0ddd\u0d9a\u0dca\u0dbd\u0db1\u0dca\u0dad \u0daf\u0dd6\u0db4\u0dad\u0dca" +} diff --git a/public/intl/country/sk-SK.json b/public/intl/country/sk-SK.json new file mode 100644 index 0000000..03858bb --- /dev/null +++ b/public/intl/country/sk-SK.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AX": "Alandy", + "AL": "Alb\u00e1nsko", + "DZ": "Al\u017e\u00edrsko", + "AS": "Americk\u00e1 Samoa", + "VI": "Americk\u00e9 Panensk\u00e9 ostrovy", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarkt\u00edda", + "AG": "Antigua a Barbuda", + "AR": "Argent\u00edna", + "AM": "Arm\u00e9nsko", + "AW": "Aruba", + "AU": "Austr\u00e1lia", + "AZ": "Azerbajd\u017ean", + "BS": "Bahamy", + "BH": "Bahrajn", + "BD": "Banglad\u00e9\u0161", + "BB": "Barbados", + "BE": "Belgicko", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermudy", + "BT": "Bhut\u00e1n", + "BY": "Bielorusko", + "BO": "Bol\u00edvia", + "BA": "Bosna a Hercegovina", + "BW": "Botswana", + "BV": "Bouvetov ostrov", + "BR": "Braz\u00edlia", + "IO": "Britsk\u00e9 indickooce\u00e1nske \u00fazemie", + "VG": "Britsk\u00e9 Panensk\u00e9 ostrovy", + "BN": "Brunej", + "BG": "Bulharsko", + "BF": "Burkina Faso", + "BI": "Burundi", + "CK": "Cookove ostrovy", + "CW": "Cura\u00e7ao", + "CY": "Cyprus", + "TD": "\u010cad", + "CZ": "\u010cesko", + "ME": "\u010cierna Hora", + "CL": "\u010cile", + "CN": "\u010c\u00edna", + "DK": "D\u00e1nsko", + "DM": "Dominika", + "DO": "Dominik\u00e1nska republika", + "DJ": "D\u017eibutsko", + "EG": "Egypt", + "EC": "Ekv\u00e1dor", + "ER": "Eritrea", + "EE": "Est\u00f3nsko", + "SZ": "Eswatini", + "ET": "Eti\u00f3pia", + "FO": "Faersk\u00e9 ostrovy", + "FK": "Falklandy", + "FJ": "Fid\u017ei", + "PH": "Filip\u00edny", + "FI": "F\u00ednsko", + "GF": "Franc\u00fazska Guyana", + "PF": "Franc\u00fazska Polyn\u00e9zia", + "TF": "Franc\u00fazske ju\u017en\u00e9 a antarktick\u00e9 \u00fazemia", + "FR": "Franc\u00fazsko", + "GA": "Gabon", + "GM": "Gambia", + "GH": "Ghana", + "GI": "Gibralt\u00e1r", + "GR": "Gr\u00e9cko", + "GD": "Grenada", + "GL": "Gr\u00f3nsko", + "GE": "Gruz\u00ednsko", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heardov ostrov a Macdonaldove ostrovy", + "NL": "Holandsko", + "HN": "Honduras", + "HK": "Hongkong \u2013 OAO \u010c\u00edny", + "HR": "Chorv\u00e1tsko", + "IN": "India", + "ID": "Indon\u00e9zia", + "IQ": "Irak", + "IR": "Ir\u00e1n", + "IE": "\u00cdrsko", + "IS": "Island", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japonsko", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jord\u00e1nsko", + "ZA": "Ju\u017en\u00e1 Afrika", + "GS": "Ju\u017en\u00e1 Georgia a Ju\u017en\u00e9 Sandwichove ostrovy", + "KR": "Ju\u017en\u00e1 K\u00f3rea", + "SS": "Ju\u017en\u00fd Sud\u00e1n", + "KY": "Kajmanie ostrovy", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kapverdy", + "BQ": "Karibsk\u00e9 Holandsko", + "QA": "Katar", + "KZ": "Kazachstan", + "KE": "Ke\u0148a", + "KG": "Kirgizsko", + "KI": "Kiribati", + "CC": "Kokosov\u00e9 ostrovy", + "CO": "Kolumbia", + "KM": "Komory", + "CD": "Kon\u017esk\u00e1 demokratick\u00e1 republika", + "CG": "Kon\u017esk\u00e1 republika", + "XK": "Kosovo", + "CR": "Kostarika", + "CU": "Kuba", + "KW": "Kuvajt", + "LA": "Laos", + "LS": "Lesotho", + "LB": "Libanon", + "LR": "Lib\u00e9ria", + "LY": "L\u00edbya", + "LI": "Lichten\u0161tajnsko", + "LT": "Litva", + "LV": "Loty\u0161sko", + "LU": "Luxembursko", + "MO": "Macao \u2013 OAO \u010c\u00edny", + "MG": "Madagaskar", + "HU": "Ma\u010farsko", + "MY": "Malajzia", + "MW": "Malawi", + "MV": "Maldivy", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroko", + "MH": "Marshallove ostrovy", + "MQ": "Martinik", + "MU": "Maur\u00edcius", + "MR": "Maurit\u00e1nia", + "YT": "Mayotte", + "UM": "Men\u0161ie od\u013eahl\u00e9 ostrovy USA", + "MX": "Mexiko", + "FM": "Mikron\u00e9zia", + "MM": "Mjanmarsko", + "MD": "Moldavsko", + "MC": "Monako", + "MN": "Mongolsko", + "MS": "Montserrat", + "MZ": "Mozambik", + "NA": "Nam\u00edbia", + "NR": "Nauru", + "DE": "Nemecko", + "NP": "Nep\u00e1l", + "NE": "Niger", + "NG": "Nig\u00e9ria", + "NI": "Nikaragua", + "NU": "Niue", + "NF": "Norfolk", + "NO": "N\u00f3rsko", + "NC": "Nov\u00e1 Kaled\u00f3nia", + "NZ": "Nov\u00fd Z\u00e9land", + "OM": "Om\u00e1n", + "IM": "Ostrov Man", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palest\u00ednske \u00fazemia", + "PA": "Panama", + "PG": "Papua-Nov\u00e1 Guinea", + "PY": "Paraguaj", + "PE": "Peru", + "PN": "Pitcairnove ostrovy", + "CI": "Pobre\u017eie Slonoviny", + "PL": "Po\u013esko", + "PR": "Portoriko", + "PT": "Portugalsko", + "AT": "Rak\u00fasko", + "RE": "R\u00e9union", + "GQ": "Rovn\u00edkov\u00e1 Guinea", + "RO": "Rumunsko", + "RU": "Rusko", + "RW": "Rwanda", + "PM": "Saint Pierre a Miquelon", + "SV": "Salv\u00e1dor", + "WS": "Samoa", + "SM": "San Mar\u00edno", + "SA": "Saudsk\u00e1 Ar\u00e1bia", + "SN": "Senegal", + "KP": "Severn\u00e1 K\u00f3rea", + "MK": "Severn\u00e9 Maced\u00f3nsko", + "MP": "Severn\u00e9 Mari\u00e1ny", + "SC": "Seychely", + "SL": "Sierra Leone", + "SG": "Singapur", + "SK": "Slovensko", + "SI": "Slovinsko", + "SO": "Som\u00e1lsko", + "AE": "Spojen\u00e9 arabsk\u00e9 emir\u00e1ty", + "GB": "Spojen\u00e9 kr\u00e1\u013eovstvo", + "US": "Spojen\u00e9 \u0161t\u00e1ty", + "RS": "Srbsko", + "LK": "Sr\u00ed Lanka", + "CF": "Stredoafrick\u00e1 republika", + "SD": "Sud\u00e1n", + "SR": "Surinam", + "SJ": "Svalbard a Jan Mayen", + "SH": "Sv\u00e4t\u00e1 Helena", + "LC": "Sv\u00e4t\u00e1 Lucia", + "BL": "Sv\u00e4t\u00fd Bartolomej", + "KN": "Sv\u00e4t\u00fd Kri\u0161tof a Nevis", + "MF": "Sv\u00e4t\u00fd Martin (fr.)", + "SX": "Sv\u00e4t\u00fd Martin (hol.)", + "ST": "Sv\u00e4t\u00fd Tom\u00e1\u0161 a Princov ostrov", + "VC": "Sv\u00e4t\u00fd Vincent a Grenad\u00edny", + "SY": "S\u00fdria", + "SB": "\u0160alam\u00fanove ostrovy", + "ES": "\u0160panielsko", + "CH": "\u0160vaj\u010diarsko", + "SE": "\u0160v\u00e9dsko", + "TJ": "Tad\u017eikistan", + "TW": "Taiwan", + "IT": "Taliansko", + "TZ": "Tanz\u00e1nia", + "TH": "Thajsko", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad a Tobago", + "TN": "Tunisko", + "TR": "Turecko", + "TM": "Turkm\u00e9nsko", + "TC": "Turks a Caicos", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukrajina", + "UY": "Uruguaj", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatik\u00e1n", + "VE": "Venezuela", + "CX": "Viano\u010dn\u00fd ostrov", + "VN": "Vietnam", + "TL": "V\u00fdchodn\u00fd Timor", + "WF": "Wallis a Futuna", + "ZM": "Zambia", + "EH": "Z\u00e1padn\u00e1 Sahara", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/sl-SI.json b/public/intl/country/sl-SI.json new file mode 100644 index 0000000..67cfaf7 --- /dev/null +++ b/public/intl/country/sl-SI.json @@ -0,0 +1,252 @@ +{ + "AF": "Afganistan", + "AX": "\u00c5landski otoki", + "AL": "Albanija", + "DZ": "Al\u017eirija", + "AS": "Ameri\u0161ka Samoa", + "VI": "Ameri\u0161ki Devi\u0161ki otoki", + "AD": "Andora", + "AO": "Angola", + "AI": "Angvila", + "AQ": "Antarktika", + "AG": "Antigva in Barbuda", + "AR": "Argentina", + "AM": "Armenija", + "AW": "Aruba", + "AU": "Avstralija", + "AT": "Avstrija", + "AZ": "Azerbajd\u017ean", + "BS": "Bahami", + "BH": "Bahrajn", + "BD": "Banglade\u0161", + "BB": "Barbados", + "BE": "Belgija", + "BZ": "Belize", + "BY": "Belorusija", + "BJ": "Benin", + "BM": "Bermudi", + "BW": "Bocvana", + "BG": "Bolgarija", + "BO": "Bolivija", + "BA": "Bosna in Hercegovina", + "BV": "Bouvetov otok", + "CX": "Bo\u017ei\u010dni otok", + "BR": "Brazilija", + "VG": "Britanski Devi\u0161ki otoki", + "IO": "Britansko ozemlje v Indijskem oceanu", + "BN": "Brunej", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "Butan", + "CF": "Centralnoafri\u0161ka republika", + "CY": "Ciper", + "CK": "Cookovi otoki", + "CW": "Cura\u00e7ao", + "TD": "\u010cad", + "CZ": "\u010ce\u0161ka", + "CL": "\u010cile", + "ME": "\u010crna gora", + "DK": "Danska", + "CD": "Demokrati\u010dna republika Kongo", + "DM": "Dominika", + "DO": "Dominikanska republika", + "DJ": "D\u017eibuti", + "EG": "Egipt", + "EC": "Ekvador", + "GQ": "Ekvatorialna Gvineja", + "ER": "Eritreja", + "EE": "Estonija", + "SZ": "Esvatini", + "ET": "Etiopija", + "FK": "Falklandski otoki", + "FO": "Ferski otoki", + "FJ": "Fid\u017ei", + "PH": "Filipini", + "FI": "Finska", + "FR": "Francija", + "GF": "Francoska Gvajana", + "PF": "Francoska Polinezija", + "TF": "Francosko ju\u017eno ozemlje", + "GA": "Gabon", + "GM": "Gambija", + "GH": "Gana", + "GI": "Gibraltar", + "GR": "Gr\u010dija", + "GD": "Grenada", + "GL": "Grenlandija", + "GE": "Gruzija", + "GP": "Guadeloupe", + "GU": "Guam", + "GG": "Guernsey", + "GY": "Gvajana", + "GT": "Gvatemala", + "GN": "Gvineja", + "GW": "Gvineja Bissau", + "HT": "Haiti", + "HM": "Heardov otok in McDonaldovi otoki", + "HN": "Honduras", + "HR": "Hrva\u0161ka", + "IN": "Indija", + "ID": "Indonezija", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irska", + "IS": "Islandija", + "IT": "Italija", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japonska", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordanija", + "GS": "Ju\u017ena Georgia in Ju\u017eni Sandwichevi otoki", + "KR": "Ju\u017ena Koreja", + "SS": "Ju\u017eni Sudan", + "ZA": "Ju\u017enoafri\u0161ka republika", + "KY": "Kajmanski otoki", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "QA": "Katar", + "KZ": "Kazahstan", + "KE": "Kenija", + "KG": "Kirgizistan", + "KI": "Kiribati", + "CN": "Kitajska", + "CC": "Kokosovi otoki", + "CO": "Kolumbija", + "KM": "Komori", + "CG": "Kongo - Brazzaville", + "XK": "Kosovo", + "CR": "Kostarika", + "CU": "Kuba", + "KW": "Kuvajt", + "LA": "Laos", + "LV": "Latvija", + "LS": "Lesoto", + "LB": "Libanon", + "LR": "Liberija", + "LY": "Libija", + "LI": "Lihten\u0161tajn", + "LT": "Litva", + "LU": "Luksemburg", + "MG": "Madagaskar", + "HU": "Mad\u017earska", + "MW": "Malavi", + "MV": "Maldivi", + "MY": "Malezija", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroko", + "MH": "Marshallovi otoki", + "MQ": "Martinik", + "MU": "Mauritius", + "MR": "Mavretanija", + "YT": "Mayotte", + "MX": "Mehika", + "FM": "Mikronezija", + "MM": "Mjanmar (Burma)", + "MD": "Moldavija", + "MC": "Monako", + "MN": "Mongolija", + "MS": "Montserrat", + "MZ": "Mozambik", + "NA": "Namibija", + "NR": "Nauru", + "DE": "Nem\u010dija", + "NP": "Nepal", + "NE": "Niger", + "NG": "Nigerija", + "NI": "Nikaragva", + "NU": "Niue", + "NL": "Nizozemska", + "BQ": "Nizozemski Karibi", + "NF": "Norfol\u0161ki otok", + "NO": "Norve\u0161ka", + "NC": "Nova Kaledonija", + "NZ": "Nova Zelandija", + "OM": "Oman", + "IM": "Otok Man", + "TC": "Otoki Turks in Caicos", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinsko ozemlje", + "PA": "Panama", + "PG": "Papua Nova Gvineja", + "PY": "Paragvaj", + "PE": "Peru", + "PN": "Pitcairn", + "PL": "Poljska", + "PR": "Portoriko", + "PT": "Portugalska", + "HK": "Posebno administrativno obmo\u010dje LR Kitajske Hongkong", + "MO": "Posebno administrativno obmo\u010dje LR Kitajske Macao", + "RE": "Reunion", + "RO": "Romunija", + "RW": "Ruanda", + "RU": "Rusija", + "BL": "Saint Barth\u00e9lemy", + "KN": "Saint Kitts in Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "PM": "Saint Pierre in Miquelon", + "VC": "Saint Vincent in Grenadine", + "SB": "Salomonovi otoki", + "SV": "Salvador", + "WS": "Samoa", + "SM": "San Marino", + "ST": "Sao Tome in Principe", + "SA": "Saudova Arabija", + "SC": "Sej\u0161eli", + "SN": "Senegal", + "KP": "Severna Koreja", + "MK": "Severna Makedonija", + "MP": "Severni Marianski otoki", + "SL": "Sierra Leone", + "SG": "Singapur", + "SX": "Sint Maarten", + "SY": "Sirija", + "CI": "Slonoko\u0161\u010dena obala", + "SK": "Slova\u0161ka", + "SI": "Slovenija", + "SO": "Somalija", + "RS": "Srbija", + "UM": "Stranski zunanji otoki Zdru\u017eenih dr\u017eav", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard in Jan Mayen", + "SH": "Sveta Helena", + "ES": "\u0160panija", + "LK": "\u0160rilanka", + "SE": "\u0160vedska", + "CH": "\u0160vica", + "TJ": "Tad\u017eikistan", + "TH": "Tajska", + "TW": "Tajvan", + "TZ": "Tanzanija", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad in Tobago", + "TN": "Tunizija", + "TR": "Tur\u010dija", + "TM": "Turkmenistan", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukrajina", + "UY": "Urugvaj", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatikan", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis in Futuna", + "EH": "Zahodna Sahara", + "ZM": "Zambija", + "US": "Zdru\u017eene dr\u017eave Amerike", + "AE": "Zdru\u017eeni arabski emirati", + "GB": "Zdru\u017eeno kraljestvo", + "CV": "Zelenortski otoki", + "ZW": "Zimbabve" +} diff --git a/public/intl/country/sv-SE.json b/public/intl/country/sv-SE.json new file mode 100644 index 0000000..f39a938 --- /dev/null +++ b/public/intl/country/sv-SE.json @@ -0,0 +1,252 @@ +{ + "AF": "Afghanistan", + "AL": "Albanien", + "DZ": "Algeriet", + "VI": "Amerikanska Jungfru\u00f6arna", + "AS": "Amerikanska Samoa", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktis", + "AG": "Antigua och Barbuda", + "AR": "Argentina", + "AM": "Armenien", + "AW": "Aruba", + "AU": "Australien", + "AZ": "Azerbajdzjan", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "BE": "Belgien", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BO": "Bolivia", + "BA": "Bosnien och Hercegovina", + "BW": "Botswana", + "BV": "Bouvet\u00f6n", + "BR": "Brasilien", + "VG": "Brittiska Jungfru\u00f6arna", + "IO": "Brittiska territoriet i Indiska oceanen", + "BN": "Brunei", + "BG": "Bulgarien", + "BF": "Burkina Faso", + "BI": "Burundi", + "KY": "Cayman\u00f6arna", + "CF": "Centralafrikanska republiken", + "CL": "Chile", + "CO": "Colombia", + "CK": "Cook\u00f6arna", + "CR": "Costa Rica", + "CW": "Cura\u00e7ao", + "CY": "Cypern", + "CI": "C\u00f4te d\u2019Ivoire", + "DK": "Danmark", + "DJ": "Djibouti", + "DM": "Dominica", + "DO": "Dominikanska republiken", + "EC": "Ecuador", + "EG": "Egypten", + "GQ": "Ekvatorialguinea", + "SV": "El Salvador", + "ER": "Eritrea", + "EE": "Estland", + "ET": "Etiopien", + "FK": "Falklands\u00f6arna", + "FJ": "Fiji", + "PH": "Filippinerna", + "FI": "Finland", + "FR": "Frankrike", + "GF": "Franska Guyana", + "PF": "Franska Polynesien", + "TF": "Franska sydterritorierna", + "FO": "F\u00e4r\u00f6arna", + "AE": "F\u00f6renade Arabemiraten", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgien", + "GH": "Ghana", + "GI": "Gibraltar", + "GR": "Grekland", + "GD": "Grenada", + "GL": "Gr\u00f6nland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GN": "Guinea", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HT": "Haiti", + "HM": "Heard\u00f6n och McDonald\u00f6arna", + "HN": "Honduras", + "HK": "Hongkong", + "IN": "Indien", + "ID": "Indonesien", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irland", + "IS": "Island", + "IM": "Isle of Man", + "IL": "Israel", + "IT": "Italien", + "JM": "Jamaica", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordanien", + "CX": "Jul\u00f6n", + "KH": "Kambodja", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kap Verde", + "BQ": "Karibiska Nederl\u00e4nderna", + "KZ": "Kazakstan", + "KE": "Kenya", + "CN": "Kina", + "KG": "Kirgizistan", + "KI": "Kiribati", + "CC": "Kokos\u00f6arna", + "KM": "Komorerna", + "CG": "Kongo-Brazzaville", + "CD": "Kongo-Kinshasa", + "XK": "Kosovo", + "HR": "Kroatien", + "CU": "Kuba", + "KW": "Kuwait", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Lettland", + "LB": "Libanon", + "LR": "Liberia", + "LY": "Libyen", + "LI": "Liechtenstein", + "LT": "Litauen", + "LU": "Luxemburg", + "MO": "Macao", + "MG": "Madagaskar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldiverna", + "ML": "Mali", + "MT": "Malta", + "MA": "Marocko", + "MH": "Marshall\u00f6arna", + "MQ": "Martinique", + "MR": "Mauretanien", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexiko", + "FM": "Mikronesien", + "MZ": "Mo\u00e7ambique", + "MD": "Moldavien", + "MC": "Monaco", + "MN": "Mongoliet", + "ME": "Montenegro", + "MS": "Montserrat", + "MM": "Myanmar (Burma)", + "NA": "Namibia", + "NR": "Nauru", + "NL": "Nederl\u00e4nderna", + "NP": "Nepal", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "KP": "Nordkorea", + "MK": "Nordmakedonien", + "MP": "Nordmarianerna", + "NF": "Norfolk\u00f6n", + "NO": "Norge", + "NC": "Nya Kaledonien", + "NZ": "Nya Zeeland", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinska territorierna", + "PA": "Panama", + "PG": "Papua Nya Guinea", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairn\u00f6arna", + "PL": "Polen", + "PT": "Portugal", + "PR": "Puerto Rico", + "QA": "Qatar", + "RE": "R\u00e9union", + "RO": "Rum\u00e4nien", + "RW": "Rwanda", + "RU": "Ryssland", + "BL": "S:t Barth\u00e9lemy", + "SH": "S:t Helena", + "KN": "S:t Kitts och Nevis", + "LC": "S:t Lucia", + "PM": "S:t Pierre och Miquelon", + "VC": "S:t Vincent och Grenadinerna", + "MF": "Saint-Martin", + "SB": "Salomon\u00f6arna", + "WS": "Samoa", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 och Pr\u00edncipe", + "SA": "Saudiarabien", + "CH": "Schweiz", + "SN": "Senegal", + "RS": "Serbien", + "SC": "Seychellerna", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "SK": "Slovakien", + "SI": "Slovenien", + "SO": "Somalia", + "ES": "Spanien", + "LK": "Sri Lanka", + "GB": "Storbritannien", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard och Jan Mayen", + "SE": "Sverige", + "SZ": "Swaziland", + "ZA": "Sydafrika", + "GS": "Sydgeorgien och Sydsandwich\u00f6arna", + "KR": "Sydkorea", + "SS": "Sydsudan", + "SY": "Syrien", + "TJ": "Tadzjikistan", + "TW": "Taiwan", + "TZ": "Tanzania", + "TD": "Tchad", + "TH": "Thailand", + "CZ": "Tjeckien", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad och Tobago", + "TN": "Tunisien", + "TR": "Turkiet", + "TM": "Turkmenistan", + "TC": "Turks- och Caicos\u00f6arna", + "TV": "Tuvalu", + "DE": "Tyskland", + "UG": "Uganda", + "UA": "Ukraina", + "HU": "Ungern", + "UY": "Uruguay", + "US": "USA", + "UM": "USA:s yttre \u00f6ar", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatikanstaten", + "VE": "Venezuela", + "VN": "Vietnam", + "BY": "Vitryssland", + "EH": "V\u00e4stsahara", + "WF": "Wallis- och Futuna\u00f6arna", + "ZM": "Zambia", + "ZW": "Zimbabwe", + "AX": "\u00c5land", + "AT": "\u00d6sterrike", + "TL": "\u00d6sttimor" +} diff --git a/public/intl/country/ta-IN.json b/public/intl/country/ta-IN.json new file mode 100644 index 0000000..0970e6e --- /dev/null +++ b/public/intl/country/ta-IN.json @@ -0,0 +1,252 @@ +{ + "AI": "\u0b85\u0b99\u0bcd\u0b95\u0bbf\u0baf\u0bc1\u0bb2\u0bbe", + "AO": "\u0b85\u0b99\u0bcd\u0b95\u0bcb\u0bb2\u0bbe", + "AZ": "\u0b85\u0b9a\u0bb0\u0bcd\u0baa\u0bc8\u0b9c\u0bbe\u0ba9\u0bcd", + "AQ": "\u0b85\u0ba3\u0bcd\u0b9f\u0bbe\u0bb0\u0bcd\u0b9f\u0bbf\u0b95\u0bbe", + "AS": "\u0b85\u0bae\u0bc6\u0bb0\u0bbf\u0b95\u0bcd\u0b95 \u0b9a\u0bae\u0bcb\u0bb5\u0bbe", + "US": "\u0b85\u0bae\u0bc6\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bbe", + "IE": "\u0b85\u0baf\u0bb0\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "AM": "\u0b85\u0bb0\u0bcd\u0bae\u0bc7\u0ba9\u0bbf\u0baf\u0bbe", + "AR": "\u0b85\u0bb0\u0bcd\u0b9c\u0bc6\u0ba9\u0bcd\u0b9f\u0bbf\u0ba9\u0bbe", + "AW": "\u0b85\u0bb0\u0bc2\u0baa\u0bbe", + "AL": "\u0b85\u0bb2\u0bcd\u0baa\u0bc7\u0ba9\u0bbf\u0baf\u0bbe", + "DZ": "\u0b85\u0bb2\u0bcd\u0b9c\u0bc0\u0bb0\u0bbf\u0baf\u0bbe", + "AD": "\u0b85\u0ba9\u0bcd\u0b9f\u0bcb\u0bb0\u0bbe", + "AF": "\u0b86\u0b83\u0baa\u0bcd\u0b95\u0bbe\u0ba9\u0bbf\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "AG": "\u0b86\u0ba3\u0bcd\u0b9f\u0bbf\u0b95\u0bc1\u0bb5\u0bbe \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bc1\u0b9f\u0bbe", + "AX": "\u0b86\u0bb2\u0ba8\u0bcd\u0ba4\u0bc1 \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "AT": "\u0b86\u0bb8\u0bcd\u0ba4\u0bbf\u0bb0\u0bbf\u0baf\u0bbe", + "AU": "\u0b86\u0bb8\u0bcd\u0ba4\u0bbf\u0bb0\u0bc7\u0bb2\u0bbf\u0baf\u0bbe", + "IT": "\u0b87\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bbf", + "IN": "\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bbe", + "ID": "\u0b87\u0ba8\u0bcd\u0ba4\u0bcb\u0ba9\u0bc7\u0b9a\u0bbf\u0baf\u0bbe", + "LK": "\u0b87\u0bb2\u0b99\u0bcd\u0b95\u0bc8", + "IL": "\u0b87\u0bb8\u0bcd\u0bb0\u0bc7\u0bb2\u0bcd", + "EC": "\u0b88\u0b95\u0bcd\u0bb5\u0b9f\u0bbe\u0bb0\u0bcd", + "GQ": "\u0b88\u0b95\u0bcd\u0bb5\u0b9f\u0bcb\u0bb0\u0bbf\u0baf\u0bb2\u0bcd \u0b95\u0bbf\u0ba9\u0bbf\u0baf\u0bbe", + "IQ": "\u0b88\u0bb0\u0bbe\u0b95\u0bcd", + "IR": "\u0b88\u0bb0\u0bbe\u0ba9\u0bcd", + "UA": "\u0b89\u0b95\u0bcd\u0bb0\u0bc8\u0ba9\u0bcd", + "UG": "\u0b89\u0b95\u0bbe\u0ba3\u0bcd\u0b9f\u0bbe", + "UY": "\u0b89\u0bb0\u0bc1\u0b95\u0bc1\u0bb5\u0bc7", + "UZ": "\u0b89\u0bb8\u0bcd\u0baa\u0bc6\u0b95\u0bbf\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "EG": "\u0b8e\u0b95\u0bbf\u0baa\u0bcd\u0ba4\u0bc1", + "ET": "\u0b8e\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bcb\u0baa\u0bcd\u0baa\u0bbf\u0baf\u0bbe", + "ER": "\u0b8e\u0bb0\u0bbf\u0b9f\u0bcd\u0bb0\u0bbf\u0baf\u0bbe", + "SV": "\u0b8e\u0bb2\u0bcd \u0b9a\u0bbe\u0bb2\u0bcd\u0bb5\u0b9f\u0bbe\u0bb0\u0bcd", + "EE": "\u0b8e\u0bb8\u0bcd\u0b9f\u0bcb\u0ba9\u0bbf\u0baf\u0bbe", + "SZ": "\u0b8e\u0bb8\u0bcd\u0bb5\u0bbe\u0b9f\u0bcd\u0b9f\u0bc0\u0ba9\u0bbf", + "YE": "\u0b8f\u0bae\u0ba9\u0bcd", + "AE": "\u0b90\u0b95\u0bcd\u0b95\u0bbf\u0baf \u0b85\u0bb0\u0baa\u0bc1 \u0b8e\u0bae\u0bbf\u0bb0\u0bc7\u0b9f\u0bcd\u0bb8\u0bcd", + "IM": "\u0b90\u0bb2\u0bcd \u0b86\u0b83\u0baa\u0bcd \u0bae\u0bc7\u0ba9\u0bcd", + "IS": "\u0b90\u0bb8\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "OM": "\u0b93\u0bae\u0ba9\u0bcd", + "FK": "\u0b83\u0baa\u0bbe\u0b95\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1 \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "FO": "\u0b83\u0baa\u0bbe\u0bb0\u0bcb \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "FJ": "\u0b83\u0baa\u0bbf\u0b9c\u0bbf", + "GP": "\u0b95\u0bcd\u0bb5\u0bbe\u0ba4\u0bc7\u0bb2\u0bcb\u0baa\u0bcd", + "QA": "\u0b95\u0ba4\u0bcd\u0ba4\u0bbe\u0bb0\u0bcd", + "KH": "\u0b95\u0bae\u0bcd\u0baa\u0bcb\u0b9f\u0bbf\u0baf\u0bbe", + "GY": "\u0b95\u0baf\u0bbe\u0ba9\u0bbe", + "BQ": "\u0b95\u0bb0\u0bc0\u0baa\u0bbf\u0baf\u0ba9\u0bcd \u0ba8\u0bc6\u0ba4\u0bb0\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "GT": "\u0b95\u0bb5\u0bc1\u0ba4\u0bae\u0bbe\u0bb2\u0bbe", + "CA": "\u0b95\u0ba9\u0b9f\u0bbe", + "KZ": "\u0b95\u0bb8\u0b95\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "CD": "\u0b95\u0bbe\u0b99\u0bcd\u0b95\u0bcb - \u0b95\u0bbf\u0ba9\u0bcd\u0bb7\u0bbe\u0b9a\u0bbe", + "CG": "\u0b95\u0bbe\u0b99\u0bcd\u0b95\u0bcb - \u0baa\u0bcd\u0bb0\u0bbe\u0bb8\u0bbe\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc7", + "GM": "\u0b95\u0bbe\u0bae\u0bcd\u0baa\u0bbf\u0baf\u0bbe", + "GH": "\u0b95\u0bbe\u0ba9\u0bbe", + "CU": "\u0b95\u0bbf\u0baf\u0bc2\u0baa\u0bbe", + "KG": "\u0b95\u0bbf\u0bb0\u0bcd\u0b95\u0bbf\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "GD": "\u0b95\u0bbf\u0bb0\u0ba9\u0bc6\u0b9f\u0bbe", + "KI": "\u0b95\u0bbf\u0bb0\u0bbf\u0baa\u0bbe\u0b9f\u0bcd\u0b9f\u0bbf", + "GL": "\u0b95\u0bbf\u0bb0\u0bc0\u0ba9\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "GR": "\u0b95\u0bbf\u0bb0\u0bc0\u0bb8\u0bcd", + "CX": "\u0b95\u0bbf\u0bb1\u0bbf\u0bb8\u0bcd\u0ba4\u0bc1\u0bae\u0bb8\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1", + "GN": "\u0b95\u0bbf\u0ba9\u0bbf\u0baf\u0bbe", + "GW": "\u0b95\u0bbf\u0ba9\u0bbf\u0baf\u0bbe-\u0baa\u0bbf\u0bb8\u0bcd\u0bb8\u0bbe\u0bb5\u0bcd", + "CK": "\u0b95\u0bc1\u0b95\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "CW": "\u0b95\u0bc1\u0bb0\u0bbe\u0b95\u0bb5\u0bcd", + "HR": "\u0b95\u0bc1\u0bb0\u0bcb\u0bb7\u0bbf\u0baf\u0bbe", + "GU": "\u0b95\u0bc1\u0bb5\u0bbe\u0bae\u0bcd", + "KW": "\u0b95\u0bc1\u0bb5\u0bc8\u0ba4\u0bcd", + "KY": "\u0b95\u0bc6\u0baf\u0bcd\u0bae\u0bc6\u0ba9\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "GG": "\u0b95\u0bc6\u0bb0\u0bcd\u0ba9\u0bcd\u0b9a\u0bbf", + "KE": "\u0b95\u0bc6\u0ba9\u0bcd\u0baf\u0bbe", + "CV": "\u0b95\u0bc7\u0baa\u0bcd \u0bb5\u0bc6\u0bb0\u0bcd\u0b9f\u0bc7", + "GA": "\u0b95\u0bc7\u0baa\u0bbe\u0ba9\u0bcd", + "CM": "\u0b95\u0bc7\u0bae\u0bb0\u0bc2\u0ba9\u0bcd", + "CO": "\u0b95\u0bca\u0bb2\u0bae\u0bcd\u0baa\u0bbf\u0baf\u0bbe", + "CC": "\u0b95\u0bcb\u0b95\u0bcb\u0bb8\u0bcd (\u0b95\u0bc0\u0bb2\u0bbf\u0b99\u0bcd) \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "CI": "\u0b95\u0bcb\u0b9f\u0bcd \u0ba4\u0bbf\u2019\u0bb5\u0bbe\u0baf\u0bb0\u0bcd", + "KM": "\u0b95\u0bcb\u0bae\u0bb0\u0bcb\u0bb8\u0bcd", + "CR": "\u0b95\u0bcb\u0bb8\u0bcd\u0b9f\u0bbe\u0bb0\u0bbf\u0b95\u0bbe", + "XK": "\u0b95\u0bcb\u0b9a\u0bcb\u0bb5\u0bcb", + "WS": "\u0b9a\u0bae\u0bcb\u0bb5\u0bbe", + "SA": "\u0b9a\u0bb5\u0bc2\u0ba4\u0bbf \u0b85\u0bb0\u0bc7\u0baa\u0bbf\u0baf\u0bbe", + "TD": "\u0b9a\u0bbe\u0b9f\u0bcd", + "SB": "\u0b9a\u0bbe\u0bb2\u0bae\u0ba9\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "ST": "\u0b9a\u0bbe\u0bb5\u0bcd \u0ba4\u0bcb\u0bae\u0bcd & \u0baa\u0bcd\u0bb0\u0bbf\u0ba9\u0bcd\u0b9a\u0bbf\u0baa\u0bbf", + "SM": "\u0b9a\u0bbe\u0ba9\u0bcd \u0bae\u0bb0\u0bbf\u0ba9\u0bcb", + "SG": "\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0bc2\u0bb0\u0bcd", + "SL": "\u0b9a\u0bbf\u0baf\u0bbe\u0bb0\u0bbe \u0bb2\u0bbf\u0baf\u0bcb\u0ba9\u0bcd", + "SY": "\u0b9a\u0bbf\u0bb0\u0bbf\u0baf\u0bbe", + "CL": "\u0b9a\u0bbf\u0bb2\u0bbf", + "SX": "\u0b9a\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0bae\u0bbe\u0bb0\u0bcd\u0b9f\u0bc6\u0ba9\u0bcd", + "CN": "\u0b9a\u0bc0\u0ba9\u0bbe", + "SC": "\u0b9a\u0bc0\u0bb7\u0bc6\u0bb2\u0bcd\u0bb8\u0bcd", + "SR": "\u0b9a\u0bc1\u0bb0\u0bbf\u0ba9\u0bbe\u0bae\u0bcd", + "SD": "\u0b9a\u0bc2\u0b9f\u0bbe\u0ba9\u0bcd", + "CZ": "\u0b9a\u0bc6\u0b9a\u0bbf\u0baf\u0bbe", + "KN": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0b95\u0bbf\u0b9f\u0bcd\u0bb8\u0bcd & \u0ba8\u0bc6\u0bb5\u0bbf\u0bb8\u0bcd", + "BL": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0baa\u0bbe\u0bb0\u0bcd\u0ba4\u0bc7\u0bb2\u0bc6\u0bae\u0bbf", + "PM": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0baa\u0bbf\u0baf\u0bb0\u0bcd & \u0bae\u0bbf\u0b95\u0bcd\u0bb5\u0bc7\u0bb2\u0bbe\u0ba9\u0bcd", + "MF": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0bae\u0bbe\u0bb0\u0bcd\u0b9f\u0bcd\u0b9f\u0bc0\u0ba9\u0bcd", + "LC": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0bb2\u0bc2\u0b9a\u0bbf\u0baf\u0bbe", + "VC": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0bb5\u0bbf\u0ba9\u0bcd\u0b9a\u0bc6\u0ba9\u0bcd\u0b9f\u0bcd & \u0b95\u0bbf\u0bb0\u0bc6\u0ba9\u0b9f\u0bc8\u0ba9\u0bcd\u0bb8\u0bcd", + "SH": "\u0b9a\u0bc6\u0baf\u0bbf\u0ba9\u0bcd\u0b9f\u0bcd \u0bb9\u0bc6\u0bb2\u0bc6\u0ba9\u0bbe", + "RS": "\u0b9a\u0bc6\u0bb0\u0bcd\u0baa\u0bbf\u0baf\u0bbe", + "SN": "\u0b9a\u0bc6\u0ba9\u0bc6\u0b95\u0bb2\u0bcd", + "CY": "\u0b9a\u0bc8\u0baa\u0bcd\u0bb0\u0bb8\u0bcd", + "SO": "\u0b9a\u0bcb\u0bae\u0bbe\u0bb2\u0bbf\u0baf\u0bbe", + "TC": "\u0b9f\u0bb0\u0bcd\u0b95\u0bcd\u0bb8\u0bcd & \u0b95\u0bc8\u0b95\u0bcb\u0bb8\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "TT": "\u0b9f\u0bbf\u0bb0\u0bbf\u0ba9\u0bbf\u0b9f\u0bbe\u0b9f\u0bcd & \u0b9f\u0bca\u0baa\u0bbe\u0b95\u0bcb", + "TN": "\u0b9f\u0bc1\u0ba9\u0bbf\u0b9a\u0bbf\u0baf\u0bbe", + "DK": "\u0b9f\u0bc6\u0ba9\u0bcd\u0bae\u0bbe\u0bb0\u0bcd\u0b95\u0bcd", + "DO": "\u0b9f\u0bca\u0bae\u0bbf\u0ba9\u0bbf\u0b95\u0ba9\u0bcd \u0b95\u0bc1\u0b9f\u0bbf\u0baf\u0bb0\u0b9a\u0bc1", + "DM": "\u0b9f\u0bca\u0bae\u0bbf\u0ba9\u0bbf\u0b95\u0bbe", + "TK": "\u0b9f\u0bcb\u0b95\u0bc7\u0bb2\u0bcb", + "TG": "\u0b9f\u0bcb\u0b95\u0bcb", + "TO": "\u0b9f\u0bcb\u0b99\u0bcd\u0b95\u0bbe", + "TJ": "\u0ba4\u0b9c\u0bbf\u0b95\u0bbf\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "TH": "\u0ba4\u0bbe\u0baf\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "TZ": "\u0ba4\u0bbe\u0ba9\u0bcd\u0b9a\u0bbe\u0ba9\u0bbf\u0baf\u0bbe", + "TL": "\u0ba4\u0bbf\u0bae\u0bcb\u0bb0\u0bcd-\u0bb2\u0bc6\u0bb8\u0bcd\u0ba4\u0bc7", + "TM": "\u0ba4\u0bc1\u0bb0\u0bcd\u0b95\u0bcd\u0bae\u0bc6\u0ba9\u0bbf\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "TR": "\u0ba4\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bbf", + "TV": "\u0ba4\u0bc1\u0bb5\u0bbe\u0bb2\u0bc1", + "SS": "\u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0b9a\u0bc2\u0b9f\u0bbe\u0ba9\u0bcd", + "GS": "\u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0b9c\u0bbe\u0bb0\u0bcd\u0b9c\u0bbf\u0baf\u0bbe \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0b9a\u0bbe\u0ba3\u0bcd\u0b9f\u0bcd\u0bb5\u0bbf\u0b9a\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "ZA": "\u0ba4\u0bc6\u0ba9\u0bcd \u0b86\u0baa\u0bcd\u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bbe", + "KR": "\u0ba4\u0bc6\u0ba9\u0bcd \u0b95\u0bca\u0bb0\u0bbf\u0baf\u0bbe", + "TW": "\u0ba4\u0bc8\u0bb5\u0bbe\u0ba9\u0bcd", + "NA": "\u0ba8\u0bae\u0bc0\u0baa\u0bbf\u0baf\u0bbe", + "NF": "\u0ba8\u0bbe\u0bb0\u0bcd\u0b83\u0baa\u0bcb\u0b95\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1", + "NO": "\u0ba8\u0bbe\u0bb0\u0bcd\u0bb5\u0bc7", + "NI": "\u0ba8\u0bbf\u0b95\u0bb0\u0b95\u0bc1\u0bb5\u0bbe", + "NU": "\u0ba8\u0bbf\u0baf\u0bc1\u0bb5\u0bc7", + "NC": "\u0ba8\u0bbf\u0baf\u0bc2 \u0b95\u0bc7\u0bb2\u0bbf\u0b9f\u0bcb\u0ba9\u0bbf\u0baf\u0bbe", + "NZ": "\u0ba8\u0bbf\u0baf\u0bc2\u0b9a\u0bbf\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "NL": "\u0ba8\u0bc6\u0ba4\u0bb0\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "NP": "\u0ba8\u0bc7\u0baa\u0bbe\u0bb3\u0bae\u0bcd", + "NE": "\u0ba8\u0bc8\u0b9c\u0bb0\u0bcd", + "NG": "\u0ba8\u0bc8\u0b9c\u0bc0\u0bb0\u0bbf\u0baf\u0bbe", + "NR": "\u0ba8\u0bcc\u0bb0\u0bc1", + "BD": "\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bbe\u0ba4\u0bc7\u0bb7\u0bcd", + "PG": "\u0baa\u0baa\u0bcd\u0baa\u0bc1\u0bb5\u0bbe \u0ba8\u0bbf\u0baf\u0bc2 \u0b95\u0bbf\u0ba9\u0bbf\u0baf\u0bbe", + "PY": "\u0baa\u0bb0\u0bbe\u0b95\u0bc1\u0bb5\u0bc7", + "BG": "\u0baa\u0bb2\u0bcd\u0b95\u0bc7\u0bb0\u0bbf\u0baf\u0bbe", + "PA": "\u0baa\u0ba9\u0bbe\u0bae\u0bbe", + "BH": "\u0baa\u0bb9\u0bcd\u0bb0\u0bc8\u0ba9\u0bcd", + "BS": "\u0baa\u0bb9\u0bbe\u0bae\u0bbe\u0bb8\u0bcd", + "PK": "\u0baa\u0bbe\u0b95\u0bbf\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "BB": "\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0b9f\u0bbe\u0bb8\u0bcd", + "PS": "\u0baa\u0bbe\u0bb2\u0bb8\u0bcd\u0ba4\u0bc0\u0ba9\u0bbf\u0baf \u0baa\u0bbf\u0bb0\u0ba4\u0bc7\u0b9a\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "PW": "\u0baa\u0bbe\u0bb2\u0bcb", + "PN": "\u0baa\u0bbf\u0b9f\u0bcd\u0b95\u0bc6\u0baf\u0bcd\u0bb0\u0bcd\u0ba9\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "PR": "\u0baa\u0bbf\u0baf\u0bc2\u0bb0\u0bcd\u0b9f\u0bcb \u0bb0\u0bbf\u0b95\u0bcb", + "FR": "\u0baa\u0bbf\u0bb0\u0bbe\u0ba9\u0bcd\u0bb8\u0bcd", + "IO": "\u0baa\u0bbf\u0bb0\u0bbf\u0b9f\u0bcd\u0b9f\u0bbf\u0bb7\u0bcd \u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0baa\u0bcd \u0baa\u0bc6\u0bb0\u0bc1\u0b99\u0bcd\u0b95\u0b9f\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0ba4\u0bc7\u0b9a\u0bae\u0bcd", + "VG": "\u0baa\u0bbf\u0bb0\u0bbf\u0b9f\u0bcd\u0b9f\u0bc0\u0bb7\u0bcd \u0b95\u0ba9\u0bcd\u0ba9\u0bbf\u0ba4\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "GF": "\u0baa\u0bbf\u0bb0\u0bc6\u0b9e\u0bcd\u0b9a\u0bc1 \u0b95\u0baf\u0bbe\u0ba9\u0bbe", + "TF": "\u0baa\u0bbf\u0bb0\u0bc6\u0b9e\u0bcd\u0b9a\u0bc1 \u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0bb0\u0ba4\u0bc7\u0b9a\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "PF": "\u0baa\u0bbf\u0bb0\u0bc6\u0b9e\u0bcd\u0b9a\u0bc1 \u0baa\u0bbe\u0bb2\u0bbf\u0ba9\u0bc7\u0bb7\u0bbf\u0baf\u0bbe", + "BR": "\u0baa\u0bbf\u0bb0\u0bc7\u0b9a\u0bbf\u0bb2\u0bcd", + "PH": "\u0baa\u0bbf\u0bb2\u0bbf\u0baa\u0bcd\u0baa\u0bc8\u0ba9\u0bcd\u0bb8\u0bcd", + "FI": "\u0baa\u0bbf\u0ba9\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "BF": "\u0baa\u0bc1\u0bb0\u0bcd\u0b95\u0bbf\u0ba9\u0bbe \u0b83\u0baa\u0bbe\u0bb8\u0bcb", + "BI": "\u0baa\u0bc1\u0bb0\u0bc1\u0ba3\u0bcd\u0b9f\u0bbf", + "BN": "\u0baa\u0bc1\u0bb0\u0bc1\u0ba9\u0bc7", + "BT": "\u0baa\u0bc2\u0b9f\u0bbe\u0ba9\u0bcd", + "BM": "\u0baa\u0bc6\u0bb0\u0bcd\u0bae\u0bc1\u0b9f\u0bbe", + "PE": "\u0baa\u0bc6\u0bb0\u0bc1", + "BE": "\u0baa\u0bc6\u0bb2\u0bcd\u0b9c\u0bbf\u0baf\u0bae\u0bcd", + "BY": "\u0baa\u0bc6\u0bb2\u0bbe\u0bb0\u0bb8\u0bcd", + "BZ": "\u0baa\u0bc6\u0bb2\u0bbf\u0bb8\u0bcd", + "BJ": "\u0baa\u0bc6\u0ba9\u0bbf\u0ba9\u0bcd", + "BO": "\u0baa\u0bca\u0bb2\u0bbf\u0bb5\u0bbf\u0baf\u0bbe", + "BV": "\u0baa\u0bca\u0bb5\u0bc7\u0b9f\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1", + "BW": "\u0baa\u0bcb\u0b9f\u0bcd\u0bb8\u0bcd\u0bb5\u0bbe\u0ba9\u0bbe", + "PT": "\u0baa\u0bcb\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bc1\u0b95\u0bcd\u0b95\u0bb2\u0bcd", + "PL": "\u0baa\u0bcb\u0bb2\u0ba8\u0bcd\u0ba4\u0bc1", + "BA": "\u0baa\u0bcb\u0bb8\u0bcd\u0ba9\u0bbf\u0baf\u0bbe & \u0bb9\u0bc6\u0bb0\u0bcd\u0bb8\u0b95\u0bcb\u0bb5\u0bbf\u0ba9\u0bbe", + "MO": "\u0bae\u0b95\u0bbe\u0bb5\u0bcd \u0b8e\u0bb8\u0bcd\u0b8f\u0b86\u0bb0\u0bcd \u0b9a\u0bc0\u0ba9\u0bbe", + "MN": "\u0bae\u0b99\u0bcd\u0b95\u0bcb\u0bb2\u0bbf\u0baf\u0bbe", + "MG": "\u0bae\u0b9f\u0b95\u0bbe\u0bb8\u0bcd\u0b95\u0bb0\u0bcd", + "CF": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b86\u0baa\u0bcd\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0b95\u0bcd \u0b95\u0bc1\u0b9f\u0bbf\u0baf\u0bb0\u0b9a\u0bc1", + "YT": "\u0bae\u0baf\u0bcb\u0b9f\u0bcd", + "MW": "\u0bae\u0bb2\u0bbe\u0bb5\u0bbf", + "MY": "\u0bae\u0bb2\u0bc7\u0b9a\u0bbf\u0baf\u0bbe", + "MS": "\u0bae\u0bbe\u0ba3\u0bcd\u0b9f\u0bcd\u0b9a\u0bc6\u0bb0\u0bbe\u0b9f\u0bcd", + "MQ": "\u0bae\u0bbe\u0bb0\u0bcd\u0b9f\u0bbf\u0ba9\u0bbf\u0b95\u0bcd", + "MH": "\u0bae\u0bbe\u0bb0\u0bcd\u0bb7\u0bb2\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "MT": "\u0bae\u0bbe\u0bb2\u0bcd\u0b9f\u0bbe", + "MD": "\u0bae\u0bbe\u0bb2\u0bcd\u0b9f\u0bcb\u0bb5\u0bbe", + "MV": "\u0bae\u0bbe\u0bb2\u0ba4\u0bcd\u0ba4\u0bc0\u0bb5\u0bc1", + "ML": "\u0bae\u0bbe\u0bb2\u0bbf", + "ME": "\u0bae\u0bbe\u0ba9\u0bcd\u0b9f\u0bc7\u0ba9\u0bc6\u0b95\u0bcd\u0bb0\u0bcb", + "MM": "\u0bae\u0bbf\u0baf\u0bbe\u0ba9\u0bcd\u0bae\u0bbe\u0bb0\u0bcd (\u0baa\u0bb0\u0bcd\u0bae\u0bbe)", + "MX": "\u0bae\u0bc6\u0b95\u0bcd\u0b9a\u0bbf\u0b95\u0bcb", + "EH": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc1 \u0b9a\u0bb9\u0bbe\u0bb0\u0bbe", + "FM": "\u0bae\u0bc8\u0b95\u0bcd\u0bb0\u0bcb\u0ba9\u0bc7\u0bb7\u0bbf\u0baf\u0bbe", + "MZ": "\u0bae\u0bca\u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bbf\u0b95\u0bcd", + "MA": "\u0bae\u0bca\u0bb0\u0bbe\u0b95\u0bcd\u0b95\u0bcb", + "MU": "\u0bae\u0bca\u0bb0\u0bbf\u0b9a\u0bbf\u0baf\u0bb8\u0bcd", + "MC": "\u0bae\u0bca\u0ba9\u0bbe\u0b95\u0bcd\u0b95\u0bcb", + "MR": "\u0bae\u0bcc\u0bb0\u0bbf\u0b9f\u0bbe\u0ba9\u0bbf\u0baf\u0bbe", + "GB": "\u0baf\u0bc1\u0ba9\u0bc8\u0b9f\u0bc6\u0b9f\u0bcd \u0b95\u0bbf\u0b99\u0bcd\u0b9f\u0bae\u0bcd", + "VI": "\u0baf\u0bc2.\u0b8e\u0bb8\u0bcd. \u0b95\u0ba9\u0bcd\u0ba9\u0bbf\u0ba4\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "UM": "\u0baf\u0bc2.\u0b8e\u0bb8\u0bcd. \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0ba4\u0bcd \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "RU": "\u0bb0\u0bb7\u0bcd\u0baf\u0bbe", + "RE": "\u0bb0\u0bc0\u0baf\u0bc2\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "RO": "\u0bb0\u0bc1\u0bae\u0bc7\u0ba9\u0bbf\u0baf\u0bbe", + "RW": "\u0bb0\u0bc1\u0bb5\u0bbe\u0ba3\u0bcd\u0b9f\u0bbe", + "LU": "\u0bb2\u0b95\u0bcd\u0bb8\u0bcd\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd\u0b95\u0bcd", + "LV": "\u0bb2\u0bbe\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0bbe", + "LA": "\u0bb2\u0bbe\u0bb5\u0bcb\u0bb8\u0bcd", + "LI": "\u0bb2\u0bbf\u0b9a\u0bcd\u0b9a\u0bc6\u0ba3\u0bcd\u0bb8\u0bcd\u0b9f\u0bc6\u0baf\u0bcd\u0ba9\u0bcd", + "LT": "\u0bb2\u0bbf\u0ba4\u0bc1\u0bb5\u0bc7\u0ba9\u0bbf\u0baf\u0bbe", + "LY": "\u0bb2\u0bbf\u0baa\u0bbf\u0baf\u0bbe", + "LS": "\u0bb2\u0bc6\u0b9a\u0bcb\u0ba4\u0bcb", + "LB": "\u0bb2\u0bc6\u0baa\u0ba9\u0bbe\u0ba9\u0bcd", + "LR": "\u0bb2\u0bc8\u0baa\u0bc0\u0bb0\u0bbf\u0baf\u0bbe", + "KP": "\u0bb5\u0b9f \u0b95\u0bca\u0bb0\u0bbf\u0baf\u0bbe", + "MP": "\u0bb5\u0b9f\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bb0\u0bbf\u0baf\u0bbe\u0ba9\u0bbe \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "MK": "\u0bb5\u0b9f\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0b9a\u0bbf\u0b9f\u0bcb\u0ba9\u0bbf\u0baf\u0bbe", + "VU": "\u0bb5\u0ba9\u0bc1\u0bb5\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1", + "VA": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0ba9\u0bcd \u0ba8\u0b95\u0bb0\u0bae\u0bcd", + "WF": "\u0bb5\u0bbe\u0bb2\u0bbf\u0bb8\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b83\u0baa\u0bc1\u0b9f\u0bc1\u0ba9\u0bbe", + "VN": "\u0bb5\u0bbf\u0baf\u0b9f\u0bcd\u0ba8\u0bbe\u0bae\u0bcd", + "VE": "\u0bb5\u0bc6\u0ba9\u0bbf\u0b9a\u0bc1\u0bb2\u0bbe", + "JP": "\u0b9c\u0baa\u0bcd\u0baa\u0bbe\u0ba9\u0bcd", + "JM": "\u0b9c\u0bae\u0bc8\u0b95\u0bbe", + "ZM": "\u0b9c\u0bbe\u0bae\u0bcd\u0baa\u0bbf\u0baf\u0bbe", + "GE": "\u0b9c\u0bbe\u0bb0\u0bcd\u0b9c\u0bbf\u0baf\u0bbe", + "GI": "\u0b9c\u0bbf\u0baa\u0bcd\u0bb0\u0bbe\u0bb2\u0bcd\u0b9f\u0bb0\u0bcd", + "DJ": "\u0b9c\u0bbf\u0baa\u0bcc\u0b9f\u0bcd\u0b9f\u0bbf", + "ZW": "\u0b9c\u0bbf\u0bae\u0bcd\u0baa\u0bbe\u0baa\u0bcd\u0bb5\u0bc7", + "JE": "\u0b9c\u0bc6\u0bb0\u0bcd\u0b9a\u0bbf", + "DE": "\u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bbf", + "JO": "\u0b9c\u0bcb\u0bb0\u0bcd\u0b9f\u0bbe\u0ba9\u0bcd", + "ES": "\u0bb8\u0bcd\u0baa\u0bc6\u0baf\u0bbf\u0ba9\u0bcd", + "SK": "\u0bb8\u0bcd\u0bb2\u0bcb\u0bb5\u0bbe\u0b95\u0bbf\u0baf\u0bbe", + "SI": "\u0bb8\u0bcd\u0bb2\u0bcb\u0bb5\u0bc7\u0ba9\u0bbf\u0baf\u0bbe", + "SJ": "\u0bb8\u0bcd\u0bb5\u0bb2\u0bcd\u0baa\u0bbe\u0bb0\u0bcd\u0b9f\u0bc1 & \u0b9c\u0bbe\u0ba9\u0bcd \u0bae\u0bc7\u0baf\u0ba9\u0bcd", + "CH": "\u0bb8\u0bcd\u0bb5\u0bbf\u0b9f\u0bcd\u0b9a\u0bb0\u0bcd\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bc1", + "SE": "\u0bb8\u0bcd\u0bb5\u0bc0\u0b9f\u0ba9\u0bcd", + "HU": "\u0bb9\u0b99\u0bcd\u0b95\u0bc7\u0bb0\u0bbf", + "HK": "\u0bb9\u0bbe\u0b99\u0bcd\u0b95\u0bbe\u0b99\u0bcd \u0b8e\u0bb8\u0bcd\u0b8f\u0b86\u0bb0\u0bcd \u0b9a\u0bc0\u0ba9\u0bbe", + "HM": "\u0bb9\u0bc7\u0bb0\u0bcd\u0b9f\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bae\u0bc6\u0b95\u0bcd\u0b9f\u0bca\u0ba9\u0bbe\u0bb2\u0bcd\u0b9f\u0bc1 \u0ba4\u0bc0\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "HT": "\u0bb9\u0bc8\u0b9f\u0bcd\u0b9f\u0bbf", + "HN": "\u0bb9\u0bcb\u0ba3\u0bcd\u0b9f\u0bc2\u0bb0\u0bbe\u0bb8\u0bcd" +} diff --git a/public/intl/country/th-TH.json b/public/intl/country/th-TH.json new file mode 100644 index 0000000..8ceed4f --- /dev/null +++ b/public/intl/country/th-TH.json @@ -0,0 +1,252 @@ +{ + "GR": "\u0e01\u0e23\u0e35\u0e0b", + "GL": "\u0e01\u0e23\u0e35\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c", + "GU": "\u0e01\u0e27\u0e21", + "GP": "\u0e01\u0e27\u0e32\u0e40\u0e14\u0e2d\u0e25\u0e39\u0e1b", + "KH": "\u0e01\u0e31\u0e21\u0e1e\u0e39\u0e0a\u0e32", + "GT": "\u0e01\u0e31\u0e27\u0e40\u0e15\u0e21\u0e32\u0e25\u0e32", + "QA": "\u0e01\u0e32\u0e15\u0e32\u0e23\u0e4c", + "GH": "\u0e01\u0e32\u0e19\u0e32", + "GA": "\u0e01\u0e32\u0e1a\u0e2d\u0e07", + "GY": "\u0e01\u0e32\u0e22\u0e2d\u0e32\u0e19\u0e32", + "GN": "\u0e01\u0e34\u0e19\u0e35", + "GW": "\u0e01\u0e34\u0e19\u0e35-\u0e1a\u0e34\u0e2a\u0e40\u0e0b\u0e32", + "GD": "\u0e40\u0e01\u0e23\u0e40\u0e19\u0e14\u0e32", + "KR": "\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49", + "KP": "\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e40\u0e2b\u0e19\u0e37\u0e2d", + "CX": "\u0e40\u0e01\u0e32\u0e30\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e4c\u0e21\u0e32\u0e2a", + "GS": "\u0e40\u0e01\u0e32\u0e30\u0e40\u0e0b\u0e32\u0e17\u0e4c\u0e08\u0e2d\u0e23\u0e4c\u0e40\u0e08\u0e35\u0e22\u0e41\u0e25\u0e30\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e40\u0e0b\u0e32\u0e17\u0e4c\u0e41\u0e0b\u0e19\u0e14\u0e4c\u0e27\u0e34\u0e0a", + "NF": "\u0e40\u0e01\u0e32\u0e30\u0e19\u0e2d\u0e23\u0e4c\u0e1f\u0e2d\u0e25\u0e4c\u0e01", + "BV": "\u0e40\u0e01\u0e32\u0e30\u0e1a\u0e39\u0e40\u0e27", + "IM": "\u0e40\u0e01\u0e32\u0e30\u0e41\u0e21\u0e19", + "HM": "\u0e40\u0e01\u0e32\u0e30\u0e40\u0e2e\u0e34\u0e23\u0e4c\u0e14\u0e41\u0e25\u0e30\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e41\u0e21\u0e01\u0e14\u0e2d\u0e19\u0e31\u0e25\u0e14\u0e4c", + "GG": "\u0e40\u0e01\u0e34\u0e23\u0e4c\u0e19\u0e0b\u0e35\u0e22\u0e4c", + "GM": "\u0e41\u0e01\u0e21\u0e40\u0e1a\u0e35\u0e22", + "CI": "\u0e42\u0e01\u0e15\u0e14\u0e34\u0e27\u0e31\u0e27\u0e23\u0e4c", + "MO": "\u0e40\u0e02\u0e15\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07\u0e1e\u0e34\u0e40\u0e28\u0e29\u0e21\u0e32\u0e40\u0e01\u0e4a\u0e32\u0e41\u0e2b\u0e48\u0e07\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19\u0e08\u0e35\u0e19", + "HK": "\u0e40\u0e02\u0e15\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07\u0e1e\u0e34\u0e40\u0e28\u0e29\u0e2e\u0e48\u0e2d\u0e07\u0e01\u0e07\u0e41\u0e2b\u0e48\u0e07\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19\u0e08\u0e35\u0e19", + "CD": "\u0e04\u0e2d\u0e07\u0e42\u0e01 - \u0e01\u0e34\u0e19\u0e0a\u0e32\u0e0b\u0e32", + "CG": "\u0e04\u0e2d\u0e07\u0e42\u0e01 - \u0e1a\u0e23\u0e32\u0e0b\u0e0b\u0e32\u0e27\u0e34\u0e25", + "KM": "\u0e04\u0e2d\u0e42\u0e21\u0e42\u0e23\u0e2a", + "CR": "\u0e04\u0e2d\u0e2a\u0e15\u0e32\u0e23\u0e34\u0e01\u0e32", + "KZ": "\u0e04\u0e32\u0e0b\u0e31\u0e04\u0e2a\u0e16\u0e32\u0e19", + "KI": "\u0e04\u0e34\u0e23\u0e34\u0e1a\u0e32\u0e2a", + "CU": "\u0e04\u0e34\u0e27\u0e1a\u0e32", + "KG": "\u0e04\u0e35\u0e23\u0e4c\u0e01\u0e35\u0e0b\u0e2a\u0e16\u0e32\u0e19", + "CW": "\u0e04\u0e39\u0e23\u0e32\u0e40\u0e0b\u0e32", + "KW": "\u0e04\u0e39\u0e40\u0e27\u0e15", + "KE": "\u0e40\u0e04\u0e19\u0e22\u0e32", + "CV": "\u0e40\u0e04\u0e1b\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e14", + "CA": "\u0e41\u0e04\u0e19\u0e32\u0e14\u0e32", + "CM": "\u0e41\u0e04\u0e40\u0e21\u0e2d\u0e23\u0e39\u0e19", + "HR": "\u0e42\u0e04\u0e23\u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22", + "XK": "\u0e42\u0e04\u0e42\u0e0b\u0e42\u0e27", + "CO": "\u0e42\u0e04\u0e25\u0e2d\u0e21\u0e40\u0e1a\u0e35\u0e22", + "GE": "\u0e08\u0e2d\u0e23\u0e4c\u0e40\u0e08\u0e35\u0e22", + "JO": "\u0e08\u0e2d\u0e23\u0e4c\u0e41\u0e14\u0e19", + "JM": "\u0e08\u0e32\u0e40\u0e21\u0e01\u0e32", + "DJ": "\u0e08\u0e34\u0e1a\u0e39\u0e15\u0e35", + "CN": "\u0e08\u0e35\u0e19", + "JE": "\u0e40\u0e08\u0e2d\u0e23\u0e4c\u0e0b\u0e35\u0e22\u0e4c", + "TD": "\u0e0a\u0e32\u0e14", + "CL": "\u0e0a\u0e34\u0e25\u0e35", + "CZ": "\u0e40\u0e0a\u0e47\u0e01", + "SM": "\u0e0b\u0e32\u0e19\u0e21\u0e32\u0e23\u0e34\u0e42\u0e19", + "WS": "\u0e0b\u0e32\u0e21\u0e31\u0e27", + "SA": "\u0e0b\u0e32\u0e2d\u0e38\u0e14\u0e35\u0e2d\u0e32\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22", + "EH": "\u0e0b\u0e32\u0e2e\u0e32\u0e23\u0e32\u0e15\u0e30\u0e27\u0e31\u0e19\u0e15\u0e01", + "SX": "\u0e0b\u0e34\u0e19\u0e15\u0e4c\u0e21\u0e32\u0e23\u0e4c\u0e40\u0e17\u0e19", + "ZW": "\u0e0b\u0e34\u0e21\u0e1a\u0e31\u0e1a\u0e40\u0e27", + "SY": "\u0e0b\u0e35\u0e40\u0e23\u0e35\u0e22", + "SD": "\u0e0b\u0e39\u0e14\u0e32\u0e19", + "SS": "\u0e0b\u0e39\u0e14\u0e32\u0e19\u0e43\u0e15\u0e49", + "SR": "\u0e0b\u0e39\u0e23\u0e34\u0e19\u0e32\u0e40\u0e21", + "SC": "\u0e40\u0e0b\u0e40\u0e0a\u0e25\u0e2a\u0e4c", + "KN": "\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e04\u0e34\u0e15\u0e2a\u0e4c\u0e41\u0e25\u0e30\u0e40\u0e19\u0e27\u0e34\u0e2a", + "BL": "\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e1a\u0e32\u0e23\u0e4c\u0e40\u0e18\u0e40\u0e25\u0e21\u0e35", + "MF": "\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e21\u0e32\u0e23\u0e4c\u0e15\u0e34\u0e19", + "LC": "\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e25\u0e39\u0e40\u0e0b\u0e35\u0e22", + "VC": "\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e27\u0e34\u0e19\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e41\u0e25\u0e30\u0e40\u0e01\u0e23\u0e19\u0e32\u0e14\u0e35\u0e19\u0e2a\u0e4c", + "SH": "\u0e40\u0e0b\u0e19\u0e15\u0e4c\u0e40\u0e2e\u0e40\u0e25\u0e19\u0e32", + "SN": "\u0e40\u0e0b\u0e40\u0e19\u0e01\u0e31\u0e25", + "RS": "\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e40\u0e1a\u0e35\u0e22", + "ST": "\u0e40\u0e0b\u0e32\u0e15\u0e39\u0e40\u0e21\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e19\u0e0b\u0e34\u0e1b\u0e35", + "SL": "\u0e40\u0e0b\u0e35\u0e22\u0e23\u0e4c\u0e23\u0e32\u0e25\u0e35\u0e42\u0e2d\u0e19", + "PM": "\u0e41\u0e0b\u0e07\u0e1b\u0e35\u0e41\u0e22\u0e23\u0e4c\u0e41\u0e25\u0e30\u0e21\u0e35\u0e40\u0e01\u0e2d\u0e25\u0e07", + "ZM": "\u0e41\u0e0b\u0e21\u0e40\u0e1a\u0e35\u0e22", + "SO": "\u0e42\u0e0b\u0e21\u0e32\u0e40\u0e25\u0e35\u0e22", + "CY": "\u0e44\u0e0b\u0e1b\u0e23\u0e31\u0e2a", + "JP": "\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19", + "PS": "\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e1b\u0e32\u0e40\u0e25\u0e2a\u0e44\u0e15\u0e19\u0e4c", + "DK": "\u0e40\u0e14\u0e19\u0e21\u0e32\u0e23\u0e4c\u0e01", + "DM": "\u0e42\u0e14\u0e21\u0e34\u0e19\u0e34\u0e01\u0e32", + "TT": "\u0e15\u0e23\u0e34\u0e19\u0e34\u0e41\u0e14\u0e14\u0e41\u0e25\u0e30\u0e42\u0e15\u0e40\u0e1a\u0e42\u0e01", + "TO": "\u0e15\u0e2d\u0e07\u0e01\u0e32", + "TL": "\u0e15\u0e34\u0e21\u0e2d\u0e23\u0e4c-\u0e40\u0e25\u0e2a\u0e40\u0e15", + "TR": "\u0e15\u0e38\u0e23\u0e01\u0e35", + "TN": "\u0e15\u0e39\u0e19\u0e34\u0e40\u0e0b\u0e35\u0e22", + "TV": "\u0e15\u0e39\u0e27\u0e32\u0e25\u0e39", + "TM": "\u0e40\u0e15\u0e34\u0e23\u0e4c\u0e01\u0e40\u0e21\u0e19\u0e34\u0e2a\u0e16\u0e32\u0e19", + "TK": "\u0e42\u0e15\u0e40\u0e01\u0e40\u0e25\u0e32", + "TG": "\u0e42\u0e15\u0e42\u0e01", + "TW": "\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19", + "TJ": "\u0e17\u0e32\u0e08\u0e34\u0e01\u0e34\u0e2a\u0e16\u0e32\u0e19", + "TZ": "\u0e41\u0e17\u0e19\u0e0b\u0e32\u0e40\u0e19\u0e35\u0e22", + "TH": "\u0e44\u0e17\u0e22", + "VA": "\u0e19\u0e04\u0e23\u0e27\u0e32\u0e15\u0e34\u0e01\u0e31\u0e19", + "NO": "\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e27\u0e22\u0e4c", + "NA": "\u0e19\u0e32\u0e21\u0e34\u0e40\u0e1a\u0e35\u0e22", + "NR": "\u0e19\u0e32\u0e2d\u0e39\u0e23\u0e39", + "NI": "\u0e19\u0e34\u0e01\u0e32\u0e23\u0e32\u0e01\u0e31\u0e27", + "NC": "\u0e19\u0e34\u0e27\u0e41\u0e04\u0e25\u0e34\u0e42\u0e14\u0e40\u0e19\u0e35\u0e22", + "NZ": "\u0e19\u0e34\u0e27\u0e0b\u0e35\u0e41\u0e25\u0e19\u0e14\u0e4c", + "NU": "\u0e19\u0e35\u0e2d\u0e39\u0e40\u0e2d", + "NL": "\u0e40\u0e19\u0e40\u0e18\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c", + "BQ": "\u0e40\u0e19\u0e40\u0e18\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c\u0e41\u0e04\u0e23\u0e34\u0e1a\u0e40\u0e1a\u0e35\u0e22\u0e19", + "NP": "\u0e40\u0e19\u0e1b\u0e32\u0e25", + "NG": "\u0e44\u0e19\u0e08\u0e35\u0e40\u0e23\u0e35\u0e22", + "NE": "\u0e44\u0e19\u0e40\u0e08\u0e2d\u0e23\u0e4c", + "BR": "\u0e1a\u0e23\u0e32\u0e0b\u0e34\u0e25", + "IO": "\u0e1a\u0e23\u0e34\u0e15\u0e34\u0e0a\u0e2d\u0e34\u0e19\u0e40\u0e14\u0e35\u0e22\u0e19\u0e42\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e19\u0e40\u0e17\u0e23\u0e4c\u0e23\u0e34\u0e17\u0e2d\u0e23\u0e35", + "BN": "\u0e1a\u0e23\u0e39\u0e44\u0e19", + "BW": "\u0e1a\u0e2d\u0e15\u0e2a\u0e27\u0e32\u0e19\u0e32", + "BA": "\u0e1a\u0e2d\u0e2a\u0e40\u0e19\u0e35\u0e22\u0e41\u0e25\u0e30\u0e40\u0e2e\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e42\u0e01\u0e27\u0e35\u0e19\u0e32", + "BD": "\u0e1a\u0e31\u0e07\u0e01\u0e25\u0e32\u0e40\u0e17\u0e28", + "BG": "\u0e1a\u0e31\u0e25\u0e41\u0e01\u0e40\u0e23\u0e35\u0e22", + "BB": "\u0e1a\u0e32\u0e23\u0e4c\u0e40\u0e1a\u0e42\u0e14\u0e2a", + "BH": "\u0e1a\u0e32\u0e2b\u0e4c\u0e40\u0e23\u0e19", + "BS": "\u0e1a\u0e32\u0e2e\u0e32\u0e21\u0e32\u0e2a", + "BI": "\u0e1a\u0e38\u0e23\u0e38\u0e19\u0e14\u0e35", + "BF": "\u0e1a\u0e39\u0e23\u0e4c\u0e01\u0e34\u0e19\u0e32\u0e1f\u0e32\u0e42\u0e0b", + "BJ": "\u0e40\u0e1a\u0e19\u0e34\u0e19", + "BE": "\u0e40\u0e1a\u0e25\u0e40\u0e22\u0e35\u0e22\u0e21", + "BY": "\u0e40\u0e1a\u0e25\u0e32\u0e23\u0e38\u0e2a", + "BZ": "\u0e40\u0e1a\u0e25\u0e35\u0e0b", + "BM": "\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e21\u0e34\u0e27\u0e14\u0e32", + "BO": "\u0e42\u0e1a\u0e25\u0e34\u0e40\u0e27\u0e35\u0e22", + "PK": "\u0e1b\u0e32\u0e01\u0e35\u0e2a\u0e16\u0e32\u0e19", + "PA": "\u0e1b\u0e32\u0e19\u0e32\u0e21\u0e32", + "PG": "\u0e1b\u0e32\u0e1b\u0e31\u0e27\u0e19\u0e34\u0e27\u0e01\u0e34\u0e19\u0e35", + "PY": "\u0e1b\u0e32\u0e23\u0e32\u0e01\u0e27\u0e31\u0e22", + "PW": "\u0e1b\u0e32\u0e40\u0e25\u0e32", + "PE": "\u0e40\u0e1b\u0e23\u0e39", + "PR": "\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e42\u0e15\u0e23\u0e34\u0e42\u0e01", + "PT": "\u0e42\u0e1b\u0e23\u0e15\u0e38\u0e40\u0e01\u0e2a", + "PL": "\u0e42\u0e1b\u0e41\u0e25\u0e19\u0e14\u0e4c", + "FR": "\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a", + "FJ": "\u0e1f\u0e34\u0e08\u0e34", + "FI": "\u0e1f\u0e34\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c", + "PH": "\u0e1f\u0e34\u0e25\u0e34\u0e1b\u0e1b\u0e34\u0e19\u0e2a\u0e4c", + "GF": "\u0e40\u0e1f\u0e23\u0e19\u0e0a\u0e4c\u0e40\u0e01\u0e35\u0e22\u0e19\u0e32", + "TF": "\u0e40\u0e1f\u0e23\u0e19\u0e0a\u0e4c\u0e40\u0e0b\u0e32\u0e40\u0e17\u0e34\u0e23\u0e4c\u0e19\u0e40\u0e17\u0e23\u0e4c\u0e23\u0e34\u0e17\u0e2d\u0e23\u0e35\u0e2a\u0e4c", + "PF": "\u0e40\u0e1f\u0e23\u0e19\u0e0a\u0e4c\u0e42\u0e1b\u0e25\u0e34\u0e19\u0e35\u0e40\u0e0b\u0e35\u0e22", + "BT": "\u0e20\u0e39\u0e0f\u0e32\u0e19", + "MN": "\u0e21\u0e2d\u0e07\u0e42\u0e01\u0e40\u0e25\u0e35\u0e22", + "MS": "\u0e21\u0e2d\u0e19\u0e15\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e23\u0e31\u0e15", + "ME": "\u0e21\u0e2d\u0e19\u0e40\u0e15\u0e40\u0e19\u0e42\u0e01\u0e23", + "MU": "\u0e21\u0e2d\u0e23\u0e34\u0e40\u0e0a\u0e35\u0e22\u0e2a", + "MR": "\u0e21\u0e2d\u0e23\u0e34\u0e40\u0e15\u0e40\u0e19\u0e35\u0e22", + "MD": "\u0e21\u0e2d\u0e25\u0e42\u0e14\u0e27\u0e32", + "MT": "\u0e21\u0e2d\u0e25\u0e15\u0e32", + "MV": "\u0e21\u0e31\u0e25\u0e14\u0e35\u0e1f\u0e2a\u0e4c", + "MK": "\u0e21\u0e32\u0e0b\u0e34\u0e42\u0e14\u0e40\u0e19\u0e35\u0e22\u0e40\u0e2b\u0e19\u0e37\u0e2d", + "MG": "\u0e21\u0e32\u0e14\u0e32\u0e01\u0e31\u0e2a\u0e01\u0e32\u0e23\u0e4c", + "YT": "\u0e21\u0e32\u0e22\u0e2d\u0e15", + "MQ": "\u0e21\u0e32\u0e23\u0e4c\u0e15\u0e34\u0e19\u0e35\u0e01", + "MW": "\u0e21\u0e32\u0e25\u0e32\u0e27\u0e35", + "ML": "\u0e21\u0e32\u0e25\u0e35", + "MY": "\u0e21\u0e32\u0e40\u0e25\u0e40\u0e0b\u0e35\u0e22", + "MX": "\u0e40\u0e21\u0e47\u0e01\u0e0b\u0e34\u0e42\u0e01", + "MM": "\u0e40\u0e21\u0e35\u0e22\u0e19\u0e21\u0e32\u0e23\u0e4c (\u0e1e\u0e21\u0e48\u0e32)", + "MZ": "\u0e42\u0e21\u0e0b\u0e31\u0e21\u0e1a\u0e34\u0e01", + "MC": "\u0e42\u0e21\u0e19\u0e32\u0e42\u0e01", + "MA": "\u0e42\u0e21\u0e23\u0e47\u0e2d\u0e01\u0e42\u0e01", + "FM": "\u0e44\u0e21\u0e42\u0e04\u0e23\u0e19\u0e35\u0e40\u0e0b\u0e35\u0e22", + "GI": "\u0e22\u0e34\u0e1a\u0e23\u0e2d\u0e25\u0e15\u0e32\u0e23\u0e4c", + "UG": "\u0e22\u0e39\u0e01\u0e31\u0e19\u0e14\u0e32", + "UA": "\u0e22\u0e39\u0e40\u0e04\u0e23\u0e19", + "YE": "\u0e40\u0e22\u0e40\u0e21\u0e19", + "DE": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e19\u0e35", + "RW": "\u0e23\u0e27\u0e31\u0e19\u0e14\u0e32", + "RU": "\u0e23\u0e31\u0e2a\u0e40\u0e0b\u0e35\u0e22", + "RE": "\u0e40\u0e23\u0e2d\u0e39\u0e19\u0e35\u0e22\u0e07", + "RO": "\u0e42\u0e23\u0e21\u0e32\u0e40\u0e19\u0e35\u0e22", + "LU": "\u0e25\u0e31\u0e01\u0e40\u0e0b\u0e21\u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e01", + "LV": "\u0e25\u0e31\u0e15\u0e40\u0e27\u0e35\u0e22", + "LA": "\u0e25\u0e32\u0e27", + "LI": "\u0e25\u0e34\u0e01\u0e40\u0e15\u0e19\u0e2a\u0e44\u0e15\u0e19\u0e4c", + "LT": "\u0e25\u0e34\u0e17\u0e31\u0e27\u0e40\u0e19\u0e35\u0e22", + "LY": "\u0e25\u0e34\u0e40\u0e1a\u0e35\u0e22", + "LS": "\u0e40\u0e25\u0e42\u0e0b\u0e42\u0e17", + "LB": "\u0e40\u0e25\u0e1a\u0e32\u0e19\u0e2d\u0e19", + "LR": "\u0e44\u0e25\u0e1a\u0e35\u0e40\u0e23\u0e35\u0e22", + "VU": "\u0e27\u0e32\u0e19\u0e39\u0e2d\u0e32\u0e15\u0e39", + "WF": "\u0e27\u0e32\u0e25\u0e25\u0e34\u0e2a\u0e41\u0e25\u0e30\u0e1f\u0e38\u0e15\u0e39\u0e19\u0e32", + "VE": "\u0e40\u0e27\u0e40\u0e19\u0e0b\u0e38\u0e40\u0e2d\u0e25\u0e32", + "VN": "\u0e40\u0e27\u0e35\u0e22\u0e14\u0e19\u0e32\u0e21", + "LK": "\u0e28\u0e23\u0e35\u0e25\u0e31\u0e07\u0e01\u0e32", + "ES": "\u0e2a\u0e40\u0e1b\u0e19", + "SJ": "\u0e2a\u0e1f\u0e32\u0e25\u0e1a\u0e32\u0e23\u0e4c\u0e41\u0e25\u0e30\u0e22\u0e32\u0e19\u0e44\u0e21\u0e40\u0e2d\u0e19", + "SK": "\u0e2a\u0e42\u0e25\u0e27\u0e30\u0e40\u0e01\u0e35\u0e22", + "SI": "\u0e2a\u0e42\u0e25\u0e27\u0e35\u0e40\u0e19\u0e35\u0e22", + "CH": "\u0e2a\u0e27\u0e34\u0e15\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c", + "SE": "\u0e2a\u0e27\u0e35\u0e40\u0e14\u0e19", + "US": "\u0e2a\u0e2b\u0e23\u0e31\u0e10\u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e32", + "AE": "\u0e2a\u0e2b\u0e23\u0e31\u0e10\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e2d\u0e21\u0e34\u0e40\u0e23\u0e15\u0e2a\u0e4c", + "GB": "\u0e2a\u0e2b\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23", + "DO": "\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e42\u0e14\u0e21\u0e34\u0e19\u0e34\u0e01\u0e31\u0e19", + "CF": "\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e01\u0e32\u0e01\u0e25\u0e32\u0e07", + "SG": "\u0e2a\u0e34\u0e07\u0e04\u0e42\u0e1b\u0e23\u0e4c", + "CK": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e04\u0e38\u0e01", + "KY": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e40\u0e04\u0e22\u0e4c\u0e41\u0e21\u0e19", + "CC": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e42\u0e04\u0e42\u0e04\u0e2a (\u0e04\u0e35\u0e25\u0e34\u0e07)", + "SB": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e42\u0e0b\u0e42\u0e25\u0e21\u0e2d\u0e19", + "TC": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e40\u0e15\u0e34\u0e01\u0e2a\u0e4c\u0e41\u0e25\u0e30\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e40\u0e04\u0e04\u0e2d\u0e2a", + "MP": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e17\u0e34\u0e23\u0e4c\u0e19\u0e21\u0e32\u0e40\u0e23\u0e35\u0e22\u0e19\u0e32", + "VG": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e1a\u0e23\u0e34\u0e15\u0e34\u0e0a\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e08\u0e34\u0e19", + "PN": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e1e\u0e34\u0e15\u0e41\u0e04\u0e23\u0e4c\u0e19", + "FK": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e1f\u0e2d\u0e25\u0e4c\u0e01\u0e41\u0e25\u0e19\u0e14\u0e4c", + "FO": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e41\u0e1f\u0e42\u0e23", + "MH": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e21\u0e32\u0e23\u0e4c\u0e41\u0e0a\u0e25\u0e25\u0e4c", + "UM": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e23\u0e2d\u0e1a\u0e19\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e2a\u0e2b\u0e23\u0e31\u0e10\u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e32", + "VI": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e08\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e2a\u0e2b\u0e23\u0e31\u0e10\u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e32", + "AX": "\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e01\u0e32\u0e30\u0e42\u0e2d\u0e25\u0e31\u0e19\u0e14\u0e4c", + "AS": "\u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e31\u0e19\u0e0b\u0e32\u0e21\u0e31\u0e27", + "AU": "\u0e2d\u0e2d\u0e2a\u0e40\u0e15\u0e23\u0e40\u0e25\u0e35\u0e22", + "AT": "\u0e2d\u0e2d\u0e2a\u0e40\u0e15\u0e23\u0e35\u0e22", + "AD": "\u0e2d\u0e31\u0e19\u0e14\u0e2d\u0e23\u0e4c\u0e23\u0e32", + "AF": "\u0e2d\u0e31\u0e1f\u0e01\u0e32\u0e19\u0e34\u0e2a\u0e16\u0e32\u0e19", + "AZ": "\u0e2d\u0e32\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e44\u0e1a\u0e08\u0e32\u0e19", + "AR": "\u0e2d\u0e32\u0e23\u0e4c\u0e40\u0e08\u0e19\u0e15\u0e34\u0e19\u0e32", + "AM": "\u0e2d\u0e32\u0e23\u0e4c\u0e40\u0e21\u0e40\u0e19\u0e35\u0e22", + "AW": "\u0e2d\u0e32\u0e23\u0e39\u0e1a\u0e32", + "GQ": "\u0e2d\u0e34\u0e40\u0e04\u0e27\u0e17\u0e2d\u0e40\u0e23\u0e35\u0e22\u0e25\u0e01\u0e34\u0e19\u0e35", + "IT": "\u0e2d\u0e34\u0e15\u0e32\u0e25\u0e35", + "IN": "\u0e2d\u0e34\u0e19\u0e40\u0e14\u0e35\u0e22", + "ID": "\u0e2d\u0e34\u0e19\u0e42\u0e14\u0e19\u0e35\u0e40\u0e0b\u0e35\u0e22", + "IQ": "\u0e2d\u0e34\u0e23\u0e31\u0e01", + "IL": "\u0e2d\u0e34\u0e2a\u0e23\u0e32\u0e40\u0e2d\u0e25", + "IR": "\u0e2d\u0e34\u0e2b\u0e23\u0e48\u0e32\u0e19", + "EG": "\u0e2d\u0e35\u0e22\u0e34\u0e1b\u0e15\u0e4c", + "UZ": "\u0e2d\u0e38\u0e0b\u0e40\u0e1a\u0e01\u0e34\u0e2a\u0e16\u0e32\u0e19", + "UY": "\u0e2d\u0e38\u0e23\u0e38\u0e01\u0e27\u0e31\u0e22", + "EC": "\u0e40\u0e2d\u0e01\u0e27\u0e32\u0e14\u0e2d\u0e23\u0e4c", + "ET": "\u0e40\u0e2d\u0e18\u0e34\u0e42\u0e2d\u0e40\u0e1b\u0e35\u0e22", + "ER": "\u0e40\u0e2d\u0e23\u0e34\u0e40\u0e17\u0e23\u0e35\u0e22", + "SV": "\u0e40\u0e2d\u0e25\u0e0b\u0e31\u0e25\u0e27\u0e32\u0e14\u0e2d\u0e23\u0e4c", + "EE": "\u0e40\u0e2d\u0e2a\u0e42\u0e15\u0e40\u0e19\u0e35\u0e22", + "SZ": "\u0e40\u0e2d\u0e2a\u0e27\u0e32\u0e15\u0e35\u0e19\u0e35", + "AI": "\u0e41\u0e2d\u0e07\u0e01\u0e27\u0e34\u0e25\u0e25\u0e32", + "AO": "\u0e41\u0e2d\u0e07\u0e42\u0e01\u0e25\u0e32", + "AQ": "\u0e41\u0e2d\u0e19\u0e15\u0e32\u0e23\u0e4c\u0e01\u0e15\u0e34\u0e01\u0e32", + "AG": "\u0e41\u0e2d\u0e19\u0e15\u0e34\u0e01\u0e32\u0e41\u0e25\u0e30\u0e1a\u0e32\u0e23\u0e4c\u0e1a\u0e39\u0e14\u0e32", + "ZA": "\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e01\u0e32\u0e43\u0e15\u0e49", + "DZ": "\u0e41\u0e2d\u0e25\u0e08\u0e35\u0e40\u0e23\u0e35\u0e22", + "AL": "\u0e41\u0e2d\u0e25\u0e40\u0e1a\u0e40\u0e19\u0e35\u0e22", + "OM": "\u0e42\u0e2d\u0e21\u0e32\u0e19", + "IS": "\u0e44\u0e2d\u0e0b\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c", + "IE": "\u0e44\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c", + "HN": "\u0e2e\u0e2d\u0e19\u0e14\u0e39\u0e23\u0e31\u0e2a", + "HU": "\u0e2e\u0e31\u0e07\u0e01\u0e32\u0e23\u0e35", + "HT": "\u0e40\u0e2e\u0e15\u0e34" +} diff --git a/public/intl/country/tr-TR.json b/public/intl/country/tr-TR.json new file mode 100644 index 0000000..10a6f71 --- /dev/null +++ b/public/intl/country/tr-TR.json @@ -0,0 +1,252 @@ +{ + "UM": "ABD K\u00fc\u00e7\u00fck Harici Adalar\u0131", + "VI": "ABD Virjin Adalar\u0131", + "AF": "Afganistan", + "AX": "\u00c5land Adalar\u0131", + "DE": "Almanya", + "US": "Amerika Birle\u015fik Devletleri", + "AS": "Amerikan Samoas\u0131", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AQ": "Antarktika", + "AG": "Antigua ve Barbuda", + "AR": "Arjantin", + "AL": "Arnavutluk", + "AW": "Aruba", + "AU": "Avustralya", + "AT": "Avusturya", + "AZ": "Azerbaycan", + "BS": "Bahamalar", + "BH": "Bahreyn", + "BD": "Banglade\u015f", + "BB": "Barbados", + "EH": "Bat\u0131 Sahra", + "BY": "Belarus", + "BE": "Bel\u00e7ika", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "AE": "Birle\u015fik Arap Emirlikleri", + "GB": "Birle\u015fik Krall\u0131k", + "BO": "Bolivya", + "BA": "Bosna-Hersek", + "BW": "Botsvana", + "BV": "Bouvet Adas\u0131", + "BR": "Brezilya", + "IO": "Britanya Hint Okyanusu Topraklar\u0131", + "VG": "Britanya Virjin Adalar\u0131", + "BN": "Brunei", + "BG": "Bulgaristan", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "Butan", + "CV": "Cape Verde", + "KY": "Cayman Adalar\u0131", + "GI": "Cebelitar\u0131k", + "DZ": "Cezayir", + "CX": "Christmas Adas\u0131", + "DJ": "Cibuti", + "CC": "Cocos (Keeling) Adalar\u0131", + "CK": "Cook Adalar\u0131", + "CI": "C\u00f4te d\u2019Ivoire", + "CW": "Cura\u00e7ao", + "TD": "\u00c7ad", + "CZ": "\u00c7ekya", + "CN": "\u00c7in", + "HK": "\u00c7in Hong Kong \u00d6\u0130B", + "MO": "\u00c7in Makao \u00d6\u0130B", + "DK": "Danimarka", + "DO": "Dominik Cumhuriyeti", + "DM": "Dominika", + "EC": "Ekvador", + "GQ": "Ekvator Ginesi", + "SV": "El Salvador", + "ID": "Endonezya", + "ER": "Eritre", + "AM": "Ermenistan", + "EE": "Estonya", + "SZ": "Esvatini", + "ET": "Etiyopya", + "FK": "Falkland Adalar\u0131", + "FO": "Faroe Adalar\u0131", + "MA": "Fas", + "FJ": "Fiji", + "PH": "Filipinler", + "PS": "Filistin B\u00f6lgeleri", + "FI": "Finlandiya", + "FR": "Fransa", + "GF": "Frans\u0131z Guyanas\u0131", + "TF": "Frans\u0131z G\u00fcney Topraklar\u0131", + "PF": "Frans\u0131z Polinezyas\u0131", + "GA": "Gabon", + "GM": "Gambiya", + "GH": "Gana", + "GN": "Gine", + "GW": "Gine-Bissau", + "GD": "Grenada", + "GL": "Gr\u00f6nland", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GY": "Guyana", + "ZA": "G\u00fcney Afrika", + "GS": "G\u00fcney Georgia ve G\u00fcney Sandwich Adalar\u0131", + "KR": "G\u00fcney Kore", + "SS": "G\u00fcney Sudan", + "GE": "G\u00fcrcistan", + "HT": "Haiti", + "HM": "Heard Adas\u0131 ve McDonald Adalar\u0131", + "HR": "H\u0131rvatistan", + "IN": "Hindistan", + "NL": "Hollanda", + "HN": "Honduras", + "IQ": "Irak", + "IR": "\u0130ran", + "IE": "\u0130rlanda", + "ES": "\u0130spanya", + "IL": "\u0130srail", + "SE": "\u0130sve\u00e7", + "CH": "\u0130svi\u00e7re", + "IT": "\u0130talya", + "IS": "\u0130zlanda", + "JM": "Jamaika", + "JP": "Japonya", + "JE": "Jersey", + "KH": "Kambo\u00e7ya", + "CM": "Kamerun", + "CA": "Kanada", + "ME": "Karada\u011f", + "BQ": "Karayip Hollandas\u0131", + "QA": "Katar", + "KZ": "Kazakistan", + "KE": "Kenya", + "CY": "K\u0131br\u0131s", + "KG": "K\u0131rg\u0131zistan", + "KI": "Kiribati", + "CO": "Kolombiya", + "KM": "Komorlar", + "CG": "Kongo - Brazavil", + "CD": "Kongo - Kin\u015fasa", + "XK": "Kosova", + "CR": "Kosta Rika", + "KW": "Kuveyt", + "KP": "Kuzey Kore", + "MK": "Kuzey Makedonya", + "MP": "Kuzey Mariana Adalar\u0131", + "CU": "K\u00fcba", + "LA": "Laos", + "LS": "Lesotho", + "LV": "Letonya", + "LR": "Liberya", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Litvanya", + "LB": "L\u00fcbnan", + "LU": "L\u00fcksemburg", + "HU": "Macaristan", + "MG": "Madagaskar", + "MW": "Malavi", + "MV": "Maldivler", + "MY": "Malezya", + "ML": "Mali", + "MT": "Malta", + "IM": "Man Adas\u0131", + "MH": "Marshall Adalar\u0131", + "MQ": "Martinik", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Meksika", + "EG": "M\u0131s\u0131r", + "FM": "Mikronezya", + "MN": "Mo\u011folistan", + "MD": "Moldova", + "MC": "Monako", + "MS": "Montserrat", + "MR": "Moritanya", + "MZ": "Mozambik", + "MM": "Myanmar (Burma)", + "NA": "Namibya", + "NR": "Nauru", + "NP": "Nepal", + "NE": "Nijer", + "NG": "Nijerya", + "NI": "Nikaragua", + "NU": "Niue", + "NF": "Norfolk Adas\u0131", + "NO": "Norve\u00e7", + "CF": "Orta Afrika Cumhuriyeti", + "UZ": "\u00d6zbekistan", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua Yeni Gine", + "PY": "Paraguay", + "PE": "Peru", + "PN": "Pitcairn Adalar\u0131", + "PL": "Polonya", + "PT": "Portekiz", + "PR": "Porto Riko", + "RE": "Reunion", + "RO": "Romanya", + "RW": "Ruanda", + "RU": "Rusya", + "BL": "Saint Barthelemy", + "SH": "Saint Helena", + "KN": "Saint Kitts ve Nevis", + "LC": "Saint Lucia", + "MF": "Saint Martin", + "PM": "Saint Pierre ve Miquelon", + "VC": "Saint Vincent ve Grenadinler", + "WS": "Samoa", + "SM": "San Marino", + "ST": "Sao Tome ve Principe", + "SN": "Senegal", + "SC": "Sey\u015feller", + "RS": "S\u0131rbistan", + "SL": "Sierra Leone", + "SG": "Singapur", + "SX": "Sint Maarten", + "SK": "Slovakya", + "SI": "Slovenya", + "SB": "Solomon Adalar\u0131", + "SO": "Somali", + "LK": "Sri Lanka", + "SD": "Sudan", + "SR": "Surinam", + "SY": "Suriye", + "SA": "Suudi Arabistan", + "SJ": "Svalbard ve Jan Mayen", + "CL": "\u015eili", + "TJ": "Tacikistan", + "TZ": "Tanzanya", + "TH": "Tayland", + "TW": "Tayvan", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad ve Tobago", + "TN": "Tunus", + "TC": "Turks ve Caicos Adalar\u0131", + "TV": "Tuvalu", + "TR": "T\u00fcrkiye", + "TM": "T\u00fcrkmenistan", + "UG": "Uganda", + "UA": "Ukrayna", + "OM": "Umman", + "UY": "Uruguay", + "JO": "\u00dcrd\u00fcn", + "VU": "Vanuatu", + "VA": "Vatikan", + "VE": "Venezuela", + "VN": "Vietnam", + "WF": "Wallis ve Futuna", + "YE": "Yemen", + "NC": "Yeni Kaledonya", + "NZ": "Yeni Zelanda", + "GR": "Yunanistan", + "ZM": "Zambiya", + "ZW": "Zimbabve" +} diff --git a/public/intl/country/uk-UA.json b/public/intl/country/uk-UA.json new file mode 100644 index 0000000..ebd2e26 --- /dev/null +++ b/public/intl/country/uk-UA.json @@ -0,0 +1,252 @@ +{ + "AU": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0456\u044f", + "AT": "\u0410\u0432\u0441\u0442\u0440\u0456\u044f", + "AZ": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d", + "AX": "\u0410\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "AL": "\u0410\u043b\u0431\u0430\u043d\u0456\u044f", + "DZ": "\u0410\u043b\u0436\u0438\u0440", + "AS": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0435 \u0421\u0430\u043c\u043e\u0430", + "AO": "\u0410\u043d\u0433\u043e\u043b\u0430", + "AI": "\u0410\u043d\u0491\u0456\u043b\u044c\u044f", + "AD": "\u0410\u043d\u0434\u043e\u0440\u0440\u0430", + "AQ": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u043a\u0430", + "AG": "\u0410\u043d\u0442\u0438\u0491\u0443\u0430 \u0456 \u0411\u0430\u0440\u0431\u0443\u0434\u0430", + "AR": "\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0430", + "AW": "\u0410\u0440\u0443\u0431\u0430", + "AF": "\u0410\u0444\u0433\u0430\u043d\u0456\u0441\u0442\u0430\u043d", + "BS": "\u0411\u0430\u0433\u0430\u043c\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "BD": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448", + "BB": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441", + "BH": "\u0411\u0430\u0445\u0440\u0435\u0439\u043d", + "BZ": "\u0411\u0435\u043b\u0456\u0437", + "BE": "\u0411\u0435\u043b\u044c\u0491\u0456\u044f", + "BJ": "\u0411\u0435\u043d\u0456\u043d", + "BM": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "BY": "\u0411\u0456\u043b\u043e\u0440\u0443\u0441\u044c", + "BG": "\u0411\u043e\u043b\u0433\u0430\u0440\u0456\u044f", + "BO": "\u0411\u043e\u043b\u0456\u0432\u0456\u044f", + "BA": "\u0411\u043e\u0441\u043d\u0456\u044f \u0456 \u0413\u0435\u0440\u0446\u0435\u0491\u043e\u0432\u0438\u043d\u0430", + "BW": "\u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430", + "BR": "\u0411\u0440\u0430\u0437\u0456\u043b\u0456\u044f", + "IO": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0430 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0456\u044f \u0432 \u0406\u043d\u0434\u0456\u0439\u0441\u044c\u043a\u043e\u043c\u0443 \u041e\u043a\u0435\u0430\u043d\u0456", + "VG": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0456 \u0412\u0456\u0440\u0433\u0456\u043d\u0441\u044c\u043a\u0456 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BN": "\u0411\u0440\u0443\u043d\u0435\u0439", + "BF": "\u0411\u0443\u0440\u043a\u0456\u043d\u0430-\u0424\u0430\u0441\u043e", + "BI": "\u0411\u0443\u0440\u0443\u043d\u0434\u0456", + "BT": "\u0411\u0443\u0442\u0430\u043d", + "VU": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443", + "VA": "\u0412\u0430\u0442\u0438\u043a\u0430\u043d", + "GB": "\u0412\u0435\u043b\u0438\u043a\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0456\u044f", + "VE": "\u0412\u0435\u043d\u0435\u0441\u0443\u0435\u043b\u0430", + "UM": "\u0412\u0456\u0434\u0434\u0430\u043b\u0435\u043d\u0456 \u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u0421\u0428\u0410", + "VI": "\u0412\u0456\u0440\u0433\u0456\u043d\u0441\u044c\u043a\u0456 \u043e\u0441\u0442\u0440\u043e\u0432\u0438, \u0421\u0428\u0410", + "AM": "\u0412\u0456\u0440\u043c\u0435\u043d\u0456\u044f", + "VN": "\u0412\u02bc\u0454\u0442\u043d\u0430\u043c", + "GA": "\u0413\u0430\u0431\u043e\u043d", + "HT": "\u0413\u0430\u0457\u0442\u0456", + "GM": "\u0413\u0430\u043c\u0431\u0456\u044f", + "GH": "\u0413\u0430\u043d\u0430", + "GN": "\u0413\u0432\u0456\u043d\u0435\u044f", + "GW": "\u0413\u0432\u0456\u043d\u0435\u044f-\u0411\u0456\u0441\u0430\u0443", + "HN": "\u0413\u043e\u043d\u0434\u0443\u0440\u0430\u0441", + "HK": "\u0413\u043e\u043d\u043a\u043e\u043d\u0433, \u041e.\u0410.\u0420. \u041a\u0438\u0442\u0430\u044e", + "GR": "\u0413\u0440\u0435\u0446\u0456\u044f", + "GE": "\u0413\u0440\u0443\u0437\u0456\u044f", + "GY": "\u0490\u0430\u0439\u0430\u043d\u0430", + "GP": "\u0490\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0430", + "GT": "\u0490\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430", + "GG": "\u0490\u0435\u0440\u043d\u0441\u0456", + "GI": "\u0490\u0456\u0431\u0440\u0430\u043b\u0442\u0430\u0440", + "GD": "\u0490\u0440\u0435\u043d\u0430\u0434\u0430", + "GL": "\u0490\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0456\u044f", + "GU": "\u0490\u0443\u0430\u043c", + "DK": "\u0414\u0430\u043d\u0456\u044f", + "JE": "\u0414\u0436\u0435\u0440\u0441\u0456", + "DJ": "\u0414\u0436\u0438\u0431\u0443\u0442\u0456", + "DM": "\u0414\u043e\u043c\u0456\u043d\u0456\u043a\u0430", + "DO": "\u0414\u043e\u043c\u0456\u043d\u0456\u043a\u0430\u043d\u0441\u044c\u043a\u0430 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430", + "EC": "\u0415\u043a\u0432\u0430\u0434\u043e\u0440", + "GQ": "\u0415\u043a\u0432\u0430\u0442\u043e\u0440\u0456\u0430\u043b\u044c\u043d\u0430 \u0413\u0432\u0456\u043d\u0435\u044f", + "ER": "\u0415\u0440\u0438\u0442\u0440\u0435\u044f", + "SZ": "\u0415\u0441\u0432\u0430\u0442\u0456\u043d\u0456", + "EE": "\u0415\u0441\u0442\u043e\u043d\u0456\u044f", + "ET": "\u0415\u0444\u0456\u043e\u043f\u0456\u044f", + "EG": "\u0404\u0433\u0438\u043f\u0435\u0442", + "YE": "\u0404\u043c\u0435\u043d", + "ZM": "\u0417\u0430\u043c\u0431\u0456\u044f", + "EH": "\u0417\u0430\u0445\u0456\u0434\u043d\u0430 \u0421\u0430\u0445\u0430\u0440\u0430", + "ZW": "\u0417\u0456\u043c\u0431\u0430\u0431\u0432\u0435", + "IL": "\u0406\u0437\u0440\u0430\u0457\u043b\u044c", + "IN": "\u0406\u043d\u0434\u0456\u044f", + "ID": "\u0406\u043d\u0434\u043e\u043d\u0435\u0437\u0456\u044f", + "IQ": "\u0406\u0440\u0430\u043a", + "IR": "\u0406\u0440\u0430\u043d", + "IE": "\u0406\u0440\u043b\u0430\u043d\u0434\u0456\u044f", + "IS": "\u0406\u0441\u043b\u0430\u043d\u0434\u0456\u044f", + "ES": "\u0406\u0441\u043f\u0430\u043d\u0456\u044f", + "IT": "\u0406\u0442\u0430\u043b\u0456\u044f", + "JO": "\u0419\u043e\u0440\u0434\u0430\u043d\u0456\u044f", + "CV": "\u041a\u0430\u0431\u043e-\u0412\u0435\u0440\u0434\u0435", + "KZ": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", + "KY": "\u041a\u0430\u0439\u043c\u0430\u043d\u043e\u0432\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "KH": "\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430", + "CM": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d", + "CA": "\u041a\u0430\u043d\u0430\u0434\u0430", + "QA": "\u041a\u0430\u0442\u0430\u0440", + "KE": "\u041a\u0435\u043d\u0456\u044f", + "KG": "\u041a\u0438\u0440\u0433\u0438\u0437\u0441\u0442\u0430\u043d", + "CN": "\u041a\u0438\u0442\u0430\u0439", + "CY": "\u041a\u0456\u043f\u0440", + "KI": "\u041a\u0456\u0440\u0456\u0431\u0430\u0442\u0456", + "CC": "\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u0456 (\u041a\u0456\u043b\u0456\u043d\u0491) \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "XK": "\u041a\u043e\u0441\u043e\u0432\u043e", + "CO": "\u041a\u043e\u043b\u0443\u043c\u0431\u0456\u044f", + "KM": "\u041a\u043e\u043c\u043e\u0440\u0438", + "CG": "\u041a\u043e\u043d\u0433\u043e \u2013 \u0411\u0440\u0430\u0437\u0437\u0430\u0432\u0456\u043b\u044c", + "CD": "\u041a\u043e\u043d\u0433\u043e \u2013 \u041a\u0456\u043d\u0448\u0430\u0441\u0430", + "CR": "\u041a\u043e\u0441\u0442\u0430-\u0420\u0456\u043a\u0430", + "CI": "\u041a\u043e\u0442-\u0434\u02bc\u0406\u0432\u0443\u0430\u0440", + "CU": "\u041a\u0443\u0431\u0430", + "KW": "\u041a\u0443\u0432\u0435\u0439\u0442", + "CW": "\u041a\u044e\u0440\u0430\u0441\u0430\u043e", + "LA": "\u041b\u0430\u043e\u0441", + "LV": "\u041b\u0430\u0442\u0432\u0456\u044f", + "LS": "\u041b\u0435\u0441\u043e\u0442\u043e", + "LT": "\u041b\u0438\u0442\u0432\u0430", + "LR": "\u041b\u0456\u0431\u0435\u0440\u0456\u044f", + "LB": "\u041b\u0456\u0432\u0430\u043d", + "LY": "\u041b\u0456\u0432\u0456\u044f", + "LI": "\u041b\u0456\u0445\u0442\u0435\u043d\u0448\u0442\u0435\u0439\u043d", + "LU": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0491", + "MR": "\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0456\u044f", + "MU": "\u041c\u0430\u0432\u0440\u0456\u043a\u0456\u0439", + "MG": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440", + "YT": "\u041c\u0430\u0439\u043e\u0442\u0442\u0430", + "MO": "\u041c\u0430\u043a\u0430\u043e, \u041e.\u0410.\u0420 \u041a\u0438\u0442\u0430\u044e", + "MW": "\u041c\u0430\u043b\u0430\u0432\u0456", + "MY": "\u041c\u0430\u043b\u0430\u0439\u0437\u0456\u044f", + "ML": "\u041c\u0430\u043b\u0456", + "MV": "\u041c\u0430\u043b\u044c\u0434\u0456\u0432\u0438", + "MT": "\u041c\u0430\u043b\u044c\u0442\u0430", + "MA": "\u041c\u0430\u0440\u043e\u043a\u043a\u043e", + "MQ": "\u041c\u0430\u0440\u0442\u0456\u043d\u0456\u043a\u0430", + "MH": "\u041c\u0430\u0440\u0448\u0430\u043b\u043b\u043e\u0432\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "MX": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430", + "FM": "\u041c\u0456\u043a\u0440\u043e\u043d\u0435\u0437\u0456\u044f", + "MZ": "\u041c\u043e\u0437\u0430\u043c\u0431\u0456\u043a", + "MD": "\u041c\u043e\u043b\u0434\u043e\u0432\u0430", + "MC": "\u041c\u043e\u043d\u0430\u043a\u043e", + "MN": "\u041c\u043e\u043d\u0433\u043e\u043b\u0456\u044f", + "MS": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0440\u0430\u0442", + "MM": "\u041c\u02bc\u044f\u043d\u043c\u0430 (\u0411\u0456\u0440\u043c\u0430)", + "NA": "\u041d\u0430\u043c\u0456\u0431\u0456\u044f", + "NR": "\u041d\u0430\u0443\u0440\u0443", + "NP": "\u041d\u0435\u043f\u0430\u043b", + "NE": "\u041d\u0456\u0433\u0435\u0440", + "NG": "\u041d\u0456\u0433\u0435\u0440\u0456\u044f", + "NL": "\u041d\u0456\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0438", + "BQ": "\u041d\u0456\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0456 \u041a\u0430\u0440\u0438\u0431\u0441\u044c\u043a\u0456 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "NI": "\u041d\u0456\u043a\u0430\u0440\u0430\u0491\u0443\u0430", + "DE": "\u041d\u0456\u043c\u0435\u0447\u0447\u0438\u043d\u0430", + "NU": "\u041d\u0456\u0443\u0435", + "NZ": "\u041d\u043e\u0432\u0430 \u0417\u0435\u043b\u0430\u043d\u0434\u0456\u044f", + "NC": "\u041d\u043e\u0432\u0430 \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0456\u044f", + "NO": "\u041d\u043e\u0440\u0432\u0435\u0491\u0456\u044f", + "AE": "\u041e\u0431\u02bc\u0454\u0434\u043d\u0430\u043d\u0456 \u0410\u0440\u0430\u0431\u0441\u044c\u043a\u0456 \u0415\u043c\u0456\u0440\u0430\u0442\u0438", + "OM": "\u041e\u043c\u0430\u043d", + "BV": "\u041e\u0441\u0442\u0440\u0456\u0432 \u0411\u0443\u0432\u0435", + "IM": "\u041e\u0441\u0442\u0440\u0456\u0432 \u041c\u0435\u043d", + "NF": "\u041e\u0441\u0442\u0440\u0456\u0432 \u041d\u043e\u0440\u0444\u043e\u043b\u043a", + "CX": "\u041e\u0441\u0442\u0440\u0456\u0432 \u0420\u0456\u0437\u0434\u0432\u0430", + "SH": "\u041e\u0441\u0442\u0440\u0456\u0432 \u0421\u0432\u044f\u0442\u043e\u0457 \u0404\u043b\u0435\u043d\u0438", + "HM": "\u041e\u0441\u0442\u0440\u043e\u0432\u0438 \u0413\u0435\u0440\u0434 \u0456 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u0434", + "CK": "\u041e\u0441\u0442\u0440\u043e\u0432\u0438 \u041a\u0443\u043a\u0430", + "PN": "\u041e\u0441\u0442\u0440\u043e\u0432\u0438 \u041f\u0456\u0442\u043a\u0435\u0440\u043d", + "TC": "\u041e\u0441\u0442\u0440\u043e\u0432\u0438 \u0422\u0435\u0440\u043a\u0441 \u0456 \u041a\u0430\u0439\u043a\u043e\u0441", + "PK": "\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d", + "PW": "\u041f\u0430\u043b\u0430\u0443", + "PS": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0456\u0457", + "PA": "\u041f\u0430\u043d\u0430\u043c\u0430", + "PG": "\u041f\u0430\u043f\u0443\u0430-\u041d\u043e\u0432\u0430 \u0490\u0432\u0456\u043d\u0435\u044f", + "PY": "\u041f\u0430\u0440\u0430\u0491\u0432\u0430\u0439", + "PE": "\u041f\u0435\u0440\u0443", + "GS": "\u041f\u0456\u0432\u0434\u0435\u043d\u043d\u0430 \u0414\u0436\u043e\u0440\u0434\u0436\u0456\u044f \u0442\u0430 \u041f\u0456\u0432\u0434\u0435\u043d\u043d\u0456 \u0421\u0430\u043d\u0434\u0432\u0456\u0447\u0435\u0432\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "KR": "\u041f\u0456\u0432\u0434\u0435\u043d\u043d\u0430 \u041a\u043e\u0440\u0435\u044f", + "SS": "\u041f\u0456\u0432\u0434\u0435\u043d\u043d\u0438\u0439 \u0421\u0443\u0434\u0430\u043d", + "ZA": "\u041f\u0456\u0432\u0434\u0435\u043d\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0430 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430", + "KP": "\u041f\u0456\u0432\u043d\u0456\u0447\u043d\u0430 \u041a\u043e\u0440\u0435\u044f", + "MK": "\u041f\u0456\u0432\u043d\u0456\u0447\u043d\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0456\u044f", + "MP": "\u041f\u0456\u0432\u043d\u0456\u0447\u043d\u0456 \u041c\u0430\u0440\u0456\u0430\u043d\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "PL": "\u041f\u043e\u043b\u044c\u0449\u0430", + "PT": "\u041f\u043e\u0440\u0442\u0443\u0491\u0430\u043b\u0456\u044f", + "PR": "\u041f\u0443\u0435\u0440\u0442\u043e-\u0420\u0456\u043a\u043e", + "RE": "\u0420\u0435\u044e\u043d\u044c\u0439\u043e\u043d", + "RU": "\u0420\u043e\u0441\u0456\u044f", + "RW": "\u0420\u0443\u0430\u043d\u0434\u0430", + "RO": "\u0420\u0443\u043c\u0443\u043d\u0456\u044f", + "SV": "\u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440", + "WS": "\u0421\u0430\u043c\u043e\u0430", + "SM": "\u0421\u0430\u043d-\u041c\u0430\u0440\u0456\u043d\u043e", + "ST": "\u0421\u0430\u043d-\u0422\u043e\u043c\u0435 \u0456 \u041f\u0440\u0456\u043d\u0441\u0456\u043f\u0456", + "SA": "\u0421\u0430\u0443\u0434\u0456\u0432\u0441\u044c\u043a\u0430 \u0410\u0440\u0430\u0432\u0456\u044f", + "SC": "\u0421\u0435\u0439\u0448\u0435\u043b\u044c\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "BL": "\u0421\u0435\u043d-\u0411\u0430\u0440\u0442\u0435\u043b\u044c\u043c\u0456", + "MF": "\u0421\u0435\u043d-\u041c\u0430\u0440\u0442\u0435\u043d", + "PM": "\u0421\u0435\u043d-\u041f\u02bc\u0454\u0440 \u0456 \u041c\u0456\u043a\u0435\u043b\u043e\u043d", + "SN": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b", + "VC": "\u0421\u0435\u043d\u0442-\u0412\u0456\u043d\u0441\u0435\u043d\u0442 \u0456 \u0490\u0440\u0435\u043d\u0430\u0434\u0456\u043d\u0438", + "KN": "\u0421\u0435\u043d\u0442-\u041a\u0456\u0442\u0441 \u0456 \u041d\u0435\u0432\u0456\u0441", + "LC": "\u0421\u0435\u043d\u0442-\u041b\u044e\u0441\u0456\u044f", + "RS": "\u0421\u0435\u0440\u0431\u0456\u044f", + "SY": "\u0421\u0438\u0440\u0456\u044f", + "SG": "\u0421\u0456\u043d\u0433\u0430\u043f\u0443\u0440", + "SX": "\u0421\u0456\u043d\u0442-\u041c\u0430\u0440\u0442\u0435\u043d", + "SK": "\u0421\u043b\u043e\u0432\u0430\u0447\u0447\u0438\u043d\u0430", + "SI": "\u0421\u043b\u043e\u0432\u0435\u043d\u0456\u044f", + "SB": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "SO": "\u0421\u043e\u043c\u0430\u043b\u0456", + "US": "\u0421\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0456 \u0428\u0442\u0430\u0442\u0438", + "SD": "\u0421\u0443\u0434\u0430\u043d", + "SR": "\u0421\u0443\u0440\u0456\u043d\u0430\u043c", + "SL": "\u0421\u044c\u0454\u0440\u0440\u0430-\u041b\u0435\u043e\u043d\u0435", + "TJ": "\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d", + "TH": "\u0422\u0430\u0457\u043b\u0430\u043d\u0434", + "TW": "\u0422\u0430\u0439\u0432\u0430\u043d\u044c", + "TZ": "\u0422\u0430\u043d\u0437\u0430\u043d\u0456\u044f", + "TL": "\u0422\u0456\u043c\u043e\u0440-\u041b\u0435\u0448\u0442\u0456", + "TG": "\u0422\u043e\u0433\u043e", + "TK": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443", + "TO": "\u0422\u043e\u043d\u0491\u0430", + "TT": "\u0422\u0440\u0456\u043d\u0456\u0434\u0430\u0434 \u0456 \u0422\u043e\u0431\u0430\u0491\u043e", + "TV": "\u0422\u0443\u0432\u0430\u043b\u0443", + "TN": "\u0422\u0443\u043d\u0456\u0441", + "TR": "\u0422\u0443\u0440\u0435\u0447\u0447\u0438\u043d\u0430", + "TM": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0456\u0441\u0442\u0430\u043d", + "UG": "\u0423\u0433\u0430\u043d\u0434\u0430", + "HU": "\u0423\u0433\u043e\u0440\u0449\u0438\u043d\u0430", + "UZ": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d", + "UA": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", + "WF": "\u0423\u043e\u043b\u043b\u0456\u0441 \u0456 \u0424\u0443\u0442\u0443\u043d\u0430", + "UY": "\u0423\u0440\u0443\u0491\u0432\u0430\u0439", + "FO": "\u0424\u0430\u0440\u0435\u0440\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "FJ": "\u0424\u0456\u0434\u0436\u0456", + "PH": "\u0424\u0456\u043b\u0456\u043f\u043f\u0456\u043d\u0438", + "FI": "\u0424\u0456\u043d\u043b\u044f\u043d\u0434\u0456\u044f", + "FK": "\u0424\u043e\u043b\u043a\u043b\u0435\u043d\u0434\u0441\u044c\u043a\u0456 \u041e\u0441\u0442\u0440\u043e\u0432\u0438", + "FR": "\u0424\u0440\u0430\u043d\u0446\u0456\u044f", + "GF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0430 \u0490\u0432\u0456\u0430\u043d\u0430", + "PF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0430 \u041f\u043e\u043b\u0456\u043d\u0435\u0437\u0456\u044f", + "TF": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0456 \u041f\u0456\u0432\u0434\u0435\u043d\u043d\u0456 \u0422\u0435\u0440\u0438\u0442\u043e\u0440\u0456\u0457", + "HR": "\u0425\u043e\u0440\u0432\u0430\u0442\u0456\u044f", + "CF": "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0430 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430", + "TD": "\u0427\u0430\u0434", + "CZ": "\u0427\u0435\u0445\u0456\u044f", + "CL": "\u0427\u0456\u043b\u0456", + "ME": "\u0427\u043e\u0440\u043d\u043e\u0433\u043e\u0440\u0456\u044f", + "CH": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0456\u044f", + "SE": "\u0428\u0432\u0435\u0446\u0456\u044f", + "SJ": "\u0428\u043f\u0456\u0446\u0431\u0435\u0440\u0433\u0435\u043d \u0442\u0430 \u042f\u043d-\u041c\u0430\u0454\u043d", + "LK": "\u0428\u0440\u0456-\u041b\u0430\u043d\u043a\u0430", + "JM": "\u042f\u043c\u0430\u0439\u043a\u0430", + "JP": "\u042f\u043f\u043e\u043d\u0456\u044f" +} diff --git a/public/intl/country/ur-PK.json b/public/intl/country/ur-PK.json new file mode 100644 index 0000000..4f72617 --- /dev/null +++ b/public/intl/country/ur-PK.json @@ -0,0 +1,252 @@ +{ + "IT": "\u0627\u0679\u0644\u06cc", + "AR": "\u0627\u0631\u062c\u0646\u0679\u06cc\u0646\u0627", + "JO": "\u0627\u0631\u062f\u0646", + "AW": "\u0627\u0631\u0648\u0628\u0627", + "ER": "\u0627\u0631\u06cc\u0679\u06cc\u0631\u06cc\u0627", + "UZ": "\u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646", + "GQ": "\u0627\u0633\u062a\u0648\u0627\u0626\u06cc \u06af\u06cc\u0627\u0646\u0627", + "EE": "\u0627\u0633\u0679\u0648\u0646\u06cc\u0627", + "IL": "\u0627\u0633\u0631\u0627\u0626\u06cc\u0644", + "AF": "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646", + "SV": "\u0627\u0644 \u0633\u0644\u0648\u0627\u0688\u0648\u0631", + "AL": "\u0627\u0644\u0628\u0627\u0646\u06cc\u06c1", + "DZ": "\u0627\u0644\u062c\u06cc\u0631\u06cc\u0627", + "UM": "\u0627\u0645\u0631\u06cc\u06a9\u06c1 \u0633\u06d2 \u0628\u0627\u06c1\u0631 \u06a9\u06d2 \u0686\u06be\u0648\u0679\u06d2 \u062c\u0632\u0627\u0626\u0632", + "AS": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0633\u0627\u0645\u0648\u0622", + "VI": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0648\u0631\u062c\u0646 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "AQ": "\u0627\u0646\u0679\u0627\u0631\u06a9\u0679\u06cc\u06a9\u0627", + "AG": "\u0627\u0646\u0679\u06cc\u06af\u0648\u0627 \u0627\u0648\u0631 \u0628\u0627\u0631\u0628\u0648\u062f\u0627", + "AD": "\u0627\u0646\u0688\u0648\u0631\u0627", + "ID": "\u0627\u0646\u0688\u0648\u0646\u06cc\u0634\u06cc\u0627", + "AO": "\u0627\u0646\u06af\u0648\u0644\u0627", + "AI": "\u0627\u0646\u06af\u0648\u0626\u06cc\u0644\u0627", + "ET": "\u0627\u06cc\u062a\u06be\u0648\u067e\u06cc\u0627", + "IR": "\u0627\u06cc\u0631\u0627\u0646", + "EC": "\u0627\u06cc\u06a9\u0648\u0627\u0688\u0648\u0631", + "AZ": "\u0622\u0630\u0631\u0628\u0627\u0626\u06cc\u062c\u0627\u0646", + "AM": "\u0622\u0631\u0645\u06cc\u0646\u06cc\u0627", + "AT": "\u0622\u0633\u0679\u0631\u06cc\u0627", + "AU": "\u0622\u0633\u0679\u0631\u06cc\u0644\u06cc\u0627", + "AX": "\u0622\u0644\u06cc\u0646\u0688 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "IE": "\u0622\u0626\u0631\u0644\u06cc\u0646\u0688", + "IS": "\u0622\u0626\u0633 \u0644\u06cc\u0646\u0688", + "IM": "\u0622\u0626\u0644 \u0622\u0641 \u0645\u06cc\u0646", + "BB": "\u0628\u0627\u0631\u0628\u0627\u0688\u0648\u0633", + "BH": "\u0628\u062d\u0631\u06cc\u0646", + "BR": "\u0628\u0631\u0627\u0632\u06cc\u0644", + "VG": "\u0628\u0631\u0679\u0634 \u0648\u0631\u062c\u0646 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "IO": "\u0628\u0631\u0637\u0627\u0646\u0648\u06cc \u0628\u062d\u0631 \u06c1\u0646\u062f \u06a9\u0627 \u0639\u0644\u0627\u0642\u06c1", + "BF": "\u0628\u0631\u06a9\u06cc\u0646\u0627 \u0641\u0627\u0633\u0648", + "BM": "\u0628\u0631\u0645\u0648\u062f\u0627", + "BN": "\u0628\u0631\u0648\u0646\u0627\u0626\u06cc", + "BI": "\u0628\u0631\u0648\u0646\u0688\u06cc", + "BG": "\u0628\u0644\u063a\u0627\u0631\u06cc\u06c1", + "BD": "\u0628\u0646\u06af\u0644\u06c1 \u062f\u06cc\u0634", + "BW": "\u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627", + "BA": "\u0628\u0648\u0633\u0646\u06cc\u0627 \u0627\u0648\u0631 \u06c1\u0631\u0632\u06cc\u06af\u0648\u0648\u06cc\u0646\u0627", + "BO": "\u0628\u0648\u0644\u06cc\u0648\u06cc\u0627", + "BV": "\u0628\u0624\u0648\u06cc\u0679 \u0622\u0626\u0644\u06cc\u0646\u0688", + "BS": "\u0628\u06c1\u0627\u0645\u0627\u0633", + "BY": "\u0628\u06cc\u0644\u0627\u0631\u0648\u0633", + "BZ": "\u0628\u06cc\u0644\u0627\u0626\u0632", + "BE": "\u0628\u06cc\u0644\u062c\u06cc\u0645", + "BJ": "\u0628\u06cc\u0646\u0646", + "IN": "\u0628\u06be\u0627\u0631\u062a", + "BT": "\u0628\u06be\u0648\u0679\u0627\u0646", + "PG": "\u067e\u0627\u067e\u0648\u0622 \u0646\u06cc\u0648 \u06af\u0646\u06cc", + "PK": "\u067e\u0627\u06a9\u0633\u062a\u0627\u0646", + "PA": "\u067e\u0627\u0646\u0627\u0645\u06c1", + "PN": "\u067e\u0679\u06a9\u0627\u0626\u0631\u0646 \u062c\u0632\u0627\u0626\u0631", + "PT": "\u067e\u0631\u062a\u06af\u0627\u0644", + "PW": "\u067e\u0644\u0627\u0624", + "PL": "\u067e\u0648\u0644\u06cc\u0646\u0688", + "PY": "\u067e\u06cc\u0631\u0627\u06af\u0648\u0626\u06d2", + "PE": "\u067e\u06cc\u0631\u0648", + "PR": "\u067e\u06cc\u0648\u0631\u0679\u0648 \u0631\u06cc\u06a9\u0648", + "TJ": "\u062a\u0627\u062c\u06a9\u0633\u062a\u0627\u0646", + "TW": "\u062a\u0627\u0626\u06cc\u0648\u0627\u0646", + "TM": "\u062a\u0631\u06a9\u0645\u0627\u0646\u0633\u062a\u0627\u0646", + "TR": "\u062a\u0631\u06a9\u06cc", + "TT": "\u062a\u0631\u06cc\u0646\u06cc\u062f\u0627\u062f \u0627\u0648\u0631 \u0679\u0648\u0628\u0627\u06af\u0648", + "TZ": "\u062a\u0646\u0632\u0627\u0646\u06cc\u06c1", + "TN": "\u062a\u0648\u0646\u0633", + "TL": "\u062a\u06cc\u0645\u0648\u0631 \u0644\u06cc\u0633\u0679", + "TH": "\u062a\u06be\u0627\u0626\u06cc \u0644\u06cc\u0646\u0688", + "TC": "\u0679\u0631\u06a9\u0633 \u0627\u0648\u0631 \u06a9\u06cc\u06a9\u0648\u0633 \u062c\u0632\u0627\u0626\u0631", + "TK": "\u0679\u0648\u06a9\u06cc\u0644\u0627\u0624", + "TG": "\u0679\u0648\u06af\u0648", + "TO": "\u0679\u0648\u0646\u06af\u0627", + "TV": "\u0679\u0648\u0648\u0627\u0644\u0648", + "JP": "\u062c\u0627\u067e\u0627\u0646", + "GE": "\u062c\u0627\u0631\u062c\u06cc\u0627", + "GI": "\u062c\u0628\u0644 \u0627\u0644\u0637\u0627\u0631\u0642", + "DJ": "\u062c\u0628\u0648\u062a\u06cc", + "JE": "\u062c\u0631\u0633\u06cc", + "DE": "\u062c\u0631\u0645\u0646\u06cc", + "FO": "\u062c\u0632\u0627\u0626\u0631 \u0641\u0627\u0631\u0648", + "CX": "\u062c\u0632\u06cc\u0631\u06c1 \u06a9\u0631\u0633\u0645\u0633", + "JM": "\u062c\u0645\u0627\u0626\u06cc\u06a9\u0627", + "DO": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0688\u0648\u0645\u064a\u0646\u064a\u06a9\u0646", + "ZA": "\u062c\u0646\u0648\u0628\u06cc \u0627\u0641\u0631\u06cc\u0642\u06c1", + "GS": "\u062c\u0646\u0648\u0628\u06cc \u062c\u0627\u0631\u062c\u06cc\u0627 \u0627\u0648\u0631 \u062c\u0646\u0648\u0628\u06cc \u0633\u06cc\u0646\u0688\u0648\u0686 \u062c\u0632\u0627\u0626\u0631", + "SS": "\u062c\u0646\u0648\u0628\u06cc \u0633\u0648\u0688\u0627\u0646", + "KR": "\u062c\u0646\u0648\u0628\u06cc \u06a9\u0648\u0631\u06cc\u0627", + "TD": "\u0686\u0627\u0688", + "CL": "\u0686\u0644\u06cc", + "CZ": "\u0686\u06cc\u06a9\u06cc\u0627", + "CN": "\u0686\u06cc\u0646", + "DK": "\u0688\u0646\u0645\u0627\u0631\u06a9", + "DM": "\u0688\u0648\u0645\u0646\u06cc\u06a9\u0627", + "RW": "\u0631\u0648\u0627\u0646\u0688\u0627", + "RU": "\u0631\u0648\u0633", + "RO": "\u0631\u0648\u0645\u0627\u0646\u06cc\u06c1", + "RE": "\u0631\u06cc \u06cc\u0648\u0646\u06cc\u0646", + "US": "\u0631\u06cc\u0627\u0633\u062a \u06c1\u0627\u0626\u06d2 \u0645\u062a\u062d\u062f\u06c1 \u0627\u0645\u0631\u06cc\u06a9\u06c1", + "ZM": "\u0632\u0627\u0645\u0628\u06cc\u0627", + "ZW": "\u0632\u0645\u0628\u0627\u0628\u0648\u06d2", + "WS": "\u0633\u0627\u0645\u0648\u0622", + "SM": "\u0633\u0627\u0646 \u0645\u0627\u0631\u06cc\u0646\u0648", + "ST": "\u0633\u0627\u0624 \u0679\u0648\u0645\u06d2 \u0627\u0648\u0631 \u067e\u0631\u0646\u0633\u067e\u06d2", + "RS": "\u0633\u0631\u0628\u06cc\u0627", + "LK": "\u0633\u0631\u06cc \u0644\u0646\u06a9\u0627", + "SC": "\u0633\u0634\u0644\u06cc\u0632", + "SA": "\u0633\u0639\u0648\u062f\u06cc \u0639\u0631\u0628", + "GB": "\u0633\u0644\u0637\u0646\u062a \u0645\u062a\u062d\u062f\u06c1", + "SK": "\u0633\u0644\u0648\u0648\u0627\u06a9\u06cc\u06c1", + "SI": "\u0633\u0644\u0648\u0648\u06cc\u0646\u06cc\u0627", + "SX": "\u0633\u0646\u0679 \u0645\u0627\u0631\u0679\u0646", + "SG": "\u0633\u0646\u06af\u0627\u067e\u0648\u0631", + "SZ": "\u0633\u0648\u0627\u062a\u0646\u06cc", + "SJ": "\u0633\u0648\u0627\u0644\u0628\u0631\u0688 \u0627\u0648\u0631 \u062c\u0627\u0646 \u0645\u0627\u06cc\u0646", + "SD": "\u0633\u0648\u0688\u0627\u0646", + "SR": "\u0633\u0648\u0631\u06cc\u0646\u0627\u0645", + "SB": "\u0633\u0648\u0644\u0648\u0645\u0646 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "CH": "\u0633\u0648\u0626\u0679\u0632\u0631 \u0644\u06cc\u0646\u0688", + "SE": "\u0633\u0648\u06cc\u0688\u0646", + "SL": "\u0633\u06cc\u0631\u0627\u0644\u06cc\u0648\u0646", + "BL": "\u0633\u06cc\u0646\u0679 \u0628\u0631\u062a\u06be\u0644\u06cc\u0645\u06cc", + "PM": "\u0633\u06cc\u0646\u0679 \u067e\u06cc\u0626\u0631 \u0627\u0648\u0631 \u0645\u06cc\u06a9\u0644\u06cc\u0626\u0648\u0646", + "KN": "\u0633\u06cc\u0646\u0679 \u06a9\u0679\u0633 \u0627\u0648\u0631 \u0646\u06cc\u0648\u06cc\u0633", + "LC": "\u0633\u06cc\u0646\u0679 \u0644\u0648\u0633\u06cc\u0627", + "MF": "\u0633\u06cc\u0646\u0679 \u0645\u0627\u0631\u0679\u0646", + "VC": "\u0633\u06cc\u0646\u0679 \u0648\u0646\u0633\u0646\u0679 \u0627\u0648\u0631 \u06af\u0631\u06cc\u0646\u06cc\u0688\u0627\u0626\u0646\u0632", + "SH": "\u0633\u06cc\u0646\u0679 \u06c1\u06cc\u0644\u06cc\u0646\u0627", + "SN": "\u0633\u06cc\u0646\u06cc\u06af\u0644", + "SY": "\u0634\u0627\u0645", + "KP": "\u0634\u0645\u0627\u0644\u06cc \u06a9\u0648\u0631\u06cc\u0627", + "MP": "\u0634\u0645\u0627\u0644\u06cc \u0645\u0627\u0631\u06cc\u0627\u0646\u0627 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "MK": "\u0634\u0645\u0627\u0644\u06cc \u0645\u0642\u062f\u0648\u0646\u06cc\u06c1", + "SO": "\u0635\u0648\u0645\u0627\u0644\u06cc\u06c1", + "IQ": "\u0639\u0631\u0627\u0642", + "OM": "\u0639\u0645\u0627\u0646", + "FK": "\u0641\u0627\u06a9\u0644\u06cc\u0646\u0688 \u062c\u0632\u0627\u0626\u0631", + "FJ": "\u0641\u062c\u06cc", + "FR": "\u0641\u0631\u0627\u0646\u0633", + "PF": "\u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc \u067e\u0648\u0644\u06cc\u0646\u06cc\u0634\u06cc\u0627", + "TF": "\u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc \u062c\u0646\u0648\u0628\u06cc \u062e\u0637\u06d2", + "GF": "\u0641\u0631\u06cc\u0646\u0686 \u06af\u06cc\u0627\u0646\u0627", + "PH": "\u0641\u0644\u067e\u0627\u0626\u0646", + "PS": "\u0641\u0644\u0633\u0637\u06cc\u0646\u06cc \u062e\u0637\u06d2", + "FI": "\u0641\u0646 \u0644\u06cc\u0646\u0688", + "CY": "\u0642\u0628\u0631\u0635", + "KZ": "\u0642\u0632\u0627\u062e\u0633\u062a\u0627\u0646", + "QA": "\u0642\u0637\u0631", + "CG": "\u06a9\u0627\u0646\u06af\u0648 - \u0628\u0631\u0627\u0632\u0627\u0648\u06cc\u0644\u06d2", + "CD": "\u06a9\u0627\u0646\u06af\u0648 - \u06a9\u0646\u0634\u0627\u0633\u0627", + "KG": "\u06a9\u0631\u063a\u0632\u0633\u062a\u0627\u0646", + "HR": "\u06a9\u0631\u0648\u0634\u06cc\u0627", + "KI": "\u06a9\u0631\u06cc\u0628\u0627\u062a\u06cc", + "BQ": "\u06a9\u0631\u06cc\u0628\u06cc\u0627\u0626\u06cc \u0646\u06cc\u062f\u0631\u0644\u06cc\u0646\u0688\u0632", + "CK": "\u06a9\u06a9 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "KH": "\u06a9\u0645\u0628\u0648\u0688\u06cc\u0627", + "CI": "\u06a9\u0648\u0679 \u0688\u06cc \u0622\u0626\u06cc\u0648\u0631\u06cc", + "CR": "\u06a9\u0648\u0633\u0679\u0627 \u0631\u06cc\u06a9\u0627", + "XK": "\u06a9\u0648\u0633\u0648\u0648", + "CC": "\u06a9\u0648\u06a9\u0648\u0633 (\u06a9\u06cc\u0644\u0646\u06af) \u062c\u0632\u0627\u0626\u0631", + "CO": "\u06a9\u0648\u0644\u0645\u0628\u06cc\u0627", + "KM": "\u06a9\u0648\u0645\u0648\u0631\u0648\u0633", + "KW": "\u06a9\u0648\u06cc\u062a", + "CV": "\u06a9\u06cc\u067e \u0648\u0631\u0688\u06cc", + "CM": "\u06a9\u06cc\u0645\u0631\u0648\u0646", + "KY": "\u06a9\u06cc\u0645\u06cc\u0646 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "KE": "\u06a9\u06cc\u0646\u06cc\u0627", + "CA": "\u06a9\u06cc\u0646\u06cc\u0688\u0627", + "CU": "\u06a9\u06cc\u0648\u0628\u0627", + "CW": "\u06a9\u06cc\u0648\u0631\u0627\u06a9\u0627\u0624", + "GL": "\u06af\u0631\u06cc\u0646 \u0644\u06cc\u0646\u0688", + "GD": "\u06af\u0631\u06cc\u0646\u0627\u0688\u0627", + "GN": "\u06af\u0646\u06cc", + "GW": "\u06af\u0646\u06cc \u0628\u0633\u0627\u0624", + "GT": "\u06af\u0648\u0627\u0679\u06d2 \u0645\u0627\u0644\u0627", + "GP": "\u06af\u0648\u0627\u0688\u06cc\u0644\u0648\u067e", + "GU": "\u06af\u0648\u0627\u0645", + "GG": "\u06af\u0648\u0626\u0631\u0646\u0633\u06cc", + "GY": "\u06af\u06cc\u0627\u0646\u0627", + "GA": "\u06af\u06cc\u0628\u0648\u0646", + "GM": "\u06af\u06cc\u0645\u0628\u06cc\u0627", + "GH": "\u06af\u06be\u0627\u0646\u0627", + "LA": "\u0644\u0627\u0624\u0633", + "LR": "\u0644\u0627\u0626\u0628\u06cc\u0631\u06cc\u0627", + "LB": "\u0644\u0628\u0646\u0627\u0646", + "LV": "\u0644\u0679\u0648\u06cc\u0627", + "LU": "\u0644\u06a9\u0633\u0645\u0628\u0631\u06af", + "LY": "\u0644\u06cc\u0628\u06cc\u0627", + "LT": "\u0644\u06cc\u062a\u06be\u0648\u0646\u06cc\u0627", + "LS": "\u0644\u06cc\u0633\u0648\u062a\u06be\u0648", + "LI": "\u0644\u06cc\u0634\u0679\u0646\u0633\u0679\u0627\u0626\u0646", + "MQ": "\u0645\u0627\u0631\u0679\u06cc\u0646\u06a9", + "MH": "\u0645\u0627\u0631\u0634\u0644 \u0622\u0626\u0644\u06cc\u0646\u0688\u0632", + "MU": "\u0645\u0627\u0631\u06cc\u0634\u0633", + "MT": "\u0645\u0627\u0644\u0679\u0627", + "MD": "\u0645\u0627\u0644\u062f\u0648\u0648\u0627", + "MV": "\u0645\u0627\u0644\u062f\u06cc\u067e", + "ML": "\u0645\u0627\u0644\u06cc", + "FM": "\u0645\u0627\u0626\u06a9\u0631\u0648\u0646\u06cc\u0634\u06cc\u0627", + "YT": "\u0645\u0627\u06cc\u0648\u0679", + "AE": "\u0645\u062a\u062d\u062f\u06c1 \u0639\u0631\u0628 \u0627\u0645\u0627\u0631\u0627\u062a", + "MG": "\u0645\u0688\u063a\u0627\u0633\u06a9\u0631", + "MA": "\u0645\u0631\u0627\u06a9\u0634", + "EG": "\u0645\u0635\u0631", + "EH": "\u0645\u063a\u0631\u0628\u06cc \u0635\u062d\u0627\u0631\u0627", + "MO": "\u0645\u06a9\u0627\u0624 SAR \u0686\u06cc\u0646", + "MW": "\u0645\u0644\u0627\u0648\u06cc", + "MY": "\u0645\u0644\u0627\u0626\u0634\u06cc\u0627", + "MN": "\u0645\u0646\u06af\u0648\u0644\u06cc\u0627", + "MR": "\u0645\u0648\u0631\u06cc\u0637\u0627\u0646\u06cc\u06c1", + "MZ": "\u0645\u0648\u0632\u0645\u0628\u06cc\u0642", + "MC": "\u0645\u0648\u0646\u0627\u06a9\u0648", + "MS": "\u0645\u0648\u0646\u0679\u0633\u06cc\u0631\u0627\u0679", + "ME": "\u0645\u0648\u0646\u0679\u06d2 \u0646\u06cc\u06af\u0631\u0648", + "MM": "\u0645\u06cc\u0627\u0646\u0645\u0627\u0631 (\u0628\u0631\u0645\u0627)", + "MX": "\u0645\u06cc\u06a9\u0633\u06cc\u06a9\u0648", + "NF": "\u0646\u0627\u0631\u0641\u0648\u06a9 \u0622\u0626\u0644\u06cc\u0646\u0688", + "NO": "\u0646\u0627\u0631\u0648\u06d2", + "NA": "\u0646\u0627\u0645\u06cc\u0628\u06cc\u0627", + "NE": "\u0646\u0627\u0626\u062c\u0631", + "NG": "\u0646\u0627\u0626\u062c\u06cc\u0631\u06cc\u0627", + "NI": "\u0646\u06a9\u0627\u0631\u0627\u06af\u0648\u0648\u0627", + "NR": "\u0646\u0624\u0631\u0648", + "NP": "\u0646\u06cc\u067e\u0627\u0644", + "NL": "\u0646\u06cc\u062f\u0631 \u0644\u06cc\u0646\u0688\u0632", + "NC": "\u0646\u06cc\u0648 \u06a9\u0644\u06cc\u0688\u0648\u0646\u06cc\u0627", + "NZ": "\u0646\u06cc\u0648\u0632\u06cc \u0644\u06cc\u0646\u0688", + "NU": "\u0646\u06cc\u0626\u0648", + "CF": "\u0648\u0633\u0637 \u0627\u0641\u0631\u06cc\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1", + "VN": "\u0648\u06cc\u062a\u0646\u0627\u0645", + "VA": "\u0648\u06cc\u0679\u06cc\u06a9\u0646 \u0633\u0679\u06cc", + "WF": "\u0648\u06cc\u0644\u06cc\u0632 \u0627\u0648\u0631 \u0641\u06cc\u0648\u0679\u06cc\u0648\u0646\u0627", + "VE": "\u0648\u06cc\u0646\u0632\u0648\u0626\u06cc\u0644\u0627", + "VU": "\u0648\u06cc\u0646\u0648\u0622\u0679\u0648", + "HK": "\u06c1\u0627\u0646\u06af \u06a9\u0627\u0646\u06af SAR \u0686\u06cc\u0646", + "ES": "\u06c1\u0633\u067e\u0627\u0646\u06cc\u06c1", + "HU": "\u06c1\u0646\u06af\u0631\u06cc", + "HN": "\u06c1\u0648\u0646\u0688\u0627\u0631\u0648\u0633", + "HT": "\u06c1\u06cc\u0679\u06cc", + "HM": "\u06c1\u06cc\u0631\u0688 \u062c\u0632\u06cc\u0631\u06c1 \u0648 \u0645\u06cc\u06a9\u0688\u0648\u0644\u06cc\u0646\u0688 \u062c\u0632\u0627\u0626\u0631", + "YE": "\u06cc\u0645\u0646", + "UY": "\u06cc\u0648\u0631\u0648\u06af\u0648\u0626\u06d2", + "UA": "\u06cc\u0648\u06a9\u0631\u06cc\u0646", + "UG": "\u06cc\u0648\u06af\u0646\u0688\u0627", + "GR": "\u06cc\u0648\u0646\u0627\u0646" +} diff --git a/public/intl/country/uz-UZ.json b/public/intl/country/uz-UZ.json new file mode 100644 index 0000000..0105597 --- /dev/null +++ b/public/intl/country/uz-UZ.json @@ -0,0 +1,251 @@ +{ + "AF": "Afg\u02bboniston", + "AX": "Aland orollari", + "AL": "Albaniya", + "US": "Amerika Qo\u2018shma Shtatlari", + "AS": "Amerika Samoasi", + "AD": "Andorra", + "AI": "Angilya", + "AO": "Angola", + "AQ": "Antarktida", + "AG": "Antigua va Barbuda", + "VI": "AQSH Virgin orollari", + "UM": "AQSH yondosh orollari", + "AR": "Argentina", + "AM": "Armaniston", + "AW": "Aruba", + "AU": "Avstraliya", + "AT": "Avstriya", + "BS": "Bagama orollari", + "BH": "Bahrayn", + "BD": "Bangladesh", + "BB": "Barbados", + "BY": "Belarus", + "BE": "Belgiya", + "BZ": "Beliz", + "BJ": "Benin", + "BM": "Bermuda orollari", + "AE": "Birlashgan Arab Amirliklari", + "BG": "Bolgariya", + "BO": "Boliviya", + "BQ": "Boneyr, Sint-Estatius va Saba", + "BA": "Bosniya va Gertsegovina", + "BW": "Botsvana", + "BR": "Braziliya", + "VG": "Britaniya Virgin orollari", + "IO": "Britaniyaning Hind okeanidagi hududi", + "BN": "Bruney", + "BF": "Burkina-Faso", + "BI": "Burundi", + "BT": "Butan", + "BV": "Buve oroli", + "GB": "Buyuk Britaniya", + "DK": "Daniya", + "DM": "Dominika", + "DO": "Dominikan Respublikasi", + "ET": "Efiopiya", + "EC": "Ekvador", + "GQ": "Ekvatorial Gvineya", + "ER": "Eritreya", + "IR": "Eron", + "EE": "Estoniya", + "PS": "Falastin hududlari", + "FO": "Farer orollari", + "FJ": "Fiji", + "PH": "Filippin", + "FI": "Finlandiya", + "FK": "Folklend orollari", + "FR": "Fransiya", + "GF": "Fransuz Gvianasi", + "TF": "Fransuz Janubiy hududlari", + "PF": "Fransuz Polineziyasi", + "GA": "Gabon", + "HT": "Gaiti", + "GM": "Gambiya", + "GH": "Gana", + "GY": "Gayana", + "DE": "Germaniya", + "GG": "Gernsi", + "GI": "Gibraltar", + "HN": "Gonduras", + "HK": "Gonkong (Xitoy MMH)", + "GD": "Grenada", + "GL": "Grenlandiya", + "GR": "Gretsiya", + "GE": "Gruziya", + "GU": "Guam", + "GP": "Gvadelupe", + "GT": "Gvatemala", + "GN": "Gvineya", + "GW": "Gvineya-Bisau", + "IN": "Hindiston", + "ID": "Indoneziya", + "JO": "Iordaniya", + "IE": "Irlandiya", + "IQ": "Iroq", + "IS": "Islandiya", + "ES": "Ispaniya", + "IL": "Isroil", + "IT": "Italiya", + "ZA": "Janubiy Afrika Respublikasi", + "GS": "Janubiy Georgiya va Janubiy Sendvich orollari", + "KR": "Janubiy Koreya", + "SS": "Janubiy Sudan", + "DZ": "Jazoir", + "JE": "Jersi", + "DJ": "Jibuti", + "CV": "Kabo-Verde", + "KH": "Kambodja", + "CM": "Kamerun", + "CA": "Kanada", + "KY": "Kayman orollari", + "KE": "Keniya", + "CY": "Kipr", + "KI": "Kiribati", + "CC": "Kokos (Kiling) orollari", + "CO": "Kolumbiya", + "KM": "Komor orollari", + "CG": "Kongo \u2013 Brazzavil", + "CD": "Kongo \u2013 Kinshasa", + "CR": "Kosta-Rika", + "CI": "Kot-d\u2019Ivuar", + "CU": "Kuba", + "CK": "Kuk orollari", + "CW": "Kyurasao", + "LA": "Laos", + "LV": "Latviya", + "LS": "Lesoto", + "LR": "Liberiya", + "LT": "Litva", + "LB": "Livan", + "LY": "Liviya", + "LI": "Lixtenshteyn", + "LU": "Lyuksemburg", + "MG": "Madagaskar", + "MO": "Makao (Xitoy MMH)", + "MW": "Malavi", + "MY": "Malayziya", + "MV": "Maldiv orollari", + "ML": "Mali", + "MT": "Malta", + "CF": "Markaziy Afrika Respublikasi", + "MA": "Marokash", + "MQ": "Martinika", + "MH": "Marshall orollari", + "MU": "Mavrikiy", + "MR": "Mavritaniya", + "YT": "Mayotta", + "MX": "Meksika", + "IM": "Men oroli", + "FM": "Mikroneziya", + "EG": "Misr", + "MD": "Moldova", + "MC": "Monako", + "MN": "Mongoliya", + "MS": "Montserrat", + "MZ": "Mozambik", + "SH": "Muqaddas Yelena oroli", + "MM": "Myanma (Birma)", + "NA": "Namibiya", + "NR": "Nauru", + "NP": "Nepal", + "NL": "Niderlandiya", + "NE": "Niger", + "NG": "Nigeriya", + "NI": "Nikaragua", + "NU": "Niue", + "NF": "Norfolk oroli", + "NO": "Norvegiya", + "AZ": "Ozarbayjon", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua \u2013 Yangi Gvineya", + "PY": "Paragvay", + "PE": "Peru", + "PN": "Pitkern orollari", + "PK": "Pokiston", + "PL": "Polsha", + "PT": "Portugaliya", + "PR": "Puerto-Riko", + "QA": "Qatar", + "KG": "Qirg\u02bbiziston", + "KZ": "Qozog\u02bbiston", + "KW": "Quvayt", + "RE": "Reyunion", + "CX": "Rojdestvo oroli", + "RU": "Rossiya", + "RW": "Ruanda", + "RO": "Ruminiya", + "SV": "Salvador", + "WS": "Samoa", + "SM": "San-Marino", + "ST": "San-Tome va Prinsipi", + "SA": "Saudiya Arabistoni", + "BL": "Sen-Bartelemi", + "PM": "Sen-Pyer va Mikelon", + "SN": "Senegal", + "KN": "Sent-Kits va Nevis", + "LC": "Sent-Lyusiya", + "MF": "Sent-Martin", + "VC": "Sent-Vinsent va Grenadin", + "RS": "Serbiya", + "SC": "Seyshel orollari", + "SG": "Singapur", + "SX": "Sint-Marten", + "SK": "Slovakiya", + "SI": "Sloveniya", + "SB": "Solomon orollari", + "SO": "Somali", + "SD": "Sudan", + "SR": "Surinam", + "SY": "Suriya", + "SZ": "Svazilend", + "SL": "Syerra-Leone", + "TH": "Tailand", + "TZ": "Tanzaniya", + "TW": "Tayvan", + "TL": "Timor-Leste", + "TG": "Togo", + "TJ": "Tojikiston", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad va Tobago", + "TN": "Tunis", + "TR": "Turkiya", + "TM": "Turkmaniston", + "TC": "Turks va Kaykos orollari", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraina", + "OM": "Ummon", + "WF": "Uollis va Futuna", + "UY": "Urugvay", + "VU": "Vanuatu", + "VA": "Vatikan", + "VE": "Venesuela", + "HU": "Vengriya", + "VN": "Vyetnam", + "HM": "Xerd va Makdonald orollari", + "CN": "Xitoy", + "HR": "Xorvatiya", + "YE": "Yaman", + "JM": "Yamayka", + "NC": "Yangi Kaledoniya", + "NZ": "Yangi Zelandiya", + "JP": "Yaponiya", + "ZM": "Zambiya", + "ZW": "Zimbabve", + "UZ": "O\u02bbzbekiston", + "EH": "G\u2018arbiy Sahroi Kabir", + "KP": "Shimoliy Koreya", + "MK": "Shimoliy Makedoniya", + "MP": "Shimoliy Mariana orollari", + "SJ": "Shpitsbergen va Yan-Mayen", + "LK": "Shri-Lanka", + "SE": "Shvetsiya", + "CH": "Shveytsariya", + "TD": "Chad", + "ME": "Chernogoriya", + "CZ": "Chexiya", + "CL": "Chili" +} diff --git a/public/intl/country/vi-VN.json b/public/intl/country/vi-VN.json new file mode 100644 index 0000000..4deaed1 --- /dev/null +++ b/public/intl/country/vi-VN.json @@ -0,0 +1,252 @@ +{ + "SA": "\u1ea2 R\u1eadp X\u00ea-\u00fat", + "AF": "Afghanistan", + "EG": "Ai C\u1eadp", + "AL": "Albania", + "DZ": "Algeria", + "AD": "Andorra", + "AO": "Angola", + "AI": "Anguilla", + "AG": "Antigua v\u00e0 Barbuda", + "AT": "\u00c1o", + "AR": "Argentina", + "AM": "Armenia", + "AW": "Aruba", + "AU": "Australia", + "AZ": "Azerbaijan", + "IN": "\u1ea4n \u0110\u1ed9", + "PL": "Ba Lan", + "BS": "Bahamas", + "BH": "Bahrain", + "BD": "Bangladesh", + "BB": "Barbados", + "MK": "B\u1eafc Macedonia", + "BY": "Belarus", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BT": "Bhutan", + "BE": "B\u1ec9", + "BO": "Bolivia", + "BA": "Bosnia v\u00e0 Herzegovina", + "BW": "Botswana", + "PT": "B\u1ed3 \u0110\u00e0o Nha", + "BR": "Brazil", + "BN": "Brunei", + "BG": "Bulgaria", + "BF": "Burkina Faso", + "BI": "Burundi", + "BQ": "Ca-ri-b\u00ea H\u00e0 Lan", + "UM": "C\u00e1c ti\u1ec3u \u0111\u1ea3o xa c\u1ee7a Hoa K\u1ef3", + "AE": "C\u00e1c Ti\u1ec3u V\u01b0\u01a1ng qu\u1ed1c \u1ea2 R\u1eadp Th\u1ed1ng nh\u1ea5t", + "CM": "Cameroon", + "KH": "Campuchia", + "CA": "Canada", + "CV": "Cape Verde", + "TD": "Chad", + "CL": "Chile", + "CO": "Colombia", + "KM": "Comoros", + "CG": "Congo - Brazzaville", + "CD": "Congo - Kinshasa", + "CR": "Costa Rica", + "DO": "C\u1ed9ng h\u00f2a Dominica", + "CF": "C\u1ed9ng h\u00f2a Trung Phi", + "CI": "C\u00f4te d\u2019Ivoire", + "HR": "Croatia", + "CU": "Cuba", + "CW": "Cura\u00e7ao", + "DJ": "Djibouti", + "DM": "Dominica", + "TW": "\u0110\u00e0i Loan", + "DK": "\u0110an M\u1ea1ch", + "BV": "\u0110\u1ea3o Bouvet", + "CX": "\u0110\u1ea3o Gi\u00e1ng Sinh", + "IM": "\u0110\u1ea3o Man", + "NF": "\u0110\u1ea3o Norfolk", + "DE": "\u0110\u1ee9c", + "EC": "Ecuador", + "SV": "El Salvador", + "ER": "Eritrea", + "EE": "Estonia", + "ET": "Ethiopia", + "FJ": "Fiji", + "GA": "Gabon", + "GM": "Gambia", + "GE": "Georgia", + "GH": "Ghana", + "GI": "Gibraltar", + "GL": "Greenland", + "GD": "Grenada", + "GP": "Guadeloupe", + "GU": "Guam", + "GT": "Guatemala", + "GG": "Guernsey", + "GF": "Guiana thu\u1ed9c Ph\u00e1p", + "GN": "Guinea", + "GQ": "Guinea X\u00edch \u0110\u1ea1o", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "NL": "H\u00e0 Lan", + "HT": "Haiti", + "KR": "H\u00e0n Qu\u1ed1c", + "US": "Hoa K\u1ef3", + "HN": "Honduras", + "HK": "H\u1ed3ng K\u00f4ng, Trung Qu\u1ed1c", + "HU": "Hungary", + "GR": "Hy L\u1ea1p", + "IS": "Iceland", + "ID": "Indonesia", + "IR": "Iran", + "IQ": "Iraq", + "IE": "Ireland", + "IL": "Israel", + "IT": "Italy", + "JM": "Jamaica", + "JE": "Jersey", + "JO": "Jordan", + "KZ": "Kazakhstan", + "KE": "Kenya", + "KI": "Kiribati", + "XK": "Kosovo", + "KW": "Kuwait", + "KG": "Kyrgyzstan", + "IO": "L\u00e3nh th\u1ed5 \u1ea4n \u0110\u1ed9 D\u01b0\u01a1ng thu\u1ed9c Anh", + "PS": "L\u00e3nh th\u1ed5 Palestine", + "TF": "L\u00e3nh th\u1ed5 ph\u00eda Nam Thu\u1ed9c Ph\u00e1p", + "LA": "L\u00e0o", + "LV": "Latvia", + "LS": "Lesotho", + "LB": "Li-b\u0103ng", + "LR": "Liberia", + "LY": "Libya", + "LI": "Liechtenstein", + "LT": "Litva", + "LU": "Luxembourg", + "MA": "Ma-r\u1ed1c", + "MO": "Macao, Trung Qu\u1ed1c", + "MG": "Madagascar", + "MW": "Malawi", + "MY": "Malaysia", + "MV": "Maldives", + "ML": "Mali", + "MT": "Malta", + "MQ": "Martinique", + "MR": "Mauritania", + "MU": "Mauritius", + "YT": "Mayotte", + "MX": "Mexico", + "FM": "Micronesia", + "MD": "Moldova", + "MC": "Monaco", + "ME": "Montenegro", + "MS": "Montserrat", + "MZ": "Mozambique", + "MN": "M\u00f4ng C\u1ed5", + "MM": "Myanmar (Mi\u1ebfn \u0110i\u1ec7n)", + "NO": "Na Uy", + "AQ": "Nam C\u1ef1c", + "GS": "Nam Georgia & Qu\u1ea7n \u0111\u1ea3o Nam Sandwich", + "ZA": "Nam Phi", + "SS": "Nam Sudan", + "NA": "Namibia", + "NR": "Nauru", + "NP": "Nepal", + "NC": "New Caledonia", + "NZ": "New Zealand", + "RU": "Nga", + "JP": "Nh\u1eadt B\u1ea3n", + "NI": "Nicaragua", + "NE": "Niger", + "NG": "Nigeria", + "NU": "Niue", + "OM": "Oman", + "PK": "Pakistan", + "PW": "Palau", + "PA": "Panama", + "PG": "Papua New Guinea", + "PY": "Paraguay", + "PE": "Peru", + "FR": "Ph\u00e1p", + "FI": "Ph\u1ea7n Lan", + "PH": "Philippines", + "PF": "Polynesia thu\u1ed9c Ph\u00e1p", + "PR": "Puerto Rico", + "QA": "Qatar", + "AX": "Qu\u1ea7n \u0111\u1ea3o \u00c5land", + "MP": "Qu\u1ea7n \u0111\u1ea3o B\u1eafc Mariana", + "KY": "Qu\u1ea7n \u0111\u1ea3o Cayman", + "CC": "Qu\u1ea7n \u0111\u1ea3o Cocos (Keeling)", + "CK": "Qu\u1ea7n \u0111\u1ea3o Cook", + "FK": "Qu\u1ea7n \u0111\u1ea3o Falkland", + "FO": "Qu\u1ea7n \u0111\u1ea3o Faroe", + "HM": "Qu\u1ea7n \u0111\u1ea3o Heard v\u00e0 McDonald", + "MH": "Qu\u1ea7n \u0111\u1ea3o Marshall", + "PN": "Qu\u1ea7n \u0111\u1ea3o Pitcairn", + "SB": "Qu\u1ea7n \u0111\u1ea3o Solomon", + "TC": "Qu\u1ea7n \u0111\u1ea3o Turks v\u00e0 Caicos", + "VG": "Qu\u1ea7n \u0111\u1ea3o Virgin thu\u1ed9c Anh", + "VI": "Qu\u1ea7n \u0111\u1ea3o Virgin thu\u1ed9c M\u1ef9", + "RE": "R\u00e9union", + "RO": "Romania", + "RW": "Rwanda", + "PM": "Saint Pierre v\u00e0 Miquelon", + "WS": "Samoa", + "AS": "Samoa thu\u1ed9c M\u1ef9", + "SM": "San Marino", + "ST": "S\u00e3o Tom\u00e9 v\u00e0 Pr\u00edncipe", + "CZ": "S\u00e9c", + "SN": "Senegal", + "RS": "Serbia", + "SC": "Seychelles", + "SL": "Sierra Leone", + "SG": "Singapore", + "SX": "Sint Maarten", + "CY": "S\u00edp", + "SK": "Slovakia", + "SI": "Slovenia", + "SO": "Somalia", + "LK": "Sri Lanka", + "BL": "St. Barth\u00e9lemy", + "SH": "St. Helena", + "KN": "St. Kitts v\u00e0 Nevis", + "LC": "St. Lucia", + "MF": "St. Martin", + "VC": "St. Vincent v\u00e0 Grenadines", + "SD": "Sudan", + "SR": "Suriname", + "SJ": "Svalbard v\u00e0 Jan Mayen", + "SZ": "Swaziland", + "SY": "Syria", + "TJ": "Tajikistan", + "TZ": "Tanzania", + "ES": "T\u00e2y Ban Nha", + "EH": "T\u00e2y Sahara", + "TH": "Th\u00e1i Lan", + "VA": "Th\u00e0nh Vatican", + "TR": "Th\u1ed5 Nh\u0129 K\u1ef3", + "SE": "Th\u1ee5y \u0110i\u1ec3n", + "CH": "Th\u1ee5y S\u0129", + "TL": "Timor-Leste", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "KP": "Tri\u1ec1u Ti\u00ean", + "TT": "Trinidad v\u00e0 Tobago", + "CN": "Trung Qu\u1ed1c", + "TN": "Tunisia", + "TM": "Turkmenistan", + "TV": "Tuvalu", + "UG": "Uganda", + "UA": "Ukraina", + "UY": "Uruguay", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VE": "Venezuela", + "VN": "Vi\u1ec7t Nam", + "GB": "V\u01b0\u01a1ng qu\u1ed1c Anh", + "WF": "Wallis v\u00e0 Futuna", + "YE": "Yemen", + "ZM": "Zambia", + "ZW": "Zimbabwe" +} diff --git a/public/intl/country/zh-CN.json b/public/intl/country/zh-CN.json new file mode 100644 index 0000000..03d9b5d --- /dev/null +++ b/public/intl/country/zh-CN.json @@ -0,0 +1,252 @@ +{ + "AL": "\u963f\u5c14\u5df4\u5c3c\u4e9a", + "DZ": "\u963f\u5c14\u53ca\u5229\u4e9a", + "AF": "\u963f\u5bcc\u6c57", + "AR": "\u963f\u6839\u5ef7", + "AE": "\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd", + "AW": "\u963f\u9c81\u5df4", + "OM": "\u963f\u66fc", + "AZ": "\u963f\u585e\u62dc\u7586", + "EG": "\u57c3\u53ca", + "ET": "\u57c3\u585e\u4fc4\u6bd4\u4e9a", + "IE": "\u7231\u5c14\u5170", + "EE": "\u7231\u6c99\u5c3c\u4e9a", + "AD": "\u5b89\u9053\u5c14", + "AO": "\u5b89\u54e5\u62c9", + "AI": "\u5b89\u572d\u62c9", + "AG": "\u5b89\u63d0\u74dc\u548c\u5df4\u5e03\u8fbe", + "AT": "\u5965\u5730\u5229", + "AX": "\u5965\u5170\u7fa4\u5c9b", + "AU": "\u6fb3\u5927\u5229\u4e9a", + "BB": "\u5df4\u5df4\u591a\u65af", + "PG": "\u5df4\u5e03\u4e9a\u65b0\u51e0\u5185\u4e9a", + "BS": "\u5df4\u54c8\u9a6c", + "PK": "\u5df4\u57fa\u65af\u5766", + "PY": "\u5df4\u62c9\u572d", + "PS": "\u5df4\u52d2\u65af\u5766\u9886\u571f", + "BH": "\u5df4\u6797", + "PA": "\u5df4\u62ff\u9a6c", + "BR": "\u5df4\u897f", + "BY": "\u767d\u4fc4\u7f57\u65af", + "BM": "\u767e\u6155\u5927", + "BG": "\u4fdd\u52a0\u5229\u4e9a", + "MP": "\u5317\u9a6c\u91cc\u4e9a\u7eb3\u7fa4\u5c9b", + "MK": "\u5317\u9a6c\u5176\u987f", + "BJ": "\u8d1d\u5b81", + "BE": "\u6bd4\u5229\u65f6", + "IS": "\u51b0\u5c9b", + "PR": "\u6ce2\u591a\u9ece\u5404", + "PL": "\u6ce2\u5170", + "BA": "\u6ce2\u65af\u5c3c\u4e9a\u548c\u9ed1\u585e\u54e5\u7ef4\u90a3", + "BO": "\u73bb\u5229\u7ef4\u4e9a", + "BZ": "\u4f2f\u5229\u5179", + "BW": "\u535a\u8328\u74e6\u7eb3", + "BT": "\u4e0d\u4e39", + "BF": "\u5e03\u57fa\u7eb3\u6cd5\u7d22", + "BI": "\u5e03\u9686\u8fea", + "BV": "\u5e03\u97e6\u5c9b", + "KP": "\u671d\u9c9c", + "GQ": "\u8d64\u9053\u51e0\u5185\u4e9a", + "DK": "\u4e39\u9ea6", + "DE": "\u5fb7\u56fd", + "TL": "\u4e1c\u5e1d\u6c76", + "TG": "\u591a\u54e5", + "DO": "\u591a\u7c73\u5c3c\u52a0\u5171\u548c\u56fd", + "DM": "\u591a\u7c73\u5c3c\u514b", + "RU": "\u4fc4\u7f57\u65af", + "EC": "\u5384\u74dc\u591a\u5c14", + "ER": "\u5384\u7acb\u7279\u91cc\u4e9a", + "FR": "\u6cd5\u56fd", + "FO": "\u6cd5\u7f57\u7fa4\u5c9b", + "PF": "\u6cd5\u5c5e\u6ce2\u5229\u5c3c\u897f\u4e9a", + "GF": "\u6cd5\u5c5e\u572d\u4e9a\u90a3", + "TF": "\u6cd5\u5c5e\u5357\u90e8\u9886\u5730", + "MF": "\u6cd5\u5c5e\u5723\u9a6c\u4e01", + "VA": "\u68b5\u8482\u5188", + "PH": "\u83f2\u5f8b\u5bbe", + "FJ": "\u6590\u6d4e", + "FI": "\u82ac\u5170", + "CV": "\u4f5b\u5f97\u89d2", + "FK": "\u798f\u514b\u5170\u7fa4\u5c9b", + "GM": "\u5188\u6bd4\u4e9a", + "CG": "\u521a\u679c\uff08\u5e03\uff09", + "CD": "\u521a\u679c\uff08\u91d1\uff09", + "CO": "\u54e5\u4f26\u6bd4\u4e9a", + "CR": "\u54e5\u65af\u8fbe\u9ece\u52a0", + "GD": "\u683c\u6797\u7eb3\u8fbe", + "GL": "\u683c\u9675\u5170", + "GE": "\u683c\u9c81\u5409\u4e9a", + "GG": "\u6839\u897f\u5c9b", + "CU": "\u53e4\u5df4", + "GP": "\u74dc\u5fb7\u7f57\u666e", + "GU": "\u5173\u5c9b", + "GY": "\u572d\u4e9a\u90a3", + "KZ": "\u54c8\u8428\u514b\u65af\u5766", + "HT": "\u6d77\u5730", + "KR": "\u97e9\u56fd", + "NL": "\u8377\u5170", + "BQ": "\u8377\u5c5e\u52a0\u52d2\u6bd4\u533a", + "SX": "\u8377\u5c5e\u5723\u9a6c\u4e01", + "HM": "\u8d6b\u5fb7\u5c9b\u548c\u9ea6\u514b\u5510\u7eb3\u7fa4\u5c9b", + "ME": "\u9ed1\u5c71", + "HN": "\u6d2a\u90fd\u62c9\u65af", + "KI": "\u57fa\u91cc\u5df4\u65af", + "DJ": "\u5409\u5e03\u63d0", + "KG": "\u5409\u5c14\u5409\u65af\u65af\u5766", + "GN": "\u51e0\u5185\u4e9a", + "GW": "\u51e0\u5185\u4e9a\u6bd4\u7ecd", + "CA": "\u52a0\u62ff\u5927", + "GH": "\u52a0\u7eb3", + "GA": "\u52a0\u84ec", + "KH": "\u67ec\u57d4\u5be8", + "CZ": "\u6377\u514b", + "ZW": "\u6d25\u5df4\u5e03\u97e6", + "CM": "\u5580\u9ea6\u9686", + "QA": "\u5361\u5854\u5c14", + "KY": "\u5f00\u66fc\u7fa4\u5c9b", + "CC": "\u79d1\u79d1\u65af\uff08\u57fa\u6797\uff09\u7fa4\u5c9b", + "XK": "\u79d1\u7d22\u6c83", + "KM": "\u79d1\u6469\u7f57", + "CI": "\u79d1\u7279\u8fea\u74e6", + "KW": "\u79d1\u5a01\u7279", + "HR": "\u514b\u7f57\u5730\u4e9a", + "KE": "\u80af\u5c3c\u4e9a", + "CK": "\u5e93\u514b\u7fa4\u5c9b", + "CW": "\u5e93\u62c9\u7d22", + "LV": "\u62c9\u8131\u7ef4\u4e9a", + "LS": "\u83b1\u7d22\u6258", + "LA": "\u8001\u631d", + "LB": "\u9ece\u5df4\u5ae9", + "LT": "\u7acb\u9676\u5b9b", + "LR": "\u5229\u6bd4\u91cc\u4e9a", + "LY": "\u5229\u6bd4\u4e9a", + "LI": "\u5217\u652f\u6566\u58eb\u767b", + "RE": "\u7559\u5c3c\u6c6a", + "LU": "\u5362\u68ee\u5821", + "RW": "\u5362\u65fa\u8fbe", + "RO": "\u7f57\u9a6c\u5c3c\u4e9a", + "MG": "\u9a6c\u8fbe\u52a0\u65af\u52a0", + "IM": "\u9a6c\u6069\u5c9b", + "MV": "\u9a6c\u5c14\u4ee3\u592b", + "MT": "\u9a6c\u8033\u4ed6", + "MW": "\u9a6c\u62c9\u7ef4", + "MY": "\u9a6c\u6765\u897f\u4e9a", + "ML": "\u9a6c\u91cc", + "MH": "\u9a6c\u7ecd\u5c14\u7fa4\u5c9b", + "MQ": "\u9a6c\u63d0\u5c3c\u514b", + "YT": "\u9a6c\u7ea6\u7279", + "MU": "\u6bdb\u91cc\u6c42\u65af", + "MR": "\u6bdb\u91cc\u5854\u5c3c\u4e9a", + "US": "\u7f8e\u56fd", + "UM": "\u7f8e\u56fd\u672c\u571f\u5916\u5c0f\u5c9b\u5c7f", + "AS": "\u7f8e\u5c5e\u8428\u6469\u4e9a", + "VI": "\u7f8e\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b", + "MN": "\u8499\u53e4", + "MS": "\u8499\u7279\u585e\u62c9\u7279", + "BD": "\u5b5f\u52a0\u62c9\u56fd", + "PE": "\u79d8\u9c81", + "FM": "\u5bc6\u514b\u7f57\u5c3c\u897f\u4e9a", + "MM": "\u7f05\u7538", + "MD": "\u6469\u5c14\u591a\u74e6", + "MA": "\u6469\u6d1b\u54e5", + "MC": "\u6469\u7eb3\u54e5", + "MZ": "\u83ab\u6851\u6bd4\u514b", + "MX": "\u58a8\u897f\u54e5", + "NA": "\u7eb3\u7c73\u6bd4\u4e9a", + "ZA": "\u5357\u975e", + "AQ": "\u5357\u6781\u6d32", + "GS": "\u5357\u4e54\u6cbb\u4e9a\u548c\u5357\u6851\u5a01\u5947\u7fa4\u5c9b", + "SS": "\u5357\u82cf\u4e39", + "NR": "\u7459\u9c81", + "NI": "\u5c3c\u52a0\u62c9\u74dc", + "NP": "\u5c3c\u6cca\u5c14", + "NE": "\u5c3c\u65e5\u5c14", + "NG": "\u5c3c\u65e5\u5229\u4e9a", + "NU": "\u7ebd\u57c3", + "NO": "\u632a\u5a01", + "NF": "\u8bfa\u798f\u514b\u5c9b", + "PW": "\u5e15\u52b3", + "PN": "\u76ae\u7279\u51ef\u6069\u7fa4\u5c9b", + "PT": "\u8461\u8404\u7259", + "JP": "\u65e5\u672c", + "SE": "\u745e\u5178", + "CH": "\u745e\u58eb", + "SV": "\u8428\u5c14\u74e6\u591a", + "WS": "\u8428\u6469\u4e9a", + "RS": "\u585e\u5c14\u7ef4\u4e9a", + "SL": "\u585e\u62c9\u5229\u6602", + "SN": "\u585e\u5185\u52a0\u5c14", + "CY": "\u585e\u6d66\u8def\u65af", + "SC": "\u585e\u820c\u5c14", + "SA": "\u6c99\u7279\u963f\u62c9\u4f2f", + "BL": "\u5723\u5df4\u6cf0\u52d2\u7c73", + "CX": "\u5723\u8bde\u5c9b", + "ST": "\u5723\u591a\u7f8e\u548c\u666e\u6797\u897f\u6bd4", + "SH": "\u5723\u8d6b\u52d2\u62ff", + "KN": "\u5723\u57fa\u8328\u548c\u5c3c\u7ef4\u65af", + "LC": "\u5723\u5362\u897f\u4e9a", + "SM": "\u5723\u9a6c\u529b\u8bfa", + "PM": "\u5723\u76ae\u57c3\u5c14\u548c\u5bc6\u514b\u9686\u7fa4\u5c9b", + "VC": "\u5723\u6587\u68ee\u7279\u548c\u683c\u6797\u7eb3\u4e01\u65af", + "LK": "\u65af\u91cc\u5170\u5361", + "SK": "\u65af\u6d1b\u4f10\u514b", + "SI": "\u65af\u6d1b\u6587\u5c3c\u4e9a", + "SJ": "\u65af\u74e6\u5c14\u5df4\u548c\u626c\u9a6c\u5ef6", + "SZ": "\u65af\u5a01\u58eb\u5170", + "SD": "\u82cf\u4e39", + "SR": "\u82cf\u91cc\u5357", + "SB": "\u6240\u7f57\u95e8\u7fa4\u5c9b", + "SO": "\u7d22\u9a6c\u91cc", + "TJ": "\u5854\u5409\u514b\u65af\u5766", + "TW": "\u53f0\u6e7e", + "TH": "\u6cf0\u56fd", + "TZ": "\u5766\u6851\u5c3c\u4e9a", + "TO": "\u6c64\u52a0", + "TC": "\u7279\u514b\u65af\u548c\u51ef\u79d1\u65af\u7fa4\u5c9b", + "TT": "\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5", + "TN": "\u7a81\u5c3c\u65af", + "TV": "\u56fe\u74e6\u5362", + "TR": "\u571f\u8033\u5176", + "TM": "\u571f\u5e93\u66fc\u65af\u5766", + "TK": "\u6258\u514b\u52b3", + "WF": "\u74e6\u5229\u65af\u548c\u5bcc\u56fe\u7eb3", + "VU": "\u74e6\u52aa\u963f\u56fe", + "GT": "\u5371\u5730\u9a6c\u62c9", + "VE": "\u59d4\u5185\u745e\u62c9", + "BN": "\u6587\u83b1", + "UG": "\u4e4c\u5e72\u8fbe", + "UA": "\u4e4c\u514b\u5170", + "UY": "\u4e4c\u62c9\u572d", + "UZ": "\u4e4c\u5179\u522b\u514b\u65af\u5766", + "ES": "\u897f\u73ed\u7259", + "EH": "\u897f\u6492\u54c8\u62c9", + "GR": "\u5e0c\u814a", + "SG": "\u65b0\u52a0\u5761", + "NC": "\u65b0\u5580\u91cc\u591a\u5c3c\u4e9a", + "NZ": "\u65b0\u897f\u5170", + "HU": "\u5308\u7259\u5229", + "SY": "\u53d9\u5229\u4e9a", + "JM": "\u7259\u4e70\u52a0", + "AM": "\u4e9a\u7f8e\u5c3c\u4e9a", + "YE": "\u4e5f\u95e8", + "IQ": "\u4f0a\u62c9\u514b", + "IR": "\u4f0a\u6717", + "IL": "\u4ee5\u8272\u5217", + "IT": "\u610f\u5927\u5229", + "IN": "\u5370\u5ea6", + "ID": "\u5370\u5ea6\u5c3c\u897f\u4e9a", + "GB": "\u82f1\u56fd", + "VG": "\u82f1\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b", + "IO": "\u82f1\u5c5e\u5370\u5ea6\u6d0b\u9886\u5730", + "JO": "\u7ea6\u65e6", + "VN": "\u8d8a\u5357", + "ZM": "\u8d5e\u6bd4\u4e9a", + "JE": "\u6cfd\u897f\u5c9b", + "TD": "\u4e4d\u5f97", + "GI": "\u76f4\u5e03\u7f57\u9640", + "CL": "\u667a\u5229", + "CF": "\u4e2d\u975e\u5171\u548c\u56fd", + "CN": "\u4e2d\u56fd", + "MO": "\u4e2d\u56fd\u6fb3\u95e8\u7279\u522b\u884c\u653f\u533a", + "HK": "\u4e2d\u56fd\u9999\u6e2f\u7279\u522b\u884c\u653f\u533a" +} diff --git a/public/intl/country/zh-TW.json b/public/intl/country/zh-TW.json new file mode 100644 index 0000000..a3ea041 --- /dev/null +++ b/public/intl/country/zh-TW.json @@ -0,0 +1,252 @@ +{ + "TT": "\u5343\u91cc\u9054\u53ca\u6258\u5df4\u54e5", + "TR": "\u571f\u8033\u5176", + "TC": "\u571f\u514b\u65af\u53ca\u958b\u79d1\u65af\u7fa4\u5cf6", + "TM": "\u571f\u5eab\u66fc", + "BT": "\u4e0d\u4e39", + "CF": "\u4e2d\u975e\u5171\u548c\u570b", + "CN": "\u4e2d\u570b", + "HK": "\u4e2d\u570b\u9999\u6e2f\u7279\u5225\u884c\u653f\u5340", + "MO": "\u4e2d\u570b\u6fb3\u9580\u7279\u5225\u884c\u653f\u5340", + "DK": "\u4e39\u9ea5", + "EC": "\u5384\u74dc\u591a", + "ER": "\u5384\u5229\u5782\u4e9e", + "PG": "\u5df4\u5e03\u4e9e\u7d10\u5e7e\u5167\u4e9e", + "BR": "\u5df4\u897f", + "BB": "\u5df4\u8c9d\u591a", + "PY": "\u5df4\u62c9\u572d", + "BH": "\u5df4\u6797", + "BS": "\u5df4\u54c8\u99ac", + "PA": "\u5df4\u62ff\u99ac", + "PS": "\u5df4\u52d2\u65af\u5766\u81ea\u6cbb\u5340", + "PK": "\u5df4\u57fa\u65af\u5766", + "JP": "\u65e5\u672c", + "BE": "\u6bd4\u5229\u6642", + "JM": "\u7259\u8cb7\u52a0", + "IL": "\u4ee5\u8272\u5217", + "CA": "\u52a0\u62ff\u5927", + "GA": "\u52a0\u5f6d", + "MP": "\u5317\u99ac\u5229\u5b89\u7d0d\u7fa4\u5cf6", + "MK": "\u5317\u99ac\u5176\u9813", + "KP": "\u5317\u97d3", + "QA": "\u5361\u9054", + "CU": "\u53e4\u5df4", + "TW": "\u53f0\u7063", + "SZ": "\u53f2\u74e6\u5e1d\u5c3c", + "NE": "\u5c3c\u65e5", + "NI": "\u5c3c\u52a0\u62c9\u74dc", + "NP": "\u5c3c\u6cca\u723e", + "BF": "\u5e03\u5409\u7d0d\u6cd5\u7d22", + "BV": "\u5e03\u5a01\u5cf6", + "GP": "\u74dc\u5730\u6d1b\u666e", + "GT": "\u74dc\u5730\u99ac\u62c9", + "WF": "\u74e6\u5229\u65af\u7fa4\u5cf6\u548c\u5bcc\u5716\u90a3\u7fa4\u5cf6", + "GM": "\u7518\u6bd4\u4e9e", + "BY": "\u767d\u4fc4\u7f85\u65af", + "PN": "\u76ae\u7279\u80af\u7fa4\u5cf6", + "LT": "\u7acb\u9676\u5b9b", + "IQ": "\u4f0a\u62c9\u514b", + "IR": "\u4f0a\u6717", + "IS": "\u51b0\u5cf6", + "LI": "\u5217\u652f\u6566\u65af\u767b", + "HU": "\u5308\u7259\u5229", + "ID": "\u5370\u5c3c", + "IN": "\u5370\u5ea6", + "DJ": "\u5409\u5e03\u5730", + "KI": "\u5409\u91cc\u5df4\u65af", + "KG": "\u5409\u723e\u5409\u65af", + "TV": "\u5410\u74e6\u9b6f", + "DM": "\u591a\u7c73\u5c3c\u514b", + "DO": "\u591a\u660e\u5c3c\u52a0\u5171\u548c\u570b", + "TG": "\u591a\u54e5", + "AG": "\u5b89\u5730\u5361\u53ca\u5df4\u5e03\u9054", + "AI": "\u5b89\u594e\u62c9", + "AO": "\u5b89\u54e5\u62c9", + "AD": "\u5b89\u9053\u723e", + "TK": "\u6258\u514b\u52de\u7fa4\u5cf6", + "BM": "\u767e\u6155\u9054", + "ET": "\u8863\u7d22\u6bd4\u4e9e", + "ES": "\u897f\u73ed\u7259", + "EH": "\u897f\u6492\u54c8\u62c9", + "HR": "\u514b\u7f85\u57c3\u897f\u4e9e", + "LY": "\u5229\u6bd4\u4e9e", + "HN": "\u5b8f\u90fd\u62c9\u65af", + "GR": "\u5e0c\u81d8", + "BN": "\u6c76\u840a", + "SA": "\u6c99\u70cf\u5730\u963f\u62c9\u4f2f", + "BZ": "\u8c9d\u91cc\u65af", + "BJ": "\u8c9d\u5357", + "GQ": "\u8d64\u9053\u5e7e\u5167\u4e9e", + "ZW": "\u8f9b\u5df4\u5a01", + "AM": "\u4e9e\u7f8e\u5c3c\u4e9e", + "AZ": "\u4e9e\u585e\u62dc\u7136", + "TZ": "\u5766\u5c1a\u5c3c\u4e9e", + "NG": "\u5948\u53ca\u5229\u4e9e", + "VE": "\u59d4\u5167\u745e\u62c9", + "BD": "\u5b5f\u52a0\u62c9", + "ZM": "\u5c1a\u6bd4\u4e9e", + "PW": "\u5e1b\u7409", + "LV": "\u62c9\u812b\u7dad\u4e9e", + "TO": "\u6771\u52a0", + "TL": "\u6771\u5e1d\u6c76", + "FR": "\u6cd5\u570b", + "FO": "\u6cd5\u7f85\u7fa4\u5cf6", + "GF": "\u6cd5\u5c6c\u572d\u4e9e\u90a3", + "TF": "\u6cd5\u5c6c\u5357\u90e8\u5c6c\u5730", + "PF": "\u6cd5\u5c6c\u73bb\u91cc\u5c3c\u897f\u4e9e", + "MF": "\u6cd5\u5c6c\u8056\u99ac\u4e01", + "BA": "\u6ce2\u58eb\u5c3c\u4e9e\u8207\u8d6b\u585e\u54e5\u7dad\u7d0d", + "BW": "\u6ce2\u672d\u90a3", + "PR": "\u6ce2\u591a\u9ece\u5404", + "PL": "\u6ce2\u862d", + "GI": "\u76f4\u5e03\u7f85\u9640", + "KE": "\u80af\u4e9e", + "FI": "\u82ac\u862d", + "AE": "\u963f\u62c9\u4f2f\u806f\u5408\u5927\u516c\u570b", + "AR": "\u963f\u6839\u5ef7", + "OM": "\u963f\u66fc", + "AF": "\u963f\u5bcc\u6c57", + "DZ": "\u963f\u723e\u53ca\u5229\u4e9e", + "AL": "\u963f\u723e\u5df4\u5c3c\u4e9e", + "RU": "\u4fc4\u7f85\u65af", + "BG": "\u4fdd\u52a0\u5229\u4e9e", + "ZA": "\u5357\u975e", + "GS": "\u5357\u55ac\u6cbb\u4e9e\u8207\u5357\u4e09\u660e\u6cbb\u7fa4\u5cf6", + "AQ": "\u5357\u6975\u6d32", + "KR": "\u5357\u97d3", + "SS": "\u5357\u8607\u4e39", + "KZ": "\u54c8\u85a9\u514b", + "TD": "\u67e5\u5fb7", + "KH": "\u67ec\u57d4\u5be8", + "BO": "\u73bb\u5229\u7dad\u4e9e", + "CC": "\u79d1\u514b\u65af\uff08\u57fa\u9748\uff09\u7fa4\u5cf6", + "XK": "\u79d1\u7d22\u6c83", + "KW": "\u79d1\u5a01\u7279", + "TN": "\u7a81\u5c3c\u897f\u4e9e", + "JO": "\u7d04\u65e6", + "US": "\u7f8e\u570b", + "UM": "\u7f8e\u570b\u672c\u571f\u5916\u5c0f\u5cf6\u5dbc", + "VI": "\u7f8e\u5c6c\u7dad\u4eac\u7fa4\u5cf6", + "AS": "\u7f8e\u5c6c\u85a9\u6469\u4e9e", + "GB": "\u82f1\u570b", + "IO": "\u82f1\u5c6c\u5370\u5ea6\u6d0b\u9818\u5730", + "VG": "\u82f1\u5c6c\u7dad\u4eac\u7fa4\u5cf6", + "MR": "\u8305\u5229\u5854\u5c3c\u4e9e", + "GH": "\u8fe6\u7d0d", + "CG": "\u525b\u679c\uff08\u5e03\u62c9\u85a9\uff09", + "CD": "\u525b\u679c\uff08\u91d1\u590f\u6c99\uff09", + "CO": "\u54e5\u502b\u6bd4\u4e9e", + "CR": "\u54e5\u65af\u5927\u9ece\u52a0", + "EG": "\u57c3\u53ca", + "CK": "\u5eab\u514b\u7fa4\u5cf6", + "CW": "\u5eab\u62c9\u7d22", + "NO": "\u632a\u5a01", + "SJ": "\u632a\u5a01\u5c6c\u65af\u74e6\u5df4\u53ca\u5c16\u68c9", + "GG": "\u6839\u606f", + "GL": "\u683c\u9675\u862d", + "GD": "\u683c\u745e\u90a3\u9054", + "TH": "\u6cf0\u570b", + "HT": "\u6d77\u5730", + "UG": "\u70cf\u5e72\u9054", + "UA": "\u70cf\u514b\u862d", + "UY": "\u70cf\u62c9\u572d", + "UZ": "\u70cf\u8332\u5225\u514b", + "RE": "\u7559\u5c3c\u65fa", + "PE": "\u79d8\u9b6f", + "NA": "\u7d0d\u7c73\u6bd4\u4e9e", + "NZ": "\u7d10\u897f\u862d", + "NU": "\u7d10\u57c3\u5cf6", + "SO": "\u7d22\u99ac\u5229\u4e9e", + "SB": "\u7d22\u7f85\u9580\u7fa4\u5cf6", + "MQ": "\u99ac\u4e01\u5c3c\u514b", + "ML": "\u99ac\u5229", + "MY": "\u99ac\u4f86\u897f\u4e9e", + "MW": "\u99ac\u62c9\u5a01", + "YT": "\u99ac\u7d04\u7279\u5cf6", + "MH": "\u99ac\u7d39\u723e\u7fa4\u5cf6", + "MG": "\u99ac\u9054\u52a0\u65af\u52a0", + "MT": "\u99ac\u723e\u4ed6", + "MV": "\u99ac\u723e\u5730\u592b", + "FM": "\u5bc6\u514b\u7f85\u5c3c\u897f\u4e9e", + "CZ": "\u6377\u514b", + "SY": "\u6558\u5229\u4e9e", + "IM": "\u66fc\u5cf6", + "VA": "\u68b5\u8482\u5ca1", + "AW": "\u8377\u5c6c\u963f\u9b6f\u5df4", + "SX": "\u8377\u5c6c\u8056\u99ac\u4e01", + "NL": "\u8377\u862d", + "BQ": "\u8377\u862d\u52a0\u52d2\u6bd4\u5340", + "MZ": "\u83ab\u4e09\u6bd4\u514b", + "CM": "\u5580\u9ea5\u9686", + "GE": "\u55ac\u6cbb\u4e9e", + "GN": "\u5e7e\u5167\u4e9e", + "GW": "\u5e7e\u5167\u4e9e\u6bd4\u7d22", + "FJ": "\u6590\u6fdf", + "LK": "\u65af\u91cc\u862d\u5361", + "SK": "\u65af\u6d1b\u4f10\u514b", + "SI": "\u65af\u6d1b\u7dad\u5c3c\u4e9e", + "CL": "\u667a\u5229", + "PH": "\u83f2\u5f8b\u8cd3", + "CI": "\u8c61\u7259\u6d77\u5cb8", + "VN": "\u8d8a\u5357", + "KY": "\u958b\u66fc\u7fa4\u5cf6", + "TJ": "\u5854\u5409\u514b", + "SN": "\u585e\u5167\u52a0\u723e", + "SC": "\u585e\u5e2d\u723e", + "RS": "\u585e\u723e\u7dad\u4e9e", + "AT": "\u5967\u5730\u5229", + "AX": "\u5967\u862d\u7fa4\u5cf6", + "EE": "\u611b\u6c99\u5c3c\u4e9e", + "IE": "\u611b\u723e\u862d", + "SG": "\u65b0\u52a0\u5761", + "NC": "\u65b0\u5580\u91cc\u591a\u5c3c\u4e9e", + "SL": "\u7345\u5b50\u5c71", + "CH": "\u745e\u58eb", + "SE": "\u745e\u5178", + "VU": "\u842c\u90a3\u675c", + "IT": "\u7fa9\u5927\u5229", + "BL": "\u8056\u5df4\u745f\u7c73", + "VC": "\u8056\u6587\u68ee\u53ca\u683c\u745e\u90a3\u4e01", + "PM": "\u8056\u76ae\u57c3\u8207\u5bc6\u514b\u9686\u7fa4\u5cf6", + "ST": "\u8056\u591a\u7f8e\u666e\u6797\u897f\u6bd4", + "KN": "\u8056\u514b\u91cc\u65af\u591a\u798f\u53ca\u5c3c\u7dad\u65af", + "SM": "\u8056\u99ac\u5229\u8afe", + "SH": "\u8056\u8d6b\u52d2\u62ff\u5cf6", + "CX": "\u8056\u8a95\u5cf6", + "LC": "\u8056\u9732\u897f\u4e9e", + "YE": "\u8449\u9580", + "KM": "\u845b\u6469", + "PT": "\u8461\u8404\u7259", + "FK": "\u798f\u514b\u862d\u7fa4\u5cf6", + "CV": "\u7dad\u5fb7\u89d2", + "MN": "\u8499\u53e4", + "MS": "\u8499\u54f2\u81d8", + "ME": "\u8499\u7279\u5167\u54e5\u7f85", + "BI": "\u84b2\u9686\u5730", + "GY": "\u84cb\u4e9e\u90a3", + "HM": "\u8d6b\u5fb7\u5cf6\u53ca\u9ea5\u5510\u7d0d\u7fa4\u5cf6", + "LA": "\u5bee\u570b", + "DE": "\u5fb7\u570b", + "MA": "\u6469\u6d1b\u54e5", + "MC": "\u6469\u7d0d\u54e5", + "MD": "\u6469\u723e\u591a\u74e6", + "MU": "\u6a21\u91cc\u897f\u65af", + "MM": "\u7dec\u7538", + "LB": "\u9ece\u5df4\u5ae9", + "MX": "\u58a8\u897f\u54e5", + "JE": "\u6fa4\u897f\u5cf6", + "AU": "\u6fb3\u6d32", + "RW": "\u76e7\u5b89\u9054", + "LU": "\u76e7\u68ee\u5821", + "NF": "\u8afe\u798f\u514b\u5cf6", + "NR": "\u8afe\u9b6f", + "LR": "\u8cf4\u6bd4\u745e\u4e9e", + "LS": "\u8cf4\u7d22\u6258", + "CY": "\u8cfd\u666e\u52d2\u65af", + "SV": "\u85a9\u723e\u74e6\u591a", + "WS": "\u85a9\u6469\u4e9e", + "RO": "\u7f85\u99ac\u5c3c\u4e9e", + "GU": "\u95dc\u5cf6", + "SD": "\u8607\u4e39", + "SR": "\u8607\u5229\u5357" +} diff --git a/public/intl/language/am-ET.json b/public/intl/language/am-ET.json new file mode 100644 index 0000000..d203f23 --- /dev/null +++ b/public/intl/language/am-ET.json @@ -0,0 +1,611 @@ +{ + "hu": "\u1200\u1295\u130b\u122a\u129b", + "haw": "\u1203\u12ca\u12eb\u129b", + "ha": "\u1203\u12cd\u1233\u129b", + "ht": "\u1203\u12ed\u1275\u129b", + "smj": "\u1209\u120c \u1233\u121a", + "lu": "\u1209\u1263 \u12ab\u1273\u1295\u130b", + "lua": "\u1209\u1263-\u1209\u120f", + "lt": "\u1209\u1274\u1295\u12eb\u1295\u129b", + "luo": "\u1209\u12a6", + "lb": "\u1209\u12ad\u12d8\u121d\u1260\u122d\u1308\u122d\u129b", + "luy": "\u1209\u12ea\u12eb", + "ln": "\u120a\u1295\u130b\u120b\u129b", + "la": "\u120b\u1272\u1295\u129b", + "lv": "\u120b\u1275\u126a\u12eb\u1295", + "lag": "\u120b\u1295\u130a", + "lkt": "\u120b\u12ae\u1273", + "lo": "\u120b\u12cd\u1235\u129b", + "sq": "\u120d\u1264\u1292\u129b", + "loz": "\u120e\u12da\u129b", + "hi": "\u1212\u1295\u12f1\u129b", + "tzm": "\u1218\u12ab\u12a8\u1208\u129b \u12a0\u1275\u120b\u1235 \u1273\u121b\u12da\u130d\u1275", + "zgh": "\u1218\u12f0\u1260\u129b \u12e8\u121e\u122e\u12ae \u1273\u121b\u12da\u130d\u1275", + "mua": "\u1219\u1295\u12f3\u1295\u130d", + "ml": "\u121b\u120b\u12eb\u120b\u121d\u129b", + "ms": "\u121b\u120b\u12ed\u129b", + "mg": "\u121b\u120b\u130b\u1235\u129b", + "mt": "\u121b\u120d\u1272\u1235\u129b", + "mr": "\u121b\u122b\u1272\u129b", + "mas": "\u121b\u1233\u12ed", + "mk": "\u121b\u1234\u12f6\u1295\u129b", + "jmc": "\u121b\u127b\u121c\u129b", + "gv": "\u121b\u1295\u12ad\u1235\u129b", + "mgh": "\u121b\u12a9\u12cb \u121c\u1276", + "kde": "\u121b\u12ae\u1295\u12f4", + "mi": "\u121b\u12ee\u122a\u129b", + "arn": "\u121b\u1351\u127c", + "mer": "\u121c\u1229", + "mgo": "\u121c\u1273", + "moh": "\u121e\u1203\u12cd\u12ad", + "ro_MD": "\u121e\u120d\u12f3\u126b\u12ca\u1293", + "mfe": "\u121e\u122a\u1232\u12e8\u129b", + "mn": "\u121e\u1295\u130e\u120b\u12ca\u129b", + "rn": "\u1229\u1295\u12f2\u129b", + "ru": "\u122b\u123d\u129b", + "rwk": "\u122d\u12cb", + "ro": "\u122e\u121b\u1292\u12eb\u1295", + "rm": "\u122e\u121b\u1295\u123d", + "rof": "\u122e\u121d\u1266", + "se": "\u1230\u121c\u1293\u12ca \u1233\u121a", + "nso": "\u1230\u121c\u1293\u12ca \u1236\u1276", + "nd": "\u1230\u121c\u1295 \u1295\u12f4\u1265\u120c", + "sr": "\u1230\u122d\u1262\u129b", + "so": "\u1231\u121b\u120d\u129b", + "su": "\u1231\u12f3\u1295\u129b", + "ii": "\u1232\u1279\u1295\u12ea\u129b", + "si": "\u1232\u1295\u1203\u120d\u129b", + "sd": "\u1232\u1295\u12f5\u1202\u129b", + "sid": "\u1232\u12f3\u121d\u129b", + "saq": "\u1233\u121d\u1261\u1229", + "sm": "\u1233\u121e\u12a0\u129b", + "sa": "\u1233\u1295\u1235\u12ad\u122a\u1275\u129b", + "sbp": "\u1233\u1295\u1309", + "sg": "\u1233\u1295\u130e\u129b", + "seh": "\u1234\u1293", + "sl": "\u1235\u120e\u126a\u129b", + "sk": "\u1235\u120e\u126b\u12ad\u129b", + "sms": "\u1235\u12ae\u120d\u1275 \u1233\u121a", + "sv": "\u1235\u12ca\u12f5\u1295\u129b", + "sw": "\u1235\u12cb\u1202\u120a\u129b", + "ss": "\u1235\u12cb\u1272\u129b", + "es": "\u1235\u1353\u1292\u123d", + "st": "\u1236\u12de\u129b", + "xog": "\u1236\u130b", + "ksb": "\u123b\u121d\u1263\u120b", + "sn": "\u123e\u1293\u129b", + "zh_Hans": "\u1240\u1208\u120d \u12eb\u1208 \u127b\u12ed\u1295\u129b", + "zxx": "\u124b\u1295\u124b\u12ca \u12ed\u12d8\u1275 \u12a0\u12ed\u12f0\u1208\u121d", + "bg": "\u1261\u120d\u130b\u122a\u129b", + "my": "\u1261\u122d\u121b\u129b", + "bi": "\u1262\u1235\u120b\u121d\u129b", + "zh_Hant": "\u1263\u1205\u120b\u12ca \u127b\u12ed\u1295\u129b", + "bm": "\u1263\u121d\u1263\u122d\u129b", + "ba": "\u1263\u1235\u12aa\u122d\u129b", + "eu": "\u1263\u1235\u12ad\u129b", + "ksf": "\u1263\u134a\u12eb", + "be": "\u1264\u120b\u122b\u123b\u129b", + "bem": "\u1264\u121d\u1263", + "bez": "\u1264\u1293", + "bn": "\u1264\u1295\u130b\u120a\u129b", + "byn": "\u1265\u120a\u1295", + "br": "\u1265\u122c\u1276\u1295\u129b", + "bs": "\u1266\u1235\u1292\u12eb\u1295\u129b", + "brx": "\u1266\u12f6", + "vun": "\u1269\u1295\u1306", + "vi": "\u126a\u1275\u1293\u121d\u129b", + "vai": "\u126b\u12ed", + "ve": "\u126c\u1295\u12f3", + "vo": "\u126e\u120b\u1351\u12ad\u129b", + "te": "\u1270\u1209\u1309\u129b", + "tum": "\u1271\u121d\u1261\u12ab", + "tk": "\u1271\u122d\u12ad\u1218\u1295\u129b", + "tr": "\u1271\u122d\u12ad\u129b", + "bo": "\u1272\u1264\u1273\u1295\u129b", + "ty": "\u1273\u1202\u1273\u1295\u129b", + "ta": "\u1273\u121a\u120d\u129b", + "twq": "\u1273\u1233\u12cb\u1245", + "tt": "\u1273\u1273\u122d\u129b", + "shi": "\u1273\u127c\u120d\u1202\u1275", + "dav": "\u1273\u12ed\u1273\u129b", + "th": "\u1273\u12ed\u129b", + "tg": "\u1273\u1302\u12aa\u129b", + "tl": "\u1273\u130b\u120e\u1308\u129b", + "teo": "\u1274\u1236", + "tet": "\u1274\u1270\u121d", + "tw": "\u1275\u12ca\u129b", + "tig": "\u1275\u130d\u1228", + "ti": "\u1275\u130d\u122d\u129b", + "to": "\u1276\u1295\u130b\u129b", + "tpi": "\u1276\u12ad \u1352\u1232\u1295", + "cgg": "\u127a\u130b\u129b", + "zh": "\u127b\u12ed\u1295\u129b", + "chr": "\u127c\u122e\u12ac\u129b", + "cs": "\u127c\u12ad\u129b", + "nus": "\u1291\u12cc\u122d", + "nyn": "\u1292\u12eb\u1295\u12ae\u120d\u129b", + "naq": "\u1293\u121b", + "na": "\u1293\u12a1\u1229", + "ne": "\u1294\u1353\u120a\u129b", + "nqo": "\u1295\u12ae", + "ny": "\u1295\u12eb\u1295\u1303", + "jgo": "\u1295\u130e\u1263\u129b", + "no": "\u1296\u122d\u12cc\u1302\u12eb\u1295", + "am": "\u12a0\u121b\u122d\u129b", + "hy": "\u12a0\u122d\u1218\u1293\u12ca", + "asa": "\u12a0\u1231", + "as": "\u12a0\u1233\u121c\u12db\u12ca", + "ab": "\u12a0\u1265\u1210\u12da\u129b", + "ak": "\u12a0\u12ab\u1295\u129b", + "ach": "\u12a0\u12ae\u120a\u129b", + "az": "\u12a0\u12d8\u122d\u1263\u1303\u1295\u129b", + "ay": "\u12a0\u12eb\u121b\u122d\u129b", + "ga": "\u12a0\u12ed\u122a\u123d", + "is": "\u12a0\u12ed\u1235\u120b\u1295\u12f5\u129b", + "agq": "\u12a0\u1308\u121d", + "aa": "\u12a0\u134b\u122d\u129b", + "af": "\u12a0\u134d\u122a\u12ab\u1295\u129b", + "ur": "\u12a1\u122d\u12f1\u129b", + "ug": "\u12a1\u12ca\u130d\u1201\u122d\u129b", + "uz": "\u12a1\u12dd\u1264\u12ad\u129b", + "et": "\u12a2\u1235\u1276\u1292\u12eb\u1295\u129b", + "ebu": "\u12a2\u1266\u129b", + "smn": "\u12a2\u1293\u122a \u1233\u121a", + "ia": "\u12a2\u1295\u1274\u122d\u120a\u1295\u1313", + "id": "\u12a2\u1295\u12f6\u1294\u12e5\u129b", + "ee": "\u12a2\u12ca", + "ig": "\u12a2\u130d\u1266\u129b", + "eo": "\u12a4\u1235\u1350\u122b\u1295\u1276", + "efi": "\u12a4\u134a\u12ad", + "gd": "\u12a5\u1235\u12ae\u1275\u1235 \u130c\u120d\u12ad\u129b", + "iu": "\u12a5\u1291\u12ad\u1272\u1271\u1275\u129b", + "ik": "\u12a5\u1291\u1352\u12eb\u1245\u129b", + "ie": "\u12a5\u1295\u1270\u122d\u120a\u1295\u130d\u12c8", + "en": "\u12a5\u1295\u130d\u120a\u12dd\u129b", + "or": "\u12a6\u122a\u12eb\u129b", + "om": "\u12a6\u122e\u121e\u129b", + "os": "\u12a6\u1234\u1272\u12ad", + "oc": "\u12a6\u12aa\u1273\u1295\u129b", + "ku": "\u12a9\u122d\u12f5\u123d\u129b", + "ky": "\u12aa\u122d\u130a\u12dd\u129b", + "quc": "\u12aa\u127c", + "rw": "\u12aa\u1295\u12eb\u122d\u12cb\u1295\u12f5\u129b", + "ki": "\u12aa\u12a9\u12e9", + "kln": "\u12ab\u1208\u1295\u1302\u1295", + "kl": "\u12ab\u120b\u120a\u1231\u1275\u129b", + "kam": "\u12ab\u121d\u1263", + "ks": "\u12ab\u123d\u121a\u122d\u129b", + "kea": "\u12ab\u1261\u1268\u122d\u12f2\u12eb\u1291", + "kab": "\u12ab\u1265\u12ed\u120d", + "ca": "\u12ab\u1273\u120b\u1295\u129b", + "kn": "\u12ab\u1293\u12f3\u129b", + "kk": "\u12ab\u12db\u12ad\u129b", + "tlh": "\u12ad\u120a\u1295\u130e\u1295\u129b", + "km": "\u12ad\u1218\u122d\u129b \u121b\u12a5\u12a8\u120b\u12ca", + "hr": "\u12ad\u122e\u123d\u12eb\u1295\u129b", + "nmg": "\u12ad\u12cb\u1232\u12ee", + "koi": "\u12ae\u121a \u1354\u122d\u121d\u12eb\u12ad", + "ko": "\u12ae\u122a\u12eb\u129b", + "co": "\u12ae\u122d\u1232\u12ab\u129b", + "kw": "\u12ae\u122d\u1292\u123d", + "swc": "\u12ae\u1295\u130e \u1235\u12cb\u1202\u120a", + "kg": "\u12ae\u1295\u130e\u129b", + "kok": "\u12ae\u12ab\u1292", + "khq": "\u12ae\u12ed\u122b \u127a\u1292", + "ses": "\u12ae\u12ed\u122b\u1266\u122e \u1234\u1292", + "qu": "\u12b5\u127f\u129b", + "cy": "\u12c8\u120d\u123d", + "wo": "\u12ce\u120e\u134d\u129b", + "ar": "\u12d3\u1228\u1265\u129b", + "he": "\u12d5\u1265\u122b\u1235\u1325", + "ar_001": "\u12d8\u1218\u1293\u12ca \u1218\u12f0\u1260\u129b \u12d3\u1228\u1265\u129b", + "zu": "\u12d9\u1209\u129b", + "dje": "\u12db\u122d\u121b\u129b", + "xh": "\u12de\u1233\u129b", + "za": "\u12e1\u12cb\u1295\u130d\u129b", + "es_419": "\u12e8\u120b\u1272\u1295 \u12a0\u121c\u122a\u12ab \u1235\u1353\u1292\u123d", + "hsb": "\u12e8\u120b\u12ed\u129b\u12cd \u1236\u122d\u1262\u12eb\u1295\u129b", + "fy": "\u12e8\u121d\u12d5\u122b\u1265 \u134d\u122a\u1235\u129b", + "de_CH": "\u12e8\u1235\u12ca\u12dd \u12a8\u134d\u1270\u129b \u1300\u122d\u1218\u1295\u129b", + "gsw": "\u12e8\u1235\u12ca\u12dd \u1300\u122d\u1218\u1295", + "fr_CH": "\u12e8\u1235\u12ca\u12dd \u1348\u1228\u1295\u1233\u12ed\u129b", + "ckb": "\u12e8\u1236\u122b\u1292 \u12a9\u122d\u12f5\u129b", + "en_GB": "\u12e8\u1265\u122a\u1272\u123d \u12a5\u1295\u130d\u120a\u12dd\u129b", + "pt_BR": "\u12e8\u1265\u122b\u12da\u120d \u1356\u122d\u1279\u130b\u120d\u129b", + "dsb": "\u12e8\u1273\u127d\u129b\u12cd \u1236\u122d\u1262\u12eb\u1295\u129b", + "nb": "\u12e8\u1296\u122d\u12cc\u12ed \u1266\u12ad\u121b\u120d", + "nn": "\u12e8\u1296\u122d\u12cc\u12ed \u1293\u12ed\u1296\u122d\u1235\u12ad", + "en_US": "\u12e8\u12a0\u121c\u122a\u12ab \u12a5\u1295\u130d\u120a\u12dd\u129b", + "es_ES": "\u12e8\u12a0\u12cd\u122e\u1353 \u12a5\u1235\u1353\u1295\u129b", + "pt_PT": "\u12e8\u12a0\u12cd\u122e\u1353 \u1356\u122d\u1279\u130b\u120d\u129b", + "en_AU": "\u12e8\u12a0\u12cd\u1235\u1275\u122b\u120a\u12eb \u12a5\u1295\u130d\u120a\u12dd\u129b", + "de_AT": "\u12e8\u12a6\u1235\u1275\u122a\u12eb \u1300\u122d\u1218\u1295", + "en_CA": "\u12e8\u12ab\u1293\u12f3 \u12a5\u1295\u130d\u120a\u12dd\u129b", + "fr_CA": "\u12e8\u12ab\u1293\u12f3 \u1348\u1228\u1295\u1233\u12ed\u129b", + "uk": "\u12e9\u12ad\u122c\u1295\u129b", + "und": "\u12eb\u120d\u1273\u12c8\u1240 \u124b\u1295\u124b", + "yi": "\u12ed\u12f2\u123d\u129b", + "yo": "\u12ee\u1229\u1263\u12ca\u129b", + "sma": "\u12f0\u1261\u1263\u12ca \u1233\u121a", + "nl": "\u12f0\u127d", + "dua": "\u12f1\u12cb\u120b\u129b", + "dv": "\u12f2\u126c\u1205", + "da": "\u12f4\u1292\u123d", + "dz": "\u12f5\u12de\u1295\u130d\u12bb\u129b", + "de": "\u1300\u122d\u1218\u1295", + "jv": "\u1303\u126b\u1295\u129b", + "ja": "\u1303\u1353\u1295\u129b", + "dyo": "\u1306\u120b \u134e\u1295\u12eb\u129b", + "ka": "\u1306\u122d\u1302\u12eb\u1295", + "guz": "\u1309\u1235\u120a\u129b", + "gu": "\u1309\u1303\u122d\u1272\u129b", + "gaa": "\u130b", + "gl": "\u130b\u120a\u123a\u12eb", + "lg": "\u130b\u1295\u12f3\u129b", + "gag": "\u130b\u1309\u12dd\u129b", + "el": "\u130d\u122a\u12ad\u129b", + "gez": "\u130d\u12d5\u12dd\u129b", + "gn": "\u1313\u122b\u1292\u129b", + "it": "\u1323\u120a\u12eb\u1295\u129b", + "tn": "\u133d\u12cb\u1293\u12ca\u129b", + "ts": "\u133e\u1295\u130b\u129b", + "fr": "\u1348\u1228\u1295\u1233\u12ed\u129b", + "fil": "\u134a\u120a\u1352\u1295\u129b", + "fi": "\u134a\u1292\u123d", + "fj": "\u134a\u1302\u129b", + "fo": "\u134b\u122e\u129b", + "nl_BE": "\u134d\u120c\u121a\u123d", + "fa": "\u1350\u122d\u123a\u12eb\u129b", + "pa": "\u1351\u1295\u1303\u1265\u129b", + "ps": "\u1353\u123d\u1276\u129b", + "pl": "\u1356\u120a\u123d\u129b", + "pt": "\u1356\u122d\u1279\u130b\u120d\u129b", + "ace": "Achinese", + "ada": "Adangme", + "ady": "Adyghe", + "afh": "Afrihili", + "ain": "Ainu", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "ale": "Aleut", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "zbl": "Blissymbols", + "brh": "Brahui", + "bra": "Braj", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chy": "Cheyenne", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "cop": "Coptic", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "doi": "Dogri", + "dgr": "Dogrib", + "dyu": "Dyula", + "frs": "Eastern Frisian", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "egl": "Emilian", + "myv": "Erzya", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gan": "Gan Chinese", + "gay": "Gayo", + "gba": "Gbaya", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "izh": "Ingrian", + "inh": "Ingush", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "xal": "Kalmyk", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "kv": "Komi", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lam": "Lamba", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "lui": "Luiseno", + "lun": "Lunda", + "mde": "Maba", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "es_MX": "Mexican Spanish", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "mdf": "Moksha", + "lol": "Mongo", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "ttt": "Muslim Tat", + "mye": "Myene", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "frr": "Northern Frisian", + "nov": "Novial", + "nym": "Nyamwezi", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "osa": "Osage", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romany", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "sgs": "Samogitian", + "sad": "Sandawe", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "see": "Seneca", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "shn": "Shan", + "scn": "Sicilian", + "bla": "Siksika", + "szl": "Silesian", + "den": "Slave", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "syr": "Syriac", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "ter": "Tereno", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "vot": "Votic", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "zap": "Zapotec", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/ar-SA.json b/public/intl/language/ar-SA.json new file mode 100644 index 0000000..b91af40 --- /dev/null +++ b/public/intl/language/ar-SA.json @@ -0,0 +1,611 @@ +{ + "bss": "\u0623\u0643\u0648\u0633", + "arc": "\u0627\u0644\u0622\u0631\u0627\u0645\u064a\u0629", + "sam": "\u0627\u0644\u0622\u0631\u0627\u0645\u064a\u0629 \u0627\u0644\u0633\u0627\u0645\u0631\u064a\u0629", + "asa": "\u0627\u0644\u0622\u0633\u0648", + "ain": "\u0627\u0644\u0622\u064a\u0646\u0648\u064a\u0629", + "ab": "\u0627\u0644\u0623\u0628\u062e\u0627\u0632\u064a\u0629", + "cch": "\u0627\u0644\u0623\u062a\u0633\u0627\u0645", + "ace": "\u0627\u0644\u0623\u062a\u0634\u064a\u0646\u064a\u0632\u064a\u0629", + "ada": "\u0627\u0644\u0623\u062f\u0627\u0646\u062c\u0645\u064a\u0629", + "udm": "\u0627\u0644\u0623\u062f\u0645\u0631\u062a", + "ady": "\u0627\u0644\u0623\u062f\u064a\u063a\u0629", + "az": "\u0627\u0644\u0623\u0630\u0631\u0628\u064a\u062c\u0627\u0646\u064a\u0629", + "arp": "\u0627\u0644\u0623\u0631\u0627\u0628\u0627\u0647\u0648", + "an": "\u0627\u0644\u0623\u0631\u0627\u063a\u0648\u0646\u064a\u0629", + "arw": "\u0627\u0644\u0623\u0631\u0627\u0648\u0627\u0643\u064a\u0629", + "ur": "\u0627\u0644\u0623\u0631\u062f\u064a\u0629", + "myv": "\u0627\u0644\u0623\u0631\u0632\u064a\u0629", + "hy": "\u0627\u0644\u0623\u0631\u0645\u064a\u0646\u064a\u0629", + "arn": "\u0627\u0644\u0623\u0631\u0648\u0643\u0627\u0646\u064a\u0629", + "rup": "\u0627\u0644\u0623\u0631\u0648\u0645\u0627\u0646\u064a\u0627\u0646", + "as": "\u0627\u0644\u0623\u0633\u0627\u0645\u064a\u0629", + "es": "\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629", + "es_ES": "\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629 \u0627\u0644\u0623\u0648\u0631\u0648\u0628\u064a\u0629", + "es_MX": "\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629 \u0627\u0644\u0645\u0643\u0633\u064a\u0643\u064a\u0629", + "es_419": "\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629 \u0623\u0645\u0631\u064a\u0643\u0627 \u0627\u0644\u0644\u0627\u062a\u064a\u0646\u064a\u0629", + "eo": "\u0627\u0644\u0625\u0633\u0628\u0631\u0627\u0646\u062a\u0648", + "ast": "\u0627\u0644\u0623\u0633\u062a\u0631\u064a\u0629", + "et": "\u0627\u0644\u0625\u0633\u062a\u0648\u0646\u064a\u0629", + "sco": "\u0627\u0644\u0623\u0633\u0643\u062a\u0644\u0646\u062f\u064a\u0629", + "agq": "\u0627\u0644\u0623\u063a\u0645", + "ug": "\u0627\u0644\u0623\u063a\u0648\u0631\u064a\u0629", + "aa": "\u0627\u0644\u0623\u0641\u0627\u0631\u064a\u0629", + "af": "\u0627\u0644\u0623\u0641\u0631\u064a\u0642\u0627\u0646\u064a\u0629", + "afh": "\u0627\u0644\u0623\u0641\u0631\u064a\u0647\u064a\u0644\u064a\u0629", + "ae": "\u0627\u0644\u0623\u0641\u0633\u062a\u064a\u0629", + "efi": "\u0627\u0644\u0625\u0641\u064a\u0643", + "eka": "\u0627\u0644\u0625\u0643\u0627\u062c\u0643", + "akk": "\u0627\u0644\u0623\u0643\u0627\u062f\u064a\u0629", + "ak": "\u0627\u0644\u0623\u0643\u0627\u0646\u064a\u0629", + "ach": "\u0627\u0644\u0623\u0643\u0648\u0644\u064a\u0629", + "sq": "\u0627\u0644\u0623\u0644\u0628\u0627\u0646\u064a\u0629", + "alt": "\u0627\u0644\u0623\u0644\u0637\u0627\u0626\u064a\u0629 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629", + "de": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629", + "nds": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629 \u0627\u0644\u0633\u0641\u0644\u0649", + "gsw": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629 \u0627\u0644\u0633\u0648\u064a\u0633\u0631\u064a\u0629", + "de_CH": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629 \u0627\u0644\u0639\u0644\u064a\u0627 \u0627\u0644\u0633\u0648\u064a\u0633\u0631\u064a\u0629", + "goh": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629 \u0627\u0644\u0639\u0644\u064a\u0627 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "gmh": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629 \u0627\u0644\u0639\u0644\u064a\u0627 \u0627\u0644\u0648\u0633\u0637\u0649", + "de_AT": "\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629 \u0627\u0644\u0646\u0645\u0633\u0627\u0648\u064a\u0629", + "ale": "\u0627\u0644\u0623\u0644\u064a\u0648\u062a\u064a\u0629", + "tzm": "\u0627\u0644\u0623\u0645\u0627\u0632\u064a\u063a\u064a\u0629 \u0648\u0633\u0637 \u0627\u0644\u0623\u0637\u0644\u0633", + "elx": "\u0627\u0644\u0625\u0645\u0627\u064a\u062a", + "umb": "\u0627\u0644\u0623\u0645\u0628\u0646\u062f\u0648", + "am": "\u0627\u0644\u0623\u0645\u0647\u0631\u064a\u0629", + "ie": "\u0627\u0644\u0625\u0646\u062a\u0631\u0644\u064a\u0646\u062c", + "en": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629", + "en_AU": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 \u0627\u0644\u0623\u0633\u062a\u0631\u0627\u0644\u064a\u0629", + "en_GB": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 \u0627\u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a\u0629", + "ang": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "en_CA": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 \u0627\u0644\u0643\u0646\u062f\u064a\u0629", + "enm": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 \u0627\u0644\u0648\u0633\u0637\u0649", + "en_US": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 \u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629", + "inh": "\u0627\u0644\u0625\u0646\u062c\u0648\u0634\u064a\u0629", + "anp": "\u0627\u0644\u0623\u0646\u062c\u064a\u0643\u0627", + "id": "\u0627\u0644\u0625\u0646\u062f\u0648\u0646\u064a\u0633\u064a\u0629", + "awa": "\u0627\u0644\u0623\u0648\u0627\u062f\u064a\u0629", + "av": "\u0627\u0644\u0623\u0648\u0627\u0631\u064a\u0629", + "oj": "\u0627\u0644\u0623\u0648\u062c\u064a\u0628\u0648\u0627", + "om": "\u0627\u0644\u0623\u0648\u0631\u0648\u0645\u0648", + "or": "\u0627\u0644\u0623\u0648\u0631\u064a\u064a\u0627", + "uz": "\u0627\u0644\u0623\u0648\u0632\u0628\u0643\u064a\u0629", + "osa": "\u0627\u0644\u0623\u0648\u0633\u0627\u062c", + "os": "\u0627\u0644\u0623\u0648\u0633\u064a\u062a\u064a\u0643", + "uk": "\u0627\u0644\u0623\u0648\u0643\u0631\u0627\u0646\u064a\u0629", + "oc": "\u0627\u0644\u0623\u0648\u0643\u064a\u062a\u0627\u0646\u064a\u0629", + "iba": "\u0627\u0644\u0625\u064a\u0628\u0627\u0646", + "ibb": "\u0627\u0644\u0625\u064a\u0628\u064a\u0628\u064a\u0648\u064a\u0629", + "ig": "\u0627\u0644\u0625\u064a\u062c\u0628\u0648", + "io": "\u0627\u0644\u0625\u064a\u062f\u0648", + "ga": "\u0627\u0644\u0623\u064a\u0631\u0644\u0646\u062f\u064a\u0629", + "sga": "\u0627\u0644\u0623\u064a\u0631\u0644\u0646\u062f\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "mga": "\u0627\u0644\u0623\u064a\u0631\u0644\u0646\u062f\u064a\u0629 \u0627\u0644\u0648\u0633\u0637\u0649", + "is": "\u0627\u0644\u0623\u064a\u0633\u0644\u0627\u0646\u062f\u064a\u0629", + "it": "\u0627\u0644\u0625\u064a\u0637\u0627\u0644\u064a\u0629", + "ilo": "\u0627\u0644\u0625\u064a\u0644\u0648\u0643\u0648", + "ay": "\u0627\u0644\u0623\u064a\u0645\u0627\u0631\u0627", + "smn": "\u0627\u0644\u0625\u064a\u0646\u0627\u0631\u064a \u0633\u0627\u0645\u064a", + "ik": "\u0627\u0644\u0625\u064a\u0646\u0628\u064a\u0627\u0643", + "iu": "\u0627\u0644\u0625\u064a\u0646\u0643\u062a\u064a\u062a\u062a", + "ewo": "\u0627\u0644\u0625\u064a\u0648\u0646\u062f\u0648", + "ee": "\u0627\u0644\u0625\u064a\u0648\u064a", + "pap": "\u0627\u0644\u0628\u0627\u0628\u064a\u0627\u0645\u064a\u0646\u062a\u0648", + "bas": "\u0627\u0644\u0628\u0627\u0633\u0627", + "ba": "\u0627\u0644\u0628\u0627\u0634\u0643\u064a\u0631\u064a\u0629", + "pau": "\u0627\u0644\u0628\u0627\u0644\u0648\u0627\u0646", + "pi": "\u0627\u0644\u0628\u0627\u0644\u064a\u0629", + "bm": "\u0627\u0644\u0628\u0627\u0645\u0628\u0627\u0631\u0627", + "pam": "\u0627\u0644\u0628\u0627\u0645\u0628\u0627\u0646\u062c\u0627", + "pag": "\u0627\u0644\u0628\u0627\u0646\u062c\u0627\u0633\u064a\u0646\u0627\u0646", + "bug": "\u0627\u0644\u0628\u062c\u064a\u0646\u064a\u0632\u064a\u0629", + "bra": "\u0627\u0644\u0628\u0631\u0627\u062c\u064a\u0629", + "pt": "\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629", + "pt_PT": "\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629 \u0627\u0644\u0623\u0648\u0631\u0648\u0628\u064a\u0629", + "pt_BR": "\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "pro": "\u0627\u0644\u0628\u0631\u0648\u0641\u0627\u0646\u0633\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "bua": "\u0627\u0644\u0628\u0631\u064a\u0627\u062a\u064a\u0629", + "br": "\u0627\u0644\u0628\u0631\u064a\u062a\u0648\u0646\u064a\u0629", + "ps": "\u0627\u0644\u0628\u0634\u062a\u0648\u0646\u064a\u0629", + "bg": "\u0627\u0644\u0628\u0644\u063a\u0627\u0631\u064a\u0629", + "bal": "\u0627\u0644\u0628\u0644\u0648\u0634\u064a\u0629", + "byn": "\u0627\u0644\u0628\u0644\u064a\u0646\u064a\u0629", + "pa": "\u0627\u0644\u0628\u0646\u062c\u0627\u0628\u064a\u0629", + "bn": "\u0627\u0644\u0628\u0646\u063a\u0627\u0644\u064a\u0629", + "pal": "\u0627\u0644\u0628\u0647\u0644\u0648\u064a\u0629", + "bho": "\u0627\u0644\u0628\u0647\u0648\u062c\u0628\u0648\u0631\u064a\u0629", + "brx": "\u0627\u0644\u0628\u0648\u062f\u0648", + "my": "\u0627\u0644\u0628\u0648\u0631\u0645\u064a\u0629", + "bs": "\u0627\u0644\u0628\u0648\u0633\u0646\u064a\u0629", + "nb": "\u0627\u0644\u0628\u0648\u0643\u0645\u0627\u0644\u064a\u0629 \u0627\u0644\u0646\u0631\u0648\u064a\u062c\u064a\u0629", + "pl": "\u0627\u0644\u0628\u0648\u0644\u0646\u062f\u064a\u0629", + "pon": "\u0627\u0644\u0628\u0648\u0647\u0646\u0628\u064a\u0627\u064a\u0627\u0646", + "bej": "\u0627\u0644\u0628\u064a\u062c\u0627", + "bi": "\u0627\u0644\u0628\u064a\u0633\u0644\u0627\u0645\u064a\u0629", + "bik": "\u0627\u0644\u0628\u064a\u0643\u0648\u0644\u064a\u0629", + "be": "\u0627\u0644\u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a\u0629", + "bem": "\u0627\u0644\u0628\u064a\u0645\u0628\u0627", + "bin": "\u0627\u0644\u0628\u064a\u0646\u064a\u0629", + "tl": "\u0627\u0644\u062a\u0627\u063a\u0627\u0644\u0648\u063a\u064a\u0629", + "tmh": "\u0627\u0644\u062a\u0627\u0645\u0627\u0634\u064a\u0643", + "tum": "\u0627\u0644\u062a\u0627\u0645\u0628\u0648\u0643\u0627", + "ta": "\u0627\u0644\u062a\u0627\u0645\u064a\u0644\u064a\u0629", + "ty": "\u0627\u0644\u062a\u0627\u0647\u064a\u062a\u064a\u0629", + "kcg": "\u0627\u0644\u062a\u0627\u064a\u0627\u0628\u064a\u0629", + "th": "\u0627\u0644\u062a\u0627\u064a\u0644\u0627\u0646\u062f\u064a\u0629", + "bo": "\u0627\u0644\u062a\u0628\u062a\u064a\u0629", + "tt": "\u0627\u0644\u062a\u062a\u0627\u0631\u064a\u0629", + "tk": "\u0627\u0644\u062a\u0631\u0643\u0645\u0627\u0646\u064a\u0629", + "tr": "\u0627\u0644\u062a\u0631\u0643\u064a\u0629", + "ota": "\u0627\u0644\u062a\u0631\u0643\u064a\u0629 \u0627\u0644\u0639\u062b\u0645\u0627\u0646\u064a\u0629", + "tn": "\u0627\u0644\u062a\u0633\u0648\u0627\u0646\u064a\u0629", + "tsi": "\u0627\u0644\u062a\u0633\u064a\u0645\u0634\u064a\u0627\u0646", + "chg": "\u0627\u0644\u062a\u0634\u0627\u062c\u0627\u062a\u0627\u064a", + "ch": "\u0627\u0644\u062a\u0634\u0627\u0645\u0648\u0631\u0648", + "chk": "\u0627\u0644\u062a\u0634\u0643\u064a\u0632\u064a\u0629", + "cv": "\u0627\u0644\u062a\u0634\u0648\u0641\u0627\u0634\u064a", + "chb": "\u0627\u0644\u062a\u0634\u064a\u0628\u0634\u0627", + "cs": "\u0627\u0644\u062a\u0634\u064a\u0643\u064a\u0629", + "tig": "\u0627\u0644\u062a\u063a\u0631\u064a\u0629", + "ti": "\u0627\u0644\u062a\u063a\u0631\u064a\u0646\u064a\u0629", + "tli": "\u0627\u0644\u062a\u0644\u064a\u0646\u063a\u064a\u062a\u064a\u0629", + "zgh": "\u0627\u0644\u062a\u0645\u0627\u0632\u064a\u063a\u064a\u0629 \u0627\u0644\u0645\u063a\u0631\u0628\u064a\u0629 \u0627\u0644\u0642\u064a\u0627\u0633\u064a\u0629", + "tvl": "\u0627\u0644\u062a\u0648\u0641\u0627\u0644\u0648", + "tyv": "\u0627\u0644\u062a\u0648\u0641\u064a\u0629", + "tpi": "\u0627\u0644\u062a\u0648\u0643 \u0628\u064a\u0633\u064a\u0646", + "tkl": "\u0627\u0644\u062a\u0648\u0643\u064a\u0644\u0627\u0648", + "to": "\u0627\u0644\u062a\u0648\u0646\u063a\u064a\u0629", + "tw": "\u0627\u0644\u062a\u0648\u064a", + "tet": "\u0627\u0644\u062a\u064a\u062a\u0645", + "ter": "\u0627\u0644\u062a\u064a\u0631\u064a\u0646\u0648", + "tiv": "\u0627\u0644\u062a\u064a\u0641", + "te": "\u0627\u0644\u062a\u064a\u0644\u062c\u0648", + "tem": "\u0627\u0644\u062a\u064a\u0645\u0646", + "gaa": "\u0627\u0644\u062c\u0627", + "gl": "\u0627\u0644\u062c\u0627\u0644\u064a\u0643\u064a\u0629", + "lg": "\u0627\u0644\u062c\u0627\u0646\u062f\u0627", + "jv": "\u0627\u0644\u062c\u0627\u0648\u064a\u0629", + "gay": "\u0627\u0644\u062c\u0627\u064a\u0648", + "gba": "\u0627\u0644\u062c\u0628\u064a\u0627", + "root": "\u0627\u0644\u062c\u0630\u0631", + "grb": "\u0627\u0644\u062c\u0631\u064a\u0628\u0648", + "gez": "\u0627\u0644\u062c\u0639\u0632\u064a\u0629", + "gon": "\u0627\u0644\u062c\u0646\u062f\u064a", + "kaj": "\u0627\u0644\u062c\u0648", + "gn": "\u0627\u0644\u062c\u0648\u0627\u0631\u0627\u0646\u064a", + "ka": "\u0627\u0644\u062c\u0648\u0631\u062c\u064a\u0629", + "gor": "\u0627\u0644\u062c\u0648\u0631\u0648\u0646\u062a\u0627\u0644\u0648", + "hit": "\u0627\u0644\u062d\u062b\u064a\u0629", + "km": "\u0627\u0644\u062e\u0645\u064a\u0631\u064a\u0629", + "kho": "\u0627\u0644\u062e\u0648\u062a\u0627\u0646\u064a\u0632", + "xh": "\u0627\u0644\u062e\u0648\u0633\u0627", + "dar": "\u0627\u0644\u062f\u0627\u0631\u062c\u0648\u0627", + "dak": "\u0627\u0644\u062f\u0627\u0643\u0648\u062a\u0627", + "da": "\u0627\u0644\u062f\u0627\u0646\u0645\u0627\u0631\u0643\u064a\u0629", + "dyu": "\u0627\u0644\u062f\u0627\u064a\u0644\u0627", + "din": "\u0627\u0644\u062f\u0646\u0643\u0627", + "dgr": "\u0627\u0644\u062f\u0648\u062c\u0631\u064a\u0628", + "doi": "\u0627\u0644\u062f\u0648\u062c\u0631\u064a\u0629", + "del": "\u0627\u0644\u062f\u064a\u0644\u0648\u064a\u0631", + "dua": "\u0627\u0644\u062f\u064a\u0648\u0644\u0627", + "rap": "\u0627\u0644\u0631\u0627\u0628\u0627\u0646\u064a", + "raj": "\u0627\u0644\u0631\u0627\u062c\u0627\u0633\u062b\u0627\u0646\u064a\u0629", + "rar": "\u0627\u0644\u0631\u0627\u0631\u0648\u062a\u0648\u0646\u062c\u0627\u0646\u064a", + "rn": "\u0627\u0644\u0631\u0646\u062f\u064a", + "rwk": "\u0627\u0644\u0631\u0648\u0627", + "ru": "\u0627\u0644\u0631\u0648\u0633\u064a\u0629", + "rm": "\u0627\u0644\u0631\u0648\u0645\u0627\u0646\u0634\u064a\u0629", + "ro": "\u0627\u0644\u0631\u0648\u0645\u0627\u0646\u064a\u0629", + "rof": "\u0627\u0644\u0631\u0648\u0645\u0628\u0648", + "zap": "\u0627\u0644\u0632\u0627\u0628\u0648\u062a\u064a\u0643", + "dje": "\u0627\u0644\u0632\u0627\u0631\u0645\u064a\u0629", + "za": "\u0627\u0644\u0632\u0647\u064a\u0648\u0646\u062c", + "zu": "\u0627\u0644\u0632\u0648\u0644\u0648", + "dz": "\u0627\u0644\u0632\u0648\u0646\u062e\u0627\u064a\u0629", + "zun": "\u0627\u0644\u0632\u0648\u0646\u064a\u0629", + "zen": "\u0627\u0644\u0632\u064a\u0646\u0627\u062c\u0627", + "sah": "\u0627\u0644\u0633\u0627\u062e\u064a\u0629", + "sas": "\u0627\u0644\u0633\u0627\u0633\u0627\u0643", + "sm": "\u0627\u0644\u0633\u0627\u0645\u0648\u0627\u0626\u064a\u0629", + "sma": "\u0627\u0644\u0633\u0627\u0645\u064a \u0627\u0644\u062c\u0646\u0648\u0628\u064a", + "se": "\u0627\u0644\u0633\u0627\u0645\u064a \u0627\u0644\u0634\u0645\u0627\u0644\u064a", + "sat": "\u0627\u0644\u0633\u0627\u0646\u062a\u0627\u0644\u064a", + "sg": "\u0627\u0644\u0633\u0627\u0646\u062c\u0648", + "sad": "\u0627\u0644\u0633\u0627\u0646\u062f\u0627\u0648\u064a", + "srn": "\u0627\u0644\u0633\u0631\u0627\u0646\u0627\u0646 \u062a\u0648\u0646\u062c\u0648", + "sc": "\u0627\u0644\u0633\u0631\u062f\u064a\u0646\u064a\u0629", + "srr": "\u0627\u0644\u0633\u0631\u0631", + "syr": "\u0627\u0644\u0633\u0631\u064a\u0627\u0646\u064a\u0629", + "sms": "\u0627\u0644\u0633\u0643\u0648\u0644\u062a \u0633\u0627\u0645\u064a", + "den": "\u0627\u0644\u0633\u0644\u0627\u0641\u064a\u0629", + "sk": "\u0627\u0644\u0633\u0644\u0648\u0641\u0627\u0643\u064a\u0629", + "sl": "\u0627\u0644\u0633\u0644\u0648\u0641\u0627\u0646\u064a\u0629", + "sd": "\u0627\u0644\u0633\u0646\u062f\u064a\u0629", + "sa": "\u0627\u0644\u0633\u0646\u0633\u0643\u0631\u064a\u062a\u064a\u0629", + "si": "\u0627\u0644\u0633\u0646\u0647\u0627\u0644\u064a\u0629", + "see": "\u0627\u0644\u0633\u0646\u064a\u0643\u0627", + "ss": "\u0627\u0644\u0633\u0648\u0627\u062a\u064a", + "sw": "\u0627\u0644\u0633\u0648\u0627\u062d\u0644\u064a\u0629", + "st": "\u0627\u0644\u0633\u0648\u062a\u0648 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629", + "nso": "\u0627\u0644\u0633\u0648\u062a\u0648 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629", + "sog": "\u0627\u0644\u0633\u0648\u062c\u062f\u064a\u0646", + "ckb": "\u0627\u0644\u0633\u0648\u0631\u0627\u0646\u064a\u0629 \u0627\u0644\u0643\u0631\u062f\u064a\u0629", + "sus": "\u0627\u0644\u0633\u0648\u0633\u0648", + "xog": "\u0627\u0644\u0633\u0648\u063a\u0627", + "suk": "\u0627\u0644\u0633\u0648\u0643\u0648\u0645\u0627", + "sux": "\u0627\u0644\u0633\u0648\u0645\u0627\u0631\u064a\u0629", + "ts": "\u0627\u0644\u0633\u0648\u0646\u062c\u0627", + "su": "\u0627\u0644\u0633\u0648\u0646\u062f\u0627\u0646\u064a\u0629", + "snk": "\u0627\u0644\u0633\u0648\u0646\u064a\u0646\u0643", + "sv": "\u0627\u0644\u0633\u0648\u064a\u062f\u064a\u0629", + "ceb": "\u0627\u0644\u0633\u064a\u0628\u0648\u0646\u064a\u0629", + "ii": "\u0627\u0644\u0633\u064a\u062a\u0634\u064a\u0648\u0646 \u064a\u064a", + "sid": "\u0627\u0644\u0633\u064a\u062f\u0627\u0645\u0648", + "bla": "\u0627\u0644\u0633\u064a\u0643\u0633\u064a\u0643\u064a\u0629", + "sel": "\u0627\u0644\u0633\u064a\u0644\u0643\u0628", + "shn": "\u0627\u0644\u0634\u0627\u0646\u064a\u0629", + "chy": "\u0627\u0644\u0634\u0627\u064a\u0627\u0646", + "cho": "\u0627\u0644\u0634\u0648\u0643\u062a\u0648", + "sn": "\u0627\u0644\u0634\u0648\u0646\u0627", + "chp": "\u0627\u0644\u0634\u064a\u0628\u0627\u0648\u0627\u064a\u0627\u0646", + "chr": "\u0627\u0644\u0634\u064a\u0631\u0648\u0643\u064a", + "ce": "\u0627\u0644\u0634\u064a\u0634\u0627\u0646\u064a\u0629", + "chn": "\u0627\u0644\u0634\u064a\u0646\u0648\u0643 \u062c\u0627\u0631\u062c\u0648\u0646", + "sr": "\u0627\u0644\u0635\u0631\u0628\u064a\u0629", + "dsb": "\u0627\u0644\u0635\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0641\u0644\u0649", + "hsb": "\u0627\u0644\u0635\u0631\u0628\u064a\u0629 \u0627\u0644\u0639\u0644\u064a\u0627", + "scn": "\u0627\u0644\u0635\u0642\u0644\u064a\u0629", + "so": "\u0627\u0644\u0635\u0648\u0645\u0627\u0644\u064a\u0629", + "zh": "\u0627\u0644\u0635\u064a\u0646\u064a\u0629", + "zh_Hant": "\u0627\u0644\u0635\u064a\u0646\u064a\u0629 \u0627\u0644\u062a\u0642\u0644\u064a\u062f\u064a\u0629", + "zh_Hans": "\u0627\u0644\u0635\u064a\u0646\u064a\u0629 \u0627\u0644\u0645\u0628\u0633\u0637\u0629", + "tg": "\u0627\u0644\u0637\u0627\u062c\u064a\u0643\u064a\u0629", + "he": "\u0627\u0644\u0639\u0628\u0631\u064a\u0629", + "ar": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629", + "shu": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u062a\u0634\u0627\u062f\u064a\u0629", + "ar_001": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0631\u0633\u0645\u064a\u0629 \u0627\u0644\u062d\u062f\u064a\u062b\u0629", + "jrb": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u064a\u0647\u0648\u062f\u064a\u0629", + "gag": "\u0627\u0644\u063a\u0627\u063a\u0648\u0632", + "gu": "\u0627\u0644\u063a\u0648\u062c\u0627\u0631\u0627\u062a\u064a\u0629", + "guz": "\u0627\u0644\u063a\u064a\u0632\u064a\u0629", + "gd": "\u0627\u0644\u063a\u064a\u0644\u064a\u0629 \u0627\u0644\u0623\u0633\u0643\u062a\u0644\u0646\u062f\u064a\u0629", + "fa": "\u0627\u0644\u0641\u0627\u0631\u0633\u064a\u0629", + "peo": "\u0627\u0644\u0641\u0627\u0631\u0633\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "jpr": "\u0627\u0644\u0641\u0627\u0631\u0633\u064a\u0629 \u0627\u0644\u064a\u0647\u0648\u062f\u064a\u0629", + "fo": "\u0627\u0644\u0641\u0627\u0631\u0648\u064a\u0632", + "fat": "\u0627\u0644\u0641\u0627\u0646\u062a\u064a", + "fan": "\u0627\u0644\u0641\u0627\u0646\u062c", + "vai": "\u0627\u0644\u0641\u0627\u064a", + "fr": "\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629", + "fr_CH": "\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629 \u0627\u0644\u0633\u0648\u064a\u0633\u0631\u064a\u0629", + "fro": "\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "fr_CA": "\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629 \u0627\u0644\u0643\u0646\u062f\u064a\u0629", + "frm": "\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629 \u0627\u0644\u0648\u0633\u0637\u0649", + "fy": "\u0627\u0644\u0641\u0631\u064a\u0632\u064a\u0627\u0646", + "frs": "\u0627\u0644\u0641\u0631\u064a\u0632\u064a\u0646\u064a\u0629 \u0627\u0644\u0634\u0631\u0642\u064a\u0629", + "frr": "\u0627\u0644\u0641\u0631\u064a\u0632\u064a\u0646\u064a\u0629 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629", + "fur": "\u0627\u0644\u0641\u0631\u064a\u0644\u0627\u064a\u0627\u0646", + "fil": "\u0627\u0644\u0641\u0644\u0628\u064a\u0646\u064a\u0629", + "ff": "\u0627\u0644\u0641\u0644\u0629", + "nl_BE": "\u0627\u0644\u0641\u0644\u0645\u0646\u0643\u064a\u0629", + "fi": "\u0627\u0644\u0641\u0646\u0644\u0646\u062f\u064a\u0629", + "vot": "\u0627\u0644\u0641\u0648\u062a\u064a\u0643", + "fon": "\u0627\u0644\u0641\u0648\u0646", + "vun": "\u0627\u0644\u0641\u0648\u0646\u062c\u0648", + "vi": "\u0627\u0644\u0641\u064a\u062a\u0646\u0627\u0645\u064a\u0629", + "fj": "\u0627\u0644\u0641\u064a\u062c\u064a\u0629", + "ve": "\u0627\u0644\u0641\u064a\u0646\u062f\u0627", + "phn": "\u0627\u0644\u0641\u064a\u0646\u064a\u0642\u064a\u0629", + "cop": "\u0627\u0644\u0642\u0628\u0637\u064a\u0629", + "kab": "\u0627\u0644\u0642\u0628\u064a\u0644\u064a\u0629", + "dzg": "\u0627\u0644\u0642\u0631\u0639\u0627\u0646\u064a\u0629", + "ky": "\u0627\u0644\u0642\u0631\u063a\u064a\u0632\u064a\u0629", + "swb": "\u0627\u0644\u0642\u0645\u0631\u064a\u0629", + "kum": "\u0627\u0644\u0642\u0645\u0648\u0642\u064a\u0629", + "got": "\u0627\u0644\u0642\u0648\u0637\u064a\u0629", + "kbd": "\u0627\u0644\u0643\u0627\u0628\u0627\u0631\u062f\u0627\u064a\u0627\u0646", + "kac": "\u0627\u0644\u0643\u0627\u062a\u0634\u064a\u0646", + "cad": "\u0627\u0644\u0643\u0627\u062f\u0648", + "kaa": "\u0627\u0644\u0643\u0627\u0631\u0627-\u0643\u0627\u0644\u0628\u0627\u0643", + "krc": "\u0627\u0644\u0643\u0627\u0631\u0627\u062a\u0634\u0627\u064a-\u0628\u0627\u0644\u0643\u0627\u0631", + "car": "\u0627\u0644\u0643\u0627\u0631\u064a\u0628\u064a\u0629", + "krl": "\u0627\u0644\u0643\u0627\u0631\u064a\u0644\u064a\u0629", + "kk": "\u0627\u0644\u0643\u0627\u0632\u0627\u062e\u0633\u062a\u0627\u0646\u064a\u0629", + "kha": "\u0627\u0644\u0643\u0627\u0632\u064a\u0629", + "csb": "\u0627\u0644\u0643\u0627\u0634\u0628\u0627\u064a\u0627\u0646", + "kl": "\u0627\u0644\u0643\u0627\u0644\u0627\u0644\u064a\u0633\u062a", + "xal": "\u0627\u0644\u0643\u0627\u0644\u0645\u064a\u0643", + "kam": "\u0627\u0644\u0643\u0627\u0645\u0628\u0627", + "kn": "\u0627\u0644\u0643\u0627\u0646\u0627\u062f\u0627", + "kr": "\u0627\u0644\u0643\u0627\u0646\u064a\u0648\u0631\u064a", + "cay": "\u0627\u0644\u0643\u0627\u064a\u0648\u062c\u064a\u0629", + "kpe": "\u0627\u0644\u0643\u0628\u064a\u0644", + "ca": "\u0627\u0644\u0643\u062a\u0627\u0644\u0627\u0646\u064a\u0629", + "kut": "\u0627\u0644\u0643\u062a\u064a\u0646\u0627\u064a", + "ku": "\u0627\u0644\u0643\u0631\u062f\u064a\u0629", + "hr": "\u0627\u0644\u0643\u0631\u0648\u0627\u062a\u064a\u0629", + "cr": "\u0627\u0644\u0643\u0631\u0649", + "mus": "\u0627\u0644\u0643\u0631\u064a\u0643", + "ks": "\u0627\u0644\u0643\u0634\u0645\u064a\u0631\u064a\u0629", + "tlh": "\u0627\u0644\u0643\u0644\u064a\u0646\u062c\u0648\u0646", + "yue": "\u0627\u0644\u0643\u064e\u0646\u0652\u062a\u064f\u0648\u0646\u064a\u0629", + "co": "\u0627\u0644\u0643\u0648\u0631\u0633\u064a\u0643\u064a\u0629", + "kw": "\u0627\u0644\u0643\u0648\u0631\u0646\u064a\u0629", + "kfo": "\u0627\u0644\u0643\u0648\u0631\u0648", + "kru": "\u0627\u0644\u0643\u0648\u0631\u0648\u062e", + "ko": "\u0627\u0644\u0643\u0648\u0631\u064a\u0629", + "kos": "\u0627\u0644\u0643\u0648\u0633\u0631\u0627\u064a\u0646", + "kv": "\u0627\u0644\u0643\u0648\u0645\u064a", + "kg": "\u0627\u0644\u0643\u0648\u0646\u063a\u0648", + "kok": "\u0627\u0644\u0643\u0648\u0646\u0643\u0627\u0646\u064a\u0629", + "kaw": "\u0627\u0644\u0643\u0648\u064a", + "qu": "\u0627\u0644\u0643\u0648\u064a\u062a\u0634\u0648\u0627", + "ki": "\u0627\u0644\u0643\u064a\u0643\u064a\u0648", + "kmb": "\u0627\u0644\u0643\u064a\u0645\u0628\u0646\u062f\u0648", + "rw": "\u0627\u0644\u0643\u064a\u0646\u064a\u0627\u0631\u0648\u0627\u0646\u062f\u0627", + "kj": "\u0627\u0644\u0643\u064a\u0648\u0646\u064a\u0627\u0645\u0627", + "lv": "\u0627\u0644\u0644\u0627\u062a\u0641\u064a\u0629", + "la": "\u0627\u0644\u0644\u0627\u062a\u064a\u0646\u064a\u0629", + "lad": "\u0627\u0644\u0644\u0627\u062f\u064a\u0646\u0648", + "lam": "\u0627\u0644\u0644\u0627\u0645\u0628\u0627", + "lah": "\u0627\u0644\u0644\u0627\u0647\u0646\u062f\u0627", + "lo": "\u0627\u0644\u0644\u0627\u0648\u064a\u0629", + "lu": "\u0627\u0644\u0644\u0628\u0627-\u0643\u0627\u062a\u0627\u0646\u062c\u0627", + "lua": "\u0627\u0644\u0644\u0628\u0627-\u0644\u0624\u0644\u0624", + "lt": "\u0627\u0644\u0644\u062a\u0648\u0627\u0646\u064a\u0629", + "ban": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0644\u064a\u0629", + "nap": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0646\u0627\u0628\u0648\u0644\u064a\u0629", + "ia": "\u0627\u0644\u0644\u0651\u063a\u0629 \u0627\u0644\u0648\u0633\u064a\u0637\u0629", + "luo": "\u0627\u0644\u0644\u0648", + "jbo": "\u0627\u0644\u0644\u0648\u062c\u0628\u0627\u0646", + "loz": "\u0627\u0644\u0644\u0648\u0632\u064a", + "lui": "\u0627\u0644\u0644\u0648\u0633\u064a\u0646\u0648", + "lb": "\u0627\u0644\u0644\u0648\u0643\u0633\u0645\u0628\u0631\u062c\u064a\u0629", + "smj": "\u0627\u0644\u0644\u0648\u0644 \u0633\u0627\u0645\u064a", + "lun": "\u0627\u0644\u0644\u0648\u0646\u062f\u0627", + "lez": "\u0627\u0644\u0644\u064a\u0632\u062c\u064a\u0629", + "li": "\u0627\u0644\u0644\u064a\u0645\u0628\u0631\u062c\u064a\u0634\u064a\u0629", + "ln": "\u0627\u0644\u0644\u064a\u0646\u062c\u0627\u0644\u0627", + "jmc": "\u0627\u0644\u0645\u0627\u062a\u0634\u0627\u0645\u064a\u0629", + "mag": "\u0627\u0644\u0645\u0627\u062c\u0627", + "mad": "\u0627\u0644\u0645\u0627\u062f\u0631\u064a\u0632", + "mr": "\u0627\u0644\u0645\u0627\u0631\u0627\u062b\u064a", + "mh": "\u0627\u0644\u0645\u0627\u0631\u0634\u0627\u0644\u064a\u0629", + "mwr": "\u0627\u0644\u0645\u0627\u0631\u0648\u0627\u0631\u064a\u0629", + "chm": "\u0627\u0644\u0645\u0627\u0631\u064a", + "mas": "\u0627\u0644\u0645\u0627\u0633\u0627\u064a", + "mak": "\u0627\u0644\u0645\u0627\u0643\u0627\u0633\u0627\u0631", + "mg": "\u0627\u0644\u0645\u0627\u0644\u0627\u062c\u0627\u0634\u064a\u0629", + "dv": "\u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641\u064a\u0629", + "mt": "\u0627\u0644\u0645\u0627\u0644\u0637\u064a\u0629", + "ml": "\u0627\u0644\u0645\u0627\u0644\u064a\u0627\u0644\u0627\u0645", + "mdr": "\u0627\u0644\u0645\u0627\u0646\u062f\u0627\u0631", + "man": "\u0627\u0644\u0645\u0627\u0646\u062f\u064a\u0646\u063a", + "mnc": "\u0627\u0644\u0645\u0627\u0646\u0634\u0648", + "mni": "\u0627\u0644\u0645\u0627\u0646\u064a\u0628\u0648\u0631\u064a\u0629", + "mi": "\u0627\u0644\u0645\u0627\u0648\u0631\u064a\u0629", + "mai": "\u0627\u0644\u0645\u0627\u064a\u062b\u064a\u0644\u064a", + "egy": "\u0627\u0644\u0645\u0635\u0631\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "mk": "\u0627\u0644\u0645\u0642\u062f\u0648\u0646\u064a\u0629", + "mn": "\u0627\u0644\u0645\u0646\u063a\u0648\u0644\u064a\u0629", + "gv": "\u0627\u0644\u0645\u0646\u0643\u064a\u0629", + "mfe": "\u0627\u0644\u0645\u0648\u0631\u0633\u064a\u0627\u0646\u064a\u0629", + "mos": "\u0627\u0644\u0645\u0648\u0633\u064a", + "mdf": "\u0627\u0644\u0645\u0648\u0643\u0634\u0627", + "ro_MD": "\u0627\u0644\u0645\u0648\u0644\u062f\u0648\u0641\u064a\u0629", + "moh": "\u0627\u0644\u0645\u0648\u0647\u0648\u0643", + "mwl": "\u0627\u0644\u0645\u064a\u0631\u0627\u0646\u062f\u064a\u0632", + "mer": "\u0627\u0644\u0645\u064a\u0631\u0648", + "lus": "\u0627\u0644\u0645\u064a\u0632\u0648", + "mic": "\u0627\u0644\u0645\u064a\u0643\u0645\u0627\u0643\u064a\u0648\u0646\u064a\u0629", + "min": "\u0627\u0644\u0645\u064a\u0646\u0627\u0646\u062c\u0643\u0627\u0628\u0627\u0648", + "men": "\u0627\u0644\u0645\u064a\u0646\u062f", + "nv": "\u0627\u0644\u0646\u0627\u0641\u0627\u062c\u0648", + "ng": "\u0627\u0644\u0646\u062f\u0648\u0646\u062c\u0627", + "nr": "\u0627\u0644\u0646\u062f\u064a\u0628\u064a\u0644 \u0627\u0644\u062c\u0646\u0648\u0628\u064a", + "nd": "\u0627\u0644\u0646\u062f\u064a\u0628\u064a\u0644 \u0627\u0644\u0634\u0645\u0627\u0644\u064a", + "no": "\u0627\u0644\u0646\u0631\u0648\u064a\u062c\u064a\u0629", + "nzi": "\u0627\u0644\u0646\u0632\u064a\u0645\u0627", + "new": "\u0627\u0644\u0646\u0648\u0627\u0631\u064a\u0629", + "nwc": "\u0627\u0644\u0646\u0648\u0627\u0631\u064a\u0629 \u0627\u0644\u062a\u0642\u0644\u064a\u062f\u064a\u0629", + "nog": "\u0627\u0644\u0646\u0648\u062c\u0627\u064a", + "non": "\u0627\u0644\u0646\u0648\u0631\u0633 \u0627\u0644\u0642\u062f\u064a\u0645", + "na": "\u0627\u0644\u0646\u0648\u0631\u0648", + "nus": "\u0627\u0644\u0646\u0648\u064a\u0631", + "nia": "\u0627\u0644\u0646\u064a\u0627\u0633", + "nym": "\u0627\u0644\u0646\u064a\u0627\u0645\u0648\u064a\u0632\u064a", + "ny": "\u0627\u0644\u0646\u064a\u0627\u0646\u062c\u0627", + "nyn": "\u0627\u0644\u0646\u064a\u0627\u0646\u0643\u0648\u0644", + "ne": "\u0627\u0644\u0646\u064a\u0628\u0627\u0644\u064a\u0629", + "nn": "\u0627\u0644\u0646\u064a\u0646\u0648\u0631\u0633\u0643 \u0627\u0644\u0646\u0631\u0648\u064a\u062c\u064a", + "nyo": "\u0627\u0644\u0646\u064a\u0648\u0631\u0648", + "niu": "\u0627\u0644\u0646\u064a\u0648\u064a", + "ht": "\u0627\u0644\u0647\u0627\u064a\u062a\u064a\u0629", + "hup": "\u0627\u0644\u0647\u0628\u0627", + "hmn": "\u0627\u0644\u0647\u0645\u0648\u0646\u062c\u064a\u0629", + "hi": "\u0627\u0644\u0647\u0646\u062f\u064a\u0629", + "hu": "\u0627\u0644\u0647\u0646\u063a\u0627\u0631\u064a\u0629", + "ha": "\u0627\u0644\u0647\u0648\u0633\u0627", + "nl": "\u0627\u0644\u0647\u0648\u0644\u0646\u062f\u064a\u0629", + "dum": "\u0627\u0644\u0647\u0648\u0644\u0646\u062f\u064a\u0629 \u0627\u0644\u0648\u0633\u0637\u0649", + "hai": "\u0627\u0644\u0647\u064a\u062f\u0627", + "ho": "\u0627\u0644\u0647\u064a\u0631\u064a \u0645\u0648\u062a\u0648", + "hz": "\u0627\u0644\u0647\u064a\u0631\u064a\u0631\u0648", + "hil": "\u0627\u0644\u0647\u064a\u0644\u064a\u062c\u064a\u0646\u0648\u0646", + "war": "\u0627\u0644\u0648\u0627\u0631\u0627\u064a", + "was": "\u0627\u0644\u0648\u0627\u0634\u0648", + "wae": "\u0627\u0644\u0648\u0627\u0644\u0633\u0631", + "wal": "\u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a\u0627", + "cy": "\u0627\u0644\u0648\u0644\u0632\u064a\u0629", + "wo": "\u0627\u0644\u0648\u0644\u0648\u0641", + "wa": "\u0627\u0644\u0648\u0644\u0648\u0646\u064a\u0629", + "ja": "\u0627\u0644\u064a\u0627\u0628\u0627\u0646\u064a\u0629", + "yap": "\u0627\u0644\u064a\u0627\u0628\u064a\u0632", + "yao": "\u0627\u0644\u064a\u0627\u0648", + "uga": "\u0627\u0644\u064a\u062c\u0627\u0631\u064a\u062a\u064a\u0643", + "yi": "\u0627\u0644\u064a\u062f\u064a\u0634\u064a\u0629", + "yo": "\u0627\u0644\u064a\u0648\u0631\u0648\u0628\u064a\u0629", + "el": "\u0627\u0644\u064a\u0648\u0646\u0627\u0646\u064a\u0629", + "grc": "\u0627\u0644\u064a\u0648\u0646\u0627\u0646\u064a\u0629 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "ebu": "\u0625\u0645\u0628\u0648", + "nqo": "\u0623\u0646\u0643\u0648", + "bax": "\u0628\u0627\u0645\u0646", + "zxx": "\u0628\u062f\u0648\u0646 \u0645\u062d\u062a\u0648\u0649 \u0644\u063a\u0648\u064a", + "bez": "\u0628\u064a\u0646\u0627", + "twq": "\u062a\u0627\u0633\u0627\u0648\u0627\u0642", + "shi": "\u062a\u0634\u0644\u062d\u064a\u062a", + "cgg": "\u062a\u0634\u064a\u063a\u0627", + "tog": "\u062a\u0648\u0646\u062c\u0627 - \u0646\u064a\u0627\u0633\u0627", + "dav": "\u062a\u064a\u062a\u0627", + "teo": "\u062a\u064a\u0633\u0648", + "dyo": "\u062c\u0648\u0644\u0627 \u0641\u0648\u0646\u064a\u0627", + "zbl": "\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0639\u0627\u064a\u064a\u0631 \u0627\u0644\u0623\u0633\u0627\u0633\u064a\u0629", + "zza": "\u0632\u0627\u0632\u0627", + "saq": "\u0633\u0627\u0645\u0628\u0648\u0631\u0648", + "sbp": "\u0633\u0627\u0646\u063a\u0648", + "syc": "\u0633\u0631\u064a\u0627\u0646\u064a\u0629 \u062a\u0642\u0644\u064a\u062f\u064a\u0629", + "cu": "\u0633\u0644\u0627\u0641\u064a\u0629 \u0643\u0646\u0633\u064a\u0629", + "seh": "\u0633\u064a\u0646\u0627", + "ksb": "\u0634\u0627\u0645\u0628\u0627\u0644\u0627", + "sh": "\u0635\u0631\u0628\u064a\u0629-\u0643\u0631\u0648\u0627\u062a\u064a\u0629", + "rom": "\u063a\u062c\u0631\u064a", + "gwi": "\u063a\u0648\u062a\u0634\u0646", + "kea": "\u0643\u0627\u0628\u0648\u0641\u064a\u0631\u062f\u064a\u0627\u0646\u0648", + "kln": "\u0643\u0627\u0644\u064a\u0646\u062c\u064a\u0646", + "kbl": "\u0643\u0627\u0646\u0645\u0628\u0648", + "nmg": "\u0643\u0648\u0627\u0633\u064a\u0648", + "koi": "\u0643\u0648\u0645\u064a-\u0628\u064a\u0631\u0645\u0627\u064a\u0627\u0643", + "khq": "\u0643\u0648\u064a\u0631\u0627 \u062a\u0634\u064a\u0646\u064a", + "ses": "\u0643\u0648\u064a\u0631\u0627\u0628\u0648\u0631\u0648 \u0633\u064a\u0646\u064a", + "quc": "\u0643\u064a\u0634\u064a", + "lkt": "\u0644\u0627\u0643\u0648\u062a\u0627", + "lag": "\u0644\u0627\u0646\u062c\u064a", + "mul": "\u0644\u063a\u0627\u062a \u0645\u062a\u0639\u062f\u062f\u0629", + "eu": "\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0633\u0643", + "bfd": "\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0641\u0648\u062a", + "ksf": "\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0641\u064a\u0627", + "bum": "\u0644\u063a\u0629 \u0627\u0644\u0628\u0648\u0644\u0648", + "trv": "\u0644\u063a\u0629 \u0627\u0644\u062a\u0627\u0631\u0648\u0643\u0648", + "ssy": "\u0644\u063a\u0629 \u0627\u0644\u0633\u0627\u0647\u0648", + "bbj": "\u0644\u063a\u0629 \u0627\u0644\u063a\u0648\u0645\u0627\u0644\u0627", + "vo": "\u0644\u063a\u0629 \u0627\u0644\u0641\u0648\u0644\u0627\u0628\u0648\u0643", + "ksh": "\u0644\u063a\u0629 \u0627\u0644\u0643\u0648\u0644\u0648\u0646\u064a\u0627\u0646", + "bkm": "\u0644\u063a\u0629 \u0627\u0644\u0643\u0648\u0645", + "swc": "\u0644\u063a\u0629 \u0627\u0644\u0643\u0648\u0646\u063a\u0648 \u0627\u0644\u0633\u0648\u0627\u062d\u0644\u064a\u0629", + "luy": "\u0644\u063a\u0629 \u0627\u0644\u0644\u0648\u064a\u0627", + "ms": "\u0644\u063a\u0629 \u0627\u0644\u0645\u0644\u0627\u064a\u0648", + "byv": "\u0644\u063a\u0629 \u0627\u0644\u0645\u064a\u062f\u0648\u0645\u0628\u0627", + "naq": "\u0644\u063a\u0629 \u0627\u0644\u0646\u0627\u0645\u0627", + "nnh": "\u0644\u063a\u0629 \u0627\u0644\u0646\u062c\u064a\u0645\u0628\u0648\u0646", + "haw": "\u0644\u063a\u0629 \u0623\u0647\u0644 \u0627\u0644\u0647\u0627\u0648\u0627\u064a", + "gil": "\u0644\u063a\u0629 \u0623\u0647\u0644 \u062c\u0628\u0644 \u0637\u0627\u0631\u0642", + "crh": "\u0644\u063a\u0629 \u062a\u062a\u0627\u0631 \u0627\u0644\u0642\u0631\u0645", + "und": "\u0644\u063a\u0629 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629", + "mde": "\u0645\u0627\u0628\u0627", + "mgh": "\u0645\u0627\u062e\u0627\u0648\u0627-\u0645\u064a\u062a\u0648", + "kde": "\u0645\u0627\u0643\u0648\u0646\u062f\u0647", + "mua": "\u0645\u0646\u062f\u0646\u062c", + "lol": "\u0645\u0646\u063a\u0648\u0644\u0649", + "mgo": "\u0645\u064a\u062a\u0627", + "sba": "\u0646\u0627\u0645\u0628\u064a", + "jgo": "\u0646\u063a\u0648\u0645\u0628\u0627", + "yav": "\u064a\u0627\u0646\u062c\u0628\u0646", + "ybb": "\u064a\u0645\u0628\u0627", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "mye": "Myene", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/be-BY.json b/public/intl/language/be-BY.json new file mode 100644 index 0000000..8d8705e --- /dev/null +++ b/public/intl/language/be-BY.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0430\u0431\u0445\u0430\u0437\u0441\u043a\u0430\u044f", + "av": "\u0430\u0432\u0430\u0440\u0441\u043a\u0430\u044f", + "ady": "\u0430\u0434\u044b\u0433\u0435\u0439\u0441\u043a\u0430\u044f", + "az": "\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0430\u044f", + "ay": "\u0430\u0439\u043c\u0430\u0440\u0430", + "akk": "\u0430\u043a\u0430\u0434\u0437\u043a\u0430\u044f", + "sq": "\u0430\u043b\u0431\u0430\u043d\u0441\u043a\u0430\u044f", + "ale": "\u0430\u043b\u0435\u0443\u0446\u043a\u0430\u044f", + "am": "\u0430\u043c\u0445\u0430\u0440\u0441\u043a\u0430\u044f", + "en": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u044f", + "en_AU": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u044f (\u0430\u045e\u0441\u0442\u0440\u0430\u043b.)", + "en_US": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u044f (\u0417\u0428\u0410)", + "en_CA": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u044f (\u043a\u0430\u043d\u0430\u0434.)", + "ar": "\u0430\u0440\u0430\u0431\u0441\u043a\u0430\u044f", + "an": "\u0430\u0440\u0430\u0433\u043e\u043d\u0441\u043a\u0430\u044f", + "arc": "\u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0430\u044f", + "hy": "\u0430\u0440\u043c\u044f\u043d\u0441\u043a\u0430\u044f", + "as": "\u0430\u0441\u0430\u043c\u0441\u043a\u0430\u044f", + "ast": "\u0430\u0441\u0442\u0443\u0440\u044b\u0439\u0441\u043a\u0430\u044f", + "af": "\u0430\u0444\u0440\u044b\u043a\u0430\u0430\u043d\u0441", + "bg": "\u0431\u0430\u043b\u0433\u0430\u0440\u0441\u043a\u0430\u044f", + "eu": "\u0431\u0430\u0441\u043a\u0441\u043a\u0430\u044f", + "bs": "\u0431\u0430\u0441\u043d\u0456\u0439\u0441\u043a\u0430\u044f", + "ba": "\u0431\u0430\u0448\u043a\u0456\u0440\u0441\u043a\u0430\u044f", + "be": "\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f", + "bn": "\u0431\u0435\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0430\u044f", + "br": "\u0431\u0440\u044d\u0442\u043e\u043d\u0441\u043a\u0430\u044f", + "bua": "\u0431\u0443\u0440\u0430\u0446\u043a\u0430\u044f", + "vi": "\u0432\u2019\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0430\u044f", + "cy": "\u0432\u0430\u043b\u0456\u0439\u0441\u043a\u0430\u044f", + "hu": "\u0432\u0435\u043d\u0433\u0435\u0440\u0441\u043a\u0430\u044f", + "nl": "\u0433\u0430\u043b\u0430\u043d\u0434\u0441\u043a\u0430\u044f", + "gl": "\u0433\u0430\u043b\u0456\u0441\u0456\u0439\u0441\u043a\u0430\u044f", + "ka": "\u0433\u0440\u0443\u0437\u0456\u043d\u0441\u043a\u0430\u044f", + "el": "\u0433\u0440\u044d\u0446\u043a\u0430\u044f", + "gn": "\u0433\u0443\u0430\u0440\u0430\u043d\u0456", + "gu": "\u0433\u0443\u044f\u0440\u0430\u0446\u0456", + "da": "\u0434\u0430\u0446\u043a\u0430\u044f", + "zu": "\u0437\u0443\u043b\u0443", + "yi": "\u0456\u0434\u044b\u0448", + "id": "\u0456\u043d\u0434\u0430\u043d\u0435\u0437\u0456\u0439\u0441\u043a\u0430\u044f", + "ia": "\u0456\u043d\u0442\u044d\u0440\u043b\u0456\u043d\u0433\u0432\u0430", + "ie": "\u0456\u043d\u0442\u044d\u0440\u043b\u0456\u043d\u0433\u0432\u0435", + "ga": "\u0456\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0430\u044f", + "is": "\u0456\u0441\u043b\u0430\u043d\u0434\u0441\u043a\u0430\u044f", + "es": "\u0456\u0441\u043f\u0430\u043d\u0441\u043a\u0430\u044f", + "es_419": "\u0456\u0441\u043f\u0430\u043d\u0441\u043a\u0430\u044f (\u043b\u0430\u0446\u0456\u043d\u0430\u0430\u043c\u0435\u0440.)", + "it": "\u0456\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0430\u044f", + "he": "\u0456\u045e\u0440\u044b\u0442", + "kk": "\u043a\u0430\u0437\u0430\u0445\u0441\u043a\u0430\u044f", + "kn": "\u043a\u0430\u043d\u043d\u0430\u0434\u0430", + "ko": "\u043a\u0430\u0440\u044d\u0439\u0441\u043a\u0430\u044f", + "ca": "\u043a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u043a\u0430\u044f", + "zh": "\u043a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f", + "tlh": "\u043a\u043b\u0456\u043d\u0433\u043e\u043d", + "cop": "\u043a\u043e\u043f\u0446\u043a\u0430\u044f", + "ku": "\u043a\u0443\u0440\u0434\u0441\u043a\u0430\u044f", + "lo": "\u043b\u0430\u043e\u0441\u043a\u0430\u044f", + "lv": "\u043b\u0430\u0442\u044b\u0448\u0441\u043a\u0430\u044f", + "la": "\u043b\u0430\u0446\u0456\u043d\u0441\u043a\u0430\u044f", + "ln": "\u043b\u0456\u043d\u0433\u0430\u043b\u0430", + "lt": "\u043b\u0456\u0442\u043e\u045e\u0441\u043a\u0430\u044f", + "mk": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0430\u044f", + "ms": "\u043c\u0430\u043b\u0430\u0439\u0441\u043a\u0430\u044f", + "ml": "\u043c\u0430\u043b\u0430\u044f\u043b\u0430\u043c\u0441\u043a\u0430\u044f", + "ro_MD": "\u043c\u0430\u043b\u0434\u0430\u045e\u0441\u043a\u0430\u044f", + "mt": "\u043c\u0430\u043b\u044c\u0442\u044b\u0439\u0441\u043a\u0430\u044f", + "mn": "\u043c\u0430\u043d\u0433\u043e\u043b\u044c\u0441\u043a\u0430\u044f", + "mr": "\u043c\u0430\u0440\u0430\u0442\u0445\u0456", + "no": "\u043d\u0430\u0440\u0432\u0435\u0436\u0441\u043a\u0430\u044f", + "nn": "\u043d\u0430\u0440\u0432\u0435\u0436\u0441\u043a\u0430\u044f (\u043d\u044e\u043d\u043e\u0440\u0441\u043a)", + "nb": "\u043d\u0430\u0440\u0432\u044d\u0441\u043a\u0430\u044f \u0431\u0443\u043a\u043c\u0430\u043b", + "und": "\u043d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u043c\u043e\u0432\u0430", + "ne": "\u043d\u0435\u043f\u0430\u043b\u044c\u0441\u043a\u0430\u044f", + "de": "\u043d\u044f\u043c\u0435\u0446\u043a\u0430\u044f", + "de_AT": "\u043d\u044f\u043c\u0435\u0446\u043a\u0430\u044f (\u0430\u045e\u0441\u0442\u0440.)", + "de_CH": "\u043d\u044f\u043c\u0435\u0446\u043a\u0430\u044f (\u0448\u0432\u0435\u0439\u0446.)", + "pa": "\u043f\u0430\u043d\u0434\u0436\u0430\u0431\u0456", + "pt": "\u043f\u0430\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0430\u044f", + "pt_BR": "\u043f\u0430\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0430\u044f (\u0431\u0440\u0430\u0437\u0456\u043b.)", + "pl": "\u043f\u043e\u043b\u044c\u0441\u043a\u0430\u044f", + "oc": "\u043f\u0440\u0430\u0432\u0430\u043d\u0441\u0430\u043b\u044c\u0441\u043a\u0430\u044f", + "ps": "\u043f\u0443\u0448\u0442\u0443", + "ro": "\u0440\u0443\u043c\u044b\u043d\u0441\u043a\u0430\u044f", + "ru": "\u0440\u0443\u0441\u043a\u0430\u044f", + "so": "\u0441\u0430\u043c\u0430\u043b\u0456\u0439\u0441\u043a\u0430\u044f", + "sa": "\u0441\u0430\u043d\u0441\u043a\u0440\u044b\u0442", + "sh": "\u0441\u0435\u0440\u0431\u0441\u043a\u0430-\u0445\u0430\u0440\u0432\u0430\u0446\u043a\u0430\u044f", + "sr": "\u0441\u0435\u0440\u0431\u0441\u043a\u0430\u044f", + "si": "\u0441\u0456\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0430\u044f", + "sd": "\u0441\u0456\u043d\u0434\u0445\u0456", + "sk": "\u0441\u043b\u0430\u0432\u0430\u0446\u043a\u0430\u044f", + "sl": "\u0441\u043b\u0430\u0432\u0435\u043d\u0441\u043a\u0430\u044f", + "zh_Hans": "\u0441\u043f\u0440\u043e\u0448\u0447\u0430\u043d\u0430\u044f \u043a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f", + "ang": "\u0441\u0442\u0430\u0440\u0430\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u044f", + "grc": "\u0441\u0442\u0430\u0440\u0430\u0433\u0440\u044d\u0446\u043a\u0430\u044f", + "fro": "\u0441\u0442\u0430\u0440\u0430\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f", + "egy": "\u0441\u0442\u0430\u0440\u0430\u044d\u0433\u0456\u043f\u0435\u0446\u043a\u0430\u044f", + "sw": "\u0441\u0443\u0430\u0445\u0456\u043b\u0456", + "su": "\u0441\u0443\u0434\u0430\u043d\u0441\u043a\u0430\u044f", + "fil": "\u0442\u0430\u0433\u0430\u043b\u044c\u0441\u043a\u0430\u044f", + "th": "\u0442\u0430\u0439\u0441\u043a\u0430\u044f", + "ta": "\u0442\u0430\u043c\u0456\u043b\u044c\u0441\u043a\u0430\u044f", + "tt": "\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0430\u044f", + "zh_Hant": "\u0442\u0440\u0430\u0434\u044b\u0446\u044b\u0439\u043d\u0430\u044f \u043a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f", + "tk": "\u0442\u0443\u0440\u043a\u043c\u0435\u043d\u0441\u043a\u0430\u044f", + "tr": "\u0442\u0443\u0440\u044d\u0446\u043a\u0430\u044f", + "ti": "\u0442\u044b\u0433\u0440\u044b\u043d\u044c\u044f", + "te": "\u0442\u044d\u043b\u0443\u0433\u0443", + "uz": "\u0443\u0437\u0431\u0435\u043a\u0441\u043a\u0430\u044f", + "ug": "\u0443\u0439\u0433\u0443\u0440\u0441\u043a\u0430\u044f", + "uk": "\u0443\u043a\u0440\u0430\u0456\u043d\u0441\u043a\u0430\u044f", + "ur": "\u0443\u0440\u0434\u0443", + "fa": "\u0444\u0430\u0440\u0441\u0456", + "fo": "\u0444\u0430\u0440\u044d\u0440\u0441\u043a\u0430\u044f", + "fi": "\u0444\u0456\u043d\u0441\u043a\u0430\u044f", + "nl_BE": "\u0444\u043b\u0430\u043c\u0430\u043d\u0434\u0441\u043a\u0430\u044f", + "fr": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f", + "fr_CA": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f (\u043a\u0430\u043d\u0430\u0434.)", + "fr_CH": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f (\u0448\u0432\u0435\u0439\u0446.)", + "fy": "\u0444\u0440\u044b\u0437\u0441\u043a\u0430\u044f", + "hr": "\u0445\u0430\u0440\u0432\u0430\u0446\u043a\u0430\u044f", + "hi": "\u0445\u0456\u043d\u0434\u0437\u0456", + "xh": "\u0445\u043e\u0441\u0430", + "ce": "\u0447\u0430\u0447\u044d\u043d\u0441\u043a\u0430\u044f", + "cv": "\u0447\u0443\u0432\u0430\u0448\u0441\u043a\u0430\u044f", + "cs": "\u0447\u044d\u0448\u0441\u043a\u0430\u044f", + "gd": "\u0448\u0430\u0442\u043b\u0430\u043d\u0434\u0441\u043a\u0430\u044f \u0433\u044d\u043b\u044c\u0441\u043a\u0430\u044f", + "sv": "\u0448\u0432\u0435\u0434\u0441\u043a\u0430\u044f", + "eo": "\u044d\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u0430", + "et": "\u044d\u0441\u0442\u043e\u043d\u0441\u043a\u0430\u044f", + "jv": "\u044f\u0432\u0430\u043d\u0441\u043a\u0430\u044f", + "sah": "\u044f\u043a\u0443\u0446\u043a\u0430\u044f", + "ja": "\u044f\u043f\u043e\u043d\u0441\u043a\u0430\u044f", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "aa": "Afar", + "afh": "Afrihili", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "bss": "Akoose", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "anp": "Angika", + "njo": "Ao Naga", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "asa": "Asu", + "cch": "Atsam", + "ae": "Avestan", + "awa": "Awadhi", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bm": "Bambara", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bem": "Bemba", + "bez": "Bena", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brx": "Bodo", + "brh": "Brahui", + "bra": "Braj", + "en_GB": "British English", + "bug": "Buginese", + "bum": "Bulu", + "my": "Burmese", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "tzm": "Central Atlas Tamazight", + "dtp": "Central Dusun", + "ckb": "Central Kurdish", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "Chiga", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "swc": "Congo Swahili", + "kw": "Cornish", + "co": "Corsican", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula", + "dz": "Dzongkha", + "frs": "Eastern Frisian", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "ebu": "Embu", + "egl": "Emilian", + "myv": "Erzya", + "pt_PT": "European Portuguese", + "es_ES": "European Spanish", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fj": "Fijian", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gag": "Gagauz", + "gan": "Gan Chinese", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "guz": "Gusii", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "ht": "Haitian", + "hak": "Hakka Chinese", + "ha": "Hausa", + "haw": "Hawaiian", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ig": "Igbo", + "ilo": "Iloko", + "smn": "Inari Sami", + "izh": "Ingrian", + "inh": "Ingush", + "iu": "Inuktitut", + "ik": "Inupiaq", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kea": "Kabuverdianu", + "kab": "Kabyle", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "Kalaallisut", + "kln": "Kalenjin", + "xal": "Kalmyk", + "kam": "Kamba", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "ks": "Kashmiri", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "km": "Khmer", + "kho": "Khotanese", + "khw": "Khowar", + "ki": "Kikuyu", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "kiu": "Kirmanjki", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "kg": "Kongo", + "kok": "Konkani", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "nmg": "Kwasio", + "ky": "Kyrgyz", + "quc": "K\u02bciche\u02bc", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "dsb": "Lower Sorbian", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "lb": "Luxembourgish", + "luy": "Luyia", + "mde": "Maba", + "jmc": "Machame", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mg": "Malagasy", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manx", + "mi": "Maori", + "arn": "Mapuche", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mas": "Masai", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u02bc", + "es_MX": "Mexican Spanish", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "ar_001": "Modern Standard Arabic", + "moh": "Mohawk", + "mdf": "Moksha", + "lol": "Mongo", + "mfe": "Morisyen", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "mua": "Mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "naq": "Nama", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "zxx": "No linguistic content", + "nog": "Nogai", + "nd": "North Ndebele", + "frr": "Northern Frisian", + "se": "Northern Sami", + "nso": "Northern Sotho", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "nqo": "N\u02bcKo", + "oj": "Ojibwa", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "or": "Oriya", + "om": "Oromo", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "qu": "Quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "Romansh", + "rom": "Romany", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rn": "Rundi", + "rue": "Rusyn", + "rwk": "Rwa", + "ssy": "Saho", + "sam": "Samaritan Aramaic", + "saq": "Samburu", + "sm": "Samoan", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "Sango", + "sbp": "Sangu", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "srr": "Serer", + "sei": "Seri", + "ksb": "Shambala", + "shn": "Shan", + "sn": "Shona", + "ii": "Sichuan Yi", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "sms": "Skolt Sami", + "den": "Slave", + "xog": "Soga", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "sma": "Southern Sami", + "st": "Southern Sotho", + "srn": "Sranan Tongo", + "zgh": "Standard Moroccan Tamazight", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "ss": "Swati", + "gsw": "Swiss German", + "syr": "Syriac", + "shi": "Tachelhit", + "tl": "Tagalog", + "ty": "Tahitian", + "dav": "Taita", + "tg": "Tajik", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "twq": "Tasawaq", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetum", + "bo": "Tibetan", + "tig": "Tigre", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "to": "Tongan", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "hsb": "Upper Sorbian", + "vai": "Vai", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "Vunjo", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wo": "Wolof", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "yo": "Yoruba", + "zap": "Zapotec", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/bg-BG.json b/public/intl/language/bg-BG.json new file mode 100644 index 0000000..09ec733 --- /dev/null +++ b/public/intl/language/bg-BG.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0430\u0431\u0445\u0430\u0437\u043a\u0438", + "awa": "\u0430\u0432\u0430\u0434\u0438", + "av": "\u0430\u0432\u0430\u0440\u0441\u043a\u0438", + "ae": "\u0430\u0432\u0435\u0441\u0442\u0441\u043a\u0438", + "en_AU": "\u0430\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0439\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "de_AT": "\u0430\u0432\u0441\u0442\u0440\u0438\u0439\u0441\u043a\u0438 \u043d\u0435\u043c\u0441\u043a\u0438", + "agq": "\u0430\u0433\u0435\u043c", + "ada": "\u0430\u0434\u0430\u043d\u0433\u043c\u0435", + "ady": "\u0430\u0434\u0438\u0433\u0435", + "az": "\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0438", + "ay": "\u0430\u0439\u043c\u0430\u0440\u0430", + "ain": "\u0430\u0439\u043d\u0443", + "akk": "\u0430\u043a\u0430\u0434\u0441\u043a\u0438", + "ak": "\u0430\u043a\u0430\u043d", + "ach": "\u0430\u043a\u043e\u043b\u0438", + "sq": "\u0430\u043b\u0431\u0430\u043d\u0441\u043a\u0438", + "ale": "\u0430\u043b\u0435\u0443\u0442\u0441\u043a\u0438", + "en_US": "\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "am": "\u0430\u043c\u0445\u0430\u0440\u0441\u043a\u0438", + "anp": "\u0430\u043d\u0433\u0438\u043a\u0430", + "en": "\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "ar": "\u0430\u0440\u0430\u0431\u0441\u043a\u0438", + "arw": "\u0430\u0440\u0430\u0432\u0430\u043a", + "an": "\u0430\u0440\u0430\u0433\u043e\u043d\u0441\u043a\u0438", + "arc": "\u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0438", + "arp": "\u0430\u0440\u0430\u043f\u0430\u0445\u043e", + "hy": "\u0430\u0440\u043c\u0435\u043d\u0441\u043a\u0438", + "rup": "\u0430\u0440\u0443\u043c\u044a\u043d\u0441\u043a\u0438", + "as": "\u0430\u0441\u0430\u043c\u0441\u043a\u0438", + "ast": "\u0430\u0441\u0442\u0443\u0440\u0441\u043a\u0438", + "asa": "\u0430\u0441\u0443", + "cch": "\u0430\u0442\u0441\u0430\u043c", + "aa": "\u0430\u0444\u0430\u0440", + "af": "\u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441", + "afh": "\u0430\u0444\u0440\u0438\u0445\u0438\u043b\u0438", + "ace": "\u0430\u0447\u0438\u043d\u0441\u043a\u0438", + "ban": "\u0431\u0430\u043b\u0438\u043d\u0435\u0439\u0441\u043a\u0438", + "bal": "\u0431\u0430\u043b\u0443\u0447\u0438", + "bm": "\u0431\u0430\u043c\u0431\u0430\u0440\u0430", + "bas": "\u0431\u0430\u0441\u0430", + "eu": "\u0431\u0430\u0441\u043a\u0438", + "ksf": "\u0431\u0430\u0444\u0438\u044f", + "ba": "\u0431\u0430\u0448\u043a\u0438\u0440\u0441\u043a\u0438", + "zxx": "\u0431\u0435\u0437 \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u0447\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", + "be": "\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0438", + "bem": "\u0431\u0435\u043c\u0431\u0430", + "bez": "\u0431\u0435\u043d\u0430", + "bn": "\u0431\u0435\u043d\u0433\u0430\u043b\u0441\u043a\u0438", + "bej": "\u0431\u0435\u044f", + "bik": "\u0431\u0438\u043a\u043e\u043b\u0441\u043a\u0438", + "byn": "\u0431\u0438\u043b\u0435\u043d\u0441\u043a\u0438", + "bin": "\u0431\u0438\u043d\u0438", + "my": "\u0431\u0438\u0440\u043c\u0430\u043d\u0441\u043a\u0438", + "bi": "\u0431\u0438\u0441\u043b\u0430\u043c\u0430", + "zbl": "\u0431\u043b\u0438\u0441 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", + "brx": "\u0431\u043e\u0434\u043e", + "bho": "\u0431\u043e\u0436\u043f\u0443\u0440\u0438", + "bs": "\u0431\u043e\u0441\u043d\u0435\u043d\u0441\u043a\u0438", + "bra": "\u0431\u0440\u0430\u0434\u0436", + "br": "\u0431\u0440\u0435\u0442\u043e\u043d\u0441\u043a\u0438", + "en_GB": "\u0431\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "bug": "\u0431\u0443\u0433\u0438\u043d\u0441\u043a\u0438", + "bua": "\u0431\u0443\u0440\u044f\u0442\u0441\u043a\u0438", + "bg": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438", + "vai": "\u0432\u0430\u0438", + "wal": "\u0432\u0430\u043b\u0430\u043c\u043e", + "wa": "\u0432\u0430\u043b\u043e\u043d\u0441\u043a\u0438", + "war": "\u0432\u0430\u0440\u0430\u0439", + "ve": "\u0432\u0435\u043d\u0434\u0430", + "vi": "\u0432\u0438\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438", + "vo": "\u0432\u043e\u043b\u0430\u043f\u044e\u043a", + "wo": "\u0432\u043e\u043b\u043e\u0444", + "vot": "\u0432\u043e\u0442\u0438\u043a", + "vun": "\u0432\u0443\u043d\u0434\u0436\u043e", + "gaa": "\u0433\u0430", + "gag": "\u0433\u0430\u0433\u0430\u0443\u0437\u043a\u0438", + "gay": "\u0433\u0430\u0439\u043e", + "gl": "\u0433\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438", + "lg": "\u0433\u0430\u043d\u0434\u0430", + "gba": "\u0433\u0431\u0430\u044f", + "gwi": "\u0433\u0432\u0438\u0447\u0438\u043d", + "gez": "\u0433\u0438\u0438\u0437", + "gil": "\u0433\u0438\u043b\u0431\u0435\u0440\u0442\u0441\u043a\u0438", + "gon": "\u0433\u043e\u043d\u0434\u0438", + "hsb": "\u0433\u043e\u0440\u043d\u043e\u043b\u0443\u0436\u0438\u0448\u043a\u0438", + "gor": "\u0433\u043e\u0440\u043e\u043d\u0442\u0430\u043b\u043e", + "got": "\u0433\u043e\u0442\u0438\u0447\u0435\u0441\u043a\u0438", + "grb": "\u0433\u0440\u0435\u0431\u043e", + "kl": "\u0433\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "ka": "\u0433\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0438", + "el": "\u0433\u0440\u044a\u0446\u043a\u0438", + "gn": "\u0433\u0443\u0430\u0440\u0430\u043d\u0438", + "gu": "\u0433\u0443\u0434\u0436\u0430\u0440\u0430\u0442\u0438", + "guz": "\u0433\u0443\u0441\u0438\u0438", + "dak": "\u0434\u0430\u043a\u043e\u0442\u0441\u043a\u0438", + "dar": "\u0434\u0430\u0440\u0433\u0432\u0430", + "da": "\u0434\u0430\u0442\u0441\u043a\u0438", + "del": "\u0434\u0435\u043b\u0430\u0443\u0435\u0440", + "dje": "\u0434\u0436\u0435\u0440\u043c\u0430", + "dz": "\u0434\u0437\u043e\u043d\u0445\u0430", + "dv": "\u0434\u0438\u0432\u0435\u0445\u0438", + "din": "\u0434\u0438\u043d\u043a\u0430", + "dyo": "\u0434\u0438\u043e\u043b\u0430", + "dyu": "\u0434\u0438\u0443\u043b\u0430", + "doi": "\u0434\u043e\u0433\u0440\u0438", + "dgr": "\u0434\u043e\u0433\u0440\u0438\u0431", + "dsb": "\u0434\u043e\u043b\u043d\u043e\u043b\u0443\u0436\u0438\u0448\u043a\u0438", + "nds": "\u0434\u043e\u043b\u043d\u043e\u0441\u0430\u043a\u0441\u043e\u043d\u0441\u043a\u0438", + "grc": "\u0434\u0440\u0435\u0432\u043d\u043e\u0433\u0440\u044a\u0446\u043a\u0438", + "dua": "\u0434\u0443\u0430\u043b\u0430", + "ee": "\u0435\u0432\u0435", + "ewo": "\u0435\u0432\u043e\u043d\u0434\u043e", + "jrb": "\u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e-\u0430\u0440\u0430\u0431\u0441\u043a\u0438", + "jpr": "\u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e-\u043f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438", + "egy": "\u0435\u0433\u0438\u043f\u0435\u0442\u0441\u043a\u0438", + "eka": "\u0435\u043a\u0430\u0436\u0443\u043a", + "elx": "\u0435\u043b\u0430\u043c\u0438\u0442\u0441\u043a\u0438", + "ebu": "\u0435\u043c\u0431\u0443", + "myv": "\u0435\u0440\u0437\u0438\u0430", + "eo": "\u0435\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e", + "et": "\u0435\u0441\u0442\u043e\u043d\u0441\u043a\u0438", + "efi": "\u0435\u0444\u0438\u043a", + "chn": "\u0436\u0430\u0440\u0433\u043e\u043d \u0447\u0438\u043d\u0443\u0443\u043a", + "kaj": "\u0436\u0436\u0438", + "zza": "\u0437\u0430\u0437\u0430", + "zap": "\u0437\u0430\u043f\u043e\u0442\u0435\u043a", + "zen": "\u0437\u0435\u043d\u0430\u0433\u0430", + "za": "\u0437\u0443\u0430\u043d\u0433", + "zu": "\u0437\u0443\u043b\u0443\u0441\u043a\u0438", + "zun": "\u0437\u0443\u043d\u0438", + "iba": "\u0438\u0431\u0430\u043d", + "he": "\u0438\u0432\u0440\u0438\u0442", + "ig": "\u0438\u0433\u0431\u043e", + "yi": "\u0438\u0434\u0438\u0448", + "io": "\u0438\u0434\u043e", + "frs": "\u0438\u0437\u0442\u043e\u0447\u0435\u043d \u0444\u0440\u0438\u0437\u0441\u043a\u0438", + "ilo": "\u0438\u043b\u043e\u043a\u043e", + "smn": "\u0438\u043d\u0430\u0440\u0438-\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "inh": "\u0438\u043d\u0433\u0443\u0448\u0435\u0442\u0441\u043a\u0438", + "id": "\u0438\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0438", + "ia": "\u0438\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u0430", + "iu": "\u0438\u043d\u0443\u043a\u0442\u0438\u0442\u0443\u0442", + "ik": "\u0438\u043d\u0443\u043f\u0438\u0430\u043a", + "ga": "\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "is": "\u0438\u0441\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "es": "\u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438", + "it": "\u0438\u0442\u0430\u043b\u0438\u0430\u043d\u0441\u043a\u0438", + "yo": "\u0439\u043e\u0440\u0443\u0431\u0430", + "kbd": "\u043a\u0430\u0431\u0430\u0440\u0434\u0438\u0430\u043d", + "kab": "\u043a\u0430\u0431\u0438\u043b\u0441\u043a\u0438", + "kea": "\u043a\u0430\u0431\u043e\u0432\u0435\u0440\u0434\u0438\u0430\u043d\u0441\u043a\u0438", + "kaw": "\u043a\u0430\u0432\u0438", + "cad": "\u043a\u0430\u0434\u0434\u043e", + "kk": "\u043a\u0430\u0437\u0430\u0445\u0441\u043a\u0438", + "kln": "\u043a\u0430\u043b\u0435\u043d\u0434\u0436\u0438\u043d", + "xal": "\u043a\u0430\u043b\u043c\u0438\u043a", + "kam": "\u043a\u0430\u043c\u0431\u0430", + "en_CA": "\u043a\u0430\u043d\u0430\u0434\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "fr_CA": "\u043a\u0430\u043d\u0430\u0434\u0441\u043a\u0438 \u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "kn": "\u043a\u0430\u043d\u043d\u0430\u0434\u0430", + "yue": "\u043a\u0430\u043d\u0442\u043e\u043d\u0441\u043a\u0438", + "kr": "\u043a\u0430\u043d\u0443\u0440\u0438", + "kaa": "\u043a\u0430\u0440\u0430\u043a\u0430\u043b\u043f\u0430\u0448\u043a\u0438", + "krc": "\u043a\u0430\u0440\u0430\u0447\u0430\u0439-\u0431\u0430\u043b\u043a\u0430\u0440\u0441\u043a\u0438", + "krl": "\u043a\u0430\u0440\u0435\u043b\u0441\u043a\u0438", + "car": "\u043a\u0430\u0440\u0438\u0431\u0441\u043a\u0438", + "ca": "\u043a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u043a\u0438", + "kac": "\u043a\u0430\u0447\u0438\u043d\u0441\u043a\u0438", + "ks": "\u043a\u0430\u0448\u043c\u0438\u0440\u0441\u043a\u0438", + "csb": "\u043a\u0430\u0448\u0443\u0431\u0441\u043a\u0438", + "kj": "\u043a\u0432\u0430\u043d\u044f\u043c\u0430", + "nmg": "\u043a\u0432\u0430\u0441\u0438\u043e", + "qu": "\u043a\u0435\u0447\u0443\u0430", + "ki": "\u043a\u0438\u043a\u0443\u044e", + "kmb": "\u043a\u0438\u043c\u0431\u0443\u043d\u0434\u0443", + "rw": "\u043a\u0438\u043d\u044f\u0440\u0443\u0430\u043d\u0434\u0430", + "ky": "\u043a\u0438\u0440\u0433\u0438\u0437\u043a\u0438", + "zh": "\u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438", + "quc": "\u043a\u0438\u0447\u0435", + "nwc": "\u043a\u043b\u0430\u0441\u0438\u0447\u0435\u0441\u043a\u0438 \u043d\u0435\u0432\u0430\u0440\u0438", + "syc": "\u043a\u043b\u0430\u0441\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0438\u0440\u0438\u0439\u0441\u043a\u0438", + "tlh": "\u043a\u043b\u0438\u043d\u0433\u043e\u043d", + "khq": "\u043a\u043e\u0439\u0440\u0430 \u0447\u0438\u0438\u043d\u0438", + "ses": "\u043a\u043e\u0439\u0440\u0430\u0431\u043e\u0440\u043e \u0441\u0435\u043d\u0438", + "kv": "\u041a\u043e\u043c\u0438", + "koi": "\u043a\u043e\u043c\u0438-\u043f\u0435\u0440\u043c\u044f\u0446\u043a\u0438", + "swb": "\u043a\u043e\u043c\u043e\u0440\u0441\u043a\u0438", + "kg": "\u043a\u043e\u043d\u0433\u043e\u0430\u043d\u0441\u043a\u0438", + "swc": "\u043a\u043e\u043d\u0433\u043e\u0430\u043d\u0441\u043a\u0438 \u0441\u0443\u0430\u0445\u0438\u043b\u0438", + "kok": "\u043a\u043e\u043d\u043a\u0430\u043d\u0438", + "cop": "\u043a\u043e\u043f\u0442\u0441\u043a\u0438", + "ko": "\u043a\u043e\u0440\u0435\u0439\u0441\u043a\u0438", + "kw": "\u043a\u043e\u0440\u043d\u0443\u043e\u043b\u0441\u043a\u0438", + "kfo": "\u043a\u043e\u0440\u043e", + "co": "\u043a\u043e\u0440\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438", + "kos": "\u043a\u043e\u0441\u0440\u0430\u0435\u043d", + "kho": "\u043a\u043e\u0442\u0441\u043a\u0438", + "kpe": "\u043a\u043f\u0435\u043b\u0435", + "cr": "\u043a\u0440\u0438\u0438", + "mus": "\u043a\u0440\u0438\u043a", + "crh": "\u043a\u0440\u0438\u043c\u0441\u043a\u043e\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0438", + "xh": "\u043a\u0441\u043e\u0441\u0430", + "kum": "\u043a\u0443\u043c\u0438\u043a\u0441\u043a\u0438", + "kru": "\u043a\u0443\u0440\u0443\u043a", + "kut": "\u043a\u0443\u0442\u0435\u043d\u0430\u0439", + "kha": "\u043a\u0445\u0430\u0441\u0438", + "km": "\u043a\u0445\u043c\u0435\u0440\u0441\u043a\u0438", + "ku": "\u043a\u044e\u0440\u0434\u0441\u043a\u0438", + "ckb": "\u043a\u044e\u0440\u0434\u0441\u043a\u0438 (\u0441\u043e\u0440\u0430\u043d\u0438)", + "lad": "\u043b\u0430\u0434\u0438\u043d\u043e", + "lkt": "\u043b\u0430\u043a\u043e\u0442\u0430", + "lam": "\u043b\u0430\u043c\u0431\u0430", + "lag": "\u043b\u0430\u043d\u0433\u0438", + "lo": "\u043b\u0430\u043e\u0441\u043a\u0438", + "lv": "\u043b\u0430\u0442\u0432\u0438\u0439\u0441\u043a\u0438", + "la": "\u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438", + "lah": "\u043b\u0430\u0445\u043d\u0434\u0430", + "lez": "\u043b\u0435\u0437\u0433\u0438\u043d\u0441\u043a\u0438", + "li": "\u043b\u0438\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438", + "ln": "\u043b\u0438\u043d\u0433\u0430\u043b\u0430", + "lt": "\u043b\u0438\u0442\u043e\u0432\u0441\u043a\u0438", + "jbo": "\u043b\u043e\u0434\u0436\u0431\u0430\u043d", + "loz": "\u043b\u043e\u0437\u0438", + "lu": "\u043b\u0443\u0431\u0430 \u043a\u0430\u0442\u0430\u043d\u0433\u0430", + "lua": "\u043b\u0443\u0431\u0430-\u043b\u0443\u043b\u0443\u0430", + "lui": "\u043b\u0443\u0438\u0441\u0435\u043d\u044c\u043e", + "smj": "\u043b\u0443\u043b\u0435-\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "lun": "\u043b\u0443\u043d\u0434\u0430", + "luo": "\u043b\u0443\u043e", + "lus": "\u043b\u0443\u0448\u0430\u0438", + "luy": "\u043b\u0443\u044f", + "lb": "\u043b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438", + "mag": "\u043c\u0430\u0433\u0430\u0445\u0438", + "mad": "\u043c\u0430\u0434\u0443\u0440\u0441\u043a\u0438", + "mai": "\u043c\u0430\u0439\u0442\u0445\u0438\u043b\u0438", + "mak": "\u043c\u0430\u043a\u0430\u0441\u0430\u0440", + "mk": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438", + "kde": "\u043c\u0430\u043a\u043e\u043d\u0434\u0435", + "mgh": "\u043c\u0430\u043a\u0443\u0430 \u043c\u0435\u0442\u043e", + "ms": "\u043c\u0430\u043b\u0430\u0439\u0441\u043a\u0438", + "ml": "\u043c\u0430\u043b\u0430\u044f\u043b\u0430\u043c", + "mg": "\u043c\u0430\u043b\u0433\u0430\u0448\u043a\u0438", + "mt": "\u043c\u0430\u043b\u0442\u0438\u0439\u0441\u043a\u0438", + "mdr": "\u043c\u0430\u043d\u0434\u0430\u0440", + "man": "\u043c\u0430\u043d\u0434\u0438\u043d\u0433\u043e", + "mni": "\u043c\u0430\u043d\u0438\u043f\u0443\u0440\u0438", + "gv": "\u043c\u0430\u043d\u043a\u0441\u043a\u0438", + "mnc": "\u043c\u0430\u043d\u0447\u0436\u0443\u0440\u0441\u043a\u0438", + "mi": "\u043c\u0430\u043e\u0440\u0441\u043a\u0438", + "arn": "\u043c\u0430\u043f\u0443\u0447\u0435", + "mr": "\u043c\u0430\u0440\u0430\u0442\u0438", + "mwr": "\u043c\u0430\u0440\u0432\u0430\u0440\u0438", + "chm": "\u043c\u0430\u0440\u0438\u0439\u0441\u043a\u0438", + "mh": "\u043c\u0430\u0440\u0448\u0430\u043b\u0435\u0437\u0435", + "mas": "\u043c\u0430\u0441\u0430\u0439\u0441\u043a\u0438", + "jmc": "\u043c\u0430\u0447\u0430\u043c\u0435", + "es_MX": "\u043c\u0435\u043a\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438 \u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438", + "men": "\u043c\u0435\u043d\u0434\u0435", + "mer": "\u043c\u0435\u0440\u0443", + "mgo": "\u043c\u0435\u0442\u0430", + "mic": "\u043c\u0438\u043a\u043c\u0430\u043a", + "min": "\u043c\u0438\u043d\u0430\u043d\u0433\u0431\u0430\u0443", + "mwl": "\u043c\u0438\u0440\u0430\u043d\u0434\u0438\u0439\u0441\u043a\u0438", + "mul": "\u043c\u043d\u043e\u0433\u043e\u0435\u0437\u0438\u0447\u043d\u0438", + "mdf": "\u043c\u043e\u043a\u0448\u0430", + "ro_MD": "\u043c\u043e\u043b\u0434\u043e\u0432\u0441\u043a\u0438", + "lol": "\u043c\u043e\u043d\u0433\u043e", + "mn": "\u043c\u043e\u043d\u0433\u043e\u043b\u0441\u043a\u0438", + "mfe": "\u043c\u043e\u0440\u0438\u0441\u0438\u0435\u043d", + "mos": "\u043c\u043e\u0441\u0438", + "moh": "\u043c\u043e\u0445\u043e\u0443\u043a", + "mua": "\u043c\u0443\u043d\u0434\u0430\u043d\u0433", + "nv": "\u043d\u0430\u0432\u0430\u0445\u043e", + "naq": "\u043d\u0430\u043c\u0430", + "na": "\u043d\u0430\u0443\u0440\u0443", + "jgo": "\u043d\u0433\u043e\u043c\u0431\u0430", + "ng": "\u043d\u0434\u043e\u043d\u0433\u0430", + "nap": "\u043d\u0435\u0430\u043f\u043e\u043b\u0438\u0442\u0430\u043d\u0441\u043a\u0438", + "new": "\u043d\u0435\u0432\u0430\u0440\u0441\u043a\u0438", + "de": "\u043d\u0435\u043c\u0441\u043a\u0438", + "und": "\u043d\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d", + "ne": "\u043d\u0435\u043f\u0430\u043b\u0441\u043a\u0438", + "nzi": "\u043d\u0437\u0438\u043c\u0430", + "nym": "\u043d\u0438\u0430\u043c\u0432\u0435\u0437\u0438", + "nyn": "\u043d\u0438\u0430\u043d\u043a\u043e\u043b\u0435", + "tog": "\u043d\u0438\u0430\u043d\u0441\u0430 \u0442\u043e\u043d\u0433\u0430", + "nia": "\u043d\u0438\u0430\u0441", + "nl": "\u043d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "niu": "\u043d\u0438\u0443\u0435\u0430\u043d", + "nqo": "\u043d\u043a\u043e", + "nog": "\u043d\u043e\u0433\u0430\u0438", + "no": "\u043d\u043e\u0440\u0432\u0435\u0436\u043a\u0438", + "nb": "\u043d\u043e\u0440\u0432\u0435\u0436\u043a\u0438 \u0431\u0443\u043a\u043c\u043e\u043b", + "nn": "\u043d\u043e\u0440\u0432\u0435\u0436\u043a\u0438 \u043d\u044e\u043d\u043e\u0448\u043a", + "nus": "\u043d\u0443\u0435\u0440", + "nyo": "\u043d\u0443\u043e\u0440\u043e", + "oj": "\u043e\u0434\u0436\u0438\u0431\u0432\u0430", + "ie": "\u043e\u043a\u0441\u0438\u0434\u0435\u043d\u0442\u0430\u043b", + "oc": "\u043e\u043a\u0441\u0438\u0442\u0430\u043d\u0441\u043a\u0438", + "zh_Hans": "\u043e\u043f\u0440\u043e\u0441\u0442\u0435\u043d \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438", + "or": "\u043e\u0440\u0438\u044f", + "om": "\u043e\u0440\u043e\u043c\u043e", + "osa": "\u043e\u0441\u0435\u0434\u0436\u0438", + "os": "\u043e\u0441\u0435\u0442\u0441\u043a\u0438", + "ota": "\u043e\u0442\u043e\u043c\u0430\u043d\u0441\u043a\u0438 \u0442\u0443\u0440\u0441\u043a\u0438", + "pau": "\u043f\u0430\u043b\u0430\u0443\u0430\u043d", + "pi": "\u043f\u0430\u043b\u0438", + "pam": "\u043f\u0430\u043c\u043f\u0430\u043d\u0433\u0430", + "pag": "\u043f\u0430\u043d\u0433\u0430\u0441\u0438\u043d\u0430\u043d", + "pap": "\u043f\u0430\u043f\u0438\u0430\u043c\u0435\u043d\u0442\u0443", + "pa": "\u043f\u0435\u043d\u0434\u0436\u0430\u0431\u0441\u043a\u0438", + "fa": "\u043f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438", + "pal": "\u043f\u0435\u0445\u043b\u0435\u0432\u0438\u0439\u0441\u043a\u0438", + "pl": "\u043f\u043e\u043b\u0441\u043a\u0438", + "pt": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0441\u043a\u0438", + "pon": "\u043f\u043e\u0445\u043d\u043f\u0435\u0438\u0430\u043d", + "pro": "\u043f\u0440\u043e\u0432\u0430\u043d\u0441\u0430\u043b\u0441\u043a\u0438", + "ps": "\u043f\u0443\u0449\u0443", + "raj": "\u0440\u0430\u0434\u0436\u0430\u0441\u0442\u0430\u043d\u0441\u043a\u0438", + "rap": "\u0440\u0430\u043f\u0430 \u043d\u0443\u0438", + "rar": "\u0440\u0430\u043f\u043e\u0442\u043e\u043d\u0433\u0430\u043d", + "rwk": "\u0440\u0432\u0430", + "rm": "\u0440\u0435\u0442\u043e\u0440\u043e\u043c\u0430\u043d\u0441\u043a\u0438", + "rof": "\u0440\u043e\u043c\u0431\u043e", + "root": "\u0440\u043e\u043e\u0442", + "ro": "\u0440\u0443\u043c\u044a\u043d\u0441\u043a\u0438", + "rn": "\u0440\u0443\u043d\u0434\u0438", + "ru": "\u0440\u0443\u0441\u043a\u0438", + "sam": "\u0441\u0430\u043c\u0430\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438 \u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0438", + "saq": "\u0441\u0430\u043c\u0431\u0443\u0440\u0443", + "sm": "\u0441\u0430\u043c\u043e\u0430\u043d\u0441\u043a\u0438", + "sg": "\u0441\u0430\u043d\u0433\u043e", + "sbp": "\u0441\u0430\u043d\u0433\u0443", + "sad": "\u0441\u0430\u043d\u0434\u0432\u0435", + "sa": "\u0441\u0430\u043d\u043a\u0441\u043a\u0440\u0438\u0442\u0441\u043a\u0438", + "sat": "\u0441\u0430\u043d\u0442\u0430\u043b\u0438", + "sc": "\u0441\u0430\u0440\u0434\u0438\u043d\u0441\u043a\u0438", + "sas": "\u0441\u0430\u0441\u0430\u043a", + "ceb": "\u0441\u0435\u0431\u0443\u0430\u043d\u043e", + "nd": "\u0441\u0435\u0432\u0435\u0440\u0435\u043d \u043d\u0434\u0435\u0431\u0435\u043b\u0435", + "nso": "\u0441\u0435\u0432\u0435\u0440\u0435\u043d \u0441\u043e\u0442\u043e", + "frr": "\u0441\u0435\u0432\u0435\u0440\u0435\u043d \u0444\u0440\u0438\u0437\u0441\u043a\u0438", + "se": "\u0441\u0435\u0432\u0435\u0440\u043d\u043e\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "sel": "\u0441\u0435\u043b\u043a\u0443\u043f", + "seh": "\u0441\u0435\u043d\u0430", + "srr": "\u0441\u0435\u0440\u0435\u0440", + "st": "\u0441\u0435\u0441\u0443\u0442\u043e", + "sid": "\u0441\u0438\u0434\u0430\u043c\u043e", + "bla": "\u0441\u0438\u043a\u0441\u0438\u043a\u0430", + "sd": "\u0441\u0438\u043d\u0434\u0445\u0438", + "si": "\u0441\u0438\u043d\u0445\u0430\u043b\u0441\u043a\u0438", + "syr": "\u0441\u0438\u0440\u0438\u0439\u0441\u043a\u0438", + "scn": "\u0441\u0438\u0446\u0438\u043b\u0438\u0430\u043d\u0441\u043a\u0438", + "sms": "\u0441\u043a\u043e\u043b\u0442-\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "den": "\u0441\u043b\u0435\u0439\u0432\u0438", + "sk": "\u0441\u043b\u043e\u0432\u0430\u0448\u043a\u0438", + "sl": "\u0441\u043b\u043e\u0432\u0435\u043d\u0441\u043a\u0438", + "xog": "\u0441\u043e\u0433\u0430", + "sog": "\u0441\u043e\u0433\u0434\u0438\u0439\u0441\u043a\u0438", + "so": "\u0441\u043e\u043c\u0430\u043b\u0438\u0439\u0441\u043a\u0438", + "snk": "\u0441\u043e\u043d\u0438\u043d\u043a\u0435", + "srn": "\u0441\u0440\u0430\u043d\u0430\u043d \u0442\u043e\u043d\u0433\u043e", + "enm": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "mga": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "gmh": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u043d\u0435\u043c\u0441\u043a\u0438", + "frm": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "dum": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0445\u043e\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "sr": "\u0441\u0440\u044a\u0431\u0441\u043a\u0438", + "zgh": "\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u043c\u0430\u0440\u043e\u043a\u0430\u043d\u0441\u043a\u0438 \u0442\u0430\u043c\u0430\u0437\u0438\u0433\u0442", + "ang": "\u0441\u0442\u0430\u0440\u043e\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "goh": "\u0441\u0442\u0430\u0440\u043e\u0432\u0438\u0441\u043e\u043a\u043e\u043d\u0435\u043c\u0441\u043a\u0438", + "sga": "\u0441\u0442\u0430\u0440\u043e\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "non": "\u0441\u0442\u0430\u0440\u043e\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438", + "peo": "\u0441\u0442\u0430\u0440\u043e\u043f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438", + "fro": "\u0441\u0442\u0430\u0440\u043e\u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "ss": "\u0441\u0443\u0430\u0437\u0438", + "sw": "\u0441\u0443\u0430\u0445\u0438\u043b\u0438", + "suk": "\u0441\u0443\u043a\u0443\u043c\u0430", + "su": "\u0441\u0443\u043d\u0434\u0430\u043d\u0441\u043a\u0438", + "sus": "\u0441\u0443\u0441\u0443", + "ar_001": "\u0441\u044a\u0432\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u0430\u0440\u0430\u0431\u0441\u043a\u0438", + "sh": "\u0441\u044a\u0440\u0431\u043e\u0445\u044a\u0440\u0432\u0430\u0442\u0441\u043a\u0438", + "ii": "\u0441\u044a\u0447\u0443\u0430\u043d\u0441\u043a\u0438 \u0438", + "tl": "\u0442\u0430\u0433\u0430\u043b\u043e\u0433", + "tg": "\u0442\u0430\u0434\u0436\u0438\u043a\u0441\u043a\u0438", + "dav": "\u0442\u0430\u0438\u0442\u0430", + "ty": "\u0442\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438", + "th": "\u0442\u0430\u0439\u0441\u043a\u0438", + "tmh": "\u0442\u0430\u043c\u0430\u0448\u0435\u043a", + "ta": "\u0442\u0430\u043c\u0438\u043b\u0441\u043a\u0438", + "twq": "\u0442\u0430\u0441\u0430\u0432\u0430\u043a", + "tt": "\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0438", + "shi": "\u0442\u0430\u0448\u0435\u043b\u0445\u0438\u0442", + "te": "\u0442\u0435\u043b\u0443\u0433\u0443", + "tem": "\u0442\u0435\u043c\u043d\u0435", + "ter": "\u0442\u0435\u0440\u0435\u043d\u043e", + "teo": "\u0442\u0435\u0441\u043e", + "tet": "\u0442\u0435\u0442\u0443\u043c", + "bo": "\u0442\u0438\u0431\u0435\u0442\u0441\u043a\u0438", + "tiv": "\u0442\u0438\u0432", + "tig": "\u0442\u0438\u0433\u0440\u0435", + "ti": "\u0442\u0438\u0433\u0440\u0438\u043d\u044f", + "tli": "\u0442\u043b\u0438\u043d\u0433\u0438\u0442", + "tpi": "\u0442\u043e\u043a \u043f\u0438\u0441\u0438\u043d", + "tkl": "\u0442\u043e\u043a\u0435\u043b\u0430\u0439\u0441\u043a\u0438", + "to": "\u0442\u043e\u043d\u0433\u0430", + "zh_Hant": "\u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u0435\u043d \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438", + "tn": "\u0442\u0441\u0432\u0430\u043d\u0430", + "ts": "\u0442\u0441\u043e\u043d\u0433\u0430", + "kcg": "\u0442\u0443\u0430\u043f", + "tvl": "\u0442\u0443\u0432\u0430\u043b\u0443\u0430\u043d\u0441\u043a\u0438", + "tyv": "\u0442\u0443\u0432\u0438\u043d\u0441\u043a\u0438", + "tw": "\u0442\u0443\u0438", + "tum": "\u0442\u0443\u043c\u0431\u0443\u043a\u0430", + "tk": "\u0442\u0443\u0440\u043a\u043c\u0435\u043d\u0441\u043a\u0438", + "tr": "\u0442\u0443\u0440\u0441\u043a\u0438", + "was": "\u0443\u0430\u0448\u043e", + "uga": "\u0443\u0433\u0430\u0440\u0438\u0442\u0441\u043a\u0438", + "udm": "\u0443\u0434\u043c\u0443\u0440\u0442\u0441\u043a\u0438", + "cy": "\u0443\u0435\u043b\u0441\u043a\u0438", + "uz": "\u0443\u0437\u0431\u0435\u043a\u0441\u043a\u0438", + "ug": "\u0443\u0439\u0433\u0443\u0440\u0441\u043a\u0438", + "uk": "\u0443\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438", + "umb": "\u0443\u043c\u0431\u0443\u043d\u0434\u0443", + "hu": "\u0443\u043d\u0433\u0430\u0440\u0441\u043a\u0438", + "ur": "\u0443\u0440\u0434\u0443", + "fan": "\u0444\u0430\u043d\u0433", + "fat": "\u0444\u0430\u043d\u0442\u0438", + "fo": "\u0444\u0430\u0440\u044c\u043e\u0440\u0441\u043a\u0438", + "fj": "\u0444\u0438\u0434\u0436\u0438\u0439\u0441\u043a\u0438", + "fil": "\u0444\u0438\u043b\u0438\u043f\u0438\u043d\u0441\u043a\u0438", + "phn": "\u0444\u0438\u043d\u0438\u043a\u0438\u0439\u0441\u043a\u0438", + "fi": "\u0444\u0438\u043d\u0441\u043a\u0438", + "nl_BE": "\u0444\u043b\u0430\u043c\u0430\u043d\u0434\u0441\u043a\u0438", + "fon": "\u0444\u043e\u043d", + "fr": "\u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "fy": "\u0444\u0440\u0438\u0437\u0438\u0439\u0441\u043a\u0438", + "fur": "\u0444\u0440\u0438\u0443\u043b\u0438\u0430\u043d\u0441\u043a\u0438", + "ff": "\u0444\u0443\u043b\u0430", + "haw": "\u0445\u0430\u0432\u0430\u0439\u0441\u043a\u0438", + "ht": "\u0445\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438", + "hai": "\u0445\u0430\u0439\u0434\u0430", + "ha": "\u0445\u0430\u0443\u0437\u0430", + "hz": "\u0445\u0435\u0440\u0435\u0440\u043e", + "hil": "\u0445\u0438\u043b\u0438\u0433\u0430\u0439\u043d\u043e\u043d", + "hi": "\u0445\u0438\u043d\u0434\u0438", + "ho": "\u0445\u0438\u0440\u0438 \u043c\u043e\u0442\u0443", + "hit": "\u0445\u0438\u0442\u0441\u043a\u0438", + "hmn": "\u0445\u043c\u043e\u043d\u0433", + "hup": "\u0445\u0443\u043f\u0430", + "hr": "\u0445\u044a\u0440\u0432\u0430\u0442\u0441\u043a\u0438", + "tzm": "\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u043e\u0430\u0442\u043b\u0430\u0441\u043a\u0438 \u0442\u0430\u043c\u0430\u0437\u0438\u0433\u0442", + "rom": "\u0446\u0438\u0433\u0430\u043d\u0441\u043a\u0438 \u0435\u0437\u0438\u043a", + "tsi": "\u0446\u0438\u043c\u0448\u0438\u0430\u043d\u0441\u043a\u0438", + "cu": "\u0446\u044a\u0440\u043a\u043e\u0432\u043d\u043e \u0441\u043b\u0430\u0432\u044f\u043d\u0441\u043a\u0438", + "chg": "\u0447\u0430\u0433\u0430\u0442\u0430\u0439", + "ch": "\u0447\u0430\u043c\u043e\u0440\u043e", + "chy": "\u0447\u0435\u0439\u0435\u043d\u0441\u043a\u0438", + "chr": "\u0447\u0435\u0440\u043e\u043a\u0438", + "ce": "\u0447\u0435\u0447\u0435\u043d\u0441\u043a\u0438", + "cs": "\u0447\u0435\u0448\u043a\u0438", + "chb": "\u0447\u0438\u0431\u0447\u0430", + "cgg": "\u0447\u0438\u0433\u0430", + "chp": "\u0447\u0438\u0438\u043f\u0443\u0432\u0441\u043a\u0438", + "ny": "\u0447\u0438\u043d\u044f\u043d\u0434\u0436\u0430", + "cho": "\u0447\u043e\u043a\u0442\u043e", + "cv": "\u0447\u0443\u0432\u0430\u0448\u043a\u0438", + "chk": "\u0447\u0443\u0443\u043a", + "ksb": "\u0448\u0430\u043c\u0431\u0430\u043b\u0430", + "shn": "\u0448\u0430\u043d", + "sv": "\u0448\u0432\u0435\u0434\u0441\u043a\u0438", + "de_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438 \u0433\u043e\u0440\u043d\u043e\u0433\u0435\u0440\u043c\u0430\u043d\u0441\u043a\u0438", + "gsw": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438 \u043d\u0435\u043c\u0441\u043a\u0438", + "fr_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438 \u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "sn": "\u0448\u043e\u043d\u0430", + "sco": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "gd": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u0433\u0430\u043b\u0441\u043a\u0438", + "sux": "\u0448\u0443\u043c\u0435\u0440\u0441\u043a\u0438", + "nr": "\u044e\u0436\u0435\u043d \u043d\u0434\u0435\u0431\u0435\u043b\u0435", + "alt": "\u044e\u0436\u043d\u043e\u0430\u043b\u0442\u0430\u0439\u0441\u043a\u0438", + "sma": "\u044e\u0436\u043d\u043e\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "jv": "\u044f\u0432\u0430\u043d\u0441\u043a\u0438", + "sah": "\u044f\u043a\u0443\u0442\u0441\u043a\u0438", + "yao": "\u044f\u043e", + "yap": "\u044f\u043f\u0435\u0437\u0435", + "ja": "\u044f\u043f\u043e\u043d\u0441\u043a\u0438", + "bss": "Akoose", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bax": "Bamun", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "pt_BR": "Brazilian Portuguese", + "bum": "Bulu", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "dzg": "Dazaga", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "pt_PT": "European Portuguese", + "es_ES": "European Spanish", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "ibb": "Ibibio", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "kbl": "Kanembu", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "es_419": "Latin American Spanish", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "mde": "Maba", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "byv": "Medumba", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "mye": "Myene", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "see": "Seneca", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "trv": "Taroko", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/bn-BD.json b/public/intl/language/bn-BD.json new file mode 100644 index 0000000..54d31a0 --- /dev/null +++ b/public/intl/language/bn-BD.json @@ -0,0 +1,611 @@ +{ + "oc": "\u0985\u0995\u09cd\u09b8\u09bf\u099f\u09be\u09a8", + "und": "\u0985\u099c\u09be\u09a8\u09be \u09ad\u09be\u09b7\u09be", + "kaj": "\u0985\u099c\u09cd\u099c\u09c1", + "ota": "\u0985\u099f\u09cb\u09ae\u09be\u09a8 \u09a4\u09c1\u09b0\u09cd\u0995\u09bf", + "ada": "\u0985\u09a6\u09be\u0997\u09cd\u09ae\u09c7", + "om": "\u0985\u09b0\u09cb\u09ae\u09cb", + "de_AT": "\u0985\u09b8\u09cd\u099f\u09cd\u09b0\u09bf\u09af\u09bc\u09be\u09a8 \u099c\u09be\u09b0\u09ae\u09be\u09a8", + "en_AU": "\u0985\u09b8\u09cd\u099f\u09cd\u09b0\u09c7\u09b2\u09c0\u09af\u09bc \u0987\u0982\u09b0\u09c7\u099c\u09bf", + "ace": "\u0985\u09cd\u09af\u09be\u099a\u09be\u0987\u09a8\u09bf\u099c", + "ain": "\u0986\u0987\u09a8\u09c1", + "ga": "\u0986\u0987\u09b0\u09bf\u09b6", + "is": "\u0986\u0987\u09b8\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09a1\u09c0\u09af\u09bc", + "awa": "\u0986\u0993\u09af\u09bc\u09be\u09a7\u09bf", + "ak": "\u0986\u0995\u09be\u09a8", + "ach": "\u0986\u0995\u09cb\u09b2\u09bf", + "akk": "\u0986\u0995\u09cd\u0995\u09be\u09a6\u09bf\u09af\u09bc\u09be\u09a8", + "anp": "\u0986\u0999\u09cd\u0997\u09bf\u0995\u09be", + "az": "\u0986\u099c\u09be\u09b0\u09ac\u09be\u0987\u099c\u09be\u09a8\u09c0", + "cch": "\u0986\u09a4\u09cd\u09b8\u09be\u09ae", + "zgh": "\u0986\u09a6\u09b0\u09cd\u09b6 \u09ae\u09b0\u0995\u09cd\u0995\u09cb\u09a8 \u09a4\u09be\u09ae\u09be\u099c\u09bf\u0997\u09be\u09a4", + "ady": "\u0986\u09a6\u09c7\u0997\u09c7", + "ar_001": "\u0986\u09a7\u09c1\u09a8\u09bf\u0995 \u0986\u09a6\u09b0\u09cd\u09b6 \u0986\u09b0\u09ac\u09c0", + "aa": "\u0986\u09ab\u09be\u09b0", + "af": "\u0986\u09ab\u09cd\u09b0\u09bf\u0995\u09be\u09a8\u09cd\u09b8", + "afh": "\u0986\u09ab\u09cd\u09b0\u09bf\u09b9\u09bf\u09b2\u09bf", + "ab": "\u0986\u09ac\u0996\u09be\u099c\u09bf\u09af\u09bc\u09be\u09a8", + "ae": "\u0986\u09ac\u09c7\u09b8\u09cd\u09a4\u09c0\u09af\u09bc", + "av": "\u0986\u09ad\u09c7\u09b0\u09bf\u0995", + "am": "\u0986\u09ae\u09b9\u09be\u09b0\u09bf\u0995", + "en_US": "\u0986\u09ae\u09c7\u09b0\u09bf\u0995\u09be\u09b0 \u0987\u0982\u09b0\u09c7\u099c\u09bf", + "ay": "\u0986\u09af\u09bc\u09ae\u09be\u09b0\u09be", + "ar": "\u0986\u09b0\u09ac\u09c0", + "rup": "\u0986\u09b0\u09ae\u09c7\u09a8\u09bf\u09af\u09bc\u09be\u09a8", + "arw": "\u0986\u09b0\u09be\u0993\u09af\u09bc\u09be\u0995", + "arp": "\u0986\u09b0\u09be\u09aa\u09be\u09b9\u09cb", + "arc": "\u0986\u09b0\u09be\u09ae\u09be\u0987\u0995", + "an": "\u0986\u09b0\u09cd\u0997\u09cb\u09a8\u09bf\u099c", + "hy": "\u0986\u09b0\u09cd\u09ae\u09c7\u09a8\u09bf\u09af\u09bc", + "sq": "\u0986\u09b2\u09ac\u09c7\u09a8\u09c0\u09af\u09bc", + "ale": "\u0986\u09b2\u09c7\u0989\u09a4", + "as": "\u0986\u09b8\u09be\u09ae\u09bf", + "asa": "\u0986\u09b8\u09c1", + "ast": "\u0986\u09b8\u09cd\u09a4\u09c1\u09b0\u09bf\u09af\u09bc", + "uk": "\u0987\u0989\u0995\u09cd\u09b0\u09c7\u09a8\u09c0\u09af\u09bc", + "es_ES": "\u0987\u0989\u09b0\u09cb\u09aa\u09c0\u09af\u09bc \u09b8\u09cd\u09aa\u09cd\u09af\u09be\u09a8\u09bf\u09b6", + "pt_PT": "\u0987\u0989\u09b0\u09cb\u09aa\u09c7\u09b0 \u09aa\u09b0\u09cd\u09a4\u09c1\u0997\u09c0\u099c", + "ewo": "\u0987\u0993\u09a8\u09cd\u09a1\u09cb", + "yo": "\u0987\u0993\u09b0\u09c1\u09ac\u09be", + "en": "\u0987\u0982\u09b0\u09c7\u099c\u09bf", + "eka": "\u0987\u0995\u09be\u099c\u09c1\u0995", + "ig": "\u0987\u0997\u09cd\u200c\u09ac\u09cb", + "inh": "\u0987\u0999\u09cd\u0997\u09c1\u09b6", + "io": "\u0987\u09a1\u09cb", + "it": "\u0987\u09a4\u09be\u09b2\u09c0\u09af\u09bc", + "smn": "\u0987\u09a8\u09be\u09b0\u09bf \u09b8\u09be\u09ae\u09bf", + "iu": "\u0987\u09a8\u09c1\u0995\u09cd\u099f\u09bf\u099f\u09c1\u099f", + "ik": "\u0987\u09a8\u09c1\u09aa\u09bf\u09af\u09bc\u09be\u0995", + "ie": "\u0987\u09a8\u09cd\u099f\u09be\u09b0\u09b2\u09bf\u0999\u09cd\u0997", + "ia": "\u0987\u09a8\u09cd\u099f\u09be\u09b0\u09b2\u09bf\u0999\u09cd\u0997\u09c1\u09af\u09bc\u09be", + "id": "\u0987\u09a8\u09cd\u09a6\u09cb\u09a8\u09c7\u09b6\u09c0\u09af\u09bc", + "iba": "\u0987\u09ac\u09be\u09a8", + "yao": "\u0987\u09af\u09bc\u09be\u0993", + "sah": "\u0987\u09af\u09bc\u09be\u0995\u09c1\u099f", + "yap": "\u0987\u09af\u09bc\u09be\u09aa\u09c7\u09b8\u09c7", + "ilo": "\u0987\u09b2\u09cb\u0995\u09cb", + "ug": "\u0989\u0987\u0998\u09c1\u09b0", + "wo": "\u0989\u0993\u09b2\u09cb\u09ab", + "uga": "\u0989\u0997\u09be\u09b0\u09bf\u099f\u09bf\u0995", + "hsb": "\u0989\u099a\u09cd\u099a \u09b8\u09cb\u09b0\u09cd\u09ac\u09bf\u09af\u09bc\u09be\u09a8", + "uz": "\u0989\u099c\u09ac\u09c7\u0995\u09c0\u09af\u09bc", + "udm": "\u0989\u09a1\u09ae\u09c1\u09b0\u09cd\u099f", + "nd": "\u0989\u09a4\u09cd\u09a4\u09b0 \u098f\u09a8\u09cd\u09a6\u09c7\u09ac\u09bf\u09b2\u09bf", + "frr": "\u0989\u09a4\u09cd\u09a4\u09b0\u09be\u099e\u09cd\u099a\u09b2\u09c0\u09af\u09bc \u09ab\u09cd\u09b0\u09bf\u09b8\u09bf\u09af\u09bc\u09be\u09a8", + "se": "\u0989\u09a4\u09cd\u09a4\u09b0\u09be\u099e\u09cd\u099a\u09b2\u09c0\u09af\u09bc \u09b8\u09be\u09ae\u09bf", + "nso": "\u0989\u09a4\u09cd\u09a4\u09b0\u09be\u099e\u09cd\u099a\u09b2\u09c0\u09af\u09bc \u09b8\u09cb\u09a5\u09cb", + "umb": "\u0989\u09ae\u09cd\u09ac\u09c1\u09a8\u09cd\u09a6\u09c1", + "ur": "\u0989\u09b0\u09cd\u09a6\u09c1", + "agq": "\u098f\u0998\u09c7\u09ae", + "nqo": "\u098f\u09a8\u2019\u0995\u09cb", + "nzi": "\u098f\u09a8\u09cd.\u099c\u09bf\u09ae\u09be", + "ng": "\u098f\u09a8\u09cd\u09a6\u09cb\u0999\u09cd\u0997\u09be", + "efi": "\u098f\u09ab\u09bf\u0995", + "ebu": "\u098f\u09ae\u09cd\u09ac\u09c1", + "ee": "\u098f\u09af\u09bc\u09c7", + "myv": "\u098f\u09b0\u099c\u09bf\u09af\u09bc\u09be", + "elx": "\u098f\u09b2\u09be\u09ae\u09be\u0987\u099f", + "et": "\u098f\u09b8\u09cd\u09a4\u09cb\u09a8\u09c0\u09af\u09bc", + "eo": "\u098f\u09b8\u09cd\u09aa\u09c7\u09b0\u09be\u09a8\u09cd\u09a4\u09cb", + "zh_Hant": "\u0990\u09a4\u09bf\u09b9\u09cd\u09af\u09ac\u09be\u09b9\u09bf \u099a\u09c0\u09a8\u09be", + "oj": "\u0993\u099c\u09bf\u09ac\u0993\u09af\u09bc\u09be", + "or": "\u0993\u09a1\u09bc\u09bf\u09af\u09bc\u09be", + "war": "\u0993\u09af\u09bc\u09be\u09b0\u09c7", + "wal": "\u0993\u09af\u09bc\u09be\u09b2\u09be\u09ae\u09cb", + "wa": "\u0993\u09af\u09bc\u09be\u09b2\u09c1\u09a8", + "was": "\u0993\u09af\u09bc\u09be\u09b6\u09cb", + "cy": "\u0993\u09af\u09bc\u09c7\u09b2\u09b6", + "osa": "\u0993\u09b8\u09c7\u099c", + "os": "\u0993\u09b8\u09c7\u099f\u09bf\u0995", + "kg": "\u0995\u0999\u09cd\u0997\u09cb", + "swc": "\u0995\u0999\u09cd\u0997\u09cb \u09b8\u09cb\u09af\u09bc\u09be\u09b9\u09bf\u09b2\u09bf", + "cop": "\u0995\u09aa\u099f\u09bf\u0995", + "koi": "\u0995\u09ae\u09bf-\u09aa\u09be\u09b0\u09ae\u09bf\u0986\u0995", + "kw": "\u0995\u09b0\u09cd\u09a3\u09bf\u09b6", + "co": "\u0995\u09b0\u09cd\u09b8\u09bf\u0995\u09be\u09a8", + "kaw": "\u0995\u09be\u0989\u0987", + "kac": "\u0995\u09be\u099a\u09bf\u09a8", + "kk": "\u0995\u09be\u099c\u09be\u0996", + "ca": "\u0995\u09be\u09a4\u09be\u09b2\u09be\u09a8", + "en_CA": "\u0995\u09be\u09a8\u09be\u09a1\u09c0\u09af\u09bc \u0987\u0982\u09b0\u09c7\u099c\u09bf", + "kr": "\u0995\u09be\u09a8\u09c1\u09b0\u09bf", + "kn": "\u0995\u09be\u09a8\u09cd\u09a8\u09be\u09a1\u09bc\u09c0", + "kab": "\u0995\u09be\u09ac\u09be\u0987\u09b2\u09c7", + "kbd": "\u0995\u09be\u09ac\u09be\u09b0\u09cd\u09a1\u09bf\u09af\u09bc\u09be\u09a8", + "kea": "\u0995\u09be\u09ac\u09c1\u09ad\u09be\u09b0\u09a6\u09bf\u09af\u09bc\u09be\u09a8\u09c1", + "kam": "\u0995\u09be\u09ae\u09cd\u09ac\u09be", + "krc": "\u0995\u09be\u09b0\u099a\u09c7-\u09ac\u09be\u09b2\u09cd\u0995\u09be\u09b0", + "kaa": "\u0995\u09be\u09b0\u09be-\u0995\u09be\u09b2\u09cd\u09aa\u09be\u0995", + "krl": "\u0995\u09be\u09b0\u09c7\u09b2\u09bf\u09af\u09bc\u09be\u09a8", + "kln": "\u0995\u09be\u09b2\u09c7\u09a8\u099c\u09bf\u09a8", + "xal": "\u0995\u09be\u09b2\u09cd\u09ae\u0987\u0995", + "csb": "\u0995\u09be\u09b6\u09c1\u09ac\u09bf\u09af\u09bc\u09be\u09a8", + "ks": "\u0995\u09be\u09b6\u09cd\u09ae\u09c0\u09b0\u09c0", + "quc": "\u0995\u09bf\u2018\u099a\u09c7", + "ki": "\u0995\u09bf\u0995\u09c1\u09cd\u0987\u09af\u09bc\u09c1", + "rw": "\u0995\u09bf\u09a8\u09af\u09bc\u09be\u09b0\u09cb\u09af\u09bc\u09be\u09a8\u09cd\u09a1\u09be", + "kmb": "\u0995\u09bf\u09ae\u09cd\u09ac\u09c1\u09a8\u09cd\u09a6\u09c1", + "ky": "\u0995\u09bf\u09b0\u09cd\u0997\u09bf\u099c", + "kut": "\u0995\u09c1\u099f\u09c7\u09a8\u09be\u0987", + "kum": "\u0995\u09c1\u09ae\u09bf\u0995", + "kru": "\u0995\u09c1\u09b0\u09c1\u0996", + "ku": "\u0995\u09c1\u09b0\u09cd\u09a6\u09bf", + "qu": "\u0995\u09c7\u099a\u09c1\u09af\u09bc\u09be", + "kok": "\u0995\u09cb\u0999\u09cd\u0995\u09be\u09a8\u09bf", + "kv": "\u0995\u09cb\u09ae\u09bf", + "khq": "\u0995\u09cb\u09af\u09bc\u09b0\u09be \u099a\u09c0\u09a8\u09bf", + "ses": "\u0995\u09cb\u09af\u09bc\u09b0\u09be\u09ac\u09c7\u09a8\u09cb \u09b8\u09c7\u09a8\u09cd\u09a8\u09c0", + "kj": "\u0995\u09cb\u09af\u09bc\u09be\u09a8\u09bf\u09af\u09bc\u09be\u09ae\u09be", + "nmg": "\u0995\u09cb\u09af\u09bc\u09be\u09b8\u09bf\u0993", + "ko": "\u0995\u09cb\u09b0\u09bf\u09af\u09bc\u09be\u09a8", + "kfo": "\u0995\u09cb\u09b0\u09cb", + "kos": "\u0995\u09cb\u09b8\u09cd\u09b0\u09be\u0987\u09a8", + "kpe": "\u0995\u09cd\u200c\u09aa\u09c7\u09b2\u09cd\u09b2\u09c7", + "cad": "\u0995\u09cd\u09af\u09be\u09a1\u09cb", + "fr_CA": "\u0995\u09cd\u09af\u09be\u09a8\u09be\u09a1\u09bf\u09af\u09bc\u09be\u09a8 \u09ab\u09b0\u09be\u09b8\u09c0", + "car": "\u0995\u09cd\u09af\u09be\u09b0\u09bf\u09ac", + "kl": "\u0995\u09cd\u09af\u09be\u09b2\u09be\u09b2\u09cd\u09b2\u09bf\u09b8\u09c1\u099f", + "cr": "\u0995\u09cd\u09b0\u09bf", + "mus": "\u0995\u09cd\u09b0\u09bf\u0995", + "crh": "\u0995\u09cd\u09b0\u09bf\u09ae\u09bf\u09af\u09bc\u09be\u09a8 \u09a4\u09c1\u09b0\u09cd\u0995\u09bf", + "hr": "\u0995\u09cd\u09b0\u09cb\u09af\u09bc\u09c7\u09b6\u09c0\u09af\u09bc", + "tlh": "\u0995\u09cd\u09b2\u09bf\u0999\u09cd\u0997\u09a8", + "km": "\u0996\u09ae\u09c7\u09b0", + "kha": "\u0996\u09be\u09b6\u09bf", + "kho": "\u0996\u09cb\u099f\u09be\u09a8\u09bf\u099c", + "gwi": "\u0997\u0993\u0987\u099a\u09cd\u2019\u0987\u09a8", + "got": "\u0997\u09a5\u09bf\u0995", + "gaa": "\u0997\u09be", + "gag": "\u0997\u09be\u0997\u09be\u0989\u099c", + "lg": "\u0997\u09be\u09a8\u09cd\u09a1\u09be", + "gay": "\u0997\u09be\u09af\u09bc\u09cb", + "gil": "\u0997\u09bf\u09b2\u09ac\u09be\u09b0\u09cd\u099f\u09bf\u099c", + "gez": "\u0997\u09c0\u099c", + "gu": "\u0997\u09c1\u099c\u09b0\u09be\u099f\u09bf", + "gn": "\u0997\u09c1\u09af\u09bc\u09be\u09b0\u09be\u09a8\u09bf", + "guz": "\u0997\u09c1\u09b8\u09c0", + "gon": "\u0997\u09cb\u09a8\u09cd\u09a1\u09bf", + "jgo": "\u0997\u09cb\u09ae\u09cd\u09ac\u09be", + "gor": "\u0997\u09cb\u09b0\u09cb\u09a8\u09cd\u09a4\u09be\u09b2\u09cb", + "gl": "\u0997\u09cd\u09af\u09be\u09b2\u09bf\u09b6\u09bf\u09af\u09bc", + "el": "\u0997\u09cd\u09b0\u09bf\u0995", + "grb": "\u0997\u09cd\u09b0\u09c7\u09ac\u09cb", + "cho": "\u099a\u0995\u099f\u09cb\u0993", + "chg": "\u099a\u09be\u0997\u09be\u09a4\u09be\u0987", + "ch": "\u099a\u09be\u09ae\u09cb\u09b0\u09cb", + "cu": "\u099a\u09be\u09b0\u09cd\u099a \u09b8\u09cd\u09b2\u09be\u09ad\u09bf\u0995", + "cgg": "\u099a\u09bf\u0997\u09be", + "zbl": "\u099a\u09bf\u09a4\u09cd\u09b0 \u09ad\u09be\u09b7\u09be", + "chn": "\u099a\u09bf\u09a8\u09c1\u0995 \u099c\u09be\u09b0\u09cd\u0997\u09a8", + "chp": "\u099a\u09bf\u09aa\u09c7\u0993\u09af\u09bc\u09be\u09a8", + "chb": "\u099a\u09bf\u09ac\u099a\u09be", + "zh": "\u099a\u09c0\u09a8\u09be", + "chk": "\u099a\u09c1\u0995\u09bf", + "cv": "\u099a\u09c1\u09ac\u09be\u09b8", + "cs": "\u099a\u09c7\u0995", + "ce": "\u099a\u09c7\u099a\u09c7\u09a8", + "ceb": "\u099a\u09c7\u09ac\u09c1\u09af\u09bc\u09be\u09a8\u09cb", + "chr": "\u099a\u09c7\u09b0\u09cb\u0995\u09c0", + "ka": "\u099c\u09b0\u09cd\u099c\u09bf\u09af\u09bc\u09be\u09a8", + "dyo": "\u099c\u09b2\u09be-\u09ab\u09a8\u09c0", + "zza": "\u099c\u09be\u099c\u09be", + "ja": "\u099c\u09be\u09aa\u09be\u09a8\u09bf", + "zap": "\u099c\u09be\u09aa\u09cb\u099f\u09c7\u0995", + "jv": "\u099c\u09be\u09ad\u09be\u09a8\u09bf", + "dje": "\u099c\u09be\u09b0\u09cd\u09ae\u09be", + "de": "\u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8", + "jrb": "\u099c\u09c1\u09a6\u09c7\u0993 \u0986\u09b0\u09ac\u09bf", + "jpr": "\u099c\u09c1\u09a6\u09c7\u0993 \u09ab\u09be\u09b0\u09cd\u09b8\u09bf", + "zun": "\u099c\u09c1\u09a8\u09bf", + "zu": "\u099c\u09c1\u09b2\u09c1", + "zen": "\u099c\u09c7\u09a8\u09be\u0997\u09be", + "dz": "\u099c\u09cb\u0999\u09cd\u0997\u09be", + "xh": "\u099c\u09cb\u09b8\u09be", + "za": "\u099d\u09c1\u09cd\u09af\u09bc\u09be\u0999", + "tig": "\u099f\u09be\u0987\u0997\u09cd\u09b0\u09c7", + "tem": "\u099f\u09be\u0987\u09ae\u09cd\u09a8\u09c7", + "kcg": "\u099f\u09be\u0987\u09af\u09bc\u09be\u09aa", + "tiv": "\u099f\u09bf\u09ad", + "tvl": "\u099f\u09c1\u09ad\u09be\u09b2\u09c1", + "tyv": "\u099f\u09c1\u09ad\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09a8", + "tpi": "\u099f\u09cb\u0995 \u09aa\u09bf\u09b8\u09bf\u09a8", + "tkl": "\u099f\u09cb\u0995\u09c7\u09b2\u09be\u0989", + "to": "\u099f\u09cb\u0999\u09cd\u0997\u09be\u09a8", + "tw": "\u099f\u09cb\u09af\u09bc\u09be\u0987", + "dak": "\u09a1\u09be\u0995\u09cb\u099f\u09be", + "nl": "\u09a1\u09be\u099a", + "dyu": "\u09a1\u09bf\u0989\u09b2\u09be", + "din": "\u09a1\u09bf\u0982\u0995\u09be", + "da": "\u09a1\u09c7\u09a8\u09bf\u09b6", + "del": "\u09a1\u09c7\u09b2\u09be\u0993\u09af\u09bc\u09c7\u09b0", + "doi": "\u09a1\u09cb\u0997\u09b0\u09bf", + "dav": "\u09a4\u09be\u0987\u09a4\u09be", + "tl": "\u09a4\u09be\u0997\u09be\u09b2\u0997", + "shi": "\u09a4\u09be\u099a\u09c7\u09b2\u09b9\u09bf\u09a4", + "tg": "\u09a4\u09be\u099c\u09bf\u0995", + "tt": "\u09a4\u09be\u09a4\u09be\u09b0", + "tmh": "\u09a4\u09be\u09ae\u09be\u09b6\u09c7\u0995", + "ta": "\u09a4\u09be\u09ae\u09bf\u09b2", + "twq": "\u09a4\u09be\u09b8\u09be\u0993\u09af\u09bc\u09be\u0995", + "ty": "\u09a4\u09be\u09b9\u09bf\u09a4\u09bf\u09af\u09bc\u09be\u09a8", + "ti": "\u09a4\u09bf\u0997\u09b0\u09bf\u09a8\u09bf\u09af\u09bc\u09be", + "bo": "\u09a4\u09bf\u09ac\u09cd\u09ac\u09a4\u09bf", + "tum": "\u09a4\u09c1\u09ae\u09cd\u09ac\u09c1\u0995\u09be", + "tk": "\u09a4\u09c1\u09b0\u09cd\u0995\u09ae\u09c7\u09a8\u09c0", + "tr": "\u09a4\u09c1\u09b0\u09cd\u0995\u09c0", + "tet": "\u09a4\u09c7\u09a4\u09c1\u09ae", + "ter": "\u09a4\u09c7\u09b0\u09c7\u09a8\u09cb", + "te": "\u09a4\u09c7\u09b2\u09c7\u0997\u09c1", + "teo": "\u09a4\u09c7\u09b8\u09cb", + "tli": "\u09a4\u09cd\u09b2\u09bf\u0999\u09cd\u0997\u09bf\u099f", + "th": "\u09a5\u09be\u0987", + "nr": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a3 \u098f\u09a8\u09a1\u09c7\u09ac\u09c7\u09b2\u09c7", + "sma": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a3\u09be\u099e\u09cd\u099a\u09b2\u09c0\u09af\u09bc \u09b8\u09be\u09ae\u09bf", + "alt": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a8 \u0986\u09b2\u09a4\u09be\u0987", + "st": "\u09a6\u0995\u09cd\u09b7\u09bf\u09a8 \u09b8\u09cb\u09a5\u09cb", + "dar": "\u09a6\u09be\u09b0\u09cd\u0997\u0993\u09af\u09bc\u09be", + "dv": "\u09a6\u09bf\u09ac\u09c7\u09b9\u09bf", + "dua": "\u09a6\u09c1\u09af\u09bc\u09be\u09b2\u09be", + "dgr": "\u09a6\u09cb\u0997\u09cd\u09b0\u09c0\u09ac", + "nb": "\u09a8\u09b0\u0993\u09af\u09bc\u09c7\u099c\u09bf\u09af\u09bc\u09be\u09a8 \u09ac\u09cb\u0995\u09ae\u09be\u09b2", + "no": "\u09a8\u09b0\u0993\u09af\u09bc\u09c7\u099c\u09c0\u09af\u09bc", + "nn": "\u09a8\u09b0\u0993\u09af\u09bc\u09c7\u099c\u09c0\u09af\u09bc\u09be\u09a8 \u09a8\u09bf\u09a8\u09b0\u09cd\u09b8\u09cd\u0995", + "na": "\u09a8\u09be\u0989\u09b0\u09c1", + "nv": "\u09a8\u09be\u09ad\u09be\u099c\u09cb", + "naq": "\u09a8\u09be\u09ae\u09be", + "ny": "\u09a8\u09be\u09af\u09bc\u09be\u099e\u09cd\u099c\u09be", + "tog": "\u09a8\u09be\u09af\u09bc\u09be\u09b8\u09be \u099f\u09cb\u0999\u09cd\u0997\u09be", + "niu": "\u09a8\u09bf\u0989\u09af\u09bc\u09be\u09a8", + "nds": "\u09a8\u09bf\u09ae\u09cd\u09a8 \u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8\u09bf", + "dsb": "\u09a8\u09bf\u09ae\u09cd\u09a8\u09a4\u09b0 \u09b8\u09cb\u09b0\u09cd\u09ac\u09bf\u09af\u09bc\u09be\u09a8", + "nia": "\u09a8\u09bf\u09af\u09bc\u09be\u09b8", + "nus": "\u09a8\u09c1\u09af\u09bc\u09be\u09b0", + "new": "\u09a8\u09c7\u0993\u09af\u09bc\u09be\u09b0\u09bf", + "ne": "\u09a8\u09c7\u09aa\u09be\u09b2\u09c0", + "nap": "\u09a8\u09c7\u09af\u09bc\u09be\u09aa\u09cb\u09b2\u09bf\u099f\u09be\u09a8", + "nog": "\u09a8\u09cb\u0997\u09be\u0987", + "nyn": "\u09a8\u09cd\u09af\u09be\u09af\u09bc\u09be\u0999\u09cd\u0995\u09cb\u09b2\u09c7", + "nym": "\u09a8\u09cd\u09af\u09be\u09af\u09bc\u09be\u09ae\u0993\u09af\u09bc\u09c7\u099c\u09bf", + "nyo": "\u09a8\u09cd\u09af\u09cb\u09b0\u09cb", + "pt": "\u09aa\u09b0\u09cd\u09a4\u09c1\u0997\u09c0\u099c", + "fy": "\u09aa\u09b6\u09cd\u099a\u09bf\u09ae \u09ab\u09cd\u09b0\u09bf\u09b8\u09bf\u09af\u09bc", + "pag": "\u09aa\u09be\u0999\u09cd\u0997\u09be\u09b8\u09bf\u09a8\u09be\u09a8", + "pa": "\u09aa\u09be\u099e\u09cd\u099c\u09be\u09ac\u09c0", + "pap": "\u09aa\u09be\u09aa\u09bf\u09af\u09bc\u09be\u09ae\u09c7\u09a8\u09cd\u099f\u09cb", + "pam": "\u09aa\u09be\u09ae\u09cd\u09aa\u09be\u0999\u09cd\u0997\u09be", + "pau": "\u09aa\u09be\u09b2\u09be\u09af\u09bc\u09c1\u09af\u09bc\u09be\u09a8", + "pi": "\u09aa\u09be\u09b2\u09bf", + "ps": "\u09aa\u09be\u09b6\u09cd\u09a4\u09c1", + "pal": "\u09aa\u09be\u09b9\u09cd\u09b2\u09be\u09ad\u09bf", + "frs": "\u09aa\u09c2\u09b0\u09cd\u09ac \u09ab\u09cd\u09b0\u09bf\u09b8\u09bf\u09af\u09bc", + "pl": "\u09aa\u09cb\u09b2\u09bf\u09b6", + "pon": "\u09aa\u09cb\u09b9\u09cd\u09a8\u09aa\u09c7\u0987\u09af\u09bc\u09be\u09a8", + "sga": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u0986\u0987\u09b0\u09bf\u09b6", + "ang": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u0987\u0982\u09b0\u09c7\u099c\u09c0", + "goh": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u0989\u099a\u09cd\u099a \u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8\u09bf", + "grc": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u0997\u09cd\u09b0\u09c0\u0995", + "non": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09a8\u09b0\u09cd\u09b8", + "nwc": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09a8\u09c7\u0993\u09af\u09bc\u09be\u09b0\u09c0", + "pro": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09aa\u09cd\u09b0\u09cb\u09ad\u09c7\u09a8\u09b8\u09be\u09b2", + "fro": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09ab\u09b0\u09be\u09b8\u09bf", + "peo": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09ab\u09be\u09b0\u09cd\u09b8\u09bf", + "egy": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09ae\u09bf\u09b6\u09b0\u09c0\u09af\u09bc", + "syc": "\u09aa\u09cd\u09b0\u09be\u099a\u09c0\u09a8 \u09b8\u09bf\u09b0\u09bf\u0993", + "fon": "\u09ab\u09a8", + "fr": "\u09ab\u09b0\u09be\u09b8\u09bf", + "fat": "\u09ab\u09be\u09a8\u09cd\u09a4\u09bf", + "fa": "\u09ab\u09be\u09b0\u09cd\u09b8\u09bf", + "fj": "\u09ab\u09bf\u099c\u09bf\u0993", + "fi": "\u09ab\u09bf\u09a8\u09bf\u09b6", + "fil": "\u09ab\u09bf\u09b2\u09bf\u09aa\u09bf\u09a8\u09cb", + "ff": "\u09ab\u09c1\u09b2\u09be\u09b9\u09cd", + "fo": "\u09ab\u09c7\u09b0\u09be\u0989\u09a8\u09bf", + "phn": "\u09ab\u09cb\u09a8\u09bf\u09b6\u09c0\u09af\u09bc\u09be\u09a8", + "fan": "\u09ab\u09cd\u09af\u09be\u0999\u09cd\u0997", + "fur": "\u09ab\u09cd\u09b0\u09bf\u0989\u09b2\u09bf\u09af\u09bc\u09be\u09a8", + "nl_BE": "\u09ab\u09cd\u09b2\u09c7\u09ae\u09bf\u09b6", + "brx": "\u09ac\u09a1\u09bc\u09cb", + "my": "\u09ac\u09b0\u09cd\u09ae\u09bf", + "bs": "\u09ac\u09b8\u09a8\u09c0\u09af\u09bc\u09be\u09a8", + "mul": "\u09ac\u09b9\u09c1\u0997\u09c1\u09a3\u09bf\u09a4\u0995 \u09ad\u09be\u09b7\u09be\u09b8\u09ae\u09c2\u09b9", + "bn": "\u09ac\u09be\u0982\u09b2\u09be", + "ksf": "\u09ac\u09be\u09ab\u09bf\u09af\u09bc\u09be", + "bm": "\u09ac\u09be\u09ae\u09ac\u09be\u09b0\u09be", + "gba": "\u09ac\u09be\u09af\u09bc\u09be", + "ban": "\u09ac\u09be\u09b2\u09bf\u09a8\u09c0\u09af\u09bc", + "ba": "\u09ac\u09be\u09b6\u0995\u09bf\u09b0", + "bas": "\u09ac\u09be\u09b8\u09be", + "eu": "\u09ac\u09be\u09b8\u09cd\u0995", + "bik": "\u09ac\u09bf\u0995\u09cb\u09b2", + "bin": "\u09ac\u09bf\u09a8\u09bf", + "bi": "\u09ac\u09bf\u09b8\u09b2\u09be\u09ae\u09be", + "bug": "\u09ac\u09c1\u0997\u09bf\u09a8\u09bf", + "bua": "\u09ac\u09c1\u09b0\u09bf\u09af\u09bc\u09be\u09a4", + "bg": "\u09ac\u09c1\u09b2\u0997\u09c7\u09b0\u09bf\u09af\u09bc", + "bej": "\u09ac\u09c7\u099c\u09be", + "bez": "\u09ac\u09c7\u09a8\u09be", + "bem": "\u09ac\u09c7\u09ae\u09cd\u09ac\u09be", + "be": "\u09ac\u09c7\u09b2\u09be\u09b0\u09c1\u09b6\u09bf\u09af\u09bc", + "bal": "\u09ac\u09c7\u09b2\u09c1\u099a\u09c0", + "bra": "\u09ac\u09cd\u09b0\u09be\u099c", + "pt_BR": "\u09ac\u09cd\u09b0\u09be\u099c\u09bf\u09b2\u09c7\u09b0 \u09aa\u09b0\u09cd\u09a4\u09c1\u0997\u09c0\u099c", + "en_GB": "\u09ac\u09cd\u09b0\u09bf\u099f\u09bf\u09b6 \u0987\u0982\u09b0\u09c7\u099c\u09bf", + "br": "\u09ac\u09cd\u09b0\u09c7\u099f\u09a8", + "byn": "\u09ac\u09cd\u09b2\u09bf\u09a8", + "vai": "\u09ad\u09be\u0987", + "zxx": "\u09ad\u09be\u09b7\u09be\u09ad\u09bf\u09a4\u09cd\u09a4\u09bf\u0995 \u09ac\u09bf\u09b7\u09af\u09bc\u09ac\u09b8\u09cd\u09a4\u09c1 \u09a8\u09c7\u0987", + "vi": "\u09ad\u09bf\u09af\u09bc\u09c7\u09a4\u09a8\u09be\u09ae\u09c0", + "vun": "\u09ad\u09c1\u099e\u09cd\u099c\u09cb", + "ve": "\u09ad\u09c7\u09a8\u09cd\u09a1\u09be", + "bho": "\u09ad\u09cb\u099c\u09aa\u09c1\u09b0\u09bf", + "vot": "\u09ad\u09cb\u099f\u09bf\u0995", + "vo": "\u09ad\u09cb\u09b2\u09be\u09aa\u09c1\u0995", + "mn": "\u09ae\u0999\u09cd\u0997\u09cb\u09b2\u09bf\u09af\u09bc", + "mni": "\u09ae\u09a3\u09bf\u09aa\u09c1\u09b0\u09c0", + "mga": "\u09ae\u09a7\u09cd\u09af \u0986\u0987\u09b0\u09bf\u09b6", + "enm": "\u09ae\u09a7\u09cd\u09af \u0987\u0982\u09b0\u09c7\u099c\u09bf", + "dum": "\u09ae\u09a7\u09cd\u09af \u09a1\u09be\u099a", + "frm": "\u09ae\u09a7\u09cd\u09af \u09ab\u09b0\u09be\u09b8\u09bf", + "gmh": "\u09ae\u09a7\u09cd\u09af-\u0989\u099a\u09cd\u099a \u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8\u09bf", + "mfe": "\u09ae\u09b0\u09bf\u09b8\u09bf\u09af\u09bc\u09be\u09a8", + "ro_MD": "\u09ae\u09b2\u09a6\u09be\u09ad\u09bf\u09af\u09bc", + "mt": "\u09ae\u09b2\u09cd\u099f\u09bf\u09af\u09bc", + "mos": "\u09ae\u09b8\u09bf", + "mi": "\u09ae\u09be\u0993\u09b0\u09bf", + "jmc": "\u09ae\u09be\u0995\u09be\u09ae\u09c7", + "kde": "\u09ae\u09be\u0995\u09cb\u09a8\u09cd\u09a6\u09c7", + "mgh": "\u09ae\u09be\u0996\u09c1\u09af\u09bc\u09be-\u09ae\u09c7\u09a4\u09cd\u09a4\u09cb", + "mag": "\u09ae\u09be\u0997\u09be\u09b9\u09bf", + "mnc": "\u09ae\u09be\u099e\u09cd\u099a\u09c1", + "mad": "\u09ae\u09be\u09a6\u09c1\u09b0\u09c7\u09b8\u09c7", + "arn": "\u09ae\u09be\u09aa\u09c1\u099a\u09bf", + "mr": "\u09ae\u09be\u09b0\u09be\u09a0\u09bf", + "chm": "\u09ae\u09be\u09b0\u09bf", + "mwr": "\u09ae\u09be\u09b0\u09cb\u09af\u09bc\u09be\u09b0\u09bf", + "mh": "\u09ae\u09be\u09b0\u09cd\u09b6\u09be\u09b2\u09bf\u099c", + "ms": "\u09ae\u09be\u09b2\u09af\u09bc", + "mg": "\u09ae\u09be\u09b2\u09be\u0997\u09be\u09b8\u09bf", + "ml": "\u09ae\u09be\u09b2\u09be\u09af\u09bc\u09be\u09b2\u09be\u09ae", + "mas": "\u09ae\u09be\u09b8\u09be\u0987", + "mic": "\u09ae\u09bf\u0995\u09ae\u09cd\u09af\u09be\u0995", + "min": "\u09ae\u09bf\u09a8\u09be\u0999\u09cd\u0997\u09cd\u200c\u0995\u09be\u09ac\u09be\u0989", + "mwl": "\u09ae\u09bf\u09b0\u09be\u09a8\u09cd\u09a1\u09bf\u099c", + "mua": "\u09ae\u09c1\u09a6\u09be\u0999\u09cd\u0997", + "root": "\u09ae\u09c2\u09b2", + "mgo": "\u09ae\u09c7\u099f\u09be", + "men": "\u09ae\u09c7\u09a8\u09cd\u09a1\u09c7", + "mer": "\u09ae\u09c7\u09b0\u09c1", + "mai": "\u09ae\u09c8\u09a5\u09bf\u09b2\u09bf", + "mdf": "\u09ae\u09cb\u0995\u09b6\u09be", + "lol": "\u09ae\u09cb\u0999\u09cd\u0997\u09cb", + "moh": "\u09ae\u09cb\u09b9\u09be\u0993\u0995", + "mak": "\u09ae\u09cd\u09af\u09be\u0995\u09be\u09b8\u09be\u09b0", + "es_MX": "\u09ae\u09cd\u09af\u09be\u0995\u09cd\u09b8\u09bf\u0995\u09be\u09a8 \u09b8\u09cd\u09aa\u09cd\u09af\u09be\u09a8\u09bf\u09b6", + "gv": "\u09ae\u09cd\u09af\u09be\u0999\u09cd\u0995\u09b8", + "mdr": "\u09ae\u09cd\u09af\u09be\u09a3\u09cd\u09a1\u09be\u09b0", + "man": "\u09ae\u09cd\u09af\u09be\u09a8\u09cd\u09a1\u09bf\u0999\u09cd\u0997\u09cb", + "mk": "\u09ae\u09cd\u09af\u09be\u09b8\u09bf\u09a1\u09cb\u09a8\u09c0\u09af\u09bc", + "yi": "\u09af\u09bc\u09bf\u09a6\u09cd\u09a6\u09bf\u09b6", + "rof": "\u09b0\u09ae\u09cd\u09ac\u09cb", + "rwk": "\u09b0\u09be\u0993\u09af\u09bc\u09be", + "raj": "\u09b0\u09be\u099c\u09b8\u09cd\u09a5\u09be\u09a8\u09c0", + "rap": "\u09b0\u09be\u09aa\u09be\u09a8\u09c1\u0987", + "rar": "\u09b0\u09be\u09b0\u09cb\u099f\u09cb\u0982\u0997\u09be\u09a8", + "rn": "\u09b0\u09c1\u09a8\u09cd\u09a6\u09bf", + "ru": "\u09b0\u09c1\u09b6", + "rom": "\u09b0\u09cb\u09ae\u09be\u09a8\u09bf", + "ro": "\u09b0\u09cb\u09ae\u09be\u09a8\u09c0\u09af\u09bc", + "rm": "\u09b0\u09cb\u09ae\u09be\u09a8\u09cd\u09b8", + "lo": "\u09b2\u09be\u0993", + "lkt": "\u09b2\u09be\u0995\u09cb\u099f\u09be", + "lag": "\u09b2\u09be\u0999\u09cd\u0997\u09bf", + "la": "\u09b2\u09be\u099f\u09bf\u09a8", + "lad": "\u09b2\u09be\u09a1\u09bf\u09a8\u09cb", + "lv": "\u09b2\u09be\u09a4\u09cd\u200c\u09ad\u09c0\u09af\u09bc", + "lah": "\u09b2\u09be\u09a8\u09cd\u09a1\u09be", + "lam": "\u09b2\u09be\u09ae\u09cd\u09ac\u09be", + "ln": "\u09b2\u09bf\u0999\u09cd\u0997\u09be\u09b2\u09be", + "lt": "\u09b2\u09bf\u09a5\u09c1\u09af\u09bc\u09c7\u09a8\u09c0\u09af\u09bc", + "li": "\u09b2\u09bf\u09ae\u09cd\u09ac\u09c1\u09b0\u09cd\u0997\u09bf\u09b6", + "luy": "\u09b2\u09c1\u0987\u09af\u09bc\u09be", + "lui": "\u09b2\u09c1\u0987\u09b8\u09c7\u09a8\u09cb", + "lb": "\u09b2\u09c1\u0995\u09cd\u09b8\u09c7\u09ae\u09ac\u09be\u09b0\u09cd\u0997\u09c0\u09af\u09bc", + "lun": "\u09b2\u09c1\u09a8\u09cd\u09a1\u09be", + "lu": "\u09b2\u09c1\u09ac\u09be-\u0995\u09be\u099f\u09be\u0999\u09cd\u0997\u09be", + "lua": "\u09b2\u09c1\u09ac\u09be-\u09b2\u09c1\u09b2\u09c1\u09af\u09bc\u09be", + "luo": "\u09b2\u09c1\u09af\u09bc\u09cb", + "smj": "\u09b2\u09c1\u09b2\u09c7 \u09b8\u09be\u09ae\u09bf", + "lus": "\u09b2\u09c1\u09b6\u09be\u0987", + "lez": "\u09b2\u09c7\u099c\u0998\u09bf\u09af\u09bc\u09be\u09a8", + "jbo": "\u09b2\u09cb\u099c\u09ac\u09be\u09a8", + "loz": "\u09b2\u09cb\u099c\u09bf", + "es_419": "\u09b2\u09cd\u09af\u09be\u099f\u09bf\u09a8 \u0986\u09ae\u09c7\u09b0\u09bf\u0995\u09be\u09a8 \u09b8\u09cd\u09aa\u09cd\u09af\u09be\u09a8\u09bf\u09b6", + "chy": "\u09b6\u09be\u0987\u09af\u09bc\u09c7\u09a8", + "shn": "\u09b6\u09be\u09a8", + "ksb": "\u09b6\u09be\u09ae\u09cd\u09ac\u09be\u09b2\u09be", + "sn": "\u09b6\u09cb\u09a8\u09be", + "sa": "\u09b8\u0982\u09b7\u09cd\u0995\u09c3\u09a4", + "ts": "\u09b8\u0999\u09cd\u0997\u09be", + "zh_Hans": "\u09b8\u09b0\u09b2\u09c0\u0995\u09c3\u09a4 \u099a\u09c0\u09a8\u09be", + "sat": "\u09b8\u09be\u0981\u0993\u09a4\u09be\u09b2\u09bf", + "sbp": "\u09b8\u09be\u0999\u09cd\u0997\u09c1", + "sg": "\u09b8\u09be\u0999\u09cd\u0997\u09cb", + "saq": "\u09b8\u09be\u09ae\u09ac\u09c1\u09b0\u09c1", + "sam": "\u09b8\u09be\u09ae\u09be\u09b0\u09bf\u099f\u09be\u09a8 \u0986\u09b0\u09be\u09ae\u09bf\u0995", + "sm": "\u09b8\u09be\u09ae\u09cb\u09af\u09bc\u09be\u09a8", + "sc": "\u09b8\u09be\u09b0\u09cd\u09a1\u09bf\u09a8\u09bf\u09af\u09bc\u09be\u09a8", + "sr": "\u09b8\u09be\u09b0\u09cd\u09ac\u09c0\u09af\u09bc", + "sh": "\u09b8\u09be\u09b0\u09cd\u09ac\u09cb-\u0995\u09cd\u09b0\u09cb\u09af\u09bc\u09c7\u09b6\u09bf\u09af\u09bc", + "sas": "\u09b8\u09be\u09b8\u09be\u0995", + "si": "\u09b8\u09bf\u0982\u09b9\u09b2\u09c0", + "bla": "\u09b8\u09bf\u0995\u09b8\u09bf\u0995\u09be", + "ii": "\u09b8\u09bf\u099a\u09c1\u09af\u09bc\u09be\u09a8 \u09af\u09bc\u09bf", + "sid": "\u09b8\u09bf\u09a1\u09be\u09ae\u09cb", + "sd": "\u09b8\u09bf\u09a8\u09cd\u09a7\u09bf", + "tsi": "\u09b8\u09bf\u09ae\u09b6\u09bf\u09af\u09bc\u09be\u09a8", + "syr": "\u09b8\u09bf\u09b0\u09bf\u09af\u09bc\u09be\u0995", + "scn": "\u09b8\u09bf\u09b8\u09bf\u09b2\u09bf\u09af\u09bc\u09be\u09a8", + "sv": "\u09b8\u09c1\u0987\u09a1\u09bf\u09b6", + "de_CH": "\u09b8\u09c1\u0987\u09b8 \u0989\u099a\u09cd\u099a \u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8\u09bf", + "gsw": "\u09b8\u09c1\u0987\u09b8 \u099c\u09be\u09b0\u09cd\u09ae\u09be\u09a8", + "fr_CH": "\u09b8\u09c1\u0987\u09b8 \u09ab\u09b0\u09be\u09b8\u09bf", + "suk": "\u09b8\u09c1\u0995\u09c1\u09ae\u09be", + "su": "\u09b8\u09c1\u09a6\u09be\u09a8\u09c0", + "sux": "\u09b8\u09c1\u09ae\u09c7\u09b0\u09c0\u09af\u09bc", + "sus": "\u09b8\u09c1\u09b8\u09c1", + "seh": "\u09b8\u09c7\u09a8\u09be", + "tzm": "\u09b8\u09c7\u09a8\u09cd\u099f\u09cd\u09b0\u09be\u09b2 \u0986\u099f\u09b2\u09be\u09b8 \u09a4\u09be\u09ae\u09be\u099c\u09bf\u0997\u09be\u09a4", + "srr": "\u09b8\u09c7\u09b0\u09c7\u09b0", + "sel": "\u09b8\u09c7\u09b2\u09cd\u0995\u09c1\u09aa", + "sog": "\u09b8\u09cb\u0997\u09a1\u09bf\u09af\u09bc\u09be\u09a8", + "xog": "\u09b8\u09cb\u0997\u09be", + "snk": "\u09b8\u09cb\u09a8\u09bf\u0999\u09cd\u0995\u09c7", + "so": "\u09b8\u09cb\u09ae\u09be\u09b2\u09c0", + "ss": "\u09b8\u09cb\u09af\u09bc\u09be\u09a4\u09bf", + "tn": "\u09b8\u09cb\u09af\u09bc\u09be\u09a8\u09be", + "sw": "\u09b8\u09cb\u09af\u09bc\u09be\u09b9\u09bf\u09b2\u09bf", + "ckb": "\u09b8\u09cb\u09b0\u09be\u09a8\u09bf \u0995\u09c1\u09b0\u09cd\u09a6\u09bf\u09b6", + "sco": "\u09b8\u09cd\u0995\u099f\u09b8", + "gd": "\u09b8\u09cd\u0995\u099f\u09b8-\u0997\u09cd\u09af\u09c7\u09b2\u09bf\u0995", + "sms": "\u09b8\u09cd\u0995\u09cb\u09b2\u09cd\u099f \u09b8\u09be\u09ae\u09bf", + "es": "\u09b8\u09cd\u09aa\u09cd\u09af\u09be\u09a8\u09bf\u09b6", + "sad": "\u09b8\u09cd\u09af\u09be\u09a8\u09cd\u09a1\u09be\u0993\u09af\u09bc\u09c7", + "srn": "\u09b8\u09cd\u09b0\u09be\u09a8\u09be\u09a8 \u099f\u09cb\u0999\u09cd\u0997\u09cb", + "sk": "\u09b8\u09cd\u09b2\u09cb\u09ad\u09be\u0995", + "sl": "\u09b8\u09cd\u09b2\u09cb\u09ad\u09c7\u09a8\u09c0\u09af\u09bc", + "den": "\u09b8\u09cd\u09b2\u09cd\u09af\u09be\u09ad", + "hai": "\u09b9\u09be\u0987\u09a1\u09be", + "ht": "\u09b9\u09be\u0987\u09a4\u09bf\u09af\u09bc\u09be\u09a8", + "ha": "\u09b9\u09be\u0989\u09b8\u09be", + "haw": "\u09b9\u09be\u0993\u09af\u09bc\u09be\u0987\u09af\u09bc\u09be\u09a8", + "hu": "\u09b9\u09be\u0999\u09cd\u0997\u09c7\u09b0\u09c0\u09af\u09bc", + "hit": "\u09b9\u09bf\u099f\u09cd\u099f\u09bf\u099f", + "hi": "\u09b9\u09bf\u09a8\u09cd\u09a6\u09bf", + "he": "\u09b9\u09bf\u09ac\u09cd\u09b0\u09c1", + "ho": "\u09b9\u09bf\u09b0\u09bf \u09ae\u09cb\u09a4\u09c1", + "hil": "\u09b9\u09bf\u09b2\u09bf\u0997\u09cd\u09af\u09be\u09af\u09bc\u09a8\u09cb\u09a8", + "hup": "\u09b9\u09c1\u09aa\u09be", + "hz": "\u09b9\u09c7\u09b0\u09c7\u09b0\u09cb", + "hmn": "\u09b9\u09cd\u200c\u09ae\u09cb\u0999", + "bss": "Akoose", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bax": "Bamun", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "bum": "Bulu", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "swb": "Comorian", + "dzg": "Dazaga", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "ibb": "Ibibio", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "kbl": "Kanembu", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "mde": "Maba", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "byv": "Medumba", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "mye": "Myene", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "see": "Seneca", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "trv": "Taroko", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/bs-BA.json b/public/intl/language/bs-BA.json new file mode 100644 index 0000000..960e472 --- /dev/null +++ b/public/intl/language/bs-BA.json @@ -0,0 +1,611 @@ +{ + "ab": "abhazijski", + "ace": "a\u010dineski", + "ada": "adangmejski", + "ady": "adigejski", + "aa": "afarski", + "afh": "afrihili", + "af": "afrikanerski", + "agq": "aghem", + "ain": "ainu", + "ay": "ajmara", + "akk": "akadijski", + "ak": "akan", + "ach": "akoli", + "bss": "Akoose", + "akz": "Alabama", + "sq": "albanski", + "arq": "Algerian Arabic", + "ale": "aljut", + "ase": "American Sign Language", + "en_US": "ameri\u010dki engleski", + "am": "amharski", + "anp": "angika", + "njo": "Ao Naga", + "an": "aragone\u017eanski", + "aro": "Araona", + "arp": "arapaho", + "ar": "arapski", + "arn": "araukanski", + "arw": "aravak", + "arc": "armajski", + "rup": "aromanijski", + "frp": "Arpitan", + "as": "asemijski", + "ast": "asturijski", + "asa": "asu", + "cch": "atsam", + "en_AU": "australski engleski", + "de_AT": "austrijski njema\u010dki", + "awa": "avadhi", + "av": "avarski", + "ae": "avestanski", + "az": "azerbejd\u017eanski", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "balinezijski", + "bal": "balu\u010di", + "bm": "bambara", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "basa", + "eu": "baskijski", + "ba": "ba\u0161kirski", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengalski", + "bew": "Betawi", + "zxx": "bez lingvisti\u010dkog sadr\u017eaja", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "be": "bjeloruski", + "byn": "blin", + "zbl": "blisimboli", + "brx": "bodo", + "bho": "bojpuri", + "bs": "bosanski", + "brh": "Brahui", + "bra": "braj", + "pt_BR": "Brazilian Portuguese", + "br": "bretonski", + "en_GB": "britanski engleski", + "bg": "bugarski", + "bug": "bugine\u017eanskii", + "bum": "Bulu", + "bua": "buriat", + "my": "burmanski", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "cay": "Cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "swb": "Comorian", + "cy": "cy", + "chg": "\u010dagatai", + "ch": "\u010damoro", + "ce": "\u010de\u010denski", + "chy": "\u010dejenski", + "cs": "\u010de\u0161ki", + "chb": "\u010dib\u010da", + "cgg": "\u010diga", + "chn": "\u010dinukski", + "chp": "\u010dipvijanski", + "chr": "\u010diroki", + "cho": "\u010doktavski", + "chk": "\u010dukeski", + "cv": "\u010duva\u0161ki", + "dak": "dakota", + "da": "danski", + "dar": "dargva", + "dzg": "Dazaga", + "del": "delaver", + "din": "dinka", + "dv": "divehijski", + "doi": "dogri", + "dgr": "dogrib", + "dsb": "donjolu\u017ei\u010dkosrpski", + "dua": "duala", + "gez": "d\u017eiz", + "dz": "d\u017eonga", + "dyu": "\u0111ula", + "efi": "efikski", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamitski", + "ebu": "embu", + "egl": "Emilian", + "en": "engleski", + "myv": "erzija", + "eo": "esperanto", + "et": "estonski", + "pt_PT": "European Portuguese", + "ee": "eve", + "ewo": "evondo", + "es_ES": "evropski \u0161panski", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "fo": "farski", + "phn": "feni\u010danski", + "fj": "fid\u017eijski", + "hif": "Fiji Hindi", + "fil": "filipinski", + "fi": "finski", + "nl_BE": "flamanski", + "fon": "fon", + "gur": "Frafra", + "fr": "francuski", + "fur": "friulijski", + "fy": "frizijski", + "ff": "fulah", + "gaa": "ga", + "gag": "gagau\u0161ki", + "gay": "gajo", + "gl": "galski", + "gan": "Gan Chinese", + "lg": "ganda", + "gba": "gbaja", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "gilbert\u0161ki", + "gom": "Goan Konkani", + "gon": "gondi", + "hsb": "gornjolu\u017ei\u010dkosrpski", + "de_CH": "gornjonjema\u010dki (\u0161vicarski)", + "gor": "gorontalo", + "got": "gotski", + "el": "gr\u010dki", + "grb": "grebo", + "ka": "gruzijski", + "gu": "gud\u017earati", + "guz": "gusii", + "gn": "gvarani", + "gwi": "Gwich\u02bcin", + "ht": "hai\u0107anski", + "hai": "haida", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "havajski", + "he": "hebrejski", + "hz": "herero", + "hil": "hiligajnon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitite", + "hmn": "hmong", + "nl": "holandski", + "hr": "hrvatski", + "hup": "hupa", + "iba": "iban", + "ibb": "Ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "iloko", + "smn": "inari sami", + "id": "indonezijski", + "izh": "Ingrian", + "inh": "ingu\u0161etski", + "ia": "interlingva", + "ie": "interlingve", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "irski", + "is": "islandski", + "frs": "isto\u010dni frizijski", + "it": "italijanski", + "sah": "jakut", + "jam": "Jamaican Creole English", + "yao": "jao", + "ja": "japanski", + "yap": "jape\u0161ki", + "jv": "javanski", + "hy": "jermenski", + "yi": "jidi\u0161", + "dyo": "jola-fonyi", + "yo": "jorubanski", + "jrb": "judeo-arapski", + "jpr": "judeo-persijski", + "jut": "Jutish", + "alt": "ju\u017eni altai", + "nr": "ju\u017eni ndebele", + "sma": "ju\u017eni sami", + "kbd": "kabardijski", + "kab": "kabile", + "kac": "ka\u010din", + "cad": "kado", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "kalalisutski", + "kln": "kalenjin", + "xal": "kalmik", + "kam": "kamba", + "kn": "kanada", + "en_CA": "kanadski engleski", + "fr_CA": "kanadski francuski", + "kbl": "Kanembu", + "kr": "kanuri", + "kaa": "kara-kalpa\u0161ki", + "krc": "kara\u010daj-balkar", + "krl": "karelijski", + "car": "karipski", + "kha": "kasi", + "ks": "ka\u0161miri", + "csb": "ka\u0161ubijanski", + "ca": "katalonski", + "kaw": "kavi", + "kk": "kaza\u010dki", + "ken": "Kenyang", + "khw": "Khowar", + "quc": "ki\u010de", + "ki": "kikuju", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "zh": "kineski", + "zh_Hans": "kineski (pojednostavljeni)", + "zh_Hant": "kineski (tradicionalni)", + "rw": "kinjarvanda", + "ky": "kirgiski", + "kiu": "Kirmanjki", + "nwc": "klasi\u010dni nevari", + "syc": "klasi\u010dni sirijski", + "tlh": "klingonski", + "km": "kmerski", + "ses": "kojraboro seni", + "bkm": "Kom", + "kv": "komi", + "koi": "komi-permja\u010dki", + "kg": "kongo", + "swc": "kongoanski swahili", + "kok": "konkani", + "cop": "koptski", + "ko": "korejski", + "kw": "korni\u0161ki", + "kfo": "koro", + "co": "korzikanski", + "xh": "kosa", + "kos": "kosreanski", + "kho": "kotanizijski", + "avk": "Kotava", + "khq": "koyra chiini", + "kpe": "kpele", + "cr": "kri", + "crh": "krimeanski turski", + "kri": "Krio", + "mus": "kri\u0161ki", + "kj": "kuanjama", + "kum": "kumik", + "ku": "kurdski", + "kru": "kurukh", + "kut": "kutenai", + "qu": "kven\u010da", + "nmg": "kwasio", + "lad": "ladino", + "lkt": "lakota", + "lam": "lamba", + "lah": "landa", + "lag": "langi", + "lo": "lao\u0161ki", + "ltg": "Latgalian", + "es_419": "latinoameri\u010dki \u0161panski", + "la": "latinski", + "lzz": "Laz", + "lv": "letonski", + "lez": "lezgian", + "lij": "Ligurian", + "li": "limburgi\u0161", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litvanski", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "lb": "luksembur\u0161ki", + "smj": "lule sami", + "lun": "lunda", + "luo": "luo", + "lus": "lu\u0161ai", + "luy": "luyia", + "mde": "Maba", + "jmc": "machame", + "mad": "madure\u0161ki", + "hu": "ma\u0111arski", + "maf": "Mafa", + "mag": "magahi", + "moh": "mahavski", + "vmf": "Main-Franconian", + "mai": "maitili", + "mak": "makasar", + "mk": "makedonski", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "mg": "malagazijski", + "ml": "malajalam", + "ms": "malajski", + "mt": "malte\u0161ki", + "mnc": "man\u010du", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuri", + "gv": "manks", + "mi": "maorski", + "mr": "marati", + "chm": "mari", + "tzm": "marokanski tamazigt", + "mh": "mar\u0161alski", + "mwr": "marvari", + "mas": "masai", + "mfe": "mauricijski kreolski", + "mzn": "Mazanderani", + "byv": "Medumba", + "es_MX": "meksi\u010dki \u0161panski", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "mikmak", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirande\u0161ki", + "ar_001": "moderni standardni arapski", + "mdf": "mok\u0161a", + "ro_MD": "moldavski", + "lol": "mongo", + "mn": "mongolski", + "ary": "Moroccan Arabic", + "mos": "mosi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "naq": "nama", + "na": "nauru", + "nv": "navaho", + "ng": "ndonga", + "nap": "neapolitanski", + "ne": "nepalski", + "und": "nepoznati ili neva\u017ee\u0107i jezik", + "new": "nevari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "nds": "niski nema\u010dki", + "niu": "niuean", + "nqo": "nko", + "nog": "nogai", + "no": "norve\u0161ki", + "nb": "norve\u0161ki bokmal", + "nn": "norve\u0161ki njorsk", + "nov": "Novial", + "nus": "nuer", + "nzi": "nzima", + "nym": "njamvezi", + "nyn": "njankole", + "ny": "njanja", + "tog": "njasa tonga", + "de": "njema\u010dki", + "nyo": "njoro", + "oj": "ojibva", + "or": "orijski", + "om": "oromo", + "osa": "osage", + "os": "osetski", + "ota": "otomanski turski", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauanski", + "pi": "pali", + "pam": "pampanga", + "pa": "pand\u017eabski", + "pag": "pangasinski", + "pap": "papiamento", + "ps": "pa\u0161tunski", + "pdc": "Pennsylvania German", + "fa": "perzijski", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pl": "poljski", + "pon": "ponpejski", + "pnt": "Pontic", + "pt": "portugalski", + "oc": "provansalski", + "prg": "Prussian", + "raj": "ra\u0111astani", + "rap": "rapanui", + "rar": "rarotongan", + "rm": "reto-romanski", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "romani", + "rof": "rombo", + "rtm": "Rotuman", + "rug": "Roviana", + "rwk": "rua", + "ro": "rumunski", + "root": "run", + "rn": "rundi", + "ru": "ruski", + "rue": "Rusyn", + "ssy": "Saho", + "sam": "samaritanski aramejski", + "saq": "samburu", + "sm": "samoanski", + "sgs": "Samogitian", + "sad": "sandave", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santali", + "sc": "sardinijski", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkap", + "seh": "sena", + "see": "Seneca", + "srr": "serer", + "sei": "Seri", + "st": "sesoto", + "nso": "severni soto", + "frr": "severno-frizijski", + "ksb": "shambala", + "scn": "sicilijanski", + "ii": "si\u010duan ji", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindi", + "si": "singaleski", + "syr": "sirijski", + "nd": "sjeverni ndebele", + "se": "sjeverni sami", + "sms": "skoltski jezik", + "den": "slavski", + "sk": "slova\u010dki", + "sl": "slovena\u010dki", + "sog": "sod\u017eijenski", + "xog": "soga", + "so": "somalski", + "snk": "soninke", + "ckb": "soranski kurdski", + "azb": "South Azerbaijani", + "srn": "srananski tongo", + "enm": "srednji engleski", + "frm": "srednji francuski", + "dum": "srednji holandski", + "mga": "srednji irski", + "gmh": "srednji visoki nema\u010dki", + "sr": "srpski", + "sh": "srpskohrvatski", + "zgh": "standardni marokanski tamazigt", + "non": "stari norski", + "egy": "staroegipatski", + "ang": "staroengleski", + "fro": "starofrancuski", + "grc": "starogr\u010dki", + "sga": "staroirski", + "goh": "staronema\u010dki", + "peo": "staropersijski", + "pro": "staroprovansalski", + "cu": "staroslovenski", + "su": "sudanski", + "suk": "sukuma", + "sux": "sumerski", + "sus": "susu", + "sw": "svahili", + "ss": "svati", + "shn": "\u0161an", + "sco": "\u0161kotski", + "gd": "\u0161kotski galski", + "sn": "\u0161ona", + "es": "\u0161panski", + "fr_CH": "\u0161vajcarski francuski", + "gsw": "\u0161vajcarski njema\u010dki", + "sv": "\u0161vedski", + "tg": "tad\u017ei\u010dki", + "tl": "tagalski", + "shi": "tahelhit", + "ty": "tahi\u0107anski", + "dav": "taita", + "th": "tajlandski", + "tly": "Talysh", + "tmh": "tama\u0161ek", + "ta": "tamilski", + "trv": "Taroko", + "twq": "tasavak", + "tt": "tatarski", + "te": "telugu", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "bo": "tibetanski", + "tig": "tigre", + "ti": "tigrinja", + "tem": "timne", + "tiv": "tiv", + "kcg": "tjap", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tonga", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsim\u0161ian", + "ts": "tsonga", + "tn": "tsvana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tk": "turkmenski", + "tru": "Turoyo", + "tr": "turski", + "tvl": "tuvalu", + "tyv": "tuvinijski", + "tw": "tvi", + "udm": "udmurt", + "uga": "ugaritski", + "ug": "ujgurski", + "uk": "ukrajinski", + "umb": "umbundu", + "ur": "urdu", + "uz": "uzbe\u010dki", + "vai": "vai", + "wal": "valamo", + "wa": "valun", + "war": "varej", + "was": "va\u0161o", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vijetnamski", + "mul": "vi\u0161e jezika", + "vo": "volap\u00fck", + "wo": "volof", + "vro": "V\u00f5ro", + "vot": "votski", + "vun": "vunjo", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zap": "zapote\u010dki", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "kea": "zelenortski", + "zen": "zenaga", + "gbz": "Zoroastrian Dari", + "za": "zuang", + "zu": "zulu", + "zun": "zuni", + "kaj": "\u017eju" +} diff --git a/public/intl/language/ca-ES.json b/public/intl/language/ca-ES.json new file mode 100644 index 0000000..ebab127 --- /dev/null +++ b/public/intl/language/ca-ES.json @@ -0,0 +1,611 @@ +{ + "ab": "abkhaz", + "akk": "accadi", + "ach": "acoli", + "ada": "adangme", + "ady": "adigu\u00e9", + "aa": "\u00e0far", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ay": "aimara", + "ain": "ainu", + "ak": "\u00e0kan", + "bss": "akoose", + "akz": "Alabama", + "sq": "alban\u00e8s", + "de": "alemany", + "de_AT": "alemany austr\u00edac", + "gsw": "alemany su\u00eds", + "ale": "aleuta", + "arq": "Algerian Arabic", + "goh": "alt alemany antic", + "gmh": "alt alemany mitj\u00e0", + "de_CH": "alt alemany su\u00eds", + "hsb": "alt s\u00f2rab", + "alt": "altaic meridional", + "tzm": "amazic del Marroc central", + "zgh": "amazic est\u00e0ndard marroqu\u00ed", + "ase": "American Sign Language", + "wal": "ameto", + "am": "amh\u00e0ric", + "anp": "angika", + "en": "angl\u00e8s", + "en_US": "angl\u00e8s americ\u00e0", + "ang": "angl\u00e8s antic", + "en_AU": "angl\u00e8s australi\u00e0", + "en_GB": "angl\u00e8s brit\u00e0nic", + "en_CA": "angl\u00e8s canadenc", + "enm": "angl\u00e8s mitj\u00e0", + "njo": "Ao Naga", + "ar": "\u00e0rab", + "ar_001": "\u00e0rab est\u00e0ndard modern", + "shu": "\u00e0rab txadi\u00e0", + "an": "aragon\u00e8s", + "arc": "arameu", + "sam": "arameu samarit\u00e0", + "aro": "Araona", + "arp": "arapaho", + "arw": "arauac", + "arn": "arauc\u00e0", + "hy": "armeni", + "rup": "aroman\u00e8s", + "frp": "Arpitan", + "root": "arrel", + "as": "assam\u00e8s", + "ast": "asturi\u00e0", + "ace": "atjeh", + "cch": "atsam", + "av": "\u00e0var", + "ae": "av\u00e8stic", + "awa": "awadhi", + "az": "azerbaidjan\u00e8s", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "nds": "baix alemany", + "dsb": "baix s\u00f2rab", + "ba": "baixkir", + "bqi": "Bakhtiari", + "ban": "balin\u00e8s", + "bal": "balutxi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basa", + "eu": "basc", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengal\u00ed", + "bew": "Betawi", + "bho": "bhojpuri", + "bik": "bicol", + "be": "bielor\u00fas", + "byn": "bilin", + "bin": "bini", + "my": "birm\u00e0", + "bpy": "Bishnupriya", + "bi": "bislama", + "nmg": "bissio", + "bla": "blackfoot", + "brx": "bodo", + "bs": "bosni\u00e0", + "brh": "Brahui", + "bra": "braj", + "br": "bret\u00f3", + "bug": "bugui", + "bg": "b\u00falgar", + "bua": "buriat", + "kab": "cabilenc", + "cad": "caddo", + "ks": "caixmiri", + "csb": "caixubi", + "frc": "Cajun French", + "xal": "calmuc", + "yue": "canton\u00e8s", + "cps": "Capiznon", + "krl": "careli\u00e0", + "car": "carib", + "ca": "catal\u00e0", + "cay": "cayuga", + "ceb": "cebu\u00e0", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "ch": "chamorro", + "chr": "cherokee", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuuk", + "ksh": "colognian", + "swb": "comori\u00e0", + "cop": "copte", + "ko": "core\u00e0", + "kw": "c\u00f2rnic", + "co": "cors", + "cr": "cree", + "mus": "creek", + "kea": "crioll capverdi\u00e0", + "hr": "croat", + "dak": "dakota", + "da": "dan\u00e8s", + "dar": "dargu\u00e0", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dyo": "diola", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "douala", + "dz": "dzongka", + "efi": "efik", + "egy": "egipci antic", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamita", + "ebu": "embu", + "egl": "Emilian", + "sco": "escoc\u00e8s", + "cu": "eslau eclesi\u00e0stic", + "sk": "eslovac", + "sl": "eslov\u00e8", + "es": "espanyol", + "es_MX": "espanyol de M\u00e8xic", + "es_ES": "espanyol europeu", + "es_419": "espanyol hispanoameric\u00e0", + "eo": "esperanto", + "et": "estoni\u00e0", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "phn": "fenici", + "fo": "fero\u00e8s", + "hif": "Fiji Hindi", + "fj": "fiji\u00e0", + "fil": "filip\u00ed", + "fi": "fin\u00e8s", + "nl_BE": "flamenc", + "fon": "fon", + "gur": "Frafra", + "fr": "franc\u00e8s", + "fro": "franc\u00e8s antic", + "fr_CA": "franc\u00e8s canadenc", + "frm": "franc\u00e8s mitj\u00e0", + "fr_CH": "franc\u00e8s su\u00eds", + "frs": "fris\u00f3 occidental", + "fy": "fris\u00f3 oriental", + "frr": "fris\u00f3 septentrional", + "fur": "fri\u00fcl\u00e0", + "ff": "ful", + "gaa": "ga", + "gd": "ga\u00e8lic escoc\u00e8s", + "mga": "ga\u00e8lic irland\u00e8s mitj\u00e0", + "gag": "gaga\u00fas", + "gl": "gallec", + "cy": "gal\u00b7l\u00e8s", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "ka": "georgi\u00e0", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbert\u00e8s", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "g\u00f2tic", + "grb": "grebo", + "el": "grec", + "grc": "grec antic", + "kl": "grenland\u00e8s", + "gn": "guaran\u00ed", + "gez": "gueez", + "gu": "gujarati", + "guz": "gus\u00ed", + "gwi": "gwichin", + "hai": "haida", + "ht": "haiti\u00e0", + "hak": "Hakka Chinese", + "ha": "haussa", + "haw": "hawai\u00e0", + "he": "hebreu", + "hz": "herero", + "hil": "hiligainon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitita", + "hmn": "hmong", + "hu": "hongar\u00e8s", + "hup": "hupa", + "sah": "iacut", + "iba": "iban", + "ibb": "ibibio", + "und": "idioma desconegut", + "io": "ido", + "ig": "igbo", + "ilo": "iloc\u00e0", + "id": "indonesi", + "izh": "Ingrian", + "inh": "ing\u00faix", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiak", + "yo": "ioruba", + "ga": "irland\u00e8s", + "sga": "irland\u00e8s antic", + "is": "island\u00e8s", + "it": "itali\u00e0", + "jam": "Jamaican Creole English", + "ja": "japon\u00e8s", + "jv": "javan\u00e8s", + "yi": "jiddisch", + "kaj": "jju", + "jrb": "judeo\u00e0rab", + "jpr": "judeopersa", + "dyu": "jula", + "jut": "Jutish", + "kbd": "kabard\u00ed", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "kam": "kamba", + "kbl": "kanembu", + "kn": "kannada", + "kr": "kanuri", + "kaa": "karakalpak", + "krc": "karatxai", + "kac": "katxin", + "kaw": "kawi", + "kk": "kazakh", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotan\u00e8s", + "khw": "Khowar", + "ki": "kikuiu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "ky": "kirgu\u00eds", + "kiu": "Kirmanjki", + "tlh": "klingoni\u00e0", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permiac", + "kg": "kongo", + "kok": "konkani", + "kfo": "koro", + "kos": "kosrae\u00e0", + "avk": "Kotava", + "khq": "koyra chiini", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "k\u00famik", + "ku": "kurd", + "ckb": "kurd sorani", + "kru": "kurukh", + "kut": "kutenai", + "lad": "lad\u00ed", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laosi\u00e0", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "lesgui\u00e0", + "lv": "let\u00f3", + "lij": "Ligurian", + "li": "limburgu\u00e8s", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litu\u00e0", + "liv": "Livonian", + "la": "llat\u00ed", + "mul": "lleng\u00fces v\u00e0ries", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba katanga", + "lua": "luba-lulua", + "lui": "luisenyo", + "lun": "lunda", + "luo": "luo", + "lb": "luxemburgu\u00e8s", + "luy": "luyia", + "mde": "maba", + "mk": "macedoni", + "jmc": "machame", + "mad": "madur\u00e8s", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makassar", + "mgh": "makhuwa-metto", + "kde": "makonde", + "ms": "malai", + "ml": "malai\u00e0lam", + "mg": "malgaix", + "mt": "malt\u00e8s", + "mdr": "mandar", + "man": "mandinga", + "mni": "manipur\u00ed", + "gv": "manx", + "mnc": "manx\u00fa", + "mi": "maori", + "mr": "marathi", + "chm": "mari", + "mh": "marshall\u00e8s", + "mwr": "marwari", + "mas": "massai", + "mfe": "maurici\u00e0", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirand\u00e8s", + "lus": "mizo", + "moh": "mohawk", + "ro_MD": "moldau", + "lol": "mongo", + "mn": "mongol", + "myv": "mordovi\u00e0 erza", + "mdf": "mordovi\u00e0 moksa", + "mos": "mor\u00e9", + "ary": "Moroccan Arabic", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019Ko", + "naq": "nama", + "nap": "napolit\u00e0", + "na": "nauru\u00e0", + "nv": "navaho", + "nr": "ndebele meridional", + "nd": "ndebele septentrional", + "ng": "ndonga", + "nl": "neerland\u00e8s", + "dum": "neerland\u00e8s mitj\u00e0", + "ne": "nepal\u00e8s", + "new": "newari", + "nwc": "newari cl\u00e0ssic", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niue\u00e0", + "nog": "nogai", + "non": "n\u00f2rdic antic", + "no": "noruec", + "nb": "noruec bokm\u00e5l", + "nn": "noruec nynorsk", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwesi", + "ny": "nyanja", + "nyn": "nyankole", + "nyo": "nyoro", + "nzi": "nzema", + "oc": "occit\u00e0", + "oj": "ojibwa", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "osset", + "pal": "pahlavi", + "ps": "paixtu", + "pfl": "Palatine German", + "pau": "palau\u00e0", + "pi": "pali", + "pam": "pampang\u00e0", + "pag": "pangasi", + "pa": "panjabi", + "lah": "panjabi occidental", + "pap": "papiamento", + "asa": "pare", + "pdc": "Pennsylvania German", + "fa": "persa", + "peo": "persa antic", + "pcd": "Picard", + "chn": "pidgin chinook", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pl": "polon\u00e8s", + "pon": "ponape\u00e0", + "pnt": "Pontic", + "pt": "portugu\u00e8s", + "pt_PT": "portugu\u00e8s de Portugal", + "pt_BR": "portugu\u00e8s del Brasil", + "pro": "proven\u00e7al antic", + "prg": "Prussian", + "quc": "quitx\u00e9", + "qu": "qu\u00edtxua", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotong\u00e0", + "rm": "retorom\u00e0nic", + "rif": "Riffian", + "rgn": "Romagnol", + "ro": "roman\u00e8s", + "rom": "roman\u00ed", + "rof": "rombo", + "rtm": "Rotuman", + "rug": "Roviana", + "rw": "ruand\u00e8s", + "rn": "rundi", + "ru": "rus", + "rue": "Rusyn", + "rwk": "rwo", + "ssy": "saho", + "saq": "samburu", + "smn": "sami d\u2019Inari", + "smj": "sami lule", + "sma": "sami meridional", + "se": "sami septentrional", + "sms": "sami skolt", + "sm": "samo\u00e0", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "s\u00e0nscrit", + "sat": "santali", + "sc": "sard", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "bum": "seki", + "sly": "Selayar", + "sel": "selkup", + "seh": "sena", + "see": "seneca", + "zxx": "sense contingut ling\u00fc\u00edstic", + "sr": "serbi", + "sh": "serbocroat", + "srr": "serer", + "sei": "Seri", + "ksb": "shambala", + "sn": "shona", + "scn": "sicili\u00e0", + "sid": "sidamo", + "szl": "Silesian", + "zbl": "s\u00edmbols Bliss", + "sd": "sindhi", + "si": "singal\u00e8s", + "syr": "sir\u00edac", + "syc": "sir\u00edac cl\u00e0ssic", + "ss": "siswati", + "den": "slavey", + "xog": "soga", + "sog": "sogdi\u00e0", + "so": "somali", + "ses": "songhai oriental", + "snk": "soninke", + "st": "sotho meridional", + "nso": "sotho septentrional", + "azb": "South Azerbaijani", + "srn": "sranan", + "sw": "suahili", + "swc": "suahili del Congo", + "sv": "suec", + "suk": "sukuma", + "sux": "sumeri", + "su": "sundan\u00e8s", + "sus": "sus\u00fa", + "tg": "tadjik", + "tl": "tag\u00e0log", + "ty": "tahiti\u00e0", + "th": "tailand\u00e8s", + "dav": "taita", + "shi": "taixelhit", + "tly": "Talysh", + "tmh": "tamazight", + "ta": "t\u00e0mil", + "trv": "taroko", + "twq": "tasawaq", + "tt": "t\u00e0tar", + "crh": "t\u00e0tar de Crimea", + "te": "telugu", + "tem": "temne", + "ter": "terena", + "teo": "teso", + "tet": "tetun", + "bo": "tibet\u00e0", + "tig": "tigre", + "ti": "tigrinya", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau\u00e8s", + "tog": "tonga", + "to": "tongal\u00e8s", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshi\u00e0", + "ts": "tsonga", + "tn": "tswana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turc", + "ota": "turc otom\u00e0", + "tk": "turcman", + "tru": "Turoyo", + "tvl": "tuvalu\u00e0", + "tyv": "tuvini\u00e0", + "tw": "twi", + "chg": "txagatai", + "cs": "txec", + "ce": "txetx\u00e8", + "chb": "txibtxa", + "cv": "txuvaix", + "kcg": "tyap", + "uk": "ucra\u00efn\u00e8s", + "udm": "udmurt", + "uga": "ugar\u00edtic", + "ug": "uigur", + "umb": "umbundu", + "ur": "urd\u00fa", + "uz": "uzbek", + "vai": "vai", + "wa": "val\u00f3", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamita", + "vo": "volap\u00fck", + "vro": "V\u00f5ro", + "vot": "v\u00f2tic", + "vun": "vunjo", + "wae": "walser", + "war": "waray-waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "w\u00f2lof", + "wuu": "Wu Chinese", + "shn": "xan", + "chy": "xeienne", + "hsn": "Xiang Chinese", + "zh": "xin\u00e8s", + "zh_Hans": "xin\u00e8s simplificat", + "zh_Hant": "xin\u00e8s tradicional", + "xh": "xosa", + "yav": "yangben", + "yao": "yao", + "yap": "yape\u00e0", + "ybb": "yemba", + "ii": "yi sichuan", + "zap": "zapoteca", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zuni" +} diff --git a/public/intl/language/cs-CZ.json b/public/intl/language/cs-CZ.json new file mode 100644 index 0000000..ba64903 --- /dev/null +++ b/public/intl/language/cs-CZ.json @@ -0,0 +1,611 @@ +{ + "ab": "abch\u00e1z\u0161tina", + "ace": "aceh\u0161tina", + "ada": "adangme", + "ady": "adygej\u0161tina", + "aa": "afar\u0161tina", + "afh": "afrihili", + "af": "afrik\u00e1n\u0161tina", + "agq": "aghem", + "ain": "ain\u0161tina", + "ay": "ajmar\u0161tina", + "ak": "akan\u0161tina", + "akk": "akkad\u0161tina", + "ach": "akol\u0161tina", + "bss": "akoose", + "akz": "alabam\u0161tina", + "sq": "alb\u00e1n\u0161tina", + "aln": "alb\u00e1n\u0161tina (Gheg)", + "ale": "aleut\u0161tina", + "alt": "altaj\u0161tina (ji\u017en\u00ed)", + "am": "amhar\u0161tina", + "anp": "angika", + "en": "angli\u010dtina", + "enm": "angli\u010dtina (st\u0159edov\u011bk\u00e1)", + "en_US": "angli\u010dtina (USA)", + "njo": "ao (jazyky N\u00e1g\u00e1landu)", + "ar": "arab\u0161tina", + "arq": "arab\u0161tina (al\u017e\u00edrsk\u00e1)", + "shu": "arab\u0161tina (\u010dadsk\u00e1)", + "arz": "arab\u0161tina (egyptsk\u00e1)", + "ary": "arab\u0161tina (marock\u00e1)", + "ar_001": "arab\u0161tina (modern\u00ed standardn\u00ed)", + "aeb": "arab\u0161tina (tunisk\u00e1)", + "an": "aragon\u0161tina", + "arc": "aramej\u0161tina", + "aro": "araon\u0161tina", + "arp": "arapa\u017e\u0161tina", + "arn": "arauk\u00e1n\u0161tina", + "arw": "arawack\u00e9 jazyky", + "hy": "arm\u00e9n\u0161tina", + "rup": "arumun\u0161tina", + "as": "\u00e1s\u00e1m\u0161tina", + "ast": "astur\u0161tina", + "asa": "asu", + "cch": "atsam", + "en_AU": "Australian English", + "de_AT": "Austrian German", + "av": "avar\u0161tina", + "ae": "avest\u00e1n\u0161tina", + "awa": "awadh\u0161tina", + "az": "\u00e1zerb\u00e1jd\u017e\u00e1n\u0161tina", + "azb": "\u00e1zerb\u00e1jd\u017e\u00e1n\u0161tina (ji\u017en\u00ed)", + "bfq": "badag\u0161tina", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "bachtij\u00e1r\u0161tina", + "ban": "balij\u0161tina", + "bal": "bal\u00fa\u010d\u0161tina", + "bm": "bambar\u0161tina", + "bax": "bamun", + "bjn": "band\u017ear\u0161tina", + "my": "barm\u0161tina", + "bas": "basa", + "eu": "baski\u010dtina", + "ba": "ba\u0161kir\u0161tina", + "bbc": "batak toba", + "bew": "batav\u0161tina", + "bar": "bavor\u0161tina", + "bej": "bed\u017ea", + "be": "b\u011bloru\u0161tina", + "bem": "bemb\u0161tina", + "bez": "bena", + "vec": "ben\u00e1t\u0161tina", + "bn": "beng\u00e1l\u0161tina", + "bho": "bhojpur\u0161tina", + "bik": "bikol\u0161tina", + "bin": "bini", + "bi": "bislam\u0161tina", + "bpy": "bi\u0161nuprijskomanipur\u0161tina", + "byn": "blin\u0161tina", + "zbl": "bliss syst\u00e9m", + "brx": "bodo\u0161tina", + "bs": "bosen\u0161tina", + "bra": "brad\u017e\u0161tina", + "brh": "brahuj\u0161tina", + "pt_BR": "Brazilian Portuguese", + "br": "breton\u0161tina", + "en_GB": "British English", + "bug": "bugi\u0161tina", + "bg": "bulhar\u0161tina", + "bum": "bulu", + "bua": "burjat\u0161tina", + "cad": "caddo", + "tkr": "cachur\u0161tina", + "en_CA": "Canadian English", + "fr_CA": "Canadian French", + "ceb": "cebu\u00e1n\u0161tina", + "chg": "\u010dagataj\u0161tina", + "ch": "\u010damoro", + "ce": "\u010de\u010den\u0161tina", + "chy": "\u010dejen\u0161tina", + "chr": "\u010derok\u00e9z\u0161tina", + "cs": "\u010de\u0161tina", + "chb": "\u010dib\u010da", + "zh": "\u010d\u00edn\u0161tina", + "gan": "\u010d\u00edn\u0161tina (dialekty Gan)", + "hak": "\u010d\u00edn\u0161tina (dialekty Hakka)", + "nan": "\u010d\u00edn\u0161tina (dialekty Minnan)", + "wuu": "\u010d\u00edn\u0161tina (dialekty Wu)", + "hsn": "\u010d\u00edn\u0161tina (dialekty Xiang)", + "lzh": "\u010d\u00edn\u0161tina (klasick\u00e1)", + "zh_Hans": "\u010d\u00edn\u0161tina (zjednodu\u0161en\u00e1)", + "chn": "\u010dinuk pid\u017ein", + "chp": "\u010dipevaj\u0161tina", + "cho": "\u010dokt\u0161tina", + "za": "\u010duang\u0161tina", + "chk": "\u010duk\u0161tina", + "cv": "\u010duva\u0161tina", + "dak": "dakot\u0161tina", + "da": "d\u00e1n\u0161tina", + "dar": "darg\u0161tina", + "gbz": "dar\u00edj\u0161tina (zoroastrijsk\u00e1)", + "dzg": "dazaga", + "del": "delawar\u0161tina", + "din": "dink\u0161tina", + "dyu": "djula", + "doi": "dogar\u0161tina", + "dgr": "dogrib", + "dsb": "dolnolu\u017eick\u00e1 srb\u0161tina", + "nds": "dolnon\u011bm\u010dina", + "dua": "dual\u0161tina", + "dz": "dzongk\u00e4", + "efi": "efik\u0161tina", + "egy": "egypt\u0161tina star\u00e1", + "eka": "ekajuk", + "elx": "elamit\u0161tina", + "ebu": "embu", + "egl": "emilij\u0161tina", + "myv": "erzjan\u0161tina", + "eo": "esperanto", + "et": "eston\u0161tina", + "ee": "ewe\u0161tina", + "ewo": "ewondo", + "ext": "extremadur\u0161tina", + "fo": "faer\u0161tina", + "pfl": "fal\u010dtina", + "fan": "fang", + "fat": "fant\u0161tina", + "phn": "f\u00e9ni\u010dtina", + "fj": "fid\u017eij\u0161tina", + "fil": "filip\u00edn\u0161tina", + "fi": "fin\u0161tina", + "fit": "fin\u0161tina (tornedalsk\u00e1)", + "fon": "fon\u0161tina", + "gur": "frafra", + "fr": "francouz\u0161tina", + "frc": "francouz\u0161tina (kajunsk\u00e1)", + "fro": "francouz\u0161tina (star\u00e1)", + "frm": "francouz\u0161tina (st\u0159edov\u011bk\u00e1)", + "frp": "franko-provens\u00e1l\u0161tina", + "fy": "fr\u00ed\u0161tina", + "stq": "fr\u00ed\u0161tina (saterlandsk\u00e1)", + "frr": "fr\u00ed\u0161tina (severn\u00ed)", + "frs": "fr\u00ed\u0161tina (v\u00fdchodn\u00ed)", + "ff": "fulb\u0161tina", + "fur": "furlan\u0161tina", + "gag": "gagauz\u0161tina", + "gl": "galicij\u0161tina", + "lg": "gand\u0161tina", + "gaa": "ga\u0161tina", + "gay": "gayo", + "gba": "gbaja", + "gez": "geez", + "bbj": "ghomala", + "glk": "gila\u010dtina", + "gon": "g\u00f3nd\u0161tina", + "gor": "gorontalo", + "got": "g\u00f3t\u0161tina", + "grb": "grebo", + "kl": "gr\u00f3n\u0161tina", + "ka": "gruz\u00edn\u0161tina", + "gn": "guaran\u0161tina", + "gu": "gud\u017ear\u00e1t\u0161tina", + "guz": "gusii", + "gwi": "gwich\u02bcin", + "hai": "haid\u0161tina", + "ht": "hait\u0161tina", + "ha": "hau\u0161tina", + "haw": "havaj\u0161tina", + "he": "hebrej\u0161tina", + "hz": "herer\u0161tina", + "hil": "hiligajnon\u0161tina", + "hi": "hind\u0161tina", + "hif": "hind\u0161tina (Fid\u017ei)", + "ho": "hiri motu", + "hmn": "hmong\u0161tina", + "dum": "holand\u0161tina (st\u0159edov\u011bk\u00e1)", + "hsb": "hornolu\u017eick\u00e1 srb\u0161tina", + "goh": "hornon\u011bm\u010dina (star\u00e1)", + "gmh": "hornon\u011bm\u010dina (st\u0159edov\u011bk\u00e1)", + "hup": "hupa", + "hit": "chetit\u0161tina", + "hr": "chorvat\u0161tina", + "kho": "chot\u00e1n\u0161tina", + "khw": "chovar\u0161tina", + "iba": "iban\u0161tina", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo\u0161tina", + "ilo": "ilok\u00e1n\u0161tina", + "id": "indon\u00e9\u0161tina", + "izh": "ingrij\u0161tina", + "inh": "ingu\u0161tina", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut\u0161tina", + "ik": "inupiak\u0161tina", + "ga": "ir\u0161tina", + "sga": "ir\u0161tina (star\u00e1)", + "mga": "ir\u0161tina (st\u0159edov\u011bk\u00e1)", + "is": "island\u0161tina", + "it": "ital\u0161tina", + "sah": "jakut\u0161tina", + "jam": "jamajsk\u00e1 kreol\u0161tina", + "yav": "jangben\u0161tina", + "yao": "jao\u0161tina", + "ja": "japon\u0161tina", + "yap": "jap\u0161tina", + "jv": "jav\u00e1n\u0161tina", + "yi": "jidi\u0161", + "kaj": "jju", + "dyo": "jola-fonyi", + "yo": "jorub\u0161tina", + "jrb": "judeoarab\u0161tina", + "jpr": "judeoper\u0161tina", + "esu": "jupik\u0161tina (st\u0159edoalja\u0161sk\u00e1)", + "jut": "jut\u0161tina", + "kbd": "kabardin\u0161tina", + "kab": "kabyl\u0161tina", + "kac": "ka\u010dij\u0161tina", + "dtp": "kadazandusun\u0161tina", + "kgp": "kaingang", + "cay": "kajug\u0161tina", + "kkj": "kako", + "kln": "kalend\u017ein", + "xal": "kalmy\u010dtina", + "kam": "kamb\u0161tina", + "kbl": "kanembu", + "kn": "kannad\u0161tina", + "yue": "kanton\u0161tina", + "kr": "kanuri", + "cps": "kapiznon\u0161tina", + "kea": "kapverd\u0161tina", + "krc": "kara\u010dajevo-balkar\u0161tina", + "kaa": "karakalpa\u010dtina", + "krl": "karel\u0161tina", + "car": "karib\u0161tina", + "ks": "ka\u0161m\u00edr\u0161tina", + "csb": "ka\u0161ub\u0161tina", + "ca": "katal\u00e1n\u0161tina", + "kaw": "kawi", + "kk": "kaza\u0161tina", + "qu": "ke\u010du\u00e1n\u0161tina", + "qug": "ke\u010du\u00e1n\u0161tina (chimborazo)", + "ken": "kenyang", + "kha": "kh\u00e1s\u00ed", + "km": "khm\u00e9r\u0161tina", + "quc": "ki\u010d\u00e9", + "cgg": "kiga", + "ki": "kikuj\u0161tina", + "kmb": "kimbund\u0161tina", + "krj": "kinaraj-a", + "rw": "ki\u0148arwand\u0161tina", + "gil": "kiribat\u0161tina", + "rn": "kirund\u0161tina", + "tlh": "klingon\u0161tina", + "ksh": "kol\u00edn\u0161tina", + "bkm": "kom", + "koi": "komi-permja\u010dtina", + "kv": "komij\u0161tina", + "swb": "komor\u0161tina", + "kok": "konk\u00e1n\u0161tina", + "gom": "konk\u00e1n\u0161tina (Goa)", + "kg": "kon\u017e\u0161tina", + "cop": "kopt\u0161tina", + "ko": "korej\u0161tina", + "kw": "korn\u0161tina", + "kfo": "koro", + "co": "korsi\u010dtina", + "kos": "kosraj\u0161tina", + "avk": "kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "cr": "kr\u00edj\u0161tina", + "mus": "kr\u00edk\u0161tina", + "kri": "krio", + "kj": "kua\u0148am\u0161tina", + "kum": "kumy\u010dtina", + "ku": "kurd\u0161tina", + "ckb": "kurd\u0161tina (sor\u00e1n\u00ed)", + "kru": "kuruch\u0161tina", + "kut": "kutenaj\u0161tina", + "nmg": "kwasio", + "ky": "kyrgyz\u0161tina", + "lad": "ladin\u0161tina", + "lah": "lahnd\u0161tina", + "lkt": "lakot\u0161tina", + "lam": "lamb\u0161tina", + "lag": "langi", + "lo": "lao\u0161tina", + "ltg": "latgal\u0161tina", + "es_419": "Latin American Spanish", + "la": "latina", + "lzz": "laz\u0161tina", + "lez": "lezgin\u0161tina", + "lij": "ligur\u0161tina", + "li": "limbur\u0161tina", + "ln": "lingal\u0161tina", + "lfn": "lingua franca nova", + "lt": "litev\u0161tina", + "liv": "livon\u0161tina", + "jbo": "lojban", + "lmo": "lombard\u0161tina", + "lv": "loty\u0161tina", + "loz": "loz\u0161tina", + "lua": "luba-lulua\u0161tina", + "lu": "lubu-katan\u017e\u0161tina", + "lb": "lucembur\u0161tina", + "luy": "luhja", + "lui": "luise\u0148o", + "lun": "lund\u0161tina", + "luo": "luo\u0161tina", + "mde": "maba", + "hu": "ma\u010far\u0161tina", + "mad": "madur\u0161tina", + "maf": "mafa", + "mag": "magahij\u0161tina", + "mai": "maithili\u0161tina", + "mak": "makasar\u0161tina", + "mk": "makedon\u0161tina", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ml": "malaj\u00e1lam\u0161tina", + "ms": "malaj\u0161tina", + "dv": "malediv\u0161tina", + "mg": "malga\u0161tina", + "mt": "malt\u0161tina", + "mdr": "mandar", + "man": "manding\u0161tina", + "mnc": "mand\u017eu\u0161tina", + "mni": "manipur\u0161tina", + "gv": "man\u0161tina", + "mi": "maor\u0161tina", + "mr": "mar\u00e1th\u0161tina", + "chm": "marij\u0161tina", + "mrj": "marij\u0161tina (z\u00e1padn\u00ed)", + "mh": "mar\u0161\u00e1l\u0161tina", + "mwr": "m\u00e1rv\u00e1r\u0161tina", + "mas": "masaj\u0161tina", + "jmc": "ma\u0161ame", + "mfe": "mauricijsk\u00e1 kreol\u0161tina", + "mzn": "m\u00e1zandar\u00e1n\u0161tina", + "byv": "medumba", + "men": "mende", + "mwv": "mentavaj\u0161tina", + "mer": "meru", + "mgo": "meta\u2019", + "es_MX": "Mexican Spanish", + "mic": "micmac", + "min": "minangkabau", + "xmf": "mingrel\u0161tina", + "mwl": "mirand\u0161tina", + "lus": "mizo\u0161tina", + "moh": "mohawk\u0161tina", + "mdf": "mok\u0161an\u0161tina", + "ro_MD": "moldav\u0161tina", + "mn": "mongol\u0161tina", + "lol": "mong\u0161tina", + "mos": "mosi", + "mua": "mundang", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama\u0161tina", + "nym": "\u0148amwe\u017e\u0161tina", + "ny": "\u0148and\u017e\u0161tina", + "nyn": "\u0148ankol\u0161tina", + "na": "naur\u0161tina", + "nv": "nava\u017e\u0161tina", + "nr": "ndebele (Ji\u017en\u00ed Afrika)", + "nd": "ndebele (Zimbabwe)", + "ng": "ndond\u0161tina", + "nap": "neapol\u0161tina", + "de": "n\u011bm\u010dina", + "vmf": "n\u011bm\u010dina (mohansko-fransk\u00e9 dialekty)", + "pdc": "n\u011bm\u010dina (pensylv\u00e1nsk\u00e1)", + "pdt": "n\u011bm\u010dina (plautdietsch)", + "sli": "n\u011bm\u010dina (slezsk\u00e1)", + "gsw": "n\u011bm\u010dina (\u0160v\u00fdcarsko)", + "wae": "n\u011bm\u010dina (walser)", + "de_CH": "n\u011bm\u010dina standardn\u00ed (\u0160v\u00fdcarsko)", + "ne": "nep\u00e1l\u0161tina", + "new": "n\u00e9v\u00e1r\u0161tina", + "nwc": "newar\u0161tina (klasick\u00e1)", + "und": "nezn\u00e1m\u00fd jazyk", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "nheengatu", + "nia": "nias", + "niu": "niue\u0161tina", + "nl": "nizozem\u0161tina", + "nog": "nogaj\u0161tina", + "no": "nor\u0161tina", + "nyo": "\u0148or\u0161tina", + "nb": "nor\u0161tina (bokm\u00e5l)", + "nn": "nor\u0161tina (nynorsk)", + "non": "nor\u0161tina historick\u00e1", + "nov": "novial", + "nus": "nuer\u0161tina", + "nzi": "nzima", + "oj": "od\u017eibvej\u0161tina", + "oc": "okcit\u00e1n\u0161tina", + "om": "orom\u0161tina", + "osa": "osage", + "os": "oset\u0161tina", + "pal": "pahlav\u0161tina", + "pau": "palau\u0161tina", + "pi": "p\u00e1l\u00ed", + "pa": "pa\u0148d\u017e\u00e1b\u0161tina", + "pag": "pangasinan\u0161tina", + "pam": "papangau", + "pap": "papiamento", + "ps": "pa\u0161t\u0161tina", + "fa": "per\u0161tina", + "pcd": "picard\u0161tina", + "pms": "piemon\u0161tina", + "pon": "pohnpei\u0161tina", + "pl": "pol\u0161tina", + "pnt": "pont\u0161tina", + "pt": "portugal\u0161tina", + "pt_PT": "portugal\u0161tina (Evropa)", + "pro": "provens\u00e1l\u0161tina", + "prg": "pru\u0161tina", + "raj": "r\u00e1d\u017east\u00e1n\u0161tina", + "rap": "rapanuj\u0161tina", + "rar": "rarotong\u00e1n\u0161tina", + "rm": "r\u00e9torom\u00e1n\u0161tina", + "rif": "r\u00edf\u0161tina", + "rgn": "roma\u0148ol\u0161tina", + "rof": "rombo", + "rom": "rom\u0161tina", + "root": "Root", + "rtm": "rotuman\u0161tina", + "rug": "rovian\u0161tina", + "ro": "rumun\u0161tina", + "rue": "rus\u00edn\u0161tina", + "ru": "ru\u0161tina", + "rwk": "rwa", + "el": "\u0159e\u010dtina", + "ii": "s\u2019-\u010dchuan i", + "ssy": "saho", + "sam": "samar\u0161tina", + "saq": "samburu", + "sm": "samoj\u0161tina", + "smn": "s\u00e1m\u0161tina (inarijsk\u00e1)", + "sma": "s\u00e1m\u0161tina (ji\u017en\u00ed)", + "smj": "s\u00e1m\u0161tina (lulejsk\u00e1)", + "se": "s\u00e1m\u0161tina (severn\u00ed)", + "sms": "s\u00e1m\u0161tina (skoltsk\u00e1)", + "sad": "sandaw\u0161tina", + "sbp": "sango\u0161tina", + "sg": "sang\u0161tina", + "sa": "sanskrt", + "sat": "sant\u00e1l\u0161tina", + "sc": "sard\u0161tina", + "sas": "sasak\u0161tina", + "sdc": "sassar\u0161tina", + "saz": "saur\u00e1\u0161ter\u0161tina", + "sly": "selajar\u0161tina", + "sel": "selkup\u0161tina", + "seh": "sena", + "see": "seneca", + "srr": "serer\u0161tina", + "sei": "seri\u0161tina", + "tn": "setswan\u0161tina", + "scn": "sicil\u0161tina", + "sid": "sidamo", + "bla": "siksika", + "sd": "sindh\u0161tina", + "si": "sinh\u00e1l\u0161tina", + "ss": "siswat\u0161tina", + "gd": "skotsk\u00e1 gael\u0161tina", + "sco": "skot\u0161tina", + "den": "slejv\u0161tina (athabask\u00fd jazyk)", + "szl": "slez\u0161tina", + "sk": "sloven\u0161tina", + "sl": "slovin\u0161tina", + "mul": "slo\u017een\u00e9 (v\u00edce\u0159\u00e1dkov\u00e9) jazyky", + "sog": "sogd\u0161tina", + "xog": "sog\u0161tina", + "so": "som\u00e1l\u0161tina", + "snk": "sonik\u0161tina", + "st": "sot\u0161tina (ji\u017en\u00ed)", + "nso": "sot\u0161tina (severn\u00ed)", + "srn": "sranan tongo", + "sh": "srbochorvat\u0161tina", + "sr": "srb\u0161tina", + "ang": "staroangli\u010dtina", + "peo": "staroper\u0161tina", + "grc": "staro\u0159e\u010dtina", + "cu": "staroslov\u011bn\u0161tina", + "suk": "sukuma", + "sux": "sumer\u0161tina", + "su": "sund\u0161tina", + "sus": "susu", + "sw": "svahil\u0161tina", + "swc": "svahil\u0161tina (Kongo)", + "fr_CH": "Swiss French", + "syr": "syr\u0161tina", + "syc": "syr\u0161tina (klasick\u00e1)", + "ksb": "\u0161ambala", + "shn": "\u0161an\u0161tina", + "sn": "\u0161on\u0161tina", + "es": "\u0161pan\u011bl\u0161tina", + "es_ES": "\u0161pan\u011bl\u0161tina (Evropa)", + "sv": "\u0161v\u00e9d\u0161tina", + "tg": "t\u00e1d\u017ei\u010dtina", + "tl": "tagalog", + "ty": "tahit\u0161tina", + "shi": "tachelhit", + "dav": "taita", + "tly": "taly\u0161tina", + "tmh": "tama\u0161ek", + "zgh": "tamazight (standardn\u00ed marock\u00fd)", + "tzm": "tamazight (st\u0159edn\u00ed Maroko)", + "ta": "tamil\u0161tina", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatar\u0161tina", + "ttt": "tat\u0161tina", + "te": "telug\u0161tina", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum\u0161tina", + "th": "thaj\u0161tina", + "bo": "tibet\u0161tina", + "tig": "tigrej\u0161tina", + "ti": "tigrinij\u0161tina", + "tiv": "tiv\u0161tina", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau\u0161tina", + "to": "tong\u00e1n\u0161tina", + "tog": "ton\u017e\u0161tina (nyasa)", + "zh_Hant": "Traditional Chinese", + "tsd": "tsakon\u0161tina", + "tsi": "tsim\u0161ijsk\u00e9 jazyky", + "ts": "tsonga", + "tcy": "tulu\u0161tina", + "tum": "tumbuk\u0161tina", + "tr": "ture\u010dtina", + "crh": "ture\u010dtina (krymsk\u00e1)", + "ota": "ture\u010dtina (osmansk\u00e1)", + "tk": "turkmen\u0161tina", + "tru": "turoj\u0161tina", + "tvl": "tuval\u0161tina", + "tyv": "tuvin\u0161tina", + "tw": "twi", + "kcg": "tyap", + "udm": "udmurt\u0161tina", + "uga": "ugarit\u0161tina", + "ug": "ujgur\u0161tina", + "uk": "ukrajin\u0161tina", + "umb": "umbundu", + "ur": "urd\u0161tina", + "or": "urij\u0161tina", + "uz": "uzbe\u010dtina", + "vai": "vai", + "wa": "valon\u0161tina", + "cy": "vel\u0161tina", + "ve": "venda", + "vep": "vep\u0161tina", + "vi": "vietnam\u0161tina", + "nl_BE": "vl\u00e1m\u0161tina", + "vls": "vl\u00e1m\u0161tina (z\u00e1padn\u00ed)", + "vo": "volap\u00fck", + "vro": "v\u00f5ru\u0161tina", + "vot": "vot\u0161tina", + "vun": "vunjo", + "war": "waraj\u0161tina", + "wbp": "Warlpiri", + "was": "wa\u0161tina", + "guc": "way\u00fau\u0161tina", + "wal": "wolajt\u0161tina", + "wo": "wolof\u0161tina", + "xh": "xho\u0161tina", + "ybb": "yemba", + "zap": "zapot\u00e9\u010dtina", + "dje": "zarm\u0161tina", + "zza": "zaza", + "kiu": "zazak\u0161tina", + "zea": "z\u00e9land\u0161tina", + "zen": "zenaga", + "ase": "znakov\u00e1 \u0159e\u010d (americk\u00e1)", + "zu": "zulu\u0161tina", + "zun": "zunij\u0161tina", + "zxx": "\u017e\u00e1dn\u00fd jazykov\u00fd obsah", + "sgs": "\u017eemait\u0161tina" +} diff --git a/public/intl/language/da-DK.json b/public/intl/language/da-DK.json new file mode 100644 index 0000000..461a096 --- /dev/null +++ b/public/intl/language/da-DK.json @@ -0,0 +1,611 @@ +{ + "ab": "abkhasisk", + "ace": "achinesisk", + "ach": "acoli", + "ada": "adangme", + "ady": "adyghe", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "ainu", + "ak": "akan", + "akk": "akkadisk", + "akz": "Alabama", + "sq": "albansk", + "ale": "aleutisk", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "en_US": "amerikansk engelsk", + "am": "amharisk", + "anp": "angika", + "njo": "Ao Naga", + "ar": "arabisk", + "an": "aragonesisk", + "arc": "aram\u00e6isk", + "aro": "Araona", + "arp": "arapaho", + "arn": "araukansk", + "arw": "arawak", + "hy": "armensk", + "frp": "Arpitan", + "rup": "arum\u00e6nsk", + "az": "aserbajdsjansk", + "as": "assamesisk", + "ast": "asturisk", + "asa": "asu", + "den": "athapaskisk", + "cch": "atsam", + "en_AU": "australsk engelsk", + "av": "avarisk", + "ae": "avestan", + "awa": "awadhi", + "ay": "aymara", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "bss": "bakossi", + "ban": "balinesisk", + "bal": "baluchi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basa", + "ba": "bashkir", + "eu": "baskisk", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengali", + "bew": "Betawi", + "bho": "bhojpuri", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "zbl": "blissymboler", + "brx": "bodo", + "bs": "bosnisk", + "brh": "Brahui", + "bra": "braj", + "pt_BR": "brasiliansk portugisisk", + "br": "bretonsk", + "en_GB": "britisk engelsk", + "bug": "buginesisk", + "bg": "bulgarsk", + "bum": "bulu", + "bua": "buriatisk", + "my": "burmesisk", + "cad": "caddo", + "frc": "Cajun French", + "en_CA": "canadisk engelsk", + "fr_CA": "canadisk fransk", + "cps": "Capiznon", + "car": "caribisk", + "ca": "catalansk", + "cay": "cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "tzm": "centralmarokkansk tamazight", + "chg": "chagatai", + "ch": "chamorro", + "chr": "cherokee", + "chy": "cheyenne", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "chn": "chinook", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuukese", + "cv": "chuvash", + "swc": "congolesisk swahili", + "kw": "cornisk", + "cr": "cree", + "mus": "creek", + "dak": "dakota", + "da": "dansk", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dyu": "dyula", + "dz": "dzongkha", + "efi": "efik", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamitisk", + "egl": "Emilian", + "smn": "enaresamisk", + "en": "engelsk", + "myv": "erzya", + "eo": "esperanto", + "et": "estisk", + "pt_PT": "europ\u00e6isk portugisisk", + "es_ES": "europ\u00e6isk spansk", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "hif": "Fiji Hindi", + "fj": "fijiansk", + "fil": "filippinsk", + "fi": "finsk", + "nl_BE": "flamsk", + "mul": "flere sprog", + "fon": "fon", + "zh_Hans": "forenklet kinesisk", + "gur": "Frafra", + "fr": "fransk", + "fy": "frisisk", + "fur": "friulian", + "ff": "fulah", + "fo": "f\u00e6r\u00f8sk", + "phn": "f\u00f8nikisk", + "gaa": "ga", + "gag": "gagauzisk", + "gl": "galicisk", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "gez": "geez", + "ka": "georgisk", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbertesisk", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "gotisk", + "grb": "grebo", + "el": "gr\u00e6sk", + "kl": "gr\u00f8nlandsk", + "gn": "guarani", + "gu": "gujarati", + "guz": "gusii", + "gwi": "gwichin", + "hai": "haida", + "ht": "haitisk", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "hawaiiansk", + "he": "hebraisk", + "hz": "herero", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hirimotu", + "hit": "hittitisk", + "hmn": "hmong", + "nl": "hollandsk", + "hup": "hupa", + "be": "hviderussisk", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "iloko", + "id": "indonesisk", + "izh": "Ingrian", + "inh": "ingush", + "ia": "interlingua", + "ie": "interlingue", + "zxx": "intet sprogligt indhold", + "iu": "inuktitut", + "ik": "inupiaq", + "ga": "irsk", + "is": "islandsk", + "it": "italiensk", + "jam": "Jamaican Creole English", + "ja": "japansk", + "jv": "javanesisk", + "yi": "jiddisch", + "kaj": "jju", + "dyo": "jola-fonyi", + "jut": "Jutish", + "jrb": "j\u00f8disk-arabisk", + "jpr": "j\u00f8disk-persisk", + "kbd": "kabardian", + "kab": "kabylisk", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kn": "kannada", + "yue": "kantonesisk", + "kr": "kanuri", + "kea": "kapverdisk", + "kaa": "karakalpakisk", + "krc": "karatjai-balkar", + "krl": "karelsk", + "kk": "kasakhisk", + "ks": "kashmiri", + "csb": "kasjubisk", + "kaw": "kawi", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotanesisk", + "khw": "Khowar", + "ebu": "kiembu", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "zh": "kinesisk", + "rw": "kinyarwanda", + "ky": "kirgisisk", + "cu": "kirkeslavisk", + "kiu": "Kirmanjki", + "nwc": "klassisk newarisk", + "syc": "klassisk syrisk", + "tlh": "klingon", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permjakisk", + "kg": "kongo", + "kok": "konkani", + "cop": "koptisk", + "ko": "koreansk", + "kfo": "koro", + "co": "korsikansk", + "kos": "kosraean", + "avk": "Kotava", + "khq": "koyra-chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "crh": "krim tyrkisk", + "kri": "Krio", + "hr": "kroatisk", + "kj": "kuanyama", + "ku": "kurdisk", + "kru": "kurukh", + "kut": "kutenaj", + "nmg": "kwasio", + "kum": "kymyk", + "ksh": "k\u00f6lsch", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "lao", + "ltg": "Latgalian", + "la": "latin", + "es_419": "latinamerikansk spansk", + "lzz": "Laz", + "lv": "lettisk", + "lez": "lezghian", + "lij": "Ligurian", + "li": "limburgsk", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lt": "litauisk", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-Katanga", + "lua": "luba-Lulua", + "lui": "luiseno", + "smj": "lulesamisk", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxembourgsk", + "luy": "luyana", + "mde": "maba", + "jmc": "machame", + "mad": "madurese", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "mk": "makedonsk", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "mg": "malagassisk", + "ms": "malay", + "ml": "malayalam", + "mt": "maltesisk", + "mnc": "manchu", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuri", + "gv": "manx", + "mi": "maori", + "mr": "marathisk", + "chm": "mari", + "mh": "marshallese", + "mwr": "marwari", + "mas": "masai", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta", + "es_MX": "mexicansk spansk", + "mic": "micmac", + "enm": "middelengelsk", + "frm": "middelfransk", + "dum": "middelhollandsk", + "gmh": "middelh\u00f8jtysk", + "mga": "middelirsk", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirandesisk", + "ar_001": "moderne standardarabisk", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldovisk", + "lol": "mongo", + "mn": "mongolsk", + "mfe": "morisyen", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n-ko", + "naq": "nama", + "na": "nauru", + "nv": "navajo", + "ng": "ndonga", + "nap": "neapolitansk", + "dsb": "nedersorbisk", + "nds": "nedertysk", + "ne": "nepalesisk", + "new": "newari", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niuean", + "nog": "nogai", + "frr": "nordfrisisk", + "nd": "nordndebele", + "se": "nordsamisk", + "nso": "nordsotho", + "no": "norsk", + "nb": "norsk bokm\u00e5l", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "tog": "nyasa tongansk", + "nn": "nynorsk", + "nyo": "nyoro sprog", + "nzi": "nzima", + "oc": "occitansk", + "oj": "ojibwa", + "egy": "oldegyptisk", + "ang": "oldengelsk", + "fro": "oldfransk", + "grc": "oldgr\u00e6sk", + "goh": "oldh\u00f8jtysk", + "sga": "oldirsk", + "non": "oldislandsk", + "peo": "oldpersisk", + "pro": "oldprovencalsk", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "ota": "osmannisk-tyrkisk", + "os": "ossetisk", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauansk", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasinan", + "pap": "papiamento", + "ps": "pashto", + "pdc": "Pennsylvania German", + "fa": "persisk", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pl": "polsk", + "pon": "ponape", + "pnt": "Pontic", + "pt": "portugisisk", + "prg": "Prussian", + "pa": "punjabi", + "qu": "quechua", + "quc": "quich\u00e9", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "romani", + "rof": "rombo", + "root": "rot", + "rtm": "Rotuman", + "rug": "Roviana", + "ro": "rum\u00e6nsk", + "rn": "rundi", + "ru": "russisk", + "rue": "Rusyn", + "rwk": "rwa", + "rm": "r\u00e6toromansk", + "ssy": "saho", + "sam": "samaritansk", + "saq": "samburu", + "sm": "samoansk", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santali", + "sc": "sardinsk", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "de_CH": "schweizerh\u00f8jtysk", + "gsw": "schweizertysk", + "fr_CH": "schweizisk fransk", + "sly": "Selayar", + "sel": "selkupisk", + "seh": "sena", + "see": "seneca", + "sr": "serbisk", + "sh": "serbokroatisk", + "srr": "serer", + "sei": "Seri", + "ksb": "shambala", + "shn": "shan", + "swb": "shimaore", + "sn": "shona", + "ii": "sichuan yi", + "scn": "siciliansk", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindhi", + "si": "singalesisk", + "sms": "skoltesamisk", + "sco": "skotsk", + "gd": "skotsk g\u00e6lisk", + "sk": "slovakisk", + "sl": "slovensk", + "xog": "soga", + "sog": "sogdiansk", + "so": "somalisk", + "snk": "soninke", + "ckb": "sorani", + "azb": "South Azerbaijani", + "es": "spansk", + "srn": "sranan tongo", + "suk": "sukuma", + "sux": "sumerisk", + "su": "sundanesisk", + "sus": "susu", + "sv": "svensk", + "sw": "swahili", + "ss": "swati", + "alt": "sydaltaisk", + "nr": "sydndebele", + "sma": "sydsamisk", + "st": "sydsotho", + "syr": "syrisk", + "shi": "tachelhit", + "tl": "tagalog", + "ty": "tahitiansk", + "dav": "taita", + "tg": "tajik", + "tly": "Talysh", + "tmh": "tamashek", + "zgh": "tamazight", + "ta": "tamilsk", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatarisk", + "shu": "tchadisk-arabisk", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thailandsk", + "bo": "tibetansk", + "tig": "tigre", + "ti": "tigrinya", + "tiv": "tivi", + "cs": "tjekkisk", + "ce": "tjetjensk", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tongansk", + "fit": "Tornedalen Finnish", + "zh_Hant": "traditionelt kinesisk", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshisk", + "ts": "tsonga", + "tn": "tswana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tk": "turkmensk", + "tru": "Turoyo", + "tvl": "tuvalu", + "tyv": "tuvinian", + "tw": "twi", + "kcg": "tyap", + "tr": "tyrkisk", + "de": "tysk", + "udm": "udmurt", + "uga": "ugaristisk", + "und": "ukendt sprog", + "uk": "ukrainsk", + "umb": "umbundu", + "hu": "ungarsk", + "ur": "urdu", + "uz": "usbekisk", + "ug": "uygurisk", + "vai": "vai", + "wa": "vallonsk", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamesisk", + "vo": "volapyk", + "vro": "V\u00f5ro", + "vot": "votisk", + "vun": "vunjo", + "wal": "walamo", + "cy": "walisisk", + "wae": "walsertysk", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "sah": "yakut", + "yav": "yangben", + "yao": "yao", + "yap": "yapese", + "ybb": "yemba", + "yo": "yoruba", + "zap": "zapotec", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zuni", + "frs": "\u00f8stfrisisk", + "de_AT": "\u00f8strigsk tysk", + "hsb": "\u00f8vresorbisk" +} diff --git a/public/intl/language/de-CH.json b/public/intl/language/de-CH.json new file mode 100644 index 0000000..8d2312a --- /dev/null +++ b/public/intl/language/de-CH.json @@ -0,0 +1,611 @@ +{ + "ab": "Abchasisch", + "ace": "Aceh-Sprache", + "ach": "Acholi-Sprache", + "ada": "Adangme", + "ady": "Adygeisch", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaans", + "agq": "Aghem", + "egy": "\u00c4gyptisch", + "arz": "\u00c4gyptisches Arabisch", + "ain": "Ainu-Sprache", + "ak": "Akan", + "akk": "Akkadisch", + "bss": "Akoose", + "akz": "Alabama", + "sq": "Albanisch", + "ale": "Aleutisch", + "arq": "Algerisches Arabisch", + "nwc": "Alt-Newari", + "ang": "Altenglisch", + "fro": "Altfranz\u00f6sisch", + "grc": "Altgriechisch", + "goh": "Althochdeutsch", + "sga": "Altirisch", + "non": "Altnordisch", + "peo": "Altpersisch", + "prg": "Altpreussisch", + "pro": "Altprovenzalisch", + "syc": "Altsyrisch", + "ase": "Amerikanische Geb\u00e4rdensprache", + "en_US": "Amerikanisches Englisch", + "am": "Amharisch", + "anp": "Angika", + "njo": "Ao-Naga", + "ar": "Arabisch", + "an": "Aragonesisch", + "arc": "Aram\u00e4isch", + "aro": "Araona", + "arp": "Arapaho-Sprache", + "arn": "Araukanisch", + "arw": "Arawak-Sprache", + "hy": "Armenisch", + "rup": "Aromunisch", + "az": "Aserbaidschanisch", + "as": "Assamesisch", + "ast": "Asturianisch", + "cch": "Atsam", + "en_AU": "Australisches Englisch", + "ae": "Avestisch", + "awa": "Awadhi", + "av": "Awarisch", + "ay": "Aymara", + "bqi": "Bachtiarisch", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bar": "Bairisch", + "ban": "Balinesisch", + "bm": "Bambara-Sprache", + "bax": "Bamun", + "bjn": "Banjaresisch", + "bas": "Basaa-Sprache", + "ba": "Baschkirisch", + "eu": "Baskisch", + "bbc": "Batak Toba", + "bej": "Bedauye", + "bal": "Belutschisch", + "bem": "Bemba-Sprache", + "bez": "Bena", + "bn": "Bengalisch", + "mrj": "Bergmari", + "bew": "Betawi", + "bho": "Bhodschpuri", + "dz": "Bhutanisch", + "bik": "Bikol-Sprache", + "bin": "Bini-Sprache", + "my": "Birmanisch", + "bpy": "Bishnupriya", + "bi": "Bislama", + "bla": "Blackfoot-Sprache", + "byn": "Blin", + "zbl": "Bliss-Symbole", + "brx": "Bodo", + "bs": "Bosnisch", + "brh": "Brahui", + "bra": "Braj-Bhakha", + "pt_BR": "Brasilianisches Portugiesisch", + "br": "Bretonisch", + "en_GB": "Britisches Englisch", + "bug": "Buginesisch", + "bg": "Bulgarisch", + "bum": "Bulu", + "bua": "Burjatisch", + "cad": "Caddo", + "frc": "Cajun", + "cps": "Capiznon", + "cay": "Cayuga", + "ceb": "Cebuano", + "ch": "Chamorro-Sprache", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha-Sprache", + "qug": "Chimborazo Hochland-Quechua", + "zh": "Chinesisch", + "zh_Hant": "Chinesisch (traditionell)", + "zh_Hans": "Chinesisch (vereinfacht)", + "chn": "Chinook", + "chp": "Chipewyan", + "cho": "Choctaw", + "cr": "Cree", + "dak": "Dakota-Sprache", + "da": "D\u00e4nisch", + "dar": "Darginisch", + "dzg": "Dazaga", + "del": "Delaware-Sprache", + "de": "Deutsch", + "din": "Dinka-Sprache", + "dyo": "Diola", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula-Sprache", + "efi": "Efik", + "eka": "Ekajuk", + "elx": "Elamisch", + "tvl": "Elliceanisch", + "ebu": "Embu", + "egl": "Emilianisch", + "en": "Englisch", + "myv": "Ersja-Mordwinisch", + "eo": "Esperanto", + "et": "Estnisch", + "pt_PT": "Europ\u00e4isches Portugiesisch", + "es_ES": "Europ\u00e4isches Spanisch", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremadurisch", + "fat": "Fanti-Sprache", + "gur": "Farefare", + "fo": "F\u00e4r\u00f6isch", + "fj": "Fidschi", + "hif": "Fidschi-Hindi", + "fil": "Filipino", + "fi": "Finnisch", + "nl_BE": "Fl\u00e4misch", + "fon": "Fon-Sprache", + "frp": "Frankoprovenzalisch", + "fr": "Franz\u00f6sisch", + "fur": "Friulisch", + "ff": "Ful", + "gaa": "Ga-Sprache", + "gbz": "Gabri", + "gag": "Gagausisch", + "gl": "Galizisch", + "gan": "Gan", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya-Sprache", + "gez": "Geez", + "aln": "Gegisch", + "ka": "Georgisch", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertesisch", + "gom": "Goa-Konkani", + "gon": "Gondi-Sprache", + "got": "Gotisch", + "grb": "Grebo-Sprache", + "el": "Griechisch", + "kl": "Gr\u00f6nl\u00e4ndisch", + "gn": "Guarani", + "gu": "Gujarati", + "guz": "Gusii", + "hai": "Haida-Sprache", + "ht": "Haitianisch", + "hak": "Hakka", + "ha": "Hausa", + "haw": "Hawaiisch", + "he": "Hebr\u00e4isch", + "hz": "Herero-Sprache", + "hit": "Hethitisch", + "hil": "Hiligaynon-Sprache", + "hi": "Hindi", + "ho": "Hiri-Motu", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido-Sprache", + "ig": "Igbo", + "ilo": "Ilokano-Sprache", + "smn": "Inari-Lappisch", + "id": "Indonesisch", + "inh": "Inguschisch", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiak", + "ga": "Irisch", + "izh": "Ischorisch", + "is": "Isl\u00e4ndisch", + "it": "Italienisch", + "sah": "Jakutisch", + "jam": "Jamaikanisch-kreolische Sprache", + "ja": "Japanisch", + "jv": "Javanisch", + "yi": "Jiddisch", + "kaj": "Jju", + "jrb": "J\u00fcdisch-Arabisch", + "jpr": "J\u00fcdisch-Persisch", + "jut": "J\u00fctisch", + "quc": "K\u2019iche\u2019", + "kbd": "Kabardinisch", + "kea": "Kabuverdianu", + "kab": "Kabylisch", + "kac": "Kachin-Sprache", + "kgp": "Kaingang", + "kkj": "Kako", + "kln": "Kalenjin", + "xal": "Kalm\u00fcckisch", + "kam": "Kamba", + "km": "Kambodschanisch", + "en_CA": "Kanadisches Englisch", + "fr_CA": "Kanadisches Franz\u00f6sisch", + "kbl": "Kanembu", + "kn": "Kannada", + "yue": "Kantonesisch", + "kr": "Kanuri-Sprache", + "kaa": "Karakalpakisch", + "krc": "Karatschaiisch-Balkarisch", + "krl": "Karelisch", + "car": "Karibisch", + "kk": "Kasachisch", + "ks": "Kaschmirisch", + "csb": "Kaschubisch", + "ca": "Katalanisch", + "kaw": "Kawi", + "zxx": "Keine Sprachinhalte", + "ken": "Kenyang", + "kha": "Khasi-Sprache", + "mag": "Khotta", + "khw": "Khowar", + "ki": "Kikuyu", + "kmb": "Kimbundu-Sprache", + "krj": "Kinaray-a", + "cu": "Kirchenslawisch", + "ky": "Kirgisisch", + "kiu": "Kirmanjki", + "lzh": "Klassisches Chinesisch", + "tlh": "Klingonisch", + "ksh": "K\u00f6lsch", + "bkm": "Kom", + "koi": "Komi-Permjakisch", + "kv": "Komi-Sprache", + "swb": "Komorisch", + "swc": "Kongo-Suaheli", + "kg": "Kongolesisch", + "kok": "Konkani", + "cop": "Koptisch", + "ko": "Koreanisch", + "kw": "Kornisch", + "kfo": "Koro", + "co": "Korsisch", + "kos": "Kosraeanisch", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyra Senni", + "kpe": "Kpelle-Sprache", + "crh": "Krimtatarisch", + "kri": "Krio", + "hr": "Kroatisch", + "kum": "Kum\u00fckisch", + "ku": "Kurdisch", + "gwi": "Kutchin-Sprache", + "kut": "Kutenai-Sprache", + "kj": "Kwanyama", + "nmg": "Kwasio", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba-Sprache", + "lag": "Langi", + "lo": "Laotisch", + "lzz": "Lasisch", + "la": "Latein", + "es_419": "Lateinamerikanisches Spanisch", + "lez": "Lesgisch", + "ltg": "Lettgallisch", + "lv": "Lettisch", + "lij": "Ligurisch", + "li": "Limburgisch", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lt": "Litauisch", + "liv": "Livisch", + "jbo": "Lojban", + "lmo": "Lombardisch", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "luy": "Luhya", + "lui": "Luiseno-Sprache", + "smj": "Lule-Lappisch", + "lun": "Lunda-Sprache", + "luo": "Luo-Sprache", + "lus": "Lushai-Sprache", + "lb": "Luxemburgisch", + "mde": "Maba", + "jmc": "Machame", + "mg": "Madagassisch", + "mad": "Maduresisch", + "maf": "Mafa", + "vmf": "Mainfr\u00e4nkisch", + "mai": "Maithili", + "mak": "Makassarisch", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "ms": "Malaiisch", + "ml": "Malayalam", + "dv": "Maledivisch", + "mt": "Maltesisch", + "mdr": "Mandaresisch", + "man": "Manding-Sprache", + "mnc": "Mandschurisch", + "gv": "Manx", + "mi": "Maori", + "mr": "Marathi", + "ary": "Marokkanisches Arabisch", + "mh": "Marschallesisch", + "mwr": "Marwari", + "mzn": "Masanderanisch", + "mas": "Massai-Sprache", + "mk": "Mazedonisch", + "umb": "Mbundu-Sprache", + "fit": "Me\u00e4nkieli", + "byv": "Medumba", + "mul": "Mehrsprachig", + "mni": "Meithei-Sprache", + "men": "Mende-Sprache", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u2019", + "es_MX": "Mexikanisches Spanisch", + "hmn": "Miao-Sprache", + "mic": "Micmac-Sprache", + "nan": "Min Nan", + "min": "Minangkabau-Sprache", + "xmf": "Mingrelisch", + "mwl": "Mirandesisch", + "enm": "Mittelenglisch", + "frm": "Mittelfranz\u00f6sisch", + "gmh": "Mittelhochdeutsch", + "mga": "Mittelirisch", + "dum": "Mittelniederl\u00e4ndisch", + "pal": "Mittelpersisch", + "ar_001": "Modernes Hocharabisch", + "moh": "Mohawk", + "mdf": "Moksha", + "ro_MD": "Moldauisch", + "lol": "Mongo", + "mn": "Mongolisch", + "gor": "Mongondou", + "mfe": "Morisyen", + "mos": "Mossi-Sprache", + "mua": "Mundang", + "mus": "Muskogee-Sprache", + "mye": "Myene", + "nqo": "N\u2019Ko", + "naq": "Nama", + "na": "Nauruisch", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitanisch", + "ne": "Nepalesisch", + "tpi": "Neumelanesisch", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias-Sprache", + "nds": "Niederdeutsch", + "nl": "Niederl\u00e4ndisch", + "dsb": "Niedersorbisch", + "niu": "Niue-Sprache", + "nog": "Nogai", + "nd": "Nord-Ndebele-Sprache", + "se": "Nord-Samisch", + "nso": "Nord-Sotho-Sprache", + "frr": "Nordfriesisch", + "no": "Norwegisch", + "nb": "Norwegisch Bokm\u00e5l", + "nn": "Norwegisch Nynorsk", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi-Sprache", + "ny": "Nyanja-Sprache", + "nyn": "Nyankole", + "nyo": "Nyoro", + "nzi": "Nzima", + "hsb": "Obersorbisch", + "oj": "Ojibwa-Sprache", + "oc": "Okzitanisch", + "kru": "Oraon-Sprache", + "or": "Oriya", + "om": "Oromo", + "osa": "Osage-Sprache", + "ota": "Osmanisch", + "os": "Ossetisch", + "rap": "Osterinsel-Sprache", + "de_AT": "\u00d6sterreichisches Deutsch", + "frs": "Ostfriesisch", + "pau": "Palau", + "pi": "Pali", + "pam": "Pampanggan-Sprache", + "pag": "Pangasinan-Sprache", + "fan": "Pangwe-Sprache", + "pa": "Panjabi", + "pap": "Papiamento", + "asa": "Pare", + "ps": "Paschtu", + "pdc": "Pennsylvaniadeutsch", + "fa": "Persisch", + "pfl": "Pf\u00e4lzisch", + "phn": "Ph\u00f6nikisch", + "pcd": "Picardisch", + "pms": "Piemontesisch", + "pdt": "Plautdietsch", + "pl": "Polnisch", + "pon": "Ponapeanisch", + "pnt": "Pontisch", + "pt": "Portugiesisch", + "qu": "Quechua", + "raj": "Rajasthani", + "rar": "Rarotonganisch", + "rm": "R\u00e4toromanisch", + "rgn": "Romagnol", + "rom": "Romani", + "rof": "Rombo", + "root": "Root", + "loz": "Rotse-Sprache", + "rtm": "Rotumanisch", + "rug": "Roviana", + "rw": "Ruandisch", + "cgg": "Rukiga", + "ro": "Rum\u00e4nisch", + "rn": "Rundi-Sprache", + "rue": "Russinisch", + "ru": "Russisch", + "rwk": "Rwa", + "ssy": "Saho", + "kho": "Sakisch", + "sam": "Samaritanisch", + "saq": "Samburu", + "sm": "Samoanisch", + "sgs": "Samogitisch", + "sad": "Sandawe-Sprache", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskrit", + "sat": "Santali", + "sc": "Sardisch", + "sas": "Sasak", + "sdc": "Sassarisch", + "stq": "Saterfriesisch", + "saz": "Saurashtra", + "shn": "Schan-Sprache", + "sli": "Schlesisch", + "szl": "Schlesisch (Polen)", + "sco": "Schottisch", + "gd": "Schottisches G\u00e4lisch", + "sv": "Schwedisch", + "fr_CH": "Schweizer Franz\u00f6sisch", + "de_CH": "Schweizer Hochdeutsch", + "gsw": "Schweizerdeutsch", + "zea": "Seel\u00e4ndisch", + "sly": "Selayar", + "sel": "Selkupisch", + "seh": "Sena", + "see": "Seneca", + "sr": "Serbisch", + "sh": "Serbo-Kroatisch", + "srr": "Serer-Sprache", + "sei": "Seri", + "ksb": "Shambala", + "sn": "Shona", + "sid": "Sidamo", + "sd": "Sindhi", + "si": "Singhalesisch", + "scn": "Sizilianisch", + "sms": "Skolt-Lappisch", + "den": "Slave", + "sk": "Slowakisch", + "sl": "Slowenisch", + "xog": "Soga", + "sog": "Sogdisch", + "so": "Somali", + "snk": "Soninke-Sprache", + "ckb": "Sorani", + "es": "Spanisch", + "srn": "Srananisch", + "sw": "Suaheli", + "alt": "S\u00fcd-Altaisch", + "nr": "S\u00fcd-Ndebele-Sprache", + "sma": "S\u00fcd-Samisch", + "st": "S\u00fcd-Sotho-Sprache", + "azb": "S\u00fcdaserbaidschanisch", + "suk": "Sukuma-Sprache", + "sux": "Sumerisch", + "su": "Sundanesisch", + "sus": "Susu", + "ss": "Swazi", + "syr": "Syrisch", + "tg": "Tadschikisch", + "tl": "Tagalog", + "ty": "Tahitisch", + "dav": "Taita", + "tly": "Talisch", + "tmh": "Tamaseq", + "zgh": "Tamazight", + "ta": "Tamilisch", + "rif": "Tarifit", + "trv": "Taroko", + "twq": "Tasawaq", + "shi": "Taschelhit", + "tt": "Tatarisch", + "ttt": "Tatisch", + "te": "Telugu", + "tem": "Temne", + "ter": "Tereno-Sprache", + "teo": "Teso", + "tet": "Tetum-Sprache", + "th": "Thail\u00e4ndisch", + "bo": "Tibetisch", + "tig": "Tigre", + "ti": "Tigrinja", + "tiv": "Tiv-Sprache", + "tli": "Tlingit-Sprache", + "tkl": "Tokelauanisch", + "to": "Tongaisch", + "chk": "Trukesisch", + "tkr": "Tsachurisch", + "tsd": "Tsakonisch", + "shu": "Tschadisch-Arabisch", + "chg": "Tschagataisch", + "cs": "Tschechisch", + "chm": "Tscheremissisch", + "ce": "Tschetschenisch", + "cv": "Tschuwaschisch", + "tsi": "Tsimshian-Sprache", + "ts": "Tsonga", + "tog": "Tsonga-Sprache", + "tn": "Tswana-Sprache", + "tcy": "Tulu", + "tum": "Tumbuka-Sprache", + "aeb": "Tunesisches Arabisch", + "tr": "T\u00fcrkisch", + "tk": "Turkmenisch", + "tru": "Turoyo", + "tyv": "Tuwinisch", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurtisch", + "uga": "Ugaritisch", + "ug": "Uigurisch", + "uk": "Ukrainisch", + "und": "Unbestimmte Sprache", + "hu": "Ungarisch", + "ur": "Urdu", + "uz": "Usbekisch", + "vai": "Vai", + "ve": "Venda-Sprache", + "vec": "Venetisch", + "vi": "Vietnamesisch", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vun": "Vunjo", + "wal": "Walamo-Sprache", + "cy": "Walisisch", + "wa": "Wallonisch", + "wae": "Walser-Dialekte", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo-Sprache", + "guc": "Way\u00fau", + "be": "Weissrussisch", + "vep": "Wepsisch", + "vls": "Westfl\u00e4misch", + "fy": "Westfriesisch", + "wo": "Wolof", + "vot": "Wotisch", + "wuu": "Wu", + "xh": "Xhosa", + "hsn": "Xiang", + "yav": "Yangben", + "yao": "Yao-Sprache", + "yap": "Yapesisch", + "ybb": "Yemba", + "ii": "Yi", + "yo": "Yoruba", + "zap": "Zapotekisch", + "dje": "Zarma", + "zza": "Zaza", + "zen": "Zenaga", + "esu": "Zentral-Alaska-Yupik", + "dtp": "Zentral-Dusun", + "tzm": "Zentralatlas-Tamazight", + "za": "Zhuang", + "zu": "Zulu", + "zun": "Zuni-Sprache" +} diff --git a/public/intl/language/de-DE.json b/public/intl/language/de-DE.json new file mode 100644 index 0000000..9dcf9fd --- /dev/null +++ b/public/intl/language/de-DE.json @@ -0,0 +1,611 @@ +{ + "ab": "Abchasisch", + "ace": "Aceh-Sprache", + "ach": "Acholi-Sprache", + "ada": "Adangme", + "ady": "Adygeisch", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaans", + "agq": "Aghem", + "egy": "\u00c4gyptisch", + "arz": "\u00c4gyptisches Arabisch", + "ain": "Ainu-Sprache", + "ak": "Akan", + "akk": "Akkadisch", + "bss": "Akoose", + "akz": "Alabama", + "sq": "Albanisch", + "ale": "Aleutisch", + "arq": "Algerisches Arabisch", + "nwc": "Alt-Newari", + "ang": "Altenglisch", + "fro": "Altfranz\u00f6sisch", + "grc": "Altgriechisch", + "goh": "Althochdeutsch", + "sga": "Altirisch", + "non": "Altnordisch", + "peo": "Altpersisch", + "prg": "Altpreu\u00dfisch", + "pro": "Altprovenzalisch", + "syc": "Altsyrisch", + "ase": "Amerikanische Geb\u00e4rdensprache", + "en_US": "Amerikanisches Englisch", + "am": "Amharisch", + "anp": "Angika", + "njo": "Ao-Naga", + "ar": "Arabisch", + "an": "Aragonesisch", + "arc": "Aram\u00e4isch", + "aro": "Araona", + "arp": "Arapaho-Sprache", + "arn": "Araukanisch", + "arw": "Arawak-Sprache", + "hy": "Armenisch", + "rup": "Aromunisch", + "az": "Aserbaidschanisch", + "as": "Assamesisch", + "ast": "Asturianisch", + "cch": "Atsam", + "en_AU": "Australisches Englisch", + "ae": "Avestisch", + "awa": "Awadhi", + "av": "Awarisch", + "ay": "Aymara", + "bqi": "Bachtiarisch", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bar": "Bairisch", + "ban": "Balinesisch", + "bm": "Bambara-Sprache", + "bax": "Bamun", + "bjn": "Banjaresisch", + "bas": "Basaa-Sprache", + "ba": "Baschkirisch", + "eu": "Baskisch", + "bbc": "Batak Toba", + "bej": "Bedauye", + "bal": "Belutschisch", + "bem": "Bemba-Sprache", + "bez": "Bena", + "bn": "Bengalisch", + "mrj": "Bergmari", + "bew": "Betawi", + "bho": "Bhodschpuri", + "dz": "Bhutanisch", + "bik": "Bikol-Sprache", + "bin": "Bini-Sprache", + "my": "Birmanisch", + "bpy": "Bishnupriya", + "bi": "Bislama", + "bla": "Blackfoot-Sprache", + "byn": "Blin", + "zbl": "Bliss-Symbole", + "brx": "Bodo", + "bs": "Bosnisch", + "brh": "Brahui", + "bra": "Braj-Bhakha", + "pt_BR": "Brasilianisches Portugiesisch", + "br": "Bretonisch", + "en_GB": "Britisches Englisch", + "bug": "Buginesisch", + "bg": "Bulgarisch", + "bum": "Bulu", + "bua": "Burjatisch", + "cad": "Caddo", + "frc": "Cajun", + "cps": "Capiznon", + "cay": "Cayuga", + "ceb": "Cebuano", + "ch": "Chamorro-Sprache", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha-Sprache", + "qug": "Chimborazo Hochland-Quechua", + "zh": "Chinesisch", + "zh_Hant": "Chinesisch (traditionell)", + "zh_Hans": "Chinesisch (vereinfacht)", + "chn": "Chinook", + "chp": "Chipewyan", + "cho": "Choctaw", + "cr": "Cree", + "dak": "Dakota-Sprache", + "da": "D\u00e4nisch", + "dar": "Darginisch", + "dzg": "Dazaga", + "del": "Delaware-Sprache", + "de": "Deutsch", + "din": "Dinka-Sprache", + "dyo": "Diola", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula-Sprache", + "efi": "Efik", + "eka": "Ekajuk", + "elx": "Elamisch", + "tvl": "Elliceanisch", + "ebu": "Embu", + "egl": "Emilianisch", + "en": "Englisch", + "myv": "Ersja-Mordwinisch", + "eo": "Esperanto", + "et": "Estnisch", + "pt_PT": "Europ\u00e4isches Portugiesisch", + "es_ES": "Europ\u00e4isches Spanisch", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremadurisch", + "fat": "Fanti-Sprache", + "gur": "Farefare", + "fo": "F\u00e4r\u00f6isch", + "fj": "Fidschi", + "hif": "Fidschi-Hindi", + "fil": "Filipino", + "fi": "Finnisch", + "nl_BE": "Fl\u00e4misch", + "fon": "Fon-Sprache", + "frp": "Frankoprovenzalisch", + "fr": "Franz\u00f6sisch", + "fur": "Friulisch", + "ff": "Ful", + "gaa": "Ga-Sprache", + "gbz": "Gabri", + "gag": "Gagausisch", + "gl": "Galizisch", + "gan": "Gan", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya-Sprache", + "gez": "Geez", + "aln": "Gegisch", + "ka": "Georgisch", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertesisch", + "gom": "Goa-Konkani", + "gon": "Gondi-Sprache", + "got": "Gotisch", + "grb": "Grebo-Sprache", + "el": "Griechisch", + "kl": "Gr\u00f6nl\u00e4ndisch", + "gn": "Guarani", + "gu": "Gujarati", + "guz": "Gusii", + "hai": "Haida-Sprache", + "ht": "Haitianisch", + "hak": "Hakka", + "ha": "Hausa", + "haw": "Hawaiisch", + "he": "Hebr\u00e4isch", + "hz": "Herero-Sprache", + "hit": "Hethitisch", + "hil": "Hiligaynon-Sprache", + "hi": "Hindi", + "ho": "Hiri-Motu", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido-Sprache", + "ig": "Igbo", + "ilo": "Ilokano-Sprache", + "smn": "Inari-Lappisch", + "id": "Indonesisch", + "inh": "Inguschisch", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiak", + "ga": "Irisch", + "izh": "Ischorisch", + "is": "Isl\u00e4ndisch", + "it": "Italienisch", + "sah": "Jakutisch", + "jam": "Jamaikanisch-kreolische Sprache", + "ja": "Japanisch", + "jv": "Javanisch", + "yi": "Jiddisch", + "kaj": "Jju", + "jrb": "J\u00fcdisch-Arabisch", + "jpr": "J\u00fcdisch-Persisch", + "jut": "J\u00fctisch", + "quc": "K\u2019iche\u2019", + "kbd": "Kabardinisch", + "kea": "Kabuverdianu", + "kab": "Kabylisch", + "kac": "Kachin-Sprache", + "kgp": "Kaingang", + "kkj": "Kako", + "kln": "Kalenjin", + "xal": "Kalm\u00fcckisch", + "kam": "Kamba", + "km": "Kambodschanisch", + "en_CA": "Kanadisches Englisch", + "fr_CA": "Kanadisches Franz\u00f6sisch", + "kbl": "Kanembu", + "kn": "Kannada", + "yue": "Kantonesisch", + "kr": "Kanuri-Sprache", + "kaa": "Karakalpakisch", + "krc": "Karatschaiisch-Balkarisch", + "krl": "Karelisch", + "car": "Karibisch", + "kk": "Kasachisch", + "ks": "Kaschmirisch", + "csb": "Kaschubisch", + "ca": "Katalanisch", + "kaw": "Kawi", + "zxx": "Keine Sprachinhalte", + "ken": "Kenyang", + "kha": "Khasi-Sprache", + "mag": "Khotta", + "khw": "Khowar", + "ki": "Kikuyu", + "kmb": "Kimbundu-Sprache", + "krj": "Kinaray-a", + "cu": "Kirchenslawisch", + "ky": "Kirgisisch", + "kiu": "Kirmanjki", + "lzh": "Klassisches Chinesisch", + "tlh": "Klingonisch", + "ksh": "K\u00f6lsch", + "bkm": "Kom", + "koi": "Komi-Permjakisch", + "kv": "Komi-Sprache", + "swb": "Komorisch", + "swc": "Kongo-Suaheli", + "kg": "Kongolesisch", + "kok": "Konkani", + "cop": "Koptisch", + "ko": "Koreanisch", + "kw": "Kornisch", + "kfo": "Koro", + "co": "Korsisch", + "kos": "Kosraeanisch", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyra Senni", + "kpe": "Kpelle-Sprache", + "crh": "Krimtatarisch", + "kri": "Krio", + "hr": "Kroatisch", + "kum": "Kum\u00fckisch", + "ku": "Kurdisch", + "gwi": "Kutchin-Sprache", + "kut": "Kutenai-Sprache", + "kj": "Kwanyama", + "nmg": "Kwasio", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba-Sprache", + "lag": "Langi", + "lo": "Laotisch", + "lzz": "Lasisch", + "la": "Latein", + "es_419": "Lateinamerikanisches Spanisch", + "lez": "Lesgisch", + "ltg": "Lettgallisch", + "lv": "Lettisch", + "lij": "Ligurisch", + "li": "Limburgisch", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lt": "Litauisch", + "liv": "Livisch", + "jbo": "Lojban", + "lmo": "Lombardisch", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "luy": "Luhya", + "lui": "Luiseno-Sprache", + "smj": "Lule-Lappisch", + "lun": "Lunda-Sprache", + "luo": "Luo-Sprache", + "lus": "Lushai-Sprache", + "lb": "Luxemburgisch", + "mde": "Maba", + "jmc": "Machame", + "mg": "Madagassisch", + "mad": "Maduresisch", + "maf": "Mafa", + "vmf": "Mainfr\u00e4nkisch", + "mai": "Maithili", + "mak": "Makassarisch", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "ms": "Malaiisch", + "ml": "Malayalam", + "dv": "Maledivisch", + "mt": "Maltesisch", + "mdr": "Mandaresisch", + "man": "Manding-Sprache", + "mnc": "Mandschurisch", + "gv": "Manx", + "mi": "Maori", + "mr": "Marathi", + "ary": "Marokkanisches Arabisch", + "mh": "Marschallesisch", + "mwr": "Marwari", + "mzn": "Masanderanisch", + "mas": "Massai-Sprache", + "mk": "Mazedonisch", + "umb": "Mbundu-Sprache", + "fit": "Me\u00e4nkieli", + "byv": "Medumba", + "mul": "Mehrsprachig", + "mni": "Meithei-Sprache", + "men": "Mende-Sprache", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u2019", + "es_MX": "Mexikanisches Spanisch", + "hmn": "Miao-Sprache", + "mic": "Micmac-Sprache", + "nan": "Min Nan", + "min": "Minangkabau-Sprache", + "xmf": "Mingrelisch", + "mwl": "Mirandesisch", + "enm": "Mittelenglisch", + "frm": "Mittelfranz\u00f6sisch", + "gmh": "Mittelhochdeutsch", + "mga": "Mittelirisch", + "dum": "Mittelniederl\u00e4ndisch", + "pal": "Mittelpersisch", + "ar_001": "Modernes Hocharabisch", + "moh": "Mohawk", + "mdf": "Moksha", + "ro_MD": "Moldauisch", + "lol": "Mongo", + "mn": "Mongolisch", + "gor": "Mongondou", + "mfe": "Morisyen", + "mos": "Mossi-Sprache", + "mua": "Mundang", + "mus": "Muskogee-Sprache", + "mye": "Myene", + "nqo": "N\u2019Ko", + "naq": "Nama", + "na": "Nauruisch", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitanisch", + "ne": "Nepalesisch", + "tpi": "Neumelanesisch", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias-Sprache", + "nds": "Niederdeutsch", + "nl": "Niederl\u00e4ndisch", + "dsb": "Niedersorbisch", + "niu": "Niue-Sprache", + "nog": "Nogai", + "nd": "Nord-Ndebele-Sprache", + "se": "Nord-Samisch", + "nso": "Nord-Sotho-Sprache", + "frr": "Nordfriesisch", + "no": "Norwegisch", + "nb": "Norwegisch Bokm\u00e5l", + "nn": "Norwegisch Nynorsk", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi-Sprache", + "ny": "Nyanja-Sprache", + "nyn": "Nyankole", + "nyo": "Nyoro", + "nzi": "Nzima", + "hsb": "Obersorbisch", + "oj": "Ojibwa-Sprache", + "oc": "Okzitanisch", + "kru": "Oraon-Sprache", + "or": "Oriya", + "om": "Oromo", + "osa": "Osage-Sprache", + "ota": "Osmanisch", + "os": "Ossetisch", + "rap": "Osterinsel-Sprache", + "de_AT": "\u00d6sterreichisches Deutsch", + "frs": "Ostfriesisch", + "pau": "Palau", + "pi": "Pali", + "pam": "Pampanggan-Sprache", + "pag": "Pangasinan-Sprache", + "fan": "Pangwe-Sprache", + "pa": "Panjabi", + "pap": "Papiamento", + "asa": "Pare", + "ps": "Paschtu", + "pdc": "Pennsylvaniadeutsch", + "fa": "Persisch", + "pfl": "Pf\u00e4lzisch", + "phn": "Ph\u00f6nikisch", + "pcd": "Picardisch", + "pms": "Piemontesisch", + "pdt": "Plautdietsch", + "pl": "Polnisch", + "pon": "Ponapeanisch", + "pnt": "Pontisch", + "pt": "Portugiesisch", + "qu": "Quechua", + "raj": "Rajasthani", + "rar": "Rarotonganisch", + "rm": "R\u00e4toromanisch", + "rgn": "Romagnol", + "rom": "Romani", + "rof": "Rombo", + "root": "Root", + "loz": "Rotse-Sprache", + "rtm": "Rotumanisch", + "rug": "Roviana", + "rw": "Ruandisch", + "cgg": "Rukiga", + "ro": "Rum\u00e4nisch", + "rn": "Rundi-Sprache", + "rue": "Russinisch", + "ru": "Russisch", + "rwk": "Rwa", + "ssy": "Saho", + "kho": "Sakisch", + "sam": "Samaritanisch", + "saq": "Samburu", + "sm": "Samoanisch", + "sgs": "Samogitisch", + "sad": "Sandawe-Sprache", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskrit", + "sat": "Santali", + "sc": "Sardisch", + "sas": "Sasak", + "sdc": "Sassarisch", + "stq": "Saterfriesisch", + "saz": "Saurashtra", + "shn": "Schan-Sprache", + "sli": "Schlesisch", + "szl": "Schlesisch (Polen)", + "sco": "Schottisch", + "gd": "Schottisches G\u00e4lisch", + "sv": "Schwedisch", + "fr_CH": "Schweizer Franz\u00f6sisch", + "de_CH": "Schweizer Hochdeutsch", + "gsw": "Schweizerdeutsch", + "zea": "Seel\u00e4ndisch", + "sly": "Selayar", + "sel": "Selkupisch", + "seh": "Sena", + "see": "Seneca", + "sr": "Serbisch", + "sh": "Serbo-Kroatisch", + "srr": "Serer-Sprache", + "sei": "Seri", + "ksb": "Shambala", + "sn": "Shona", + "sid": "Sidamo", + "sd": "Sindhi", + "si": "Singhalesisch", + "scn": "Sizilianisch", + "sms": "Skolt-Lappisch", + "den": "Slave", + "sk": "Slowakisch", + "sl": "Slowenisch", + "xog": "Soga", + "sog": "Sogdisch", + "so": "Somali", + "snk": "Soninke-Sprache", + "ckb": "Sorani", + "es": "Spanisch", + "srn": "Srananisch", + "sw": "Suaheli", + "alt": "S\u00fcd-Altaisch", + "nr": "S\u00fcd-Ndebele-Sprache", + "sma": "S\u00fcd-Samisch", + "st": "S\u00fcd-Sotho-Sprache", + "azb": "S\u00fcdaserbaidschanisch", + "suk": "Sukuma-Sprache", + "sux": "Sumerisch", + "su": "Sundanesisch", + "sus": "Susu", + "ss": "Swazi", + "syr": "Syrisch", + "tg": "Tadschikisch", + "tl": "Tagalog", + "ty": "Tahitisch", + "dav": "Taita", + "tly": "Talisch", + "tmh": "Tamaseq", + "zgh": "Tamazight", + "ta": "Tamilisch", + "rif": "Tarifit", + "trv": "Taroko", + "twq": "Tasawaq", + "shi": "Taschelhit", + "tt": "Tatarisch", + "ttt": "Tatisch", + "te": "Telugu", + "tem": "Temne", + "ter": "Tereno-Sprache", + "teo": "Teso", + "tet": "Tetum-Sprache", + "th": "Thail\u00e4ndisch", + "bo": "Tibetisch", + "tig": "Tigre", + "ti": "Tigrinja", + "tiv": "Tiv-Sprache", + "tli": "Tlingit-Sprache", + "tkl": "Tokelauanisch", + "to": "Tongaisch", + "chk": "Trukesisch", + "tkr": "Tsachurisch", + "tsd": "Tsakonisch", + "shu": "Tschadisch-Arabisch", + "chg": "Tschagataisch", + "cs": "Tschechisch", + "chm": "Tscheremissisch", + "ce": "Tschetschenisch", + "cv": "Tschuwaschisch", + "tsi": "Tsimshian-Sprache", + "ts": "Tsonga", + "tog": "Tsonga-Sprache", + "tn": "Tswana-Sprache", + "tcy": "Tulu", + "tum": "Tumbuka-Sprache", + "aeb": "Tunesisches Arabisch", + "tr": "T\u00fcrkisch", + "tk": "Turkmenisch", + "tru": "Turoyo", + "tyv": "Tuwinisch", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurtisch", + "uga": "Ugaritisch", + "ug": "Uigurisch", + "uk": "Ukrainisch", + "und": "Unbestimmte Sprache", + "hu": "Ungarisch", + "ur": "Urdu", + "uz": "Usbekisch", + "vai": "Vai", + "ve": "Venda-Sprache", + "vec": "Venetisch", + "vi": "Vietnamesisch", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vun": "Vunjo", + "wal": "Walamo-Sprache", + "cy": "Walisisch", + "wa": "Wallonisch", + "wae": "Walser-Dialekte", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo-Sprache", + "guc": "Way\u00fau", + "be": "Wei\u00dfrussisch", + "vep": "Wepsisch", + "vls": "Westfl\u00e4misch", + "fy": "Westfriesisch", + "wo": "Wolof", + "vot": "Wotisch", + "wuu": "Wu", + "xh": "Xhosa", + "hsn": "Xiang", + "yav": "Yangben", + "yao": "Yao-Sprache", + "yap": "Yapesisch", + "ybb": "Yemba", + "ii": "Yi", + "yo": "Yoruba", + "zap": "Zapotekisch", + "dje": "Zarma", + "zza": "Zaza", + "zen": "Zenaga", + "esu": "Zentral-Alaska-Yupik", + "dtp": "Zentral-Dusun", + "tzm": "Zentralatlas-Tamazight", + "za": "Zhuang", + "zu": "Zulu", + "zun": "Zuni-Sprache" +} diff --git a/public/intl/language/el-GR.json b/public/intl/language/el-GR.json new file mode 100644 index 0000000..eebf3c3 --- /dev/null +++ b/public/intl/language/el-GR.json @@ -0,0 +1,611 @@ +{ + "av": "\u0386\u03b2\u03b1\u03c1\u03b9\u03ba", + "ae": "\u0391\u03b2\u03b5\u03c3\u03c4\u03ac\u03bd", + "en": "\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac", + "en_US": "\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac \u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2", + "en_AU": "\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac \u0391\u03c5\u03c3\u03c4\u03c1\u03b1\u03bb\u03af\u03b1\u03c2", + "en_GB": "\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac \u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03bf\u03c5 \u0392\u03b1\u03c3\u03b9\u03bb\u03b5\u03af\u03bf\u03c5", + "en_CA": "\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac \u039a\u03b1\u03bd\u03b1\u03b4\u03ac", + "agq": "\u0391\u03b3\u03ba\u03ad\u03bc", + "und": "\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1", + "awa": "\u0391\u03b3\u03bf\u03c5\u03b1\u03bd\u03c4\u03af", + "az": "\u0391\u03b6\u03b5\u03c1\u03bc\u03c0\u03b1\u03ca\u03c4\u03b6\u03b1\u03bd\u03b9\u03ba\u03ac", + "ay": "\u0391\u03ca\u03bc\u03ac\u03c1\u03b1", + "ain": "\u0391\u03ca\u03bd\u03bf\u03cd", + "ht": "\u0391\u03ca\u03c4\u03b9\u03b1\u03bd\u03ac", + "ak": "\u0391\u03ba\u03ac\u03bd", + "akk": "\u0391\u03ba\u03ac\u03bd\u03c4\u03b9\u03b1\u03bd", + "ach": "\u0391\u03ba\u03bf\u03bb\u03af", + "bss": "\u0391\u03ba\u03cc\u03c3\u03b9", + "sq": "\u0391\u03bb\u03b2\u03b1\u03bd\u03b9\u03ba\u03ac", + "ale": "\u0391\u03bb\u03bf\u03cd\u03c4", + "am": "\u0391\u03bc\u03b1\u03c1\u03b9\u03ba\u03ac", + "ab": "\u0391\u03bc\u03c0\u03c7\u03b1\u03b6\u03b9\u03ba\u03ac", + "frs": "\u0391\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ac \u03a6\u03c1\u03b9\u03b6\u03b9\u03b1\u03bd\u03ac", + "anp": "\u0391\u03bd\u03b3\u03ba\u03b9\u03ba\u03ac", + "ada": "\u0391\u03bd\u03c4\u03ac\u03bd\u03b3\u03ba\u03bc\u03b5", + "ady": "\u0391\u03bd\u03c4\u03b9\u03b3\u03ba\u03ad\u03b1", + "zh_Hans": "\u0391\u03c0\u03bb\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b1 \u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac", + "ar": "\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac", + "shu": "\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac \u03c4\u03bf\u03c5 \u03a4\u03c3\u03b1\u03bd\u03c4", + "an": "\u0391\u03c1\u03b1\u03b3\u03ba\u03bf\u03bd\u03b9\u03ba\u03ac", + "arw": "\u0391\u03c1\u03b1\u03b3\u03bf\u03c5\u03ac\u03ba", + "arc": "\u0391\u03c1\u03b1\u03bc\u03b1\u03ca\u03ba\u03ac", + "arp": "\u0391\u03c1\u03ac\u03c0\u03b1\u03c7\u03bf", + "hy": "\u0391\u03c1\u03bc\u03b5\u03bd\u03b9\u03ba\u03ac", + "rup": "\u0391\u03c1\u03bf\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "arn": "\u0391\u03c1\u03bf\u03c5\u03ba\u03ac\u03bd\u03b9\u03b1\u03bd", + "egy": "\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u0391\u03b9\u03b3\u03c5\u03c0\u03c4\u03b9\u03b1\u03ba\u03ac", + "grc": "\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac", + "peo": "\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac", + "as": "\u0391\u03c3\u03b1\u03bc\u03b5\u03b6\u03b9\u03ba\u03ac", + "asa": "\u0386\u03c3\u03bf\u03c5", + "ast": "\u0391\u03c3\u03c4\u03bf\u03c5\u03c1\u03b9\u03b1\u03bd\u03ac", + "cch": "\u0391\u03c4\u03c3\u03ac\u03bc", + "aa": "\u0391\u03c6\u03ac\u03c1", + "af": "\u0391\u03c6\u03c1\u03b9\u03ba\u03ac\u03b1\u03bd\u03c2", + "afh": "\u0391\u03c6\u03c1\u03b9\u03c7\u03af\u03bb\u03b9", + "ace": "\u0391\u03c7\u03b9\u03bd\u03af\u03b6", + "vai": "\u0392\u03ac\u03b9", + "wae": "\u0392\u03ac\u03bb\u03c3\u03b5\u03c1", + "eu": "\u0392\u03b1\u03c3\u03ba\u03b9\u03ba\u03ac", + "ve": "\u0392\u03ad\u03bd\u03b4\u03b1", + "vi": "\u0392\u03b9\u03b5\u03c4\u03bd\u03b1\u03bc\u03b9\u03ba\u03ac", + "my": "\u0392\u03b9\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "vo": "\u0392\u03cc\u03bb\u03b1\u03c0\u03b9\u03ba", + "se": "\u0392\u03cc\u03c1\u03b5\u03b9\u03b1 \u03a3\u03ac\u03bc\u03b9", + "nso": "\u0392\u03cc\u03c1\u03b5\u03b9\u03b1 \u03a3\u03cc\u03b8\u03bf", + "frr": "\u0392\u03cc\u03c1\u03b5\u03b9\u03b1 \u03a6\u03c1\u03b9\u03b6\u03b9\u03b1\u03bd\u03ac", + "bs": "\u0392\u03bf\u03c3\u03bd\u03b9\u03b1\u03ba\u03ac", + "vot": "\u0392\u03cc\u03c4\u03b9\u03ba", + "bg": "\u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03b9\u03ba\u03ac", + "vun": "\u0392\u03bf\u03cd\u03bd\u03c4\u03b6\u03bf", + "br": "\u0392\u03c1\u03b5\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac", + "gl": "\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03bd\u03ac", + "fr": "\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac", + "fr_CH": "\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u0395\u03bb\u03b2\u03b5\u03c4\u03af\u03b1\u03c2", + "fr_CA": "\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039a\u03b1\u03bd\u03b1\u03b4\u03ac", + "de": "\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "de_AT": "\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac \u0391\u03c5\u03c3\u03c4\u03c1\u03af\u03b1\u03c2", + "de_CH": "\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac \u0395\u03bb\u03b2\u03b5\u03c4\u03af\u03b1\u03c2", + "ka": "\u0393\u03b5\u03c9\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac", + "ee": "\u0393\u03b9", + "sah": "\u0393\u03b9\u03b1\u03ba\u03bf\u03cd\u03c4", + "yav": "\u0393\u03b9\u03b1\u03bd\u03b3\u03ba\u03bc\u03c0\u03ad\u03bd", + "yao": "\u0393\u03b9\u03ac\u03bf", + "yap": "\u0393\u03b9\u03b1\u03c0\u03af\u03b6", + "ybb": "\u0393\u03b9\u03ad\u03bc\u03c0\u03b1", + "yi": "\u0393\u03af\u03bd\u03c4\u03b9\u03c2", + "yo": "\u0393\u03b9\u03bf\u03c1\u03bf\u03cd\u03bc\u03c0\u03b1", + "gaa": "\u0393\u03ba\u03b1", + "gay": "\u0393\u03ba\u03ac\u03b3\u03b9\u03bf", + "gag": "\u0393\u03ba\u03b1\u03b3\u03ba\u03ac\u03bf\u03c5\u03b6", + "lg": "\u0393\u03ba\u03ac\u03bd\u03c4\u03b1", + "gez": "\u0393\u03ba\u03b9\u03b6", + "gil": "\u0393\u03ba\u03b9\u03bb\u03bc\u03c0\u03b5\u03c1\u03c4\u03af\u03b6", + "gba": "\u0393\u03ba\u03bc\u03c0\u03ac\u03b3\u03b9\u03b1", + "bbj": "\u0393\u03ba\u03bf\u03bc\u03ac\u03bb\u03b1", + "gon": "\u0393\u03ba\u03cc\u03bd\u03c4\u03b9", + "gor": "\u0393\u03ba\u03bf\u03c1\u03bf\u03bd\u03c4\u03ac\u03bb\u03bf", + "gn": "\u0393\u03ba\u03bf\u03c5\u03b1\u03c1\u03b1\u03bd\u03af", + "gu": "\u0393\u03ba\u03bf\u03c5\u03b3\u03b9\u03b1\u03c1\u03ac\u03c4\u03b9", + "gwi": "\u0393\u03ba\u03bf\u03c5\u03af\u03c4\u03c3\u03b9\u03bd", + "guz": "\u0393\u03ba\u03bf\u03cd\u03c3\u03b9", + "grb": "\u0393\u03ba\u03c1\u03af\u03bc\u03c0\u03bf", + "hsb": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u0386\u03bd\u03c9 \u039b\u03bf\u03c5\u03c3\u03b1\u03c4\u03af\u03b1\u03c2", + "dsb": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u039a\u03ac\u03c4\u03c9 \u039b\u03bf\u03c5\u03c3\u03b1\u03c4\u03af\u03b1\u03c2", + "kea": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf\u03c5 \u0391\u03ba\u03c1\u03c9\u03c4\u03b7\u03c1\u03af\u03bf\u03c5", + "got": "\u0393\u03bf\u03c4\u03b8\u03b9\u03ba\u03ac", + "wal": "\u0393\u03bf\u03c5\u03ac\u03bb\u03b1\u03bc\u03bf", + "wa": "\u0393\u03bf\u03c5\u03b1\u03bb\u03bf\u03cd\u03bd", + "war": "\u0393\u03bf\u03c5\u03ac\u03c1\u03b5\u03b9", + "was": "\u0393\u03bf\u03c5\u03b1\u03c3\u03cc", + "wo": "\u0393\u03bf\u03c5\u03cc\u03bb\u03bf\u03c6", + "da": "\u0394\u03b1\u03bd\u03b9\u03ba\u03ac", + "fy": "\u0394\u03c5\u03c4\u03b9\u03ba\u03ac \u03a6\u03c1\u03b9\u03b6\u03b9\u03b1\u03bd\u03ac", + "he": "\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac", + "ewo": "\u0395\u03b3\u03bf\u03c5\u03cc\u03bd\u03c4\u03bf", + "eka": "\u0395\u03ba\u03b1\u03c4\u03b6\u03bf\u03cd\u03ba", + "cu": "\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03b9\u03b1\u03c3\u03c4\u03b9\u03ba\u03ac \u03a3\u03bb\u03b1\u03b2\u03b9\u03ba\u03ac", + "elx": "\u0395\u03bb\u03b1\u03bc\u03ac\u03b9\u03c4", + "gsw": "\u0395\u03bb\u03b2\u03b5\u03c4\u03b9\u03ba\u03ac \u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "el": "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac", + "ebu": "\u0388\u03bc\u03c0\u03bf\u03c5", + "myv": "\u0388\u03c1\u03b6\u03c5\u03b1", + "et": "\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac", + "eo": "\u0395\u03c3\u03c0\u03b5\u03c1\u03ac\u03bd\u03c4\u03bf", + "efi": "\u0395\u03c6\u03af\u03ba", + "zza": "\u0396\u03ac\u03b6\u03b1", + "zap": "\u0396\u03ac\u03c0\u03bf\u03c4\u03b5\u03ba", + "dje": "\u0396\u03ac\u03c1\u03bc\u03b1", + "zen": "\u0396\u03b5\u03bd\u03ac\u03b3\u03ba\u03b1", + "xh": "\u0396\u03cc\u03c3\u03b1", + "za": "\u0396\u03bf\u03c5\u03ac\u03bd\u03b3\u03ba", + "zu": "\u0396\u03bf\u03c5\u03bb\u03bf\u03cd", + "zun": "\u0396\u03bf\u03cd\u03bd\u03b9", + "bo": "\u0398\u03b9\u03b2\u03b5\u03c4\u03b9\u03b1\u03bd\u03ac", + "jv": "\u0399\u03b1\u03b2\u03b1\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac", + "ja": "\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03ac", + "ig": "\u038a\u03b3\u03ba\u03bc\u03c0\u03bf", + "chn": "\u0399\u03b4\u03b9\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03ac \u03a3\u03b9\u03bd\u03bf\u03cd\u03ba", + "ilo": "\u0399\u03bb\u03cc\u03ba\u03bf", + "iba": "\u0399\u03bc\u03c0\u03ac\u03bd", + "ibb": "\u0399\u03bc\u03c0\u03af\u03bc\u03c0\u03b9\u03bf", + "smn": "\u0399\u03bd\u03ac\u03c1\u03b9 \u03a3\u03ac\u03bc\u03b9", + "inh": "\u0399\u03bd\u03b3\u03ba\u03bf\u03cd\u03c2", + "id": "\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac", + "iu": "\u0399\u03bd\u03bf\u03c5\u03ba\u03c4\u03b9\u03c4\u03bf\u03cd\u03c4", + "ik": "\u0399\u03bd\u03bf\u03c5\u03c0\u03b9\u03ac\u03ba", + "ia": "\u0399\u03bd\u03c4\u03b5\u03c1\u03bb\u03af\u03bd\u03b3\u03ba\u03bf\u03c5\u03b1", + "ie": "\u0399\u03bd\u03c4\u03b5\u03c1\u03bb\u03af\u03bd\u03b3\u03ba\u03bf\u03c5\u03b5", + "io": "\u038a\u03bd\u03c4\u03bf", + "jrb": "\u0399\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03ac-\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac", + "jpr": "\u0399\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03ac-\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac", + "ga": "\u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "is": "\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "es": "\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac", + "es_ES": "\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac \u0395\u03c5\u03c1\u03ce\u03c0\u03b7\u03c2", + "es_419": "\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac \u039b\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ae\u03c2 \u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2", + "es_MX": "\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac \u039c\u03b5\u03be\u03b9\u03ba\u03bf\u03cd", + "it": "\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac", + "cay": "\u039a\u03b1\u03b3\u03b9\u03bf\u03cd\u03b3\u03ba\u03b1", + "kk": "\u039a\u03b1\u03b6\u03b1\u03ba\u03b9\u03ba\u03ac", + "kkj": "\u039a\u03ac\u03ba\u03bf", + "kl": "\u039a\u03b1\u03bb\u03b1\u03ac\u03bb\u03b9\u03c3\u03bf\u03c5\u03c4", + "kln": "\u039a\u03b1\u03bb\u03b5\u03bd\u03c4\u03b6\u03af\u03bd", + "xal": "\u039a\u03b1\u03bb\u03bc\u03af\u03ba", + "ch": "\u039a\u03b1\u03bc\u03cc\u03c1\u03c1\u03bf", + "kam": "\u039a\u03ac\u03bc\u03c0\u03b1", + "kbd": "\u039a\u03b1\u03bc\u03c0\u03b1\u03c1\u03bd\u03c4\u03b9\u03b1\u03bd\u03ac", + "kab": "\u039a\u03b1\u03bc\u03c0\u03af\u03bb\u03b5", + "km": "\u039a\u03b1\u03bc\u03c0\u03bf\u03c4\u03b6\u03b9\u03b1\u03bd\u03ac", + "kn": "\u039a\u03b1\u03bd\u03ac\u03bd\u03c4\u03b1", + "kbl": "\u039a\u03b1\u03bd\u03ad\u03bc\u03c0\u03bf\u03c5", + "kr": "\u039a\u03b1\u03bd\u03bf\u03cd\u03c1\u03b9", + "cad": "\u039a\u03ac\u03bd\u03c4\u03bf", + "yue": "\u039a\u03b1\u03bd\u03c4\u03bf\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1", + "kaw": "\u039a\u03ac\u03bf\u03c5\u03b9", + "kaa": "\u039a\u03ac\u03c1\u03b1-\u039a\u03b1\u03bb\u03c0\u03ac\u03ba", + "krc": "\u039a\u03b1\u03c1\u03b1\u03c4\u03c3\u03ac\u03b9-\u039c\u03c0\u03b1\u03bb\u03ba\u03ac\u03c1", + "krl": "\u039a\u03b1\u03c1\u03b5\u03bb\u03b9\u03b1\u03ba\u03ac", + "car": "\u039a\u03b1\u03c1\u03af\u03bc\u03c0", + "kha": "\u039a\u03ac\u03c3\u03b9", + "ks": "\u039a\u03b1\u03c3\u03bc\u03af\u03c1\u03b9", + "csb": "\u039a\u03b1\u03c3\u03bf\u03cd\u03bc\u03c0\u03b9\u03b1\u03bd", + "ca": "\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac", + "kac": "\u039a\u03b1\u03c4\u03c3\u03af\u03bd", + "nds": "\u039a\u03ac\u03c4\u03c9 \u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "nmg": "\u039a\u03b2\u03ac\u03c3\u03b9\u03bf", + "ceb": "\u039a\u03b5\u03bc\u03c0\u03bf\u03c5\u03ac\u03bd\u03bf", + "qu": "\u039a\u03b5\u03c4\u03c3\u03bf\u03cd\u03b1", + "ki": "\u039a\u03b9\u03ba\u03bf\u03cd\u03b3\u03b9\u03bf\u03c5", + "kmb": "\u039a\u03b9\u03bc\u03c0\u03bf\u03cd\u03bd\u03c4\u03bf\u03c5", + "zh": "\u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac", + "rw": "\u039a\u03b9\u03bd\u03b9\u03b1\u03c1\u03b2\u03ac\u03bd\u03c4\u03b1", + "quc": "\u039a\u03b9\u03c3\u03ad", + "nwc": "\u039a\u03bb\u03b1\u03c3\u03b9\u03ba\u03ac \u039d\u03b5\u03bf\u03c5\u03ac\u03c1\u03b9", + "syc": "\u039a\u03bb\u03b1\u03c3\u03b9\u03ba\u03ac \u03a3\u03c5\u03c1\u03b9\u03b1\u03ba\u03ac", + "tlh": "\u039a\u03bb\u03af\u03bd\u03b3\u03ba\u03bf\u03bd", + "khq": "\u039a\u03cc\u03b9\u03c1\u03b1 \u03a4\u03c3\u03af\u03bd\u03b9", + "ses": "\u039a\u03bf\u03ca\u03c1\u03b1\u03bc\u03c0\u03cc\u03c1\u03bf \u03a3\u03ad\u03bd\u03b9", + "ksh": "\u039a\u03bf\u03bb\u03c9\u03bd\u03b9\u03ba\u03ac", + "bkm": "\u039a\u03bf\u03bc", + "kv": "\u039a\u03cc\u03bc\u03b9", + "koi": "\u039a\u03cc\u03bc\u03b9-\u03a0\u03b5\u03c1\u03bc\u03b9\u03ac\u03ba", + "swb": "\u039a\u03bf\u03bc\u03cc\u03c1\u03c1\u03b9\u03b1", + "kg": "\u039a\u03bf\u03bd\u03b3\u03ba\u03cc", + "swc": "\u039a\u03bf\u03bd\u03b3\u03ba\u03cc \u03a3\u03bf\u03c5\u03b1\u03c7\u03af\u03bb\u03b9", + "kok": "\u039a\u03bf\u03bd\u03ba\u03ac\u03bd\u03b9", + "cop": "\u039a\u03bf\u03c0\u03c4\u03b9\u03ba\u03ac", + "ko": "\u039a\u03bf\u03c1\u03b5\u03b1\u03c4\u03b9\u03ba\u03ac", + "kw": "\u039a\u03cc\u03c1\u03bd\u03b9\u03c2", + "kfo": "\u039a\u03cc\u03c1\u03bf", + "co": "\u039a\u03bf\u03c1\u03c3\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ac", + "kos": "\u039a\u03bf\u03c3\u03c1\u03b1\u03b5\u03bd\u03b9\u03ba\u03ac", + "kho": "\u039a\u03bf\u03c4\u03b1\u03bd\u03b9\u03ba\u03ac", + "kj": "\u039a\u03bf\u03c5\u03b1\u03bd\u03b9\u03b3\u03b9\u03ac\u03bc\u03b1", + "kum": "\u039a\u03bf\u03c5\u03bc\u03b3\u03b9\u03bf\u03cd\u03ba", + "ku": "\u039a\u03bf\u03c5\u03c1\u03b4\u03b9\u03ba\u03ac", + "ckb": "\u039a\u03bf\u03c5\u03c1\u03b4\u03b9\u03ba\u03ac \u03a3\u03bf\u03c1\u03ac\u03bd\u03b9", + "kru": "\u039a\u03bf\u03c5\u03c1\u03bf\u03cd\u03c7", + "kut": "\u039a\u03bf\u03c5\u03c4\u03b5\u03bd\u03ac\u03b9", + "kpe": "\u039a\u03c0\u03ad\u03bb\u03b5", + "cr": "\u039a\u03c1\u03b9", + "mus": "\u039a\u03c1\u03b9\u03ba", + "hr": "\u039a\u03c1\u03bf\u03b1\u03c4\u03b9\u03ba\u03ac", + "ky": "\u039a\u03c5\u03c1\u03b3\u03b9\u03b6\u03b9\u03ba\u03ac", + "lad": "\u039b\u03b1\u03b4\u03af\u03bd\u03bf", + "lez": "\u039b\u03b1\u03b6\u03b3\u03ba\u03b9\u03ac\u03bd", + "lkt": "\u039b\u03b1\u03ba\u03cc\u03c4\u03b1", + "lam": "\u039b\u03ac\u03bc\u03c0\u03b1", + "lag": "\u039b\u03ac\u03bd\u03b3\u03ba\u03b9", + "lo": "\u039b\u03b1\u03bf\u03b8\u03b9\u03b1\u03bd\u03ac", + "la": "\u039b\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac", + "lah": "\u039b\u03ac\u03c7\u03b4\u03b1", + "lv": "\u039b\u03b5\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac", + "be": "\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03b9\u03ba\u03ac", + "lt": "\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03b9\u03ba\u03ac", + "li": "\u039b\u03b9\u03bc\u03b2\u03bf\u03c5\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac", + "ln": "\u039b\u03b9\u03bd\u03b3\u03ba\u03ac\u03bb\u03b1", + "loz": "\u039b\u03cc\u03b6\u03b9", + "jbo": "\u039b\u03cc\u03b6\u03bc\u03c0\u03b1\u03bd", + "lui": "\u039b\u03bf\u03c5\u03b9\u03c3\u03ad\u03bd\u03bf", + "smj": "\u039b\u03bf\u03cd\u03bb\u03b5 \u03a3\u03ac\u03bc\u03b9", + "lu": "\u039b\u03bf\u03cd\u03bc\u03c0\u03b1-\u039a\u03b1\u03c4\u03ac\u03bd\u03b3\u03ba\u03b1", + "lua": "\u039b\u03bf\u03cd\u03bc\u03c0\u03b1-\u039b\u03bf\u03c5\u03bb\u03bf\u03cd\u03b1", + "lun": "\u039b\u03bf\u03cd\u03bd\u03c4\u03b1", + "lb": "\u039b\u03bf\u03c5\u03be\u03b5\u03bc\u03b2\u03bf\u03c5\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac", + "luo": "\u039b\u03bf\u03cd\u03bf", + "lus": "\u039b\u03bf\u03c5\u03c3\u03ac\u03b9", + "luy": "\u039b\u03bf\u03c5\u03c7\u03af\u03b1", + "mag": "\u039c\u03b1\u03b3\u03ba\u03ac\u03c7\u03b9", + "mai": "\u039c\u03b1\u03ca\u03c4\u03c7\u03af\u03bb\u03b9", + "mak": "\u039c\u03b1\u03ba\u03b1\u03b6\u03ac\u03c1", + "kde": "\u039c\u03b1\u03ba\u03cc\u03bd\u03c4\u03b5", + "mgh": "\u039c\u03b1\u03ba\u03bf\u03cd\u03b2\u03b1-\u039c\u03ad\u03c4\u03bf", + "mg": "\u039c\u03b1\u03bb\u03b1\u03b3\u03ac\u03c3\u03b9", + "ml": "\u039c\u03b1\u03bb\u03b1\u03b3\u03b9\u03b1\u03bb\u03ac\u03bc", + "ms": "\u039c\u03b1\u03bb\u03ac\u03b9", + "mt": "\u039c\u03b1\u03bb\u03c4\u03b5\u03b6\u03b9\u03ba\u03ac", + "mde": "\u039c\u03ac\u03bc\u03c0\u03b1", + "mdr": "\u039c\u03b1\u03bd\u03b4\u03ac\u03c1", + "mni": "\u039c\u03b1\u03bd\u03b9\u03c0\u03bf\u03cd\u03c1\u03b9", + "gv": "\u039c\u03b1\u03bd\u03be", + "man": "\u039c\u03b1\u03bd\u03c4\u03af\u03bd\u03b3\u03ba\u03bf", + "mad": "\u039c\u03b1\u03bd\u03c4\u03bf\u03c5\u03c1\u03af\u03b6", + "mnc": "\u039c\u03b1\u03bd\u03c4\u03c3\u03bf\u03cd", + "mi": "\u039c\u03ac\u03bf\u03c1\u03b9", + "mr": "\u039c\u03b1\u03c1\u03ac\u03b8\u03b9", + "mwr": "\u039c\u03b1\u03c1\u03b3\u03bf\u03c5\u03ac\u03c1\u03b9", + "chm": "\u039c\u03ac\u03c1\u03b9", + "mh": "\u039c\u03ac\u03c1\u03c3\u03b1\u03bb", + "mas": "\u039c\u03b1\u03c3\u03ac\u03b9", + "maf": "\u039c\u03ac\u03c6\u03b1", + "jmc": "\u039c\u03ac\u03c7\u03b1\u03bc\u03b5", + "men": "\u039c\u03ad\u03bd\u03c4\u03b5", + "byv": "\u039c\u03b5\u03bd\u03c4\u03bf\u03cd\u03bc\u03c0\u03b1", + "mer": "\u039c\u03b5\u03c1\u03bf\u03cd", + "enm": "\u039c\u03ad\u03c3\u03b1 \u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac", + "gmh": "\u039c\u03ad\u03c3\u03b1 \u0386\u03bd\u03c9 \u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "frm": "\u039c\u03ad\u03c3\u03b1 \u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac", + "mga": "\u039c\u03ad\u03c3\u03b1 \u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "dum": "\u039c\u03ad\u03c3\u03b1 \u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "mgo": "\u039c\u03b5\u03c4\u03ac", + "mye": "\u039c\u03b9\u03ad\u03bd\u03b5", + "mic": "\u039c\u03b9\u03ba\u03bc\u03ac\u03ba", + "min": "\u039c\u03b9\u03bd\u03b1\u03bd\u03b3\u03ba\u03b1\u03bc\u03c0\u03ac\u03bf\u03c5", + "mwl": "\u039c\u03b9\u03c1\u03b1\u03bd\u03c4\u03b5\u03b6\u03b9\u03ba\u03ac", + "mn": "\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03b9\u03ba\u03ac", + "mdf": "\u039c\u03cc\u03ba\u03c3\u03b1", + "ro_MD": "\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03b9\u03ba\u03ac", + "lol": "\u039c\u03cc\u03bd\u03b3\u03ba\u03bf", + "mfe": "\u039c\u03bf\u03c1\u03af\u03c3\u03b9\u03b5\u03bd", + "mos": "\u039c\u03cc\u03c3\u03b9", + "mua": "\u039c\u03bf\u03c5\u03bd\u03c4\u03ac\u03bd\u03b3\u03ba", + "moh": "\u039c\u03bf\u03c7\u03cc\u03ba", + "ban": "\u039c\u03c0\u03b1\u03bb\u03b9\u03bd\u03af\u03b6", + "bal": "\u039c\u03c0\u03b1\u03bb\u03bf\u03cd\u03c4\u03c3\u03b9", + "bax": "\u039c\u03c0\u03b1\u03bc\u03bf\u03cd\u03bd", + "bm": "\u039c\u03c0\u03b1\u03bc\u03c0\u03ac\u03c1\u03b1", + "bas": "\u039c\u03c0\u03ac\u03c3\u03b1", + "ba": "\u039c\u03c0\u03b1\u03c3\u03ba\u03af\u03c1", + "ksf": "\u039c\u03c0\u03ac\u03c6\u03b9\u03b1", + "bfd": "\u039c\u03c0\u03b1\u03c6\u03bf\u03cd\u03c4", + "bej": "\u039c\u03c0\u03ad\u03b6\u03b1", + "bem": "\u039c\u03c0\u03ad\u03bc\u03c0\u03b1", + "bez": "\u039c\u03c0\u03ad\u03bd\u03b1", + "bn": "\u039c\u03c0\u03b5\u03bd\u03b3\u03ba\u03ac\u03bb\u03b9", + "bik": "\u039c\u03c0\u03b9\u03ba\u03cc\u03bb", + "bin": "\u039c\u03c0\u03af\u03bd\u03b9", + "bi": "\u039c\u03c0\u03b9\u03c3\u03bb\u03ac\u03bc\u03b1", + "byn": "\u039c\u03c0\u03bb\u03b9\u03bd", + "bho": "\u039c\u03c0\u03bf\u03b6\u03c0\u03bf\u03cd\u03c1\u03b9", + "brx": "\u039c\u03c0\u03cc\u03bd\u03c4\u03bf", + "bug": "\u039c\u03c0\u03bf\u03c5\u03b3\u03ba\u03af\u03b6", + "bum": "\u039c\u03c0\u03bf\u03c5\u03bb\u03bf\u03cd", + "bua": "\u039c\u03c0\u03bf\u03c5\u03c1\u03b9\u03ac\u03c4", + "bra": "\u039c\u03c0\u03c1\u03b1\u03c4\u03b6", + "nqo": "\u039d\u2019\u039a\u03bf", + "nv": "\u039d\u03ac\u03b2\u03b1\u03c7\u03bf", + "naq": "\u039d\u03ac\u03bc\u03b1", + "na": "\u039d\u03b1\u03bf\u03cd\u03c1\u03bf\u03c5", + "nap": "\u039d\u03b1\u03c0\u03bf\u03bb\u03b9\u03c4\u03b1\u03bd\u03b9\u03ba\u03ac", + "sba": "\u039d\u03b3\u03ba\u03b1\u03bc\u03c0\u03ad\u03b9", + "nnh": "\u039d\u03b3\u03ba\u03b9\u03b5\u03bc\u03c0\u03bf\u03cd\u03bd", + "jgo": "\u039d\u03b3\u03ba\u03cc\u03bc\u03c0\u03b1", + "new": "\u039d\u03b5\u03b3\u03bf\u03c5\u03ac\u03c1\u03b9", + "ne": "\u039d\u03b5\u03c0\u03ac\u03bb\u03b9", + "nzi": "\u039d\u03b6\u03af\u03bc\u03b1", + "nym": "\u039d\u03b9\u03b1\u03bc\u03b3\u03bf\u03c5\u03ad\u03b6\u03b9", + "nyn": "\u039d\u03b9\u03b1\u03bd\u03ba\u03cc\u03bb\u03b5", + "ny": "\u039d\u03b9\u03ac\u03bd\u03c4\u03b6\u03b1", + "nia": "\u039d\u03af\u03b1\u03c2", + "tog": "\u039d\u03b9\u03ac\u03c3\u03b1 \u03a4\u03cc\u03bd\u03b3\u03ba\u03b1", + "nyo": "\u039d\u03b9\u03cc\u03c1\u03bf", + "niu": "\u039d\u03b9\u03bf\u03cd\u03b5\u03b1\u03bd", + "nog": "\u039d\u03bf\u03b3\u03ba\u03ac\u03b9", + "no": "\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03b9\u03ba\u03ac", + "nb": "\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03b9\u03ba\u03ac \u039c\u03c0\u03bf\u03ba\u03bc\u03ac\u03bb", + "nn": "\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03b9\u03ba\u03ac \u039d\u03b9\u03bd\u03cc\u03c1\u03c3\u03ba", + "alt": "\u039d\u03cc\u03c4\u03b9\u03b1 \u0391\u03bb\u03b1\u03c4\u03b1\u03ca\u03ba\u03ac", + "sma": "\u039d\u03cc\u03c4\u03b9\u03b1 \u03a3\u03ac\u03bc\u03b9", + "st": "\u039d\u03cc\u03c4\u03b9\u03b1 \u03a3\u03cc\u03b8\u03bf", + "nus": "\u039d\u03bf\u03c5\u03ad\u03c1", + "dzg": "\u039d\u03c4\u03b1\u03b6\u03ac\u03b3\u03ba\u03b1", + "dak": "\u039d\u03c4\u03b1\u03ba\u03cc\u03c4\u03b1", + "dar": "\u039d\u03c4\u03ac\u03c1\u03b3\u03ba\u03bf\u03c5\u03b1", + "del": "\u039d\u03c4\u03ad\u03bb\u03b1\u03b3\u03bf\u03c5\u03b5\u03c1", + "nd": "\u039d\u03c4\u03b5\u03bc\u03c0\u03ad\u03bb\u03b5 \u0392\u03bf\u03c1\u03c1\u03ac", + "nr": "\u039d\u03c4\u03b5\u03bc\u03c0\u03ad\u03bb\u03b5 \u039d\u03cc\u03c4\u03bf\u03c5", + "dz": "\u039d\u03c4\u03b6\u03cc\u03bd\u03b3\u03ba\u03c7\u03b1", + "dv": "\u039d\u03c4\u03b9\u03b2\u03ad\u03c7\u03b9", + "din": "\u039d\u03c4\u03af\u03bd\u03ba\u03b1", + "dyu": "\u039d\u03c4\u03bf\u03b3\u03b9\u03bf\u03cd\u03bb\u03b1", + "doi": "\u039d\u03c4\u03cc\u03b3\u03ba\u03c1\u03b9", + "dgr": "\u039d\u03c4\u03cc\u03b3\u03ba\u03c1\u03b9\u03bc\u03c0", + "ng": "\u039d\u03c4\u03cc\u03bd\u03b3\u03ba\u03b1", + "dua": "\u039d\u03c4\u03bf\u03c5\u03ac\u03bb\u03b1", + "oj": "\u039f\u03b6\u03b9\u03b2\u03af\u03b3\u03bf\u03c5\u03b1", + "ota": "\u039f\u03b8\u03c9\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac \u03a4\u03bf\u03c5\u03c1\u03ba\u03b9\u03ba\u03ac", + "oc": "\u039f\u03ba\u03c3\u03b9\u03c4\u03b1\u03bd\u03b9\u03ba\u03ac", + "nl": "\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "or": "\u039f\u03c1\u03af\u03b3\u03b9\u03b1", + "om": "\u039f\u03c1\u03cc\u03bc\u03bf", + "osa": "\u039f\u03c3\u03ac\u03b6", + "os": "\u039f\u03c3\u03b5\u03c4\u03b9\u03ba\u03ac", + "cy": "\u039f\u03c5\u03b1\u03bb\u03b9\u03ba\u03ac", + "hu": "\u039f\u03c5\u03b3\u03b3\u03c1\u03b9\u03ba\u03ac", + "uga": "\u039f\u03c5\u03b3\u03ba\u03b1\u03c1\u03af\u03c4\u03b9\u03ba", + "uz": "\u039f\u03c5\u03b6\u03bc\u03c0\u03b5\u03ba\u03b9\u03ba\u03ac", + "ug": "\u039f\u03c5\u03b9\u03b3\u03bf\u03c5\u03c1\u03b9\u03ba\u03ac", + "uk": "\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03b9\u03ba\u03ac", + "umb": "\u039f\u03c5\u03bc\u03c0\u03bf\u03cd\u03bd\u03c4\u03bf\u03c5", + "udm": "\u039f\u03c5\u03bd\u03c4\u03bc\u03bf\u03cd\u03c1\u03c4", + "ur": "\u039f\u03c5\u03c1\u03bd\u03c4\u03bf\u03cd", + "ang": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac", + "goh": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u0386\u03bd\u03c9 \u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "fro": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac", + "sga": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "non": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03b9\u03ba\u03ac", + "pro": "\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u03a0\u03c1\u03bf\u03b2\u03b5\u03bd\u03c3\u03b9\u03ac\u03bb", + "pau": "\u03a0\u03b1\u03bb\u03ac\u03bf\u03c5\u03b1\u03bd", + "pi": "\u03a0\u03ac\u03bb\u03b9", + "pam": "\u03a0\u03b1\u03bc\u03c0\u03ac\u03bd\u03b3\u03ba\u03b1", + "pag": "\u03a0\u03b1\u03bd\u03b3\u03ba\u03b1\u03c3\u03b9\u03bd\u03ac\u03bd", + "pa": "\u03a0\u03b1\u03bd\u03c4\u03b6\u03b1\u03c0\u03b9\u03ba\u03ac", + "pap": "\u03a0\u03b1\u03c0\u03b9\u03b1\u03bc\u03ad\u03bd\u03c4\u03bf", + "zh_Hant": "\u03a0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ac \u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac", + "ps": "\u03a0\u03ac\u03c3\u03c4\u03bf", + "pal": "\u03a0\u03b1\u03c7\u03bb\u03ac\u03b2\u03b9", + "fa": "\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac", + "mul": "\u03a0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ad\u03c2 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b5\u03c2", + "pl": "\u03a0\u03bf\u03bb\u03c9\u03bd\u03b9\u03ba\u03ac", + "pt": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac", + "pt_BR": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac \u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1\u03c2", + "pt_PT": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac \u0395\u03c5\u03c1\u03ce\u03c0\u03b7\u03c2", + "pon": "\u03a0\u03bf\u03c7\u03c0\u03ad\u03b9\u03b1\u03bd", + "raj": "\u03a1\u03b1\u03b6\u03b1\u03c3\u03b8\u03ac\u03bd\u03b9", + "rap": "\u03a1\u03b1\u03c0\u03b1\u03bd\u03bf\u03cd\u03b9", + "rar": "\u03a1\u03b1\u03c1\u03bf\u03c4\u03bf\u03bd\u03b3\u03ba\u03ac\u03bd", + "rom": "\u03a1\u03bf\u03bc\u03b1\u03bd\u03af", + "rm": "\u03a1\u03bf\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "rof": "\u03a1\u03cc\u03bc\u03c0\u03bf", + "rwk": "\u03a1\u03bf\u03c5\u03ac", + "ro": "\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac", + "rn": "\u03a1\u03bf\u03cd\u03bd\u03c4\u03b9", + "root": "\u03a1\u03bf\u03c5\u03c4", + "ru": "\u03a1\u03c9\u03c3\u03b9\u03ba\u03ac", + "sam": "\u03a3\u03b1\u03bc\u03b1\u03c1\u03af\u03c4\u03b9\u03ba\u03b1 \u0391\u03c1\u03b1\u03bc\u03b1\u03ca\u03ba\u03ac", + "sm": "\u03a3\u03b1\u03bc\u03cc\u03b1\u03bd", + "ksb": "\u03a3\u03ac\u03bc\u03c0\u03b1\u03bb\u03b1", + "saq": "\u03a3\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03bf\u03c5", + "shn": "\u03a3\u03b1\u03bd", + "sg": "\u03a3\u03ac\u03bd\u03b3\u03ba\u03bf", + "sbp": "\u03a3\u03ac\u03bd\u03b3\u03ba\u03bf\u03c5", + "sa": "\u03a3\u03b1\u03bd\u03c3\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac", + "sad": "\u03a3\u03b1\u03bd\u03c4\u03ac\u03b3\u03bf\u03c5\u03b5", + "sat": "\u03a3\u03b1\u03bd\u03c4\u03ac\u03bb\u03b9", + "sc": "\u03a3\u03b1\u03c1\u03b4\u03b9\u03bd\u03b9\u03ba\u03ac", + "sas": "\u03a3\u03b1\u03c3\u03ac\u03ba", + "ssy": "\u03a3\u03ac\u03c7\u03bf", + "chy": "\u03a3\u03b5\u03b3\u03b9\u03ad\u03bd", + "sel": "\u03a3\u03b5\u03bb\u03ba\u03bf\u03cd\u03c0", + "seh": "\u03a3\u03ad\u03bd\u03b1", + "see": "\u03a3\u03ad\u03bd\u03b5\u03ba\u03b1", + "sr": "\u03a3\u03b5\u03c1\u03b2\u03b9\u03ba\u03ac", + "sh": "\u03a3\u03b5\u03c1\u03b2\u03bf\u03ba\u03c1\u03bf\u03b1\u03c4\u03b9\u03ba\u03ac", + "srr": "\u03a3\u03b5\u03c1\u03ad\u03c1", + "scn": "\u03a3\u03b9\u03ba\u03b5\u03bb\u03b9\u03b1\u03bd\u03ac", + "ii": "\u03a3\u03b9\u03ba\u03bf\u03c5\u03ac\u03bd \u0393\u03b9", + "bla": "\u03a3\u03b9\u03ba\u03c3\u03af\u03ba\u03b1", + "sid": "\u03a3\u03b9\u03bd\u03c4\u03ac\u03bc\u03bf", + "sd": "\u03a3\u03af\u03bd\u03c4\u03b9", + "si": "\u03a3\u03b9\u03bd\u03c7\u03b1\u03bb\u03b5\u03b6\u03b9\u03ba\u03ac", + "sms": "\u03a3\u03ba\u03bf\u03bb\u03c4 \u03a3\u03ac\u03bc\u03b9", + "sco": "\u03a3\u03ba\u03c9\u03c4\u03b9\u03ba\u03ac", + "gd": "\u03a3\u03ba\u03c9\u03c4\u03b9\u03ba\u03ac \u039a\u03b5\u03bb\u03c4\u03b9\u03ba\u03ac", + "den": "\u03a3\u03bb\u03b1\u03b2\u03b9\u03ba\u03ac", + "mk": "\u03a3\u03bb\u03b1\u03b2\u03bf\u03bc\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03b9\u03ba\u03ac", + "sk": "\u03a3\u03bb\u03bf\u03b2\u03b1\u03ba\u03b9\u03ba\u03ac", + "sl": "\u03a3\u03bb\u03bf\u03b2\u03b5\u03bd\u03b9\u03ba\u03ac", + "xog": "\u03a3\u03cc\u03b3\u03ba\u03b1", + "sog": "\u03a3\u03bf\u03b3\u03ba\u03bd\u03c4\u03b9\u03ad\u03bd", + "so": "\u03a3\u03bf\u03bc\u03ac\u03bb\u03b9", + "snk": "\u03a3\u03bf\u03bd\u03af\u03bd\u03ba\u03b5", + "ss": "\u03a3\u03bf\u03c5\u03ac\u03c4\u03b9", + "sw": "\u03a3\u03bf\u03c5\u03b1\u03c7\u03af\u03bb\u03b9", + "su": "\u03a3\u03bf\u03c5\u03b4\u03b1\u03bd\u03b9\u03ba\u03ac", + "sv": "\u03a3\u03bf\u03c5\u03b7\u03b4\u03b9\u03ba\u03ac", + "suk": "\u03a3\u03bf\u03c5\u03ba\u03bf\u03cd\u03bc\u03b1", + "sux": "\u03a3\u03bf\u03c5\u03bc\u03b5\u03c1\u03b9\u03ba\u03ac", + "sus": "\u03a3\u03bf\u03cd\u03c3\u03bf\u03c5", + "srn": "\u03a3\u03c1\u03b1\u03bd\u03ac\u03c1 \u03a4\u03cc\u03bd\u03b3\u03ba\u03bf", + "ar_001": "\u03a3\u03cd\u03b3\u03c7\u03c1\u03bf\u03bd\u03b1 \u03a4\u03c5\u03c0\u03b9\u03ba\u03ac \u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac", + "zbl": "\u03a3\u03cd\u03bc\u03b2\u03bf\u03bb\u03b1 Bliss", + "syr": "\u03a3\u03c5\u03c1\u03b9\u03b1\u03ba\u03ac", + "sn": "\u03a3\u03c7\u03cc\u03bd\u03b1", + "tl": "\u03a4\u03b1\u03b3\u03ba\u03b1\u03bb\u03cc\u03b3\u03ba", + "th": "\u03a4\u03b1\u03ca\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "dav": "\u03a4\u03ac\u03b9\u03c4\u03b1", + "ty": "\u03a4\u03b1\u03ca\u03c4\u03b9\u03b1\u03bd\u03ac", + "tzm": "\u03a4\u03b1\u03bc\u03b1\u03b6\u03af\u03c4 \u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03bf\u03cd \u039c\u03b1\u03c1\u03cc\u03ba\u03bf", + "tmh": "\u03a4\u03b1\u03bc\u03b1\u03c3\u03ad\u03ba", + "ta": "\u03a4\u03b1\u03bc\u03af\u03bb", + "trv": "\u03a4\u03b1\u03c1\u03cc\u03ba\u03bf", + "twq": "\u03a4\u03b1\u03c3\u03b1\u03b2\u03ac\u03ba", + "shi": "\u03a4\u03b1\u03c3\u03b5\u03bb\u03c7\u03af\u03c4", + "tt": "\u03a4\u03b1\u03c4\u03ac\u03c1", + "tg": "\u03a4\u03b1\u03c4\u03b6\u03af\u03ba", + "te": "\u03a4\u03b5\u03bb\u03bf\u03cd\u03b3\u03ba\u03bf\u03c5", + "ter": "\u03a4\u03b5\u03c1\u03ad\u03bd\u03bf", + "teo": "\u03a4\u03ad\u03c3\u03bf", + "tet": "\u03a4\u03ad\u03c4\u03bf\u03c5\u03bc", + "dyo": "\u03a4\u03b6\u03cc\u03bb\u03b1-\u03a6\u03cc\u03bd\u03b9", + "kaj": "\u03a4\u03b6\u03bf\u03c5", + "tiv": "\u03a4\u03b9\u03b2", + "tig": "\u03a4\u03af\u03b3\u03ba\u03c1\u03b5", + "ti": "\u03a4\u03b9\u03b3\u03ba\u03c1\u03af\u03bd\u03c5\u03b1", + "tem": "\u03a4\u03af\u03bc\u03bd\u03b5", + "tli": "\u03a4\u03bb\u03af\u03bd\u03b3\u03ba\u03b9\u03c4", + "tpi": "\u03a4\u03bf\u03ba \u03a0\u03b9\u03c3\u03af\u03bd", + "tkl": "\u03a4\u03bf\u03ba\u03b5\u03bb\u03ac\u03bf\u03c5", + "to": "\u03a4\u03bf\u03bd\u03b3\u03ba\u03b1\u03bd\u03b9\u03ba\u03ac", + "kcg": "\u03a4\u03bf\u03c5\u03ac\u03c0", + "tvl": "\u03a4\u03bf\u03c5\u03b2\u03b1\u03bb\u03bf\u03cd", + "tyv": "\u03a4\u03bf\u03c5\u03b2\u03af\u03bd\u03b9\u03b1\u03bd", + "tw": "\u03a4\u03bf\u03cd\u03b9", + "tum": "\u03a4\u03bf\u03c5\u03bc\u03c0\u03bf\u03cd\u03ba\u03b1", + "tr": "\u03a4\u03bf\u03c5\u03c1\u03ba\u03b9\u03ba\u03ac", + "crh": "\u03a4\u03bf\u03c5\u03c1\u03ba\u03b9\u03ba\u03ac \u039a\u03c1\u03b9\u03bc\u03b1\u03af\u03b1\u03c2", + "tk": "\u03a4\u03bf\u03c5\u03c1\u03ba\u03bc\u03b5\u03bd\u03b9\u03ba\u03ac", + "chg": "\u03a4\u03c3\u03b1\u03b3\u03ba\u03b1\u03c4\u03ac\u03b9", + "chr": "\u03a4\u03c3\u03b5\u03c1\u03cc\u03ba\u03b9", + "ce": "\u03a4\u03c3\u03ad\u03c4\u03c3\u03bd\u03b9\u03b1\u03bd", + "cs": "\u03a4\u03c3\u03b5\u03c7\u03b9\u03ba\u03ac", + "cgg": "\u03a4\u03c3\u03af\u03b3\u03ba\u03b1", + "tn": "\u03a4\u03c3\u03b9\u03b3\u03bf\u03c5\u03ac\u03bd\u03b1", + "chb": "\u03a4\u03c3\u03af\u03bc\u03c0\u03c4\u03c3\u03b1", + "tsi": "\u03a4\u03c3\u03af\u03bc\u03c3\u03b9\u03b1\u03bd", + "chp": "\u03a4\u03c3\u03af\u03c0\u03b9\u03bf\u03c5\u03b1\u03bd", + "cho": "\u03a4\u03c3\u03bf\u03ba\u03c4\u03ac\u03bf\u03c5", + "ts": "\u03a4\u03c3\u03cc\u03bd\u03b3\u03ba\u03b1", + "chk": "\u03a4\u03c3\u03bf\u03c5\u03ba\u03af\u03b6\u03b9", + "zgh": "\u03a4\u03c5\u03c0\u03b9\u03ba\u03ac \u03a4\u03b1\u03bc\u03b1\u03b6\u03af\u03b3\u03ba\u03c4 \u039c\u03b1\u03c1\u03cc\u03ba\u03bf\u03c5", + "fan": "\u03a6\u03b1\u03bd\u03b3\u03ba", + "fat": "\u03a6\u03ac\u03bd\u03c4\u03b9", + "fo": "\u03a6\u03b1\u03c1\u03cc\u03b5", + "fil": "\u03a6\u03b9\u03bb\u03b9\u03c0\u03c0\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac", + "fi": "\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "fj": "\u03a6\u03af\u03c4\u03b6\u03b9", + "nl_BE": "\u03a6\u03bb\u03b1\u03bc\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac", + "phn": "\u03a6\u03bf\u03b9\u03bd\u03b9\u03ba\u03b9\u03ba\u03ac", + "fon": "\u03a6\u03bf\u03bd", + "ff": "\u03a6\u03bf\u03c5\u03bb\u03ac\u03c7", + "fur": "\u03a6\u03c1\u03b9\u03bf\u03cd\u03bb\u03b9\u03b1\u03bd", + "haw": "\u03a7\u03b1\u03b2\u03b1\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac", + "hai": "\u03a7\u03ac\u03b9\u03bd\u03c4\u03b1", + "ha": "\u03a7\u03ac\u03bf\u03c5\u03c3\u03b1", + "hz": "\u03a7\u03b5\u03c1\u03ad\u03c1\u03bf", + "hil": "\u03a7\u03b9\u03bb\u03b9\u03b3\u03ba\u03b1\u03b3\u03b9\u03cc\u03bd", + "hi": "\u03a7\u03af\u03bd\u03c4\u03b9", + "ho": "\u03a7\u03af\u03c1\u03b9 \u039c\u03cc\u03c4\u03bf\u03c5", + "hit": "\u03a7\u03b9\u03c4\u03af\u03c4\u03b5", + "hmn": "\u03a7\u03bc\u03bf\u03bd\u03b3\u03ba", + "cv": "\u03a7\u03bf\u03c5\u03b2\u03ac\u03c2", + "hup": "\u03a7\u03bf\u03cd\u03c0\u03b1", + "zxx": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03b3\u03bb\u03c9\u03c3\u03c3\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/en-GB.json b/public/intl/language/en-GB.json new file mode 100644 index 0000000..00babb8 --- /dev/null +++ b/public/intl/language/en-GB.json @@ -0,0 +1,611 @@ +{ + "ab": "Abkhazian", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaans", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "sq": "Albanian", + "ale": "Aleut", + "arq": "Algerian Arabic", + "en_US": "American English", + "ase": "American Sign Language", + "am": "Amharic", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "ar": "Arabic", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "hy": "Armenian", + "rup": "Aromanian", + "frp": "Arpitan", + "as": "Assamese", + "ast": "Asturian", + "asa": "Asu", + "cch": "Atsam", + "en_AU": "Australian English", + "de_AT": "Austrian German", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "ay": "Aymara", + "az": "Azerbaijani", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bm": "Bambara", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "ba": "Bashkir", + "eu": "Basque", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "be": "Belarusian", + "bem": "Bemba", + "bez": "Bena", + "bn": "Bengali", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brx": "Bodo", + "bs": "Bosnian", + "brh": "Brahui", + "bra": "Braj", + "pt_BR": "Brazilian Portuguese", + "br": "Breton", + "en_GB": "British English", + "bug": "Buginese", + "bg": "Bulgarian", + "bum": "Bulu", + "bua": "Buriat", + "my": "Burmese", + "cad": "Caddo", + "frc": "Cajun French", + "en_CA": "Canadian English", + "fr_CA": "Canadian French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "ca": "Catalan", + "cay": "Cayuga", + "ceb": "Cebuano", + "tzm": "Central Atlas Tamazight", + "dtp": "Central Dusun", + "ckb": "Central Kurdish", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "Chiga", + "qug": "Chimborazo Highland Quichua", + "zh": "Chinese", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "swc": "Congo Swahili", + "cop": "Coptic", + "kw": "Cornish", + "co": "Corsican", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "hr": "Croatian", + "cs": "Czech", + "dak": "Dakota", + "da": "Danish", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "nl": "Dutch", + "dyu": "Dyula", + "dz": "Dzongkha", + "frs": "Eastern Frisian", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "ebu": "Embu", + "egl": "Emilian", + "en": "English", + "myv": "Erzya", + "eo": "Esperanto", + "et": "Estonian", + "pt_PT": "European Portuguese", + "es_ES": "European Spanish", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "fo": "Faroese", + "hif": "Fiji Hindi", + "fj": "Fijian", + "fil": "Filipino", + "fi": "Finnish", + "nl_BE": "Flemish", + "fon": "Fon", + "gur": "Frafra", + "fr": "French", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gag": "Gagauz", + "gl": "Galician", + "gan": "Gan Chinese", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "ka": "Georgian", + "de": "German", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "el": "Greek", + "gn": "Guarani", + "gu": "Gujarati", + "guz": "Gusii", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "ht": "Haitian", + "hak": "Hakka Chinese", + "ha": "Hausa", + "haw": "Hawaiian", + "he": "Hebrew", + "hz": "Herero", + "hil": "Hiligaynon", + "hi": "Hindi", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hu": "Hungarian", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "is": "Icelandic", + "io": "Ido", + "ig": "Igbo", + "ilo": "Iloko", + "smn": "Inari Sami", + "id": "Indonesian", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiaq", + "ga": "Irish", + "it": "Italian", + "jam": "Jamaican Creole English", + "ja": "Japanese", + "jv": "Javanese", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kea": "Kabuverdianu", + "kab": "Kabyle", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "Kalaallisut", + "kln": "Kalenjin", + "xal": "Kalmyk", + "kam": "Kamba", + "kbl": "Kanembu", + "kn": "Kannada", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "ks": "Kashmiri", + "csb": "Kashubian", + "kaw": "Kawi", + "kk": "Kazakh", + "ken": "Kenyang", + "kha": "Khasi", + "km": "Khmer", + "kho": "Khotanese", + "khw": "Khowar", + "ki": "Kikuyu", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "kg": "Kongo", + "kok": "Konkani", + "ko": "Korean", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "ku": "Kurdish", + "kru": "Kurukh", + "kut": "Kutenai", + "nmg": "Kwasio", + "ky": "Kyrgyz", + "quc": "K\u02bciche\u02bc", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "lo": "Lao", + "ltg": "Latgalian", + "la": "Latin", + "es_419": "Latin American Spanish", + "lv": "Latvian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "Lithuanian", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "dsb": "Lower Sorbian", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "lb": "Luxembourgish", + "luy": "Luyia", + "mde": "Maba", + "mk": "Macedonian", + "jmc": "Machame", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mg": "Malagasy", + "ms": "Malay", + "ml": "Malayalam", + "mt": "Maltese", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manx", + "mi": "Maori", + "arn": "Mapuche", + "mr": "Marathi", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mas": "Masai", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u02bc", + "es_MX": "Mexican Spanish", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "ar_001": "Modern Standard Arabic", + "moh": "Mohawk", + "mdf": "Moksha", + "ro_MD": "Moldavian", + "lol": "Mongo", + "mn": "Mongolian", + "mfe": "Morisyen", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "mua": "Mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "naq": "Nama", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "ne": "Nepali", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "zxx": "No linguistic content", + "nog": "Nogai", + "nd": "North Ndebele", + "frr": "Northern Frisian", + "se": "Northern Sami", + "nso": "Northern Sotho", + "no": "Norwegian", + "nb": "Norwegian Bokm\u00e5l", + "nn": "Norwegian Nynorsk", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "nqo": "N\u02bcKo", + "oc": "Occitan", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "or": "Oriya", + "om": "Oromo", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "ps": "Pashto", + "pdc": "Pennsylvania German", + "fa": "Persian", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pl": "Polish", + "pnt": "Pontic", + "pt": "Portuguese", + "prg": "Prussian", + "pa": "Punjabi", + "qu": "Quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "ro": "Romanian", + "rm": "Romansh", + "rom": "Romany", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rn": "Rundi", + "ru": "Russian", + "rue": "Rusyn", + "rwk": "Rwa", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "saq": "Samburu", + "sm": "Samoan", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskrit", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "gd": "Scottish Gaelic", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "sr": "Serbian", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "ksb": "Shambala", + "shn": "Shan", + "sn": "Shona", + "ii": "Sichuan Yi", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "zh_Hans": "Simplified Chinese", + "sd": "Sindhi", + "si": "Sinhala", + "sms": "Skolt Sami", + "den": "Slave", + "sk": "Slovak", + "sl": "Slovenian", + "xog": "Soga", + "sog": "Sogdien", + "so": "Somali", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "sma": "Southern Sami", + "st": "Southern Sotho", + "es": "Spanish", + "srn": "Sranan Tongo", + "zgh": "Standard Moroccan Tamazight", + "suk": "Sukuma", + "sux": "Sumerian", + "su": "Sundanese", + "sus": "Susu", + "sw": "Swahili", + "ss": "Swati", + "sv": "Swedish", + "fr_CH": "Swiss French", + "gsw": "Swiss German", + "de_CH": "Swiss High German", + "syr": "Syriac", + "shi": "Tachelhit", + "tl": "Tagalog", + "ty": "Tahitian", + "dav": "Taita", + "tg": "Tajik", + "tly": "Talysh", + "tmh": "Tamashek", + "ta": "Tamil", + "trv": "Taroko", + "twq": "Tasawaq", + "tt": "Tatar", + "te": "Telugu", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetum", + "th": "Thai", + "bo": "Tibetan", + "tig": "Tigre", + "ti": "Tigrinya", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "to": "Tongan", + "fit": "Tornedalen Finnish", + "zh_Hant": "Traditional Chinese", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tr": "Turkish", + "tk": "Turkmen", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "uk": "Ukrainian", + "umb": "Umbundu", + "und": "Unknown Language", + "hsb": "Upper Sorbian", + "ur": "Urdu", + "ug": "Uyghur", + "uz": "Uzbek", + "vai": "Vai", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "Vietnamese", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "Vunjo", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "cy": "Welsh", + "vls": "West Flemish", + "fy": "Western Frisian", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wo": "Wolof", + "wuu": "Wu Chinese", + "xh": "Xhosa", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "yi": "Yiddish", + "yo": "Yoruba", + "zap": "Zapotec", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zu": "Zulu", + "zun": "Zuni" +} diff --git a/public/intl/language/en-US.json b/public/intl/language/en-US.json new file mode 100644 index 0000000..57c847f --- /dev/null +++ b/public/intl/language/en-US.json @@ -0,0 +1,184 @@ +{ + "ab": "Abkhaz", + "aa": "Afar", + "af": "Afrikaans", + "ak": "Akan", + "sq": "Albanian", + "am": "Amharic", + "ar": "Arabic", + "an": "Aragonese", + "hy": "Armenian", + "as": "Assamese", + "av": "Avaric", + "ae": "Avestan", + "ay": "Aymara", + "az": "Azerbaijani", + "bm": "Bambara", + "ba": "Bashkir", + "eu": "Basque", + "be": "Belarusian", + "bn": "Bengali", + "bh": "Bihari", + "bi": "Bislama", + "bs": "Bosnian", + "br": "Breton", + "bg": "Bulgarian", + "my": "Burmese", + "ca": "Catalan; Valencian", + "ch": "Chamorro", + "ce": "Chechen", + "ny": "Chichewa; Chewa; Nyanja", + "zh": "Chinese", + "cv": "Chuvash", + "kw": "Cornish", + "co": "Corsican", + "cr": "Cree", + "hr": "Croatian", + "cs": "Czech", + "da": "Danish", + "dv": "Divehi; Dhivehi; Maldivian;", + "nl": "Dutch", + "en": "English", + "eo": "Esperanto", + "et": "Estonian", + "ee": "Ewe", + "fo": "Faroese", + "fj": "Fijian", + "fi": "Finnish", + "fr": "French", + "ff": "Fula; Fulah; Pulaar; Pular", + "gl": "Galician", + "ka": "Georgian", + "de": "German", + "el": "Greek, Modern", + "gn": "Guaraní", + "gu": "Gujarati", + "ht": "Haitian; Haitian Creole", + "ha": "Hausa", + "he": "Hebrew (modern)", + "hz": "Herero", + "hi": "Hindi", + "ho": "Hiri Motu", + "hu": "Hungarian", + "ia": "Interlingua", + "id": "Indonesian", + "ie": "Interlingue", + "ga": "Irish", + "ig": "Igbo", + "ik": "Inupiaq", + "io": "Ido", + "is": "Icelandic", + "it": "Italian", + "iu": "Inuktitut", + "ja": "Japanese", + "jv": "Javanese", + "kl": "Kalaallisut, Greenlandic", + "kn": "Kannada", + "kr": "Kanuri", + "ks": "Kashmiri", + "kk": "Kazakh", + "km": "Khmer", + "ki": "Kikuyu, Gikuyu", + "rw": "Kinyarwanda", + "ky": "Kirghiz, Kyrgyz", + "kv": "Komi", + "kg": "Kongo", + "ko": "Korean", + "ku": "Kurdish", + "kj": "Kwanyama, Kuanyama", + "la": "Latin", + "lb": "Luxembourgish, Letzeburgesch", + "lg": "Luganda", + "li": "Limburgish, Limburgan, Limburger", + "ln": "Lingala", + "lo": "Lao", + "lt": "Lithuanian", + "lu": "Luba-Katanga", + "lv": "Latvian", + "gv": "Manx", + "mk": "Macedonian", + "mg": "Malagasy", + "ms": "Malay", + "ml": "Malayalam", + "mt": "Maltese", + "mi": "Māori", + "mr": "Marathi (Marāṭhī)", + "mh": "Marshallese", + "mn": "Mongolian", + "na": "Nauru", + "nv": "Navajo, Navaho", + "nb": "Norwegian Bokmål", + "nd": "North Ndebele", + "ne": "Nepali", + "ng": "Ndonga", + "nn": "Norwegian Nynorsk", + "no": "Norwegian", + "ii": "Nuosu", + "nr": "South Ndebele", + "oc": "Occitan", + "oj": "Ojibwe, Ojibwa", + "cu": "Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic", + "om": "Oromo", + "or": "Oriya", + "os": "Ossetian, Ossetic", + "pa": "Panjabi, Punjabi", + "pi": "Pāli", + "fa": "Persian", + "pl": "Polish", + "ps": "Pashto, Pushto", + "pt": "Portuguese", + "qu": "Quechua", + "rm": "Romansh", + "rn": "Kirundi", + "ro": "Romanian, Moldavian, Moldovan", + "ru": "Russian", + "sa": "Sanskrit (Saṁskṛta)", + "sc": "Sardinian", + "sd": "Sindhi", + "se": "Northern Sami", + "sm": "Samoan", + "sg": "Sango", + "sr": "Serbian", + "gd": "Scottish Gaelic; Gaelic", + "sn": "Shona", + "si": "Sinhala, Sinhalese", + "sk": "Slovak", + "sl": "Slovene", + "so": "Somali", + "st": "Southern Sotho", + "es": "Spanish; Castilian", + "su": "Sundanese", + "sw": "Swahili", + "ss": "Swati", + "sv": "Swedish", + "ta": "Tamil", + "te": "Telugu", + "tg": "Tajik", + "th": "Thai", + "ti": "Tigrinya", + "bo": "Tibetan Standard, Tibetan, Central", + "tk": "Turkmen", + "tl": "Tagalog", + "tn": "Tswana", + "to": "Tonga (Tonga Islands)", + "tr": "Turkish", + "ts": "Tsonga", + "tt": "Tatar", + "tw": "Twi", + "ty": "Tahitian", + "ug": "Uighur, Uyghur", + "uk": "Ukrainian", + "ur": "Urdu", + "uz": "Uzbek", + "ve": "Venda", + "vi": "Vietnamese", + "vo": "Volapük", + "wa": "Walloon", + "cy": "Welsh", + "wo": "Wolof", + "fy": "Western Frisian", + "xh": "Xhosa", + "yi": "Yiddish", + "yo": "Yoruba", + "za": "Zhuang, Chuang" +} diff --git a/public/intl/language/es-ES.json b/public/intl/language/es-ES.json new file mode 100644 index 0000000..cf943de --- /dev/null +++ b/public/intl/language/es-ES.json @@ -0,0 +1,611 @@ +{ + "ab": "abjasio", + "akk": "acadio", + "ace": "acehn\u00e9s", + "ach": "acoli", + "ada": "adangme", + "ady": "adigeo", + "aa": "afar", + "afh": "afrihili", + "af": "afrik\u00e1ans", + "agq": "aghem", + "ay": "aimara", + "ain": "ainu", + "ak": "akan", + "bss": "akoose", + "akz": "Alabama", + "sq": "alban\u00e9s", + "de": "alem\u00e1n", + "de_AT": "alem\u00e1n austr\u00edaco", + "goh": "alem\u00e1n de la alta edad antigua", + "gmh": "alem\u00e1n de la alta edad media", + "gsw": "alem\u00e1n suizo", + "ale": "aleutiano", + "arq": "Algerian Arabic", + "alt": "alt\u00e1i meridional", + "de_CH": "alto alem\u00e1n suizo", + "hsb": "alto sorbio", + "am": "am\u00e1rico", + "ase": "American Sign Language", + "anp": "angika", + "njo": "Ao Naga", + "ar": "\u00e1rabe", + "shu": "\u00e1rabe chadiano", + "ar_001": "\u00e1rabe est\u00e1ndar moderno", + "an": "aragon\u00e9s", + "arw": "arahuaco", + "arc": "arameo", + "sam": "arameo samaritano", + "aro": "Araona", + "arp": "arapaho", + "hy": "armenio", + "frp": "Arpitan", + "rup": "arrumano", + "as": "asam\u00e9s", + "ast": "asturiano", + "asa": "asu", + "cch": "atsam", + "awa": "avadhi", + "av": "avar", + "ae": "av\u00e9stico", + "az": "azerbaiyano", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "nds": "bajo alem\u00e1n", + "dsb": "bajo sorbio", + "bqi": "Bakhtiari", + "ban": "balin\u00e9s", + "bal": "baluchi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basa", + "ba": "baskir", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengal\u00ed", + "bew": "Betawi", + "bho": "bhojpuri", + "bik": "bicol", + "be": "bielorruso", + "bin": "bini", + "my": "birmano", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "brx": "bodo", + "nb": "bokmal noruego", + "bs": "bosnio", + "brh": "Brahui", + "bra": "braj", + "br": "bret\u00f3n", + "bug": "bugin\u00e9s", + "bg": "b\u00falgaro", + "bum": "bulu", + "bua": "buriat", + "kab": "cabila", + "ks": "cachemiro", + "cad": "caddo", + "frc": "Cajun French", + "kn": "canar\u00e9s", + "yue": "canton\u00e9s", + "cps": "Capiznon", + "krl": "carelio", + "car": "caribe", + "csb": "casubio", + "ca": "catal\u00e1n", + "cay": "cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagat\u00e1i", + "ch": "chamorro", + "ce": "checheno", + "cs": "checo", + "chr": "cheroqui", + "chy": "cheyene", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "zh": "chino", + "zh_Hans": "chino simplificado", + "zh_Hant": "chino tradicional", + "chp": "chipewyan", + "cho": "choctaw", + "cv": "chuvash", + "si": "cingal\u00e9s", + "swb": "comorense", + "cop": "copto", + "ko": "coreano", + "kw": "c\u00f3rnico", + "co": "corso", + "cr": "cree", + "mus": "creek", + "kea": "criollo caboverdiano", + "mfe": "criollo mauriciano", + "hr": "croata", + "dak": "dakota", + "da": "dan\u00e9s", + "dar": "dargva", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dyu": "diula", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dz": "dzongkha", + "efi": "efik", + "egy": "egipcio antiguo", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamita", + "ebu": "embu", + "egl": "Emilian", + "myv": "erzya", + "sco": "escoc\u00e9s", + "cu": "eslavo eclesi\u00e1stico", + "sk": "eslovaco", + "sl": "esloveno", + "es": "espa\u00f1ol", + "es_ES": "espa\u00f1ol de Espa\u00f1a", + "es_MX": "espa\u00f1ol de M\u00e9xico", + "es_419": "espa\u00f1ol latinoamericano", + "eo": "esperanto", + "et": "estonio", + "eu": "euskera", + "ee": "ew\u00e9", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "phn": "fenicio", + "fo": "fero\u00e9s", + "hif": "Fiji Hindi", + "fil": "filipino", + "fi": "fin\u00e9s", + "fj": "fiyiano", + "nl_BE": "flamenco", + "fon": "fon", + "gur": "Frafra", + "fr": "franc\u00e9s", + "fro": "franc\u00e9s antiguo", + "fr_CA": "franc\u00e9s canadiense", + "frm": "franc\u00e9s medieval", + "fr_CH": "franc\u00e9s suizo", + "fy": "fris\u00f3n occidental", + "frs": "fris\u00f3n oriental", + "frr": "fris\u00f3n septentrional", + "fur": "friulano", + "ff": "fula", + "gaa": "ga", + "gd": "ga\u00e9lico escoc\u00e9s", + "gag": "gagauzo", + "cy": "gal\u00e9s", + "gl": "gallego", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "gez": "geez", + "ka": "georgiano", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbert\u00e9s", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "g\u00f3tico", + "grb": "grebo", + "el": "griego", + "grc": "griego antiguo", + "kl": "groenland\u00e9s", + "gn": "guaran\u00ed", + "gu": "gujarati", + "guz": "gusii", + "hai": "haida", + "ht": "haitiano", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "hawaiano", + "he": "hebreo", + "hz": "herero", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitita", + "hmn": "hmong", + "hu": "h\u00fangaro", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "ilocano", + "id": "indonesio", + "en": "ingl\u00e9s", + "ang": "ingl\u00e9s antiguo", + "en_AU": "ingl\u00e9s australiano", + "en_GB": "ingl\u00e9s brit\u00e1nico", + "en_CA": "ingl\u00e9s canadiense", + "en_US": "ingl\u00e9s estadounidense", + "enm": "ingl\u00e9s medieval", + "izh": "Ingrian", + "inh": "ingush", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaq", + "ga": "irland\u00e9s", + "sga": "irland\u00e9s antiguo", + "mga": "irland\u00e9s medieval", + "is": "island\u00e9s", + "it": "italiano", + "jam": "Jamaican Creole English", + "ja": "japon\u00e9s", + "jv": "javan\u00e9s", + "km": "jemer", + "chn": "jerga chinuk", + "kaj": "jju", + "dyo": "jola-fonyi", + "jrb": "judeo-\u00e1rabe", + "jpr": "judeo-persa", + "jut": "Jutish", + "kbd": "kabardiano", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kr": "kanuri", + "krc": "karachay-balkar", + "kaa": "karakalpako", + "kaw": "kawi", + "kk": "kazajo", + "ken": "Kenyang", + "kha": "khasi", + "khw": "Khowar", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "rw": "kinyarwanda", + "ky": "kirgu\u00eds", + "kiu": "Kirmanjki", + "rn": "kiroundi", + "tlh": "klingon", + "ksh": "k\u00f6lsch", + "bkm": "kom", + "kv": "komi", + "koi": "komi permio", + "kg": "kongo", + "kok": "konkan\u00ed", + "kfo": "koro", + "kos": "kosraeano", + "kho": "kotan\u00e9s", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "ku": "kurdo", + "ckb": "kurdo sorani", + "kru": "kurukh", + "gwi": "kutchin", + "kut": "kutenai", + "nmg": "kwasio", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laosiano", + "ltg": "Latgalian", + "la": "lat\u00edn", + "lzz": "Laz", + "und": "lengua desconocida", + "mul": "lenguas m\u00faltiples", + "lv": "let\u00f3n", + "lez": "lezgiano", + "lij": "Ligurian", + "li": "limburgu\u00e9s", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "lituano", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luise\u00f1o", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxemburgu\u00e9s", + "luy": "luyia", + "mde": "maba", + "mak": "macasar", + "mk": "macedonio", + "jmc": "machame", + "mad": "madur\u00e9s", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ml": "malayalam", + "ms": "malayo", + "mg": "malgache", + "mt": "malt\u00e9s", + "mnc": "manch\u00fa", + "mdr": "mandar", + "man": "mandingo", + "gv": "man\u00e9s", + "mni": "manipuri", + "mi": "maor\u00ed", + "arn": "mapuche", + "mr": "marat\u00ed", + "chm": "mar\u00ed", + "mh": "marshal\u00e9s", + "mwr": "marwari", + "mas": "mas\u00e1i", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirand\u00e9s", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldavo", + "lol": "mongo", + "mn": "mongol", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitano", + "na": "nauruano", + "nv": "navajo", + "nr": "ndebele meridional", + "nd": "ndebele septentrional", + "ng": "ndonga", + "nl": "neerland\u00e9s", + "dum": "neerland\u00e9s medieval", + "ne": "nepal\u00ed", + "new": "newari", + "nwc": "newari cl\u00e1sico", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niueano", + "nog": "nogai", + "non": "n\u00f3rdico antiguo", + "no": "noruego", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "nn": "nynorsk noruego", + "nyo": "nyoro", + "nzi": "nzima", + "oc": "occitano", + "oj": "ojibwa", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "os\u00e9tico", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauano", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasin\u00e1n", + "pa": "panyab\u00ed", + "pap": "papiamento", + "ps": "past\u00fan", + "pdc": "Pennsylvania German", + "fa": "persa", + "peo": "persa antiguo", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpeiano", + "pl": "polaco", + "pnt": "Pontic", + "pt": "portugu\u00e9s", + "pt_BR": "portugu\u00e9s de Brasil", + "pt_PT": "portugu\u00e9s de Portugal", + "pro": "provenzal antiguo", + "prg": "Prussian", + "qu": "quechua", + "quc": "quich\u00e9", + "root": "ra\u00edz", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotongano", + "rm": "retorrom\u00e1nico", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "roman\u00ed", + "rof": "rombo", + "rtm": "Rotuman", + "rug": "Roviana", + "ro": "rumano", + "ru": "ruso", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "sah": "sakha", + "saq": "samburu", + "smn": "sami inari", + "smj": "sami lule", + "sma": "sami meridional", + "se": "sami septentrional", + "sms": "sami skolt", + "sm": "samoano", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "s\u00e1nscrito", + "sat": "santali", + "sc": "sardo", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkup", + "seh": "sena", + "see": "seneca", + "sr": "serbio", + "sh": "serbocroata", + "srr": "serer", + "sei": "Seri", + "st": "sesotho meridional", + "tn": "setchwana", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "scn": "siciliano", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "zbl": "s\u00edmbolos Bliss", + "zxx": "sin contenido ling\u00fc\u00edstico", + "sd": "sindhi", + "syr": "siriaco", + "syc": "sir\u00edaco cl\u00e1sico", + "ss": "siswati", + "den": "slave", + "xog": "soga", + "sog": "sogdiano", + "so": "somal\u00ed", + "snk": "sonink\u00e9", + "nso": "sotho septentrional", + "azb": "South Azerbaijani", + "srn": "sranan tongo", + "sv": "sueco", + "suk": "sukuma", + "sux": "sumerio", + "su": "sundan\u00e9s", + "sus": "susu", + "sw": "swahili", + "swc": "swahili del Congo", + "tl": "tagalo", + "ty": "tahitiano", + "th": "tailand\u00e9s", + "dav": "taita", + "tly": "Talysh", + "tmh": "tamashek", + "tzm": "tamazight del Marruecos Central", + "zgh": "tamazight est\u00e1ndar marroqu\u00ed", + "ta": "tamil", + "trv": "taroko", + "tt": "t\u00e1rtaro", + "crh": "t\u00e1rtaro de Crimea", + "twq": "tasawaq", + "shi": "tashelhit", + "tg": "tayiko", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tet\u00fan", + "bo": "tibetano", + "tig": "tigr\u00e9", + "ti": "tigri\u00f1a", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelauano", + "tog": "tonga del Nyasa", + "to": "tongano", + "fit": "Tornedalen Finnish", + "chk": "truk\u00e9s", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshiano", + "ts": "tsonga", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turco", + "ota": "turco otomano", + "tk": "turcomano", + "tru": "Turoyo", + "tvl": "tuvaluano", + "tyv": "tuviniano", + "tw": "twi", + "kcg": "tyap", + "uk": "ucraniano", + "udm": "udmurt", + "uga": "ugar\u00edtico", + "ug": "uigur", + "umb": "umbundu", + "ur": "urdu", + "uz": "uzbeko", + "vai": "vai", + "wa": "val\u00f3n", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamita", + "vo": "volap\u00fck", + "vro": "V\u00f5ro", + "vot": "v\u00f3tico", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "w\u00f3lof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "yangben", + "yao": "yao", + "yap": "yap\u00e9s", + "ybb": "yemba", + "ii": "yi de Sichu\u00e1n", + "yi": "y\u00eddish", + "yo": "yoruba", + "zap": "zapoteco", + "dje": "zarma", + "zza": "zazaki", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zul\u00fa", + "zun": "zuni" +} diff --git a/public/intl/language/es-MX.json b/public/intl/language/es-MX.json new file mode 100644 index 0000000..4e54677 --- /dev/null +++ b/public/intl/language/es-MX.json @@ -0,0 +1,611 @@ +{ + "ab": "abjasio", + "akk": "acadio", + "ace": "acehn\u00e9s", + "ach": "acoli", + "ada": "adangme", + "ady": "adigeo", + "aa": "afar", + "afh": "afrihili", + "af": "afrik\u00e1ans", + "agq": "aghem", + "ay": "aimara", + "ain": "ainu", + "ak": "akan", + "bss": "akoose", + "akz": "Alabama", + "sq": "alban\u00e9s", + "de": "alem\u00e1n", + "de_AT": "alem\u00e1n austr\u00edaco", + "goh": "alem\u00e1n de la alta edad antigua", + "gmh": "alem\u00e1n de la alta edad media", + "gsw": "alem\u00e1n suizo", + "ale": "aleutiano", + "arq": "Algerian Arabic", + "alt": "alt\u00e1i meridional", + "de_CH": "alto alem\u00e1n suizo", + "hsb": "alto sorbio", + "am": "am\u00e1rico", + "ase": "American Sign Language", + "anp": "angika", + "njo": "Ao Naga", + "ar": "\u00e1rabe", + "shu": "\u00e1rabe chadiano", + "ar_001": "\u00e1rabe est\u00e1ndar moderno", + "an": "aragon\u00e9s", + "arw": "arahuaco", + "arc": "arameo", + "sam": "arameo samaritano", + "aro": "Araona", + "arp": "arapaho", + "hy": "armenio", + "frp": "Arpitan", + "rup": "arrumano", + "as": "asam\u00e9s", + "ast": "asturiano", + "asa": "asu", + "cch": "atsam", + "awa": "avadhi", + "av": "avar", + "ae": "av\u00e9stico", + "az": "azerbaiyano", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "nds": "bajo alem\u00e1n", + "dsb": "bajo sorbio", + "bqi": "Bakhtiari", + "ban": "balin\u00e9s", + "bal": "baluchi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basa", + "ba": "bashkir", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengal\u00ed", + "bew": "Betawi", + "bho": "bhojpuri", + "bik": "bicol", + "be": "bielorruso", + "bin": "bini", + "my": "birmano", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "brx": "bodo", + "nb": "bokmal noruego", + "bs": "bosnio", + "brh": "Brahui", + "bra": "braj", + "br": "bret\u00f3n", + "bug": "bugin\u00e9s", + "bg": "b\u00falgaro", + "bum": "bulu", + "bua": "buriat", + "kab": "cabila", + "ks": "cachemiro", + "cad": "caddo", + "frc": "Cajun French", + "kn": "canar\u00e9s", + "yue": "canton\u00e9s", + "cps": "Capiznon", + "krl": "carelio", + "car": "caribe", + "csb": "casubio", + "ca": "catal\u00e1n", + "cay": "cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagat\u00e1i", + "ch": "chamorro", + "ce": "checheno", + "cs": "checo", + "chr": "cheroqui", + "chy": "cheyene", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "zh": "chino", + "zh_Hans": "chino simplificado", + "zh_Hant": "chino tradicional", + "chp": "chipewyan", + "cho": "choctaw", + "cv": "chuvash", + "si": "cingal\u00e9s", + "swb": "comorense", + "cop": "copto", + "ko": "coreano", + "kw": "c\u00f3rnico", + "co": "corso", + "cr": "cree", + "mus": "creek", + "kea": "criollo caboverdiano", + "mfe": "criollo mauriciano", + "hr": "croata", + "dak": "dakota", + "da": "dan\u00e9s", + "dar": "dargva", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dyu": "diula", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dz": "dzongkha", + "efi": "efik", + "egy": "egipcio antiguo", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamita", + "ebu": "embu", + "egl": "Emilian", + "myv": "erzya", + "sco": "escoc\u00e9s", + "cu": "eslavo eclesi\u00e1stico", + "sk": "eslovaco", + "sl": "esloveno", + "es": "espa\u00f1ol", + "es_ES": "espa\u00f1ol de Espa\u00f1a", + "es_MX": "espa\u00f1ol de M\u00e9xico", + "es_419": "espa\u00f1ol latinoamericano", + "eo": "esperanto", + "et": "estonio", + "eu": "euskera", + "ee": "ew\u00e9", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "phn": "fenicio", + "fo": "fero\u00e9s", + "hif": "Fiji Hindi", + "fil": "filipino", + "fi": "fin\u00e9s", + "fj": "fiyiano", + "nl_BE": "flamenco", + "fon": "fon", + "gur": "Frafra", + "fr": "franc\u00e9s", + "fro": "franc\u00e9s antiguo", + "fr_CA": "franc\u00e9s canadiense", + "frm": "franc\u00e9s medieval", + "fr_CH": "franc\u00e9s suizo", + "fy": "fris\u00f3n occidental", + "frs": "fris\u00f3n oriental", + "frr": "fris\u00f3n septentrional", + "fur": "friulano", + "ff": "fula", + "gaa": "ga", + "gd": "ga\u00e9lico escoc\u00e9s", + "gag": "gagauzo", + "cy": "gal\u00e9s", + "gl": "gallego", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "gez": "geez", + "ka": "georgiano", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbert\u00e9s", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "g\u00f3tico", + "grb": "grebo", + "el": "griego", + "grc": "griego antiguo", + "kl": "groenland\u00e9s", + "gn": "guaran\u00ed", + "gu": "gujarati", + "guz": "gusii", + "hai": "haida", + "ht": "haitiano", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "hawaiano", + "he": "hebreo", + "hz": "herero", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitita", + "hmn": "hmong", + "hu": "h\u00fangaro", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "ilocano", + "id": "indonesio", + "en": "ingl\u00e9s", + "ang": "ingl\u00e9s antiguo", + "en_AU": "ingl\u00e9s australiano", + "en_GB": "ingl\u00e9s brit\u00e1nico", + "en_CA": "ingl\u00e9s canadiense", + "en_US": "ingl\u00e9s estadounidense", + "enm": "ingl\u00e9s medieval", + "izh": "Ingrian", + "inh": "ingush", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaq", + "ga": "irland\u00e9s", + "sga": "irland\u00e9s antiguo", + "mga": "irland\u00e9s medieval", + "is": "island\u00e9s", + "it": "italiano", + "jam": "Jamaican Creole English", + "ja": "japon\u00e9s", + "jv": "javan\u00e9s", + "km": "jemer", + "chn": "jerga chinuk", + "kaj": "jju", + "dyo": "jola-fonyi", + "jrb": "judeo-\u00e1rabe", + "jpr": "judeo-persa", + "jut": "Jutish", + "kbd": "kabardiano", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kr": "kanuri", + "krc": "karachay-balkar", + "kaa": "karakalpako", + "kaw": "kawi", + "kk": "kazajo", + "ken": "Kenyang", + "kha": "khasi", + "khw": "Khowar", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "rw": "kinyarwanda", + "ky": "kirgu\u00eds", + "kiu": "Kirmanjki", + "rn": "kiroundi", + "tlh": "klingon", + "ksh": "k\u00f6lsch", + "bkm": "kom", + "kv": "komi", + "koi": "komi permio", + "kg": "kongo", + "kok": "konkan\u00ed", + "kfo": "koro", + "kos": "kosraeano", + "kho": "kotan\u00e9s", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "ku": "kurdo", + "ckb": "kurdo sorani", + "kru": "kurukh", + "gwi": "kutchin", + "kut": "kutenai", + "nmg": "kwasio", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laosiano", + "ltg": "Latgalian", + "la": "lat\u00edn", + "lzz": "Laz", + "und": "lengua desconocida", + "mul": "lenguas m\u00faltiples", + "lv": "let\u00f3n", + "lez": "lezgiano", + "lij": "Ligurian", + "li": "limburgu\u00e9s", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "lituano", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luise\u00f1o", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxemburgu\u00e9s", + "luy": "luyia", + "mde": "maba", + "mak": "macasar", + "mk": "macedonio", + "jmc": "machame", + "mad": "madur\u00e9s", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ml": "malayalam", + "ms": "malayo", + "mg": "malgache", + "mt": "malt\u00e9s", + "mnc": "manch\u00fa", + "mdr": "mandar", + "man": "mandingo", + "gv": "man\u00e9s", + "mni": "manipuri", + "mi": "maor\u00ed", + "arn": "mapuche", + "mr": "marat\u00ed", + "chm": "mar\u00ed", + "mh": "marshal\u00e9s", + "mwr": "marwari", + "mas": "mas\u00e1i", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirand\u00e9s", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldavo", + "lol": "mongo", + "mn": "mongol", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitano", + "na": "nauruano", + "nv": "navajo", + "nr": "ndebele meridional", + "nd": "ndebele septentrional", + "ng": "ndonga", + "nl": "neerland\u00e9s", + "dum": "neerland\u00e9s medieval", + "ne": "nepal\u00ed", + "new": "newari", + "nwc": "newari cl\u00e1sico", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niueano", + "nog": "nogai", + "non": "n\u00f3rdico antiguo", + "no": "noruego", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "nn": "nynorsk noruego", + "nyo": "nyoro", + "nzi": "nzima", + "oc": "occitano", + "oj": "ojibwa", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "os\u00e9tico", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauano", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasin\u00e1n", + "pa": "panyab\u00ed", + "pap": "papiamento", + "ps": "past\u00fan", + "pdc": "Pennsylvania German", + "fa": "persa", + "peo": "persa antiguo", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpeiano", + "pl": "polaco", + "pnt": "Pontic", + "pt": "portugu\u00e9s", + "pt_BR": "portugu\u00e9s de Brasil", + "pt_PT": "portugu\u00e9s de Portugal", + "pro": "provenzal antiguo", + "prg": "Prussian", + "qu": "quechua", + "quc": "quich\u00e9", + "root": "ra\u00edz", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotongano", + "rm": "retorrom\u00e1nico", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "roman\u00ed", + "rof": "rombo", + "rtm": "Rotuman", + "rug": "Roviana", + "ro": "rumano", + "ru": "ruso", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "sah": "sakha", + "saq": "samburu", + "smn": "sami inari", + "smj": "sami lule", + "sma": "sami meridional", + "se": "sami septentrional", + "sms": "sami skolt", + "sm": "samoano", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "s\u00e1nscrito", + "sat": "santali", + "sc": "sardo", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkup", + "seh": "sena", + "see": "seneca", + "sr": "serbio", + "sh": "serbocroata", + "srr": "serer", + "sei": "Seri", + "st": "sesotho meridional", + "tn": "setchwana", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "scn": "siciliano", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "zbl": "s\u00edmbolos Bliss", + "zxx": "sin contenido ling\u00fc\u00edstico", + "sd": "sindhi", + "syr": "siriaco", + "syc": "sir\u00edaco cl\u00e1sico", + "ss": "siswati", + "den": "slave", + "xog": "soga", + "sog": "sogdiano", + "so": "somal\u00ed", + "snk": "sonink\u00e9", + "nso": "sotho septentrional", + "azb": "South Azerbaijani", + "srn": "sranan tongo", + "sv": "sueco", + "suk": "sukuma", + "sux": "sumerio", + "su": "sundan\u00e9s", + "sus": "susu", + "sw": "swahili", + "swc": "swahili del Congo", + "tl": "tagalo", + "ty": "tahitiano", + "th": "tailand\u00e9s", + "dav": "taita", + "tly": "Talysh", + "tmh": "tamashek", + "tzm": "tamazight del Marruecos Central", + "zgh": "tamazight est\u00e1ndar marroqu\u00ed", + "ta": "tamil", + "trv": "taroko", + "tt": "t\u00e1rtaro", + "crh": "t\u00e1rtaro de Crimea", + "twq": "tasawaq", + "shi": "tashelhit", + "tg": "tayiko", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tet\u00fan", + "bo": "tibetano", + "tig": "tigr\u00e9", + "ti": "tigri\u00f1a", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelauano", + "tog": "tonga del Nyasa", + "to": "tongano", + "fit": "Tornedalen Finnish", + "chk": "truk\u00e9s", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshiano", + "ts": "tsonga", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turco", + "ota": "turco otomano", + "tk": "turcomano", + "tru": "Turoyo", + "tvl": "tuvaluano", + "tyv": "tuviniano", + "tw": "twi", + "kcg": "tyap", + "uk": "ucraniano", + "udm": "udmurt", + "uga": "ugar\u00edtico", + "ug": "uigur", + "umb": "umbundu", + "ur": "urdu", + "uz": "uzbeko", + "vai": "vai", + "wa": "val\u00f3n", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamita", + "vo": "volap\u00fck", + "vro": "V\u00f5ro", + "vot": "v\u00f3tico", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "w\u00f3lof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "yangben", + "yao": "yao", + "yap": "yap\u00e9s", + "ybb": "yemba", + "ii": "yi de Sichu\u00e1n", + "yi": "y\u00eddish", + "yo": "yoruba", + "zap": "zapoteco", + "dje": "zarma", + "zza": "zazaki", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zul\u00fa", + "zun": "zuni" +} diff --git a/public/intl/language/fa-IR.json b/public/intl/language/fa-IR.json new file mode 100644 index 0000000..b97835d --- /dev/null +++ b/public/intl/language/fa-IR.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0622\u0628\u062e\u0627\u0632\u06cc", + "ace": "\u0622\u0686\u0626\u06cc", + "ach": "\u0622\u0686\u0648\u0644\u06cc\u0627\u06cc\u06cc", + "ada": "\u0622\u062f\u0627\u0646\u06af\u0645\u0647\u200c\u0627\u06cc", + "ady": "\u0622\u062f\u06cc\u062c\u06cc\u0627\u06cc\u06cc", + "arp": "\u0622\u0631\u0627\u067e\u0627\u0647\u0648\u06cc\u06cc", + "an": "\u0622\u0631\u0627\u06af\u0648\u0646\u06cc", + "arc": "\u0622\u0631\u0627\u0645\u06cc", + "sam": "\u0622\u0631\u0627\u0645\u06cc \u0633\u0627\u0645\u0631\u06cc", + "arw": "\u0622\u0631\u0627\u0648\u0627\u06a9\u06cc", + "as": "\u0622\u0633\u0627\u0645\u06cc", + "asa": "\u0622\u0633\u0648", + "os": "\u0622\u0633\u06cc", + "aa": "\u0622\u0641\u0627\u0631\u06cc", + "af": "\u0622\u0641\u0631\u06cc\u06a9\u0627\u0646\u0633", + "afh": "\u0622\u0641\u0631\u06cc\u0647\u06cc\u0644\u06cc", + "ak": "\u0622\u06a9\u0627\u0646", + "agq": "\u0622\u06af\u06cc\u0645", + "akz": "\u0622\u0644\u0627\u0628\u0627\u0645\u0627\u06cc\u06cc", + "ale": "\u0622\u0644\u0626\u0648\u062a\u06cc", + "sq": "\u0622\u0644\u0628\u0627\u0646\u06cc\u0627\u06cc\u06cc", + "alt": "\u0622\u0644\u062a\u0627\u06cc\u06cc \u062c\u0646\u0648\u0628\u06cc", + "de": "\u0622\u0644\u0645\u0627\u0646\u06cc", + "de_AT": "\u0622\u0644\u0645\u0627\u0646\u06cc \u0627\u062a\u0631\u06cc\u0634", + "pdc": "\u0622\u0644\u0645\u0627\u0646\u06cc \u067e\u0646\u0633\u06cc\u0644\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc", + "nds": "\u0622\u0644\u0645\u0627\u0646\u06cc \u0633\u0641\u0644\u06cc", + "gsw": "\u0622\u0644\u0645\u0627\u0646\u06cc \u0633\u0648\u0626\u06cc\u0633\u06cc", + "goh": "\u0622\u0644\u0645\u0627\u0646\u06cc \u0639\u0644\u06cc\u0627\u06cc \u0628\u0627\u0633\u062a\u0627\u0646", + "de_CH": "\u0622\u0644\u0645\u0627\u0646\u06cc \u0639\u0644\u06cc\u0627\u06cc \u0633\u0648\u0626\u06cc\u0633", + "gmh": "\u0622\u0644\u0645\u0627\u0646\u06cc \u0639\u0644\u06cc\u0627\u06cc \u0645\u06cc\u0627\u0646\u0647", + "tzm": "\u0622\u0645\u0627\u0632\u06cc\u063a\u06cc \u0627\u0637\u0644\u0633 \u0645\u0631\u06a9\u0632\u06cc", + "zgh": "\u0622\u0645\u0627\u0632\u06cc\u063a\u06cc \u0645\u0639\u06cc\u0627\u0631 \u0645\u0631\u0627\u06a9\u0634", + "anp": "\u0622\u0646\u06af\u06cc\u06a9\u0627", + "av": "\u0622\u0648\u0627\u0631\u06cc", + "iba": "\u0622\u06cc\u0628\u0646", + "ay": "\u0622\u06cc\u0645\u0627\u0631\u0627\u06cc\u06cc", + "ain": "\u0622\u06cc\u0646\u0648\u06cc\u06cc", + "ur": "\u0627\u0631\u062f\u0648", + "myv": "\u0627\u0631\u0632\u06cc\u0627\u06cc\u06cc", + "hy": "\u0627\u0631\u0645\u0646\u06cc", + "uz": "\u0627\u0632\u0628\u06a9\u06cc", + "es": "\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc", + "es_ES": "\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc \u0627\u0631\u0648\u067e\u0627", + "es_419": "\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc \u0627\u0645\u0631\u06cc\u06a9\u0627\u06cc \u0644\u0627\u062a\u06cc\u0646", + "es_MX": "\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc \u0645\u06a9\u0632\u06cc\u06a9", + "eo": "\u0627\u0633\u067e\u0631\u0627\u0646\u062a\u0648", + "et": "\u0627\u0633\u062a\u0648\u0646\u06cc\u0627\u06cc\u06cc", + "sco": "\u0627\u0633\u06a9\u0627\u062a\u0644\u0646\u062f\u06cc", + "sms": "\u0627\u0633\u06a9\u0648\u0644\u062a \u0633\u0627\u0645\u06cc", + "cu": "\u0627\u0633\u0644\u0627\u0648\u06cc \u06a9\u0644\u06cc\u0633\u0627\u06cc\u06cc", + "sk": "\u0627\u0633\u0644\u0648\u0627\u06a9\u06cc", + "sl": "\u0627\u0633\u0644\u0648\u0648\u06cc\u0646\u06cc\u0627\u06cc\u06cc", + "efi": "\u0627\u0641\u06cc\u06a9\u06cc", + "eka": "\u0627\u06a9\u0627\u062c\u0648\u06a9", + "akk": "\u0627\u06a9\u062f\u06cc", + "ie": "\u0627\u06a9\u0633\u06cc\u062f\u0646\u062a\u0627\u0644", + "ebu": "\u0627\u0645\u0628\u0648", + "umb": "\u0627\u0645\u0628\u0648\u0646\u062f\u0648\u06cc\u06cc", + "am": "\u0627\u0645\u0647\u0631\u06cc", + "id": "\u0627\u0646\u062f\u0648\u0646\u0632\u06cc\u0627\u06cc\u06cc", + "ng": "\u0627\u0646\u062f\u0648\u0646\u06af\u0627\u06cc\u06cc", + "nr": "\u0627\u0646\u062f\u0647\u200c\u0628\u0644\u0647\u200c\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc", + "nd": "\u0627\u0646\u062f\u0647\u200c\u0628\u0644\u0647\u200c\u0627\u06cc \u0634\u0645\u0627\u0644\u06cc", + "en": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc", + "en_AU": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0627\u0633\u062a\u0631\u0627\u0644\u06cc\u0627", + "en_US": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0627\u0645\u0631\u06cc\u06a9\u0627", + "ang": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0628\u0627\u0633\u062a\u0627\u0646", + "en_GB": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627", + "en_CA": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u06a9\u0627\u0646\u0627\u062f\u0627", + "enm": "\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0645\u06cc\u0627\u0646\u0647", + "ewo": "\u0627\u0648\u0627\u0646\u062f\u0648", + "oj": "\u0627\u0648\u062c\u06cc\u0628\u0648\u0627\u06cc\u06cc", + "udm": "\u0627\u0648\u062f\u0645\u0648\u0631\u062a\u06cc", + "om": "\u0627\u0648\u0631\u0648\u0645\u0648\u06cc\u06cc", + "or": "\u0627\u0648\u0631\u06cc\u0647\u200c\u0627\u06cc", + "ae": "\u0627\u0648\u0633\u062a\u0627\u06cc\u06cc", + "osa": "\u0627\u0648\u0633\u06cc\u062c\u06cc", + "uk": "\u0627\u0648\u06a9\u0631\u0627\u06cc\u0646\u06cc", + "oc": "\u0627\u0648\u06a9\u06cc\u062a\u0627\u06cc\u06cc", + "uga": "\u0627\u0648\u06af\u0627\u0631\u06cc\u062a\u06cc", + "ee": "\u0627\u0648\u0647\u200c\u0627\u06cc", + "ug": "\u0627\u0648\u06cc\u063a\u0648\u0631\u06cc", + "it": "\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627\u06cc\u06cc", + "io": "\u0627\u06cc\u062f\u0648", + "ga": "\u0627\u06cc\u0631\u0644\u0646\u062f\u06cc", + "sga": "\u0627\u06cc\u0631\u0644\u0646\u062f\u06cc \u0628\u0627\u0633\u062a\u0627\u0646", + "mga": "\u0627\u06cc\u0631\u0644\u0646\u062f\u06cc \u0645\u06cc\u0627\u0646\u0647", + "is": "\u0627\u06cc\u0633\u0644\u0646\u062f\u06cc", + "ig": "\u0627\u06cc\u06af\u0628\u0648\u06cc\u06cc", + "ilo": "\u0627\u06cc\u0644\u0648\u06a9\u0648\u06cc\u06cc", + "smn": "\u0627\u06cc\u0646\u0627\u0631\u06cc \u0633\u0627\u0645\u06cc", + "inh": "\u0627\u06cc\u0646\u06af\u0648\u0634\u06cc", + "ik": "\u0627\u06cc\u0646\u0648\u067e\u06cc\u06a9", + "iu": "\u0627\u06cc\u0646\u0648\u06a9\u062a\u06cc\u062a\u0648\u062a", + "bas": "\u0628\u0627\u0633\u0627\u06cc\u06cc", + "eu": "\u0628\u0627\u0633\u06a9\u06cc", + "ba": "\u0628\u0627\u0634\u063a\u06cc\u0631\u06cc", + "ksf": "\u0628\u0627\u0641\u06cc\u0627\u06cc\u06cc", + "ban": "\u0628\u0627\u0644\u06cc\u0627\u06cc\u06cc", + "bm": "\u0628\u0627\u0645\u0628\u0627\u0631\u0627\u06cc\u06cc", + "bar": "\u0628\u0627\u0648\u0627\u0631\u06cc\u0627\u06cc\u06cc", + "bej": "\u0628\u062c\u0627\u06cc\u06cc", + "zxx": "\u0628\u062f\u0648\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc \u0632\u0628\u0627\u0646\u06cc", + "bra": "\u0628\u0631\u0627\u062c", + "brh": "\u0628\u0631\u0627\u0647\u0648\u06cc\u06cc", + "br": "\u0628\u0631\u062a\u0627\u0646\u06cc\u0627\u06cc\u06cc", + "my": "\u0628\u0631\u0645\u0647\u200c\u0627\u06cc", + "bg": "\u0628\u0644\u063a\u0627\u0631\u06cc", + "bal": "\u0628\u0644\u0648\u0686\u06cc", + "be": "\u0628\u0644\u0648\u0631\u0648\u0633\u06cc", + "byn": "\u0628\u0644\u06cc\u0646", + "bem": "\u0628\u0645\u0628\u0627\u06cc\u06cc", + "bax": "\u0628\u0645\u0648\u0646\u06cc", + "bez": "\u0628\u0646\u0627\u06cc\u06cc", + "bn": "\u0628\u0646\u06af\u0627\u0644\u06cc", + "bho": "\u0628\u0648\u062c\u067e\u0648\u0631\u06cc", + "brx": "\u0628\u0648\u062f\u0648\u06cc\u06cc", + "bua": "\u0628\u0648\u0631\u06cc\u0627\u062a\u06cc", + "bs": "\u0628\u0648\u0633\u0646\u06cc\u0627\u06cc\u06cc", + "nb": "\u0628\u0648\u06a9\u0633\u0645\u0627\u0644 \u0646\u0631\u0648\u0698\u06cc", + "bug": "\u0628\u0648\u06af\u06cc\u0627\u06cc\u06cc", + "bi": "\u0628\u06cc\u0633\u0644\u0627\u0645\u0627", + "bik": "\u0628\u06cc\u06a9\u0648\u0644\u06cc", + "bin": "\u0628\u06cc\u0646\u06cc", + "pap": "\u067e\u0627\u067e\u06cc\u0627\u0645\u0646\u062a\u0648", + "pau": "\u067e\u0627\u0644\u0627\u0626\u0648\u06cc\u06cc", + "pi": "\u067e\u0627\u0644\u06cc", + "pam": "\u067e\u0627\u0645\u067e\u0627\u0646\u06af\u0627\u06cc\u06cc", + "pon": "\u067e\u0627\u0646\u067e\u06cc\u06cc", + "pag": "\u067e\u0627\u0646\u06af\u0627\u0633\u06cc\u0646\u0627\u0646\u06cc", + "pt": "\u067e\u0631\u062a\u063a\u0627\u0644\u06cc", + "pt_PT": "\u067e\u0631\u062a\u063a\u0627\u0644\u06cc \u0627\u0631\u0648\u067e\u0627", + "pt_BR": "\u067e\u0631\u062a\u063a\u0627\u0644\u06cc \u0628\u0631\u0632\u06cc\u0644", + "prg": "\u067e\u0631\u0648\u0633\u06cc", + "pro": "\u067e\u0631\u0648\u0648\u0627\u0646\u0633\u06cc \u0628\u0627\u0633\u062a\u0627\u0646", + "ps": "\u067e\u0634\u062a\u0648", + "pa": "\u067e\u0646\u062c\u0627\u0628\u06cc", + "pal": "\u067e\u0647\u0644\u0648\u06cc", + "tt": "\u062a\u0627\u062a\u0627\u0631\u06cc", + "tg": "\u062a\u0627\u062c\u06cc\u06a9\u06cc", + "shi": "\u062a\u0627\u0686\u0644\u200c\u0647\u06cc\u062a", + "srn": "\u062a\u0627\u06a9\u06cc\u200c\u062a\u0627\u06a9\u06cc", + "tl": "\u062a\u0627\u06af\u0627\u0644\u0648\u06af\u06cc", + "tmh": "\u062a\u0627\u0645\u0627\u0634\u0642\u06cc", + "ta": "\u062a\u0627\u0645\u06cc\u0644\u06cc", + "ty": "\u062a\u0627\u0647\u06cc\u062a\u06cc\u0627\u06cc\u06cc", + "dav": "\u062a\u0627\u06cc\u062a\u0627", + "th": "\u062a\u0627\u06cc\u0644\u0646\u062f\u06cc", + "bo": "\u062a\u0628\u062a\u06cc", + "tet": "\u062a\u062a\u0648\u0645\u06cc", + "tk": "\u062a\u0631\u06a9\u0645\u0646\u06cc", + "az": "\u062a\u0631\u06a9\u06cc \u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646\u06cc", + "azb": "\u062a\u0631\u06a9\u06cc \u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646\u06cc \u0627\u06cc\u0631\u0627\u0646", + "tr": "\u062a\u0631\u06a9\u06cc \u0627\u0633\u062a\u0627\u0646\u0628\u0648\u0644\u06cc", + "ota": "\u062a\u0631\u06a9\u06cc \u0639\u062b\u0645\u0627\u0646\u06cc", + "crh": "\u062a\u0631\u06a9\u06cc \u06a9\u0631\u06cc\u0645\u0647", + "ter": "\u062a\u0631\u0646\u0648", + "twq": "\u062a\u0633\u0648\u0627\u06a9\u06cc", + "tn": "\u062a\u0633\u0648\u0627\u0646\u0627\u06cc\u06cc", + "ts": "\u062a\u0633\u0648\u0646\u06af\u0627\u06cc\u06cc", + "teo": "\u062a\u0633\u0648\u06cc\u06cc", + "tsi": "\u062a\u0633\u06cc\u0645\u200c\u0634\u06cc\u0627\u0646\u06cc", + "te": "\u062a\u0644\u0648\u06af\u0648\u06cc\u06cc", + "tli": "\u062a\u0644\u06cc\u0646\u200c\u06af\u06cc\u062a\u06cc", + "tem": "\u062a\u0645\u0646\u0647\u200c\u0627\u06cc", + "tpi": "\u062a\u0648\u06a9\u200c\u067e\u06cc\u0633\u06cc\u0646\u06cc", + "tum": "\u062a\u0648\u0645\u0628\u0648\u06a9\u0627\u06cc\u06cc", + "to": "\u062a\u0648\u0646\u06af\u0627\u06cc\u06cc", + "tog": "\u062a\u0648\u0646\u06af\u0627\u06cc\u06cc \u0646\u06cc\u0627\u0633\u0627", + "tvl": "\u062a\u0648\u0648\u0627\u0644\u0648\u06cc\u06cc", + "tyv": "\u062a\u0648\u0648\u0627\u06cc\u06cc", + "tw": "\u062a\u0648\u06cc\u200c\u06cc\u0627\u06cc\u06cc", + "kcg": "\u062a\u06cc\u0627\u067e\u06cc", + "tig": "\u062a\u06cc\u06af\u0631\u0647\u200c\u0627\u06cc", + "ti": "\u062a\u06cc\u06af\u0631\u06cc\u0646\u06cc\u0627\u06cc\u06cc", + "tiv": "\u062a\u06cc\u0648\u06cc", + "jv": "\u062c\u0627\u0648\u0647\u200c\u0627\u06cc", + "chg": "\u062c\u063a\u062a\u0627\u06cc\u06cc", + "kaj": "\u062c\u0648", + "dz": "\u062c\u0648\u0646\u062e\u0627\u06cc\u06cc", + "ch": "\u0686\u0627\u0645\u0648\u0631\u0648\u06cc\u06cc", + "ce": "\u0686\u0686\u0646\u06cc", + "chr": "\u0686\u0631\u0648\u06a9\u06cc\u0627\u06cc\u06cc", + "cs": "\u0686\u06a9\u06cc", + "mul": "\u0686\u0646\u062f\u06cc\u0646 \u0632\u0628\u0627\u0646", + "za": "\u0686\u0648\u0627\u0646\u06af\u06cc", + "cho": "\u0686\u0648\u06a9\u062a\u0648\u06cc\u06cc", + "chk": "\u0686\u0648\u06a9\u06cc", + "cv": "\u0686\u0648\u0648\u0627\u0634\u06cc", + "chb": "\u0686\u06cc\u0628\u0686\u0627", + "chp": "\u0686\u06cc\u067e\u0647\u200c\u0648\u06cc\u0647\u200c\u0627\u06cc", + "cgg": "\u0686\u06cc\u06af\u0627", + "zh": "\u0686\u06cc\u0646\u06cc", + "lzh": "\u0686\u06cc\u0646\u06cc \u0627\u062f\u0628\u06cc", + "zh_Hans": "\u0686\u06cc\u0646\u06cc \u0633\u0627\u062f\u0647\u200c\u0634\u062f\u0647", + "zh_Hant": "\u0686\u06cc\u0646\u06cc \u0633\u0646\u062a\u06cc", + "kha": "\u062e\u0627\u0633\u06cc\u0627\u06cc\u06cc", + "kho": "\u062e\u062a\u0646\u06cc", + "km": "\u062e\u0645\u0631\u06cc", + "xh": "\u062e\u0648\u0633\u0627\u06cc\u06cc", + "dar": "\u062f\u0627\u0631\u0642\u06cc\u0646\u06cc", + "dak": "\u062f\u0627\u06a9\u0648\u062a\u0627\u06cc\u06cc", + "da": "\u062f\u0627\u0646\u0645\u0627\u0631\u06a9\u06cc", + "dyu": "\u062f\u0627\u06cc\u0648\u0644\u0627\u06cc\u06cc", + "gbz": "\u062f\u0631\u06cc \u0632\u0631\u062a\u0634\u062a\u06cc", + "del": "\u062f\u0644\u0627\u0648\u0627\u0631\u06cc", + "dua": "\u062f\u0648\u0622\u0644\u0627\u06cc\u06cc", + "doi": "\u062f\u0648\u06af\u0631\u06cc", + "dgr": "\u062f\u0648\u06af\u0631\u06cc\u0628", + "din": "\u062f\u06cc\u0646\u06a9\u0627\u06cc\u06cc", + "dyo": "\u062f\u06cc\u0648\u0644\u0627 \u0641\u0648\u0646\u06cc", + "rap": "\u0631\u0627\u067e\u0627\u0646\u0648\u06cc\u06cc", + "raj": "\u0631\u0627\u062c\u0633\u062a\u0627\u0646\u06cc", + "rar": "\u0631\u0627\u0631\u0648\u062a\u0648\u0646\u06af\u0627\u06cc\u06cc", + "rwk": "\u0631\u0648\u0627\u06cc\u06cc", + "ru": "\u0631\u0648\u0633\u06cc", + "rm": "\u0631\u0648\u0645\u0627\u0646\u0634", + "rom": "\u0631\u0648\u0645\u0627\u0646\u0648\u06cc\u06cc", + "ro": "\u0631\u0648\u0645\u0627\u0646\u06cc\u0627\u06cc\u06cc", + "rof": "\u0631\u0648\u0645\u0628\u0648\u06cc\u06cc", + "rn": "\u0631\u0648\u0646\u062f\u06cc\u0627\u06cc\u06cc", + "root": "\u0631\u06cc\u0634\u0647", + "zap": "\u0632\u0627\u067e\u0648\u062a\u06a9\u06cc", + "kiu": "\u0632\u0627\u0632\u0627\u06a9\u06cc", + "zza": "\u0632\u0627\u0632\u0627\u06cc\u06cc", + "und": "\u0632\u0628\u0627\u0646 \u0646\u0627\u0645\u0634\u062e\u0635", + "dje": "\u0632\u0631\u0645\u0627", + "zen": "\u0632\u0646\u0627\u06af\u0627", + "zu": "\u0632\u0648\u0644\u0648\u06cc\u06cc", + "zun": "\u0632\u0648\u0646\u06cc\u0627\u06cc\u06cc", + "ja": "\u0698\u0627\u067e\u0646\u06cc", + "sc": "\u0633\u0627\u0631\u062f\u06cc\u0646\u06cc\u0627\u06cc\u06cc", + "sas": "\u0633\u0627\u0633\u0627\u06a9\u06cc", + "saq": "\u0633\u0627\u0645\u0628\u0648\u0631\u0648", + "sm": "\u0633\u0627\u0645\u0648\u0622\u06cc\u06cc", + "sma": "\u0633\u0627\u0645\u06cc \u062c\u0646\u0648\u0628\u06cc", + "se": "\u0633\u0627\u0645\u06cc \u0634\u0645\u0627\u0644\u06cc", + "sat": "\u0633\u0627\u0646\u062a\u0627\u0644\u06cc", + "sad": "\u0633\u0627\u0646\u062f\u0627\u0648\u0647\u200c\u0627\u06cc", + "sbp": "\u0633\u0627\u0646\u06af\u0648", + "sg": "\u0633\u0627\u0646\u06af\u0648\u06cc\u06cc", + "ceb": "\u0633\u0628\u0648\u06cc\u06cc", + "syr": "\u0633\u0631\u06cc\u0627\u0646\u06cc", + "syc": "\u0633\u0631\u06cc\u0627\u0646\u06cc \u06a9\u0644\u0627\u0633\u06cc\u06a9", + "srr": "\u0633\u0631\u06cc\u0631\u06cc", + "sog": "\u0633\u063a\u062f\u06cc", + "sel": "\u0633\u0644\u06a9\u0648\u067e\u06cc", + "seh": "\u0633\u0646\u0627", + "sd": "\u0633\u0646\u062f\u06cc", + "sa": "\u0633\u0646\u0633\u06a9\u0631\u06cc\u062a", + "sw": "\u0633\u0648\u0627\u062d\u0644\u06cc", + "swc": "\u0633\u0648\u0627\u062d\u0644\u06cc \u06a9\u0646\u06af\u0648\u06cc\u06cc", + "ss": "\u0633\u0648\u0627\u0632\u06cc\u0627\u06cc\u06cc", + "sv": "\u0633\u0648\u0626\u062f\u06cc", + "st": "\u0633\u0648\u062a\u0648\u06cc\u06cc \u062c\u0646\u0648\u0628\u06cc", + "nso": "\u0633\u0648\u062a\u0648\u06cc\u06cc \u0634\u0645\u0627\u0644\u06cc", + "sus": "\u0633\u0648\u0633\u0648\u06cc\u06cc", + "suk": "\u0633\u0648\u06a9\u0648\u0645\u0627\u06cc\u06cc", + "xog": "\u0633\u0648\u06af\u0627\u06cc\u06cc", + "so": "\u0633\u0648\u0645\u0627\u0644\u06cc\u0627\u06cc\u06cc", + "sux": "\u0633\u0648\u0645\u0631\u06cc", + "su": "\u0633\u0648\u0646\u062f\u0627\u06cc\u06cc", + "snk": "\u0633\u0648\u0646\u06cc\u0646\u06a9\u0647\u200c\u0627\u06cc", + "sid": "\u0633\u06cc\u062f\u0627\u0645\u0648\u06cc\u06cc", + "scn": "\u0633\u06cc\u0633\u06cc\u0644\u06cc", + "si": "\u0633\u06cc\u0646\u0647\u0627\u0644\u06cc", + "ksb": "\u0634\u0627\u0645\u0628\u0627\u0644\u0627", + "shn": "\u0634\u0627\u0646\u06cc", + "chy": "\u0634\u0627\u06cc\u0627\u0646\u06cc", + "sn": "\u0634\u0648\u0646\u0627\u06cc\u06cc", + "sh": "\u0635\u0631\u0628 \u0648 \u06a9\u0631\u0648\u0627\u062a\u06cc", + "sr": "\u0635\u0631\u0628\u06cc", + "dsb": "\u0635\u064f\u0631\u0628\u06cc \u0633\u0641\u0644\u06cc", + "hsb": "\u0635\u064f\u0631\u0628\u06cc \u0639\u0644\u06cc\u0627", + "he": "\u0639\u0628\u0631\u06cc", + "ar": "\u0639\u0631\u0628\u06cc", + "arq": "\u0639\u0631\u0628\u06cc \u0627\u0644\u062c\u0632\u0627\u06cc\u0631\u06cc", + "aeb": "\u0639\u0631\u0628\u06cc \u062a\u0648\u0646\u0633\u06cc", + "shu": "\u0639\u0631\u0628\u06cc \u0686\u0627\u062f\u06cc", + "ar_001": "\u0639\u0631\u0628\u06cc \u0631\u0633\u0645\u06cc", + "ary": "\u0639\u0631\u0628\u06cc \u0645\u0631\u0627\u06a9\u0634\u06cc", + "arz": "\u0639\u0631\u0628\u06cc \u0645\u0635\u0631\u06cc", + "jrb": "\u0639\u0631\u0628\u06cc \u06cc\u0647\u0648\u062f\u06cc", + "elx": "\u0639\u06cc\u0644\u0627\u0645\u06cc", + "fa": "\u0641\u0627\u0631\u0633\u06cc", + "peo": "\u0641\u0627\u0631\u0633\u06cc \u0628\u0627\u0633\u062a\u0627\u0646", + "jpr": "\u0641\u0627\u0631\u0633\u06cc \u06cc\u0647\u0648\u062f\u06cc", + "fo": "\u0641\u0627\u0631\u0648\u06cc\u06cc", + "fat": "\u0641\u0627\u0646\u062a\u06cc\u0627\u06cc\u06cc", + "fan": "\u0641\u0627\u0646\u06a9\u06cc", + "fr": "\u0641\u0631\u0627\u0646\u0633\u0648\u06cc", + "fro": "\u0641\u0631\u0627\u0646\u0633\u0648\u06cc \u0628\u0627\u0633\u062a\u0627\u0646", + "fr_CH": "\u0641\u0631\u0627\u0646\u0633\u0648\u06cc \u0633\u0648\u0626\u06cc\u0633", + "fr_CA": "\u0641\u0631\u0627\u0646\u0633\u0648\u06cc \u06a9\u0627\u0646\u0627\u062f\u0627", + "frm": "\u0641\u0631\u0627\u0646\u0633\u0648\u06cc \u0645\u06cc\u0627\u0646\u0647", + "frs": "\u0641\u0631\u06cc\u0632\u06cc \u0634\u0631\u0642\u06cc", + "frr": "\u0641\u0631\u06cc\u0632\u06cc \u0634\u0645\u0627\u0644\u06cc", + "fy": "\u0641\u0631\u06cc\u0632\u06cc \u063a\u0631\u0628\u06cc", + "fur": "\u0641\u0631\u06cc\u0648\u0644\u06cc\u0627\u06cc\u06cc", + "nl_BE": "\u0641\u0644\u0645\u0646\u06af\u06cc", + "fi": "\u0641\u0646\u0644\u0627\u0646\u062f\u06cc", + "phn": "\u0641\u0646\u06cc\u0642\u06cc", + "ff": "\u0641\u0648\u0644\u0627\u06cc\u06cc", + "fon": "\u0641\u0648\u0646\u06cc", + "fj": "\u0641\u06cc\u062c\u06cc\u0627\u06cc\u06cc", + "fil": "\u0641\u06cc\u0644\u06cc\u067e\u06cc\u0646\u06cc", + "kab": "\u0642\u0628\u0627\u06cc\u0644\u06cc", + "cop": "\u0642\u0628\u0637\u06cc", + "ky": "\u0642\u0631\u0642\u06cc\u0632\u06cc", + "krc": "\u0642\u0631\u0647\u200c\u0686\u0627\u06cc\u06cc\u2010\u0628\u0627\u0644\u06a9\u0627\u0631\u06cc", + "kaa": "\u0642\u0631\u0647\u200c\u0642\u0627\u0644\u067e\u0627\u0642\u06cc", + "kk": "\u0642\u0632\u0627\u0642\u06cc", + "xal": "\u0642\u0644\u0645\u0648\u0642\u06cc", + "kbd": "\u06a9\u0627\u0628\u0627\u0631\u062f\u06cc\u0646\u06cc", + "kea": "\u06a9\u0627\u0628\u0648\u0648\u0631\u062f\u06cc\u0627\u0646\u0648", + "ca": "\u06a9\u0627\u062a\u0627\u0644\u0627\u0646", + "kac": "\u06a9\u0627\u0686\u06cc\u0646\u06cc", + "cad": "\u06a9\u0627\u062f\u0648\u06cc\u06cc", + "car": "\u06a9\u0627\u0631\u06cc\u0628\u06cc", + "csb": "\u06a9\u0627\u0634\u0648\u0628\u06cc", + "kln": "\u06a9\u0627\u0644\u0646\u062c\u06cc\u0646", + "kam": "\u06a9\u0627\u0645\u0628\u0627\u06cc\u06cc", + "kn": "\u06a9\u0627\u0646\u0627\u062f\u0647\u200c\u0627\u06cc", + "yue": "\u06a9\u0627\u0646\u062a\u0648\u0646\u06cc", + "kr": "\u06a9\u0627\u0646\u0648\u0631\u06cc\u0627\u06cc\u06cc", + "kaw": "\u06a9\u0627\u0648\u06cc\u0627\u06cc\u06cc", + "kpe": "\u06a9\u067e\u0644\u0647\u200c\u0627\u06cc", + "qu": "\u06a9\u0686\u0648\u0627\u06cc\u06cc", + "ku": "\u06a9\u0631\u062f\u06cc", + "ckb": "\u06a9\u0631\u062f\u06cc \u0633\u0648\u0631\u0627\u0646\u06cc", + "kw": "\u06a9\u0631\u0646\u0648\u0627\u0644\u06cc", + "hr": "\u06a9\u0631\u0648\u0627\u062a", + "ko": "\u06a9\u0631\u0647\u200c\u0627\u06cc", + "cr": "\u06a9\u0631\u06cc\u0627\u06cc\u06cc", + "mus": "\u06a9\u0631\u06cc\u06a9\u06cc", + "ks": "\u06a9\u0634\u0645\u06cc\u0631\u06cc", + "tlh": "\u06a9\u0644\u06cc\u0646\u06af\u0648\u0646", + "kok": "\u06a9\u0646\u06a9\u0627\u0646\u06cc", + "kg": "\u06a9\u0646\u06af\u0648\u06cc\u06cc", + "nmg": "\u06a9\u0648\u0627\u0632\u06cc\u0648", + "kj": "\u06a9\u0648\u0627\u0646\u06cc\u0627\u0645\u0627", + "kut": "\u06a9\u0648\u062a\u0646\u06cc", + "khq": "\u06a9\u0648\u062c\u0631\u0627\u0686\u06cc\u0646\u06cc", + "co": "\u06a9\u0648\u0631\u0633\u06cc", + "kfo": "\u06a9\u0648\u0631\u0648", + "kru": "\u06a9\u0648\u0631\u0648\u062e\u06cc", + "swb": "\u06a9\u0648\u0645\u0648\u0631\u06cc", + "koi": "\u06a9\u0648\u0645\u06cc \u067e\u0631\u0645\u06cc\u0627\u06a9", + "kv": "\u06a9\u0648\u0645\u06cc\u0627\u06cc\u06cc", + "kum": "\u06a9\u0648\u0645\u06cc\u06a9\u06cc", + "ses": "\u06a9\u0648\u06cc\u0631\u0627\u0628\u0648\u0631\u0627 \u0633\u0646\u06cc", + "khw": "\u06a9\u0647\u0648\u0627\u0631", + "quc": "\u06a9\u06cc\u0686\u0647\u200c", + "ki": "\u06a9\u06cc\u06a9\u0648\u06cc\u0648\u06cc\u06cc", + "kmb": "\u06a9\u06cc\u0645\u0628\u0648\u0646\u062f\u0648\u06cc\u06cc", + "rw": "\u06a9\u06cc\u0646\u06cc\u0627\u0631\u0648\u0627\u0646\u062f\u0627\u06cc\u06cc", + "gag": "\u06af\u0627\u06af\u0627\u0648\u0632", + "gl": "\u06af\u0627\u0644\u06cc\u0633\u06cc\u0627\u06cc\u06cc", + "lg": "\u06af\u0627\u0646\u062f\u0627\u06cc\u06cc", + "gay": "\u06af\u0627\u06cc\u0648\u06cc\u06cc", + "gaa": "\u06af\u0627\u06cc\u06cc", + "gba": "\u06af\u0628\u0627\u06cc\u0627\u06cc\u06cc", + "gu": "\u06af\u062c\u0631\u0627\u062a\u06cc", + "ka": "\u06af\u0631\u062c\u06cc", + "grb": "\u06af\u0631\u06cc\u0628\u0648\u06cc\u06cc", + "kl": "\u06af\u0631\u06cc\u0646\u0644\u0646\u062f\u06cc", + "gn": "\u06af\u0648\u0627\u0631\u0627\u0646\u06cc", + "got": "\u06af\u0648\u062a\u06cc", + "gor": "\u06af\u0648\u0631\u0648\u0646\u062a\u0627\u0644\u0648", + "guz": "\u06af\u0648\u0633\u06cc", + "gon": "\u06af\u0648\u0646\u062f\u06cc", + "gwi": "\u06af\u0648\u06cc\u0686 \u0627\u06cc\u0646", + "gez": "\u06af\u06cc\u200c\u0626\u0632\u06cc", + "gil": "\u06af\u06cc\u0644\u0628\u0631\u062a\u06cc", + "glk": "\u06af\u06cc\u0644\u06a9\u06cc", + "gd": "\u06af\u06cc\u0644\u06cc \u0627\u0633\u06a9\u0627\u062a\u0644\u0646\u062f\u06cc", + "lo": "\u0644\u0627\u0626\u0648\u0633\u06cc", + "la": "\u0644\u0627\u062a\u06cc\u0646\u06cc", + "lad": "\u0644\u0627\u062f\u06cc\u0646\u0648", + "lkt": "\u0644\u0627\u06a9\u0648\u062a\u0627", + "lam": "\u0644\u0627\u0645\u0628\u0627", + "lag": "\u0644\u0627\u0646\u06af\u06cc", + "lah": "\u0644\u0627\u0647\u0646\u062f\u0627", + "lv": "\u0644\u062a\u0648\u0646\u06cc\u0627\u06cc\u06cc", + "bqi": "\u0644\u0631\u06cc \u0628\u062e\u062a\u06cc\u0627\u0631\u06cc", + "lez": "\u0644\u0632\u06af\u06cc", + "luo": "\u0644\u0648\u0626\u0648\u06cc\u06cc", + "lu": "\u0644\u0648\u0628\u0627\u06cc\u06cc\u2010\u06a9\u0627\u062a\u0627\u0646\u06af\u0627", + "lua": "\u0644\u0648\u0628\u0627\u06cc\u06cc\u2010\u0644\u0648\u0644\u0648\u0627", + "jbo": "\u0644\u0648\u062c\u0628\u0627\u0646", + "loz": "\u0644\u0648\u0632\u06cc\u0627\u06cc\u06cc", + "lus": "\u0644\u0648\u0634\u0647\u200c\u0627\u06cc", + "lb": "\u0644\u0648\u06af\u0632\u0627\u0645\u0628\u0648\u0631\u06af\u06cc", + "smj": "\u0644\u0648\u0644\u0647 \u0633\u0627\u0645\u06cc", + "lun": "\u0644\u0648\u0646\u062f\u0627\u06cc\u06cc", + "luy": "\u0644\u0648\u06cc\u0627", + "lui": "\u0644\u0648\u06cc\u0633\u0646\u0648", + "pl": "\u0644\u0647\u0633\u062a\u0627\u0646\u06cc", + "lt": "\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc", + "li": "\u0644\u06cc\u0645\u0628\u0648\u0631\u06af\u06cc", + "ln": "\u0644\u06cc\u0646\u06af\u0627\u0644\u0627", + "mi": "\u0645\u0627\u0626\u0648\u0631\u06cc\u0627\u06cc\u06cc", + "arn": "\u0645\u0627\u067e\u0648\u0686\u0647\u200c\u0627\u06cc", + "jmc": "\u0645\u0627\u0686\u0627\u0645\u0647\u200c\u0627\u06cc", + "mad": "\u0645\u0627\u062f\u0648\u0631\u0627\u06cc\u06cc", + "mh": "\u0645\u0627\u0631\u0634\u0627\u0644\u06cc", + "mwr": "\u0645\u0627\u0631\u0648\u0627\u0631\u06cc", + "chm": "\u0645\u0627\u0631\u06cc\u0627\u06cc\u06cc", + "mas": "\u0645\u0627\u0633\u0627\u06cc\u06cc", + "mos": "\u0645\u0627\u0633\u06cc\u0627\u06cc\u06cc", + "mak": "\u0645\u0627\u06a9\u0627\u0633\u0627\u0631", + "mgh": "\u0645\u0627\u06a9\u0648\u0627 \u0645\u062a\u0648", + "kde": "\u0645\u0627\u06a9\u0648\u0646\u062f\u0647", + "mag": "\u0645\u0627\u06af\u0627\u0647\u06cc\u0627\u06cc\u06cc", + "mg": "\u0645\u0627\u0644\u0627\u06af\u0627\u0633\u06cc\u0627\u06cc\u06cc", + "ml": "\u0645\u0627\u0644\u0627\u06cc\u0627\u0644\u0627\u0645\u06cc", + "ms": "\u0645\u0627\u0644\u0627\u06cc\u06cc", + "mt": "\u0645\u0627\u0644\u062a\u06cc", + "dv": "\u0645\u0627\u0644\u062f\u06cc\u0648\u06cc", + "mnc": "\u0645\u0627\u0646\u0686\u0648\u06cc\u06cc", + "mdr": "\u0645\u0627\u0646\u062f\u0627\u0631", + "mua": "\u0645\u0627\u0646\u062f\u0627\u0646\u06af\u06cc", + "man": "\u0645\u0627\u0646\u062f\u06cc\u0646\u06af\u0648\u06cc\u06cc", + "gv": "\u0645\u0627\u0646\u06cc", + "mai": "\u0645\u0627\u06cc\u062f\u06cc\u0644\u06cc", + "mgo": "\u0645\u062a\u0627\u06cc\u06cc", + "hu": "\u0645\u062c\u0627\u0631\u06cc", + "mr": "\u0645\u0631\u0627\u062a\u06cc", + "mer": "\u0645\u0631\u0648\u06cc\u06cc", + "egy": "\u0645\u0635\u0631\u06cc \u06a9\u0647\u0646", + "mn": "\u0645\u063a\u0648\u0644\u06cc", + "mk": "\u0645\u0642\u062f\u0648\u0646\u06cc", + "mdf": "\u0645\u06a9\u0634\u0627\u06cc\u06cc", + "men": "\u0645\u0646\u062f\u0647\u200c\u0627\u06cc", + "ho": "\u0645\u0648\u062a\u0648\u06cc\u06cc \u0647\u06cc\u0631\u06cc", + "mfe": "\u0645\u0648\u0631\u06cc\u0633\u06cc\u0646", + "ro_MD": "\u0645\u0648\u0644\u062f\u0627\u0648\u06cc\u0627\u06cc\u06cc", + "lol": "\u0645\u0648\u0646\u06af\u0648\u06cc\u06cc", + "moh": "\u0645\u0648\u0647\u0627\u06a9\u06cc", + "ia": "\u0645\u06cc\u0627\u0646\u200c\u0632\u0628\u0627\u0646", + "mni": "\u0645\u06cc\u062a\u0647\u200c\u0627\u06cc", + "mic": "\u0645\u06cc\u06a9\u0645\u0627\u06a9\u06cc", + "min": "\u0645\u06cc\u0646\u0627\u0646\u06af\u200c\u06a9\u0627\u0628\u0648\u06cc\u06cc", + "na": "\u0646\u0627\u0626\u0648\u0631\u0648\u06cc\u06cc", + "nap": "\u0646\u0627\u067e\u0644\u06cc", + "naq": "\u0646\u0627\u0645\u0627\u06cc\u06cc", + "nv": "\u0646\u0627\u0648\u0627\u0647\u0648\u06cc\u06cc", + "ne": "\u0646\u067e\u0627\u0644\u06cc", + "non": "\u0646\u0631\u0633 \u0628\u0627\u0633\u062a\u0627\u0646", + "nn": "\u0646\u0631\u0633 \u062c\u062f\u06cc\u062f \u0646\u0631\u0648\u0698\u06cc", + "no": "\u0646\u0631\u0648\u0698\u06cc", + "nzi": "\u0646\u0632\u06cc\u0645\u0627\u06cc\u06cc", + "nog": "\u0646\u063a\u0627\u06cc\u06cc", + "nqo": "\u0646\u06a9\u0648", + "jgo": "\u0646\u06af\u0648\u0645\u0628\u0627", + "new": "\u0646\u0648\u0627\u0631\u06cc\u0627\u06cc\u06cc", + "nwc": "\u0646\u0648\u0627\u0631\u06cc\u0627\u06cc\u06cc \u06a9\u0644\u0627\u0633\u06cc\u06a9", + "nus": "\u0646\u0648\u06cc\u0631", + "nia": "\u0646\u06cc\u0627\u0633\u06cc", + "nym": "\u0646\u06cc\u0627\u0645\u200c\u0648\u0632\u06cc\u0627\u06cc\u06cc", + "ny": "\u0646\u06cc\u0627\u0646\u062c\u0627\u06cc\u06cc", + "nyn": "\u0646\u06cc\u0627\u0646\u06a9\u0648\u0644\u0647\u200c\u0627\u06cc", + "nyo": "\u0646\u06cc\u0648\u0631\u0648\u06cc\u06cc", + "niu": "\u0646\u06cc\u0648\u06cc\u06cc", + "war": "\u0648\u0627\u0631\u0627\u06cc\u06cc", + "was": "\u0648\u0627\u0634\u0648\u06cc\u06cc", + "wal": "\u0648\u0627\u0644\u0627\u0645\u0648", + "wa": "\u0648\u0627\u0644\u0648\u0646\u06cc", + "vot": "\u0648\u062a\u06cc", + "vo": "\u0648\u0644\u0627\u067e\u0648\u06a9", + "wo": "\u0648\u0644\u0648\u0641\u06cc", + "vun": "\u0648\u0646\u062c\u0648", + "ve": "\u0648\u0646\u062f\u0627\u06cc\u06cc", + "vai": "\u0648\u06cc\u0627\u06cc\u06cc", + "vi": "\u0648\u06cc\u062a\u0646\u0627\u0645\u06cc", + "cy": "\u0648\u06cc\u0644\u0632\u06cc", + "ht": "\u0647\u0627\u0626\u06cc\u062a\u06cc\u0627\u06cc\u06cc", + "haw": "\u0647\u0627\u0648\u0627\u0626\u06cc\u0627\u06cc\u06cc", + "hai": "\u0647\u0627\u06cc\u062f\u0627\u06cc\u06cc", + "hz": "\u0647\u0631\u06cc\u0631\u0648\u06cc\u06cc", + "nl": "\u0647\u0644\u0646\u062f\u06cc", + "dum": "\u0647\u0644\u0646\u062f\u06cc \u0645\u06cc\u0627\u0646\u0647", + "hmn": "\u0647\u0645\u0648\u0646\u06af", + "hi": "\u0647\u0646\u062f\u06cc", + "hif": "\u0647\u0646\u062f\u06cc \u0641\u06cc\u062c\u06cc\u0627\u06cc\u06cc", + "hup": "\u0647\u0648\u067e\u0627", + "ha": "\u0647\u0648\u0633\u06cc\u0627\u06cc\u06cc", + "hit": "\u0647\u06cc\u062a\u06cc", + "hil": "\u0647\u06cc\u0644\u06cc\u200c\u06af\u0627\u06cc\u0646\u0648\u0646\u06cc", + "yao": "\u06cc\u0627\u0626\u0648\u06cc\u06cc", + "yap": "\u06cc\u0627\u067e\u06cc", + "sah": "\u06cc\u0627\u0642\u0648\u062a\u06cc", + "yi": "\u06cc\u062f\u06cc", + "yo": "\u06cc\u0648\u0631\u0648\u0628\u0627\u06cc\u06cc", + "el": "\u06cc\u0648\u0646\u0627\u0646\u06cc", + "grc": "\u06cc\u0648\u0646\u0627\u0646\u06cc \u06a9\u0647\u0646", + "ii": "\u06cc\u06cc \u0633\u06cc\u0686\u0648\u0627\u0646", + "bss": "Akoose", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "cch": "Atsam", + "awa": "Awadhi", + "bfq": "Badaga", + "bfd": "Bafut", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bew": "Betawi", + "bpy": "Bishnupriya", + "zbl": "Blissymbols", + "bum": "Bulu", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "ksh": "Colognian", + "dzg": "Dazaga", + "egl": "Emilian", + "ext": "Extremaduran", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "ibb": "Ibibio", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "kbl": "Kanembu", + "krl": "Karelian", + "ken": "Kenyang", + "krj": "Kinaray-a", + "bkm": "Kom", + "kos": "Kosraean", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "mde": "Maba", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "byv": "Medumba", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "ttt": "Muslim Tat", + "mye": "Myene", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "see": "Seneca", + "sei": "Seri", + "bla": "Siksika", + "szl": "Silesian", + "den": "Slave", + "tly": "Talysh", + "trv": "Taroko", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zea": "Zeelandic" +} diff --git a/public/intl/language/fi-FI.json b/public/intl/language/fi-FI.json new file mode 100644 index 0000000..8c4b93b --- /dev/null +++ b/public/intl/language/fi-FI.json @@ -0,0 +1,611 @@ +{ + "ab": "abhaasi", + "ada": "adangme", + "ady": "adyge", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ay": "aimara", + "ain": "ainu", + "ak": "akan", + "akk": "akkadi", + "akz": "alabama", + "nds": "alasaksa", + "esu": "alaskanjupik", + "dsb": "alasorbi", + "sq": "albania", + "ale": "aleutti", + "arq": "algerianarabia", + "alt": "altai", + "en_US": "amerikanenglanti", + "es_419": "amerikanespanja", + "ase": "amerikkalainen viittomakieli", + "am": "amhara", + "anp": "angika", + "njo": "ao naga", + "ar": "arabia", + "an": "aragonia", + "aro": "araona", + "arp": "arapaho", + "arw": "arawak", + "hy": "armenia", + "rup": "aromania", + "frp": "arpitaani", + "as": "assami", + "ast": "asturia", + "asa": "asu", + "cch": "atsam", + "ace": "at\u0161eh", + "ach": "at\u0161oli", + "en_AU": "australianenglanti", + "av": "avaari", + "ae": "avesta", + "awa": "awadhi", + "az": "azeri", + "bfq": "badaga", + "ksf": "bafia", + "bqi": "bahtiari", + "bar": "baijeri", + "ban": "bali", + "bm": "bambara", + "bax": "bamum", + "bjn": "banjar", + "bas": "basaa", + "eu": "baski", + "ba": "ba\u0161kiiri", + "bbc": "batak-toba", + "bej": "bed\u017ea", + "bal": "belut\u0161i", + "bem": "bemba", + "bez": "bena", + "bn": "bengali", + "bew": "betawi", + "bho": "bhod\u017epuri", + "bik": "bikol", + "byn": "bilin", + "bin": "bini", + "bi": "bislama", + "bpy": "bi\u0161nupria", + "zbl": "blisskieli", + "brx": "bodo", + "bs": "bosnia", + "bra": "brad\u017e", + "brh": "brahui", + "pt_BR": "brasilianportugali", + "br": "bretoni", + "en_GB": "britannianenglanti", + "bug": "bugi", + "bg": "bulgaria", + "bum": "bulu", + "bua": "burjaatti", + "my": "burma", + "cad": "caddo", + "frc": "cajun", + "cps": "capiznon", + "cay": "cayuga", + "ceb": "cebuano", + "chr": "cherokee", + "chy": "cheyenne", + "qug": "chimborazonyl\u00e4nk\u00f6ket\u0161ua", + "chn": "chinook-jargon", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuuk", + "cr": "cree", + "mus": "creek", + "dak": "dakota", + "dar": "dargi", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dv": "divehi", + "dje": "djerma", + "dyu": "djula", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dtp": "dusun", + "dz": "dzongkha", + "efi": "efik", + "arz": "egyptinarabia", + "zxx": "ei kielellist\u00e4 sis\u00e4lt\u00f6\u00e4", + "eka": "ekajuk", + "elx": "elami", + "ebu": "embu", + "egl": "emilia", + "en": "englanti", + "myv": "ers\u00e4", + "es": "espanja", + "es_ES": "espanjanespanja", + "eo": "esperanto", + "nr": "etel\u00e4-ndebele", + "azb": "etel\u00e4azeri", + "sma": "etel\u00e4saame", + "st": "etel\u00e4sotho", + "ee": "ewe", + "ewo": "ewondo", + "ext": "extremadura", + "fan": "fang", + "fat": "fanti", + "fa": "farsi", + "fj": "fid\u017ei", + "hif": "fid\u017einhindi", + "fil": "filipino", + "nl_BE": "flaami", + "phn": "foinikia", + "fon": "fon", + "gur": "frafra", + "fur": "friuli", + "ff": "fulani", + "bfd": "fut", + "fo": "f\u00e4\u00e4ri", + "gaa": "ga", + "gd": "gaeli", + "gag": "gagauzi", + "gay": "gajo", + "gl": "galicia", + "gan": "gan-kiina", + "lg": "ganda", + "gba": "gbaja", + "gez": "ge\u2019ez", + "aln": "geg", + "ka": "georgia", + "bbj": "ghomala", + "glk": "gilaki", + "gom": "goankonkani", + "gon": "gondi", + "got": "gootti", + "gor": "gorontalo", + "grb": "grebo", + "gn": "guarani", + "gu": "gud\u017earati", + "guz": "gusii", + "gwi": "gwit\u0161in", + "hai": "haida", + "ht": "haiti", + "hak": "hakka-kiina", + "ha": "hausa", + "haw": "havaiji", + "hit": "heetti", + "he": "heprea", + "hz": "herero", + "hil": "hiligaino", + "hi": "hindi", + "ho": "hiri-motu", + "hmn": "hmong", + "nl": "hollanti", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ga": "iiri", + "ilo": "iloko", + "smn": "inarinsaame", + "id": "indonesia", + "inh": "inguu\u0161i", + "izh": "inkeroinen", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaq", + "is": "islanti", + "it": "italia", + "frs": "it\u00e4friisi", + "de_AT": "it\u00e4vallansaksa", + "jv": "jaava", + "sah": "jakuutti", + "jam": "jamaikankreolienglanti", + "yao": "jao", + "ja": "japani", + "yap": "japi", + "yi": "jiddi\u0161", + "kaj": "jju", + "dyo": "jola-fonyi", + "yo": "joruba", + "root": "juuri", + "jrb": "juutalaisarabia", + "jpr": "juutalaispersia", + "jut": "juutti", + "kbd": "kabardi", + "kab": "kabyyli", + "kgp": "kaingang", + "kkj": "kako", + "kl": "kalaallisut", + "kln": "kalenjin", + "xal": "kalmukki", + "kam": "kamba", + "en_CA": "kanadanenglanti", + "fr_CA": "kanadanranska", + "kbl": "kanembu", + "kn": "kannada", + "yue": "kantoninkiina", + "kr": "kanuri", + "kea": "kapverdenkreoli", + "kaa": "karakalpakki", + "krc": "karat\u0161ai-balkaari", + "car": "karibi", + "krl": "karjala", + "ks": "ka\u0161miri", + "csb": "ka\u0161ubi", + "ca": "katalaani", + "lu": "katanganluba", + "kac": "kat\u0161in", + "kaw": "kavi", + "kk": "kazakki", + "ken": "kenyang", + "mga": "keski-iiri", + "tzm": "keskiatlaksentamazight", + "enm": "keskienglanti", + "dum": "keskihollanti", + "frm": "keskiranska", + "gmh": "keskiyl\u00e4saksa", + "qu": "ket\u0161ua", + "kha": "khasi", + "km": "khmer", + "kho": "khotani", + "khw": "khowar", + "cgg": "kiga", + "zh": "kiina", + "ki": "kikuju", + "kmb": "kimbundu", + "krj": "kinaray-a", + "swc": "kingwana", + "ky": "kirgiisi", + "gil": "kiribati", + "cu": "kirkkoslaavi", + "kiu": "kirmanjki", + "lzh": "klassinen kiina", + "nwc": "klassinen newari", + "tlh": "klingon", + "sms": "koltansaame", + "bkm": "kom", + "kv": "komi", + "koi": "komipermjakki", + "swb": "komori", + "kg": "kongo", + "kok": "konkani", + "bss": "koose", + "cop": "kopti", + "ko": "korea", + "kw": "korni", + "co": "korsika", + "kos": "kosrae", + "avk": "kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "el": "kreikka", + "crh": "krimintataari", + "kri": "krio", + "hr": "kroatia", + "kj": "kuanjama", + "kum": "kumykki", + "ku": "kurdi", + "kru": "kurukh", + "kut": "kutenai", + "nmg": "kwasio", + "cy": "kymri", + "quc": "k\u02bciche\u02bc", + "ksh": "k\u00f6lsch", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "lango", + "lo": "lao", + "ltg": "latgalli", + "la": "latina", + "lv": "latvia", + "lzz": "lazi", + "lez": "lezgi", + "lt": "liettua", + "lij": "liguuri", + "liv": "liivi", + "li": "limburg", + "ln": "lingala", + "lfn": "lingua franca nova", + "jbo": "lojban", + "lmo": "lombardi", + "loz": "lozi", + "luy": "luhya", + "lui": "luise\u00f1o", + "lua": "luluanluba", + "lun": "lunda", + "luo": "luo", + "lus": "lusai", + "smj": "luulajansaame", + "lb": "luxemburg", + "vls": "l\u00e4nsiflaami", + "fy": "l\u00e4nsifriisi", + "mas": "maasai", + "mde": "maba", + "jmc": "machame", + "mad": "madura", + "maf": "mafa", + "mag": "magahi", + "vmf": "maininfrankki", + "mai": "maithili", + "mak": "makassar", + "mk": "makedonia", + "kde": "makonde", + "mgh": "makua-meetto", + "mg": "malagassi", + "ms": "malaiji", + "ml": "malajalam", + "tog": "malawintonga", + "mt": "malta", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuri", + "gv": "manksi", + "mnc": "mant\u0161u", + "mi": "maori", + "arn": "mapudungun", + "mr": "marathi", + "chm": "mari", + "ary": "marokonarabia", + "mh": "marshall", + "mwr": "marwari", + "mzn": "mazandarani", + "umb": "mbundu", + "byv": "medumba", + "es_MX": "meksikonespanja", + "men": "mende", + "mwv": "mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "fit": "me\u00e4nkieli", + "mic": "micmac", + "nan": "min nan -kiina", + "min": "minangkabau", + "xmf": "mingreli", + "mwl": "mirandeesi", + "moh": "mohawk", + "mdf": "mok\u0161a", + "ro_MD": "moldova", + "lol": "mongo", + "mn": "mongoli", + "mul": "monia kieli\u00e4", + "mfe": "morisyen", + "mos": "mossi", + "egy": "muinaisegypti", + "ang": "muinaisenglanti", + "sga": "muinaisiiri", + "grc": "muinaiskreikka", + "non": "muinaisnorja", + "peo": "muinaispersia", + "prg": "muinaispreussi", + "pro": "muinaisprovensaali", + "fro": "muinaisranska", + "syc": "muinaissyyria", + "goh": "muinaisyl\u00e4saksa", + "mua": "mundang", + "mye": "myene", + "und": "m\u00e4\u00e4ritt\u00e4m\u00e4t\u00f6n kieli", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napoli", + "na": "nauru", + "nv": "navajo", + "ng": "ndonga", + "yrl": "\u00f1eengat\u00fa", + "ne": "nepali", + "new": "newari", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "nia": "nias", + "niu": "niue", + "ny": "njand\u017ea", + "nog": "nogai", + "no": "norja", + "nb": "norjan bokm\u00e5l", + "nn": "norjan nynorsk", + "kfo": "norsunluurannikonkoro", + "nov": "novial", + "nus": "nuer", + "nym": "nyamwezi", + "nyn": "nyankole", + "nyo": "nyoro", + "nzi": "nzima", + "oj": "od\u017eibwa", + "oc": "oksitaani", + "or": "orija", + "om": "oromo", + "osa": "osage", + "ota": "osmani", + "os": "osseetti", + "pi": "paali", + "pal": "pahlavi", + "pau": "palau", + "pam": "pampanga", + "pa": "pand\u017eabi", + "pag": "pangasinan", + "pap": "papiamentu", + "ps": "pa\u0161tu", + "pdc": "pennsylvaniansaksa", + "zh_Hant": "perinteinen kiina", + "pfl": "pfaltsi", + "pcd": "picardi", + "pms": "piemonte", + "pdt": "plautdietsch", + "nd": "pohjois-ndebele", + "frr": "pohjoisfriisi", + "se": "pohjoissaame", + "nso": "pohjoissotho", + "pon": "pohnpei", + "pnt": "pontoksenkreikka", + "pt": "portugali", + "pt_PT": "portugalinportugali", + "pl": "puola", + "raj": "rad\u017eastani", + "fr": "ranska", + "rap": "rapanui", + "rar": "rarotonga", + "rm": "retoromaani", + "rgn": "romagnoli", + "rom": "romani", + "ro": "romania", + "rof": "rombo", + "rtm": "rotuma", + "rug": "roviana", + "rw": "ruanda", + "rn": "rundi", + "sv": "ruotsi", + "rue": "ruteeni", + "rwk": "rwa", + "ssy": "saho", + "de": "saksa", + "sam": "samarianaramea", + "saq": "samburu", + "sm": "samoa", + "sgs": "samogiitti", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santali", + "sc": "sardi", + "sas": "sasak", + "sdc": "sassarinsardi", + "stq": "saterlandinfriisi", + "saz": "saura\u0161tri", + "zea": "seelanti", + "sly": "selayar", + "sel": "selkuppi", + "seh": "sena", + "see": "seneca", + "sr": "serbia", + "sh": "serbokroaatti", + "srr": "serer", + "sei": "seri", + "ksb": "shambala", + "shn": "shan", + "ii": "sichuanin-yi", + "sid": "sidamo", + "bla": "siksika", + "sd": "sindhi", + "si": "sinhala", + "scn": "sisilia", + "sco": "skotti", + "szl": "sleesia", + "sli": "sleesiansaksa", + "den": "slevi", + "sk": "slovakki", + "sl": "sloveeni", + "xog": "soga", + "sog": "sogdi", + "so": "somali", + "sn": "\u0161ona", + "snk": "soninke", + "ckb": "sorani", + "srn": "sranan", + "suk": "sukuma", + "sux": "sumeri", + "su": "sunda", + "fi": "suomi", + "sus": "susu", + "fr_CH": "sveitsinranska", + "gsw": "sveitsinsaksa", + "de_CH": "sveitsinyl\u00e4saksa", + "sw": "swahili", + "ss": "swazi", + "syr": "syyria", + "tg": "tad\u017eikki", + "tl": "tagalog", + "ty": "tahiti", + "dav": "taita", + "tly": "tali\u0161i", + "tmh": "tama\u0161ek", + "ta": "tamili", + "da": "tanska", + "rif": "tarifit", + "trv": "taroko", + "twq": "tasawaq", + "shi": "ta\u0161elhit", + "tt": "tataari", + "ttt": "tati", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thai", + "tig": "tigre", + "ti": "tigrinja", + "bo": "tiibet", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok-pisin", + "tkl": "tokelau", + "to": "tonga", + "shu": "t\u0161adinarabia", + "chg": "t\u0161agatai", + "tkr": "tsahuri", + "tsd": "tsakonia", + "ch": "t\u0161amorro", + "cs": "t\u0161ekki", + "ce": "t\u0161et\u0161eeni", + "chb": "t\u0161ibt\u0161a", + "tsi": "tsim\u0161i", + "ts": "tsonga", + "cv": "t\u0161uvassi", + "tn": "tswana", + "tcy": "tulu", + "tum": "tumbuka", + "aeb": "tunisianarabia", + "tr": "turkki", + "tk": "turkmeeni", + "tru": "turojo", + "tyv": "tuva", + "tvl": "tuvalu", + "tw": "twi", + "kcg": "tyap", + "udm": "udmurtti", + "uga": "ugarit", + "ug": "uiguuri", + "uk": "ukraina", + "hu": "unkari", + "ur": "urdu", + "uz": "uzbekki", + "vai": "vai", + "zgh": "vakioitu tamazight", + "be": "valkoven\u00e4j\u00e4", + "wa": "valloni", + "arc": "valtakunnanaramea", + "vot": "vatja", + "ve": "venda", + "vec": "venetsia", + "ru": "ven\u00e4j\u00e4", + "vep": "veps\u00e4", + "vi": "vietnam", + "et": "viro", + "vo": "volap\u00fck", + "vro": "v\u00f5ro", + "vun": "vunjo", + "mrj": "vuorimari", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "wayuu", + "wal": "wolaitta", + "wo": "wolof", + "wuu": "wu-kiina", + "xh": "xhosa", + "hsn": "xiang-kiina", + "yav": "yangben", + "ybb": "yemba", + "zh_Hans": "yksinkertaistettu kiina", + "ar_001": "yleisarabia", + "hsb": "yl\u00e4sorbi", + "zap": "zapoteekki", + "zza": "zaza", + "zen": "zenaga", + "za": "zhuang", + "gbz": "zoroastrialaisdari", + "zu": "zulu", + "zun": "zuni" +} diff --git a/public/intl/language/fo-FO.json b/public/intl/language/fo-FO.json new file mode 100644 index 0000000..c3a2db3 --- /dev/null +++ b/public/intl/language/fo-FO.json @@ -0,0 +1,611 @@ +{ + "ab": "abkhaziskt", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "ps": "afghanskt", + "afh": "Afrihili", + "af": "afr\u00edska", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "akk": "Akkadian", + "akz": "Alabama", + "sq": "albanskt", + "ale": "Aleut", + "arq": "Algerian Arabic", + "en_US": "American English", + "ase": "American Sign Language", + "am": "amhariskt", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "ar": "arabiskt", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "hy": "armenskt", + "rup": "Aromanian", + "frp": "Arpitan", + "as": "assamesiskt", + "ast": "Asturian", + "asa": "asu (Tanzania)", + "cch": "Atsam", + "en_AU": "Australian English", + "de_AT": "Austrian German", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "ay": "aymara", + "az": "azerbaijaniskt", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bss": "bakossi", + "ban": "Balinese", + "bal": "Baluchi", + "bm": "bambara", + "bax": "Bamun", + "bjn": "Banjar", + "ba": "Bashkir", + "eu": "baskiskt", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bem": "bemba", + "bez": "bena (Tanzania)", + "bn": "bengaliskt", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brx": "Bodo", + "bs": "bosniskt", + "brh": "Brahui", + "bra": "Braj", + "pt_BR": "Brazilian Portuguese", + "br": "bretonskt", + "en_GB": "British English", + "bug": "Buginese", + "bg": "bulgarskt", + "bum": "Bulu", + "bua": "Buriat", + "my": "burmesiskt", + "cad": "Caddo", + "frc": "Cajun French", + "en_CA": "Canadian English", + "fr_CA": "Canadian French", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "tzm": "Central Atlas Tamazight", + "dtp": "Central Dusun", + "ckb": "Central Kurdish", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "Chiga", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swc": "Congo Swahili", + "cop": "Coptic", + "kw": "Cornish", + "co": "Corsican", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "da": "danskt", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "dv": "divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula", + "dz": "dzongkha", + "frs": "Eastern Frisian", + "efi": "efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "egl": "Emilian", + "en": "enskt", + "myv": "Erzya", + "eo": "esperanto", + "et": "estlendskt", + "pt_PT": "European Portuguese", + "es_ES": "European Spanish", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "fj": "fidjianskt", + "hif": "Fiji Hindi", + "fil": "filipiniskt", + "fi": "finskt", + "nl_BE": "Flemish", + "fon": "Fon", + "gur": "Frafra", + "fr": "franskt", + "fur": "Friulian", + "ff": "Fulah", + "fo": "f\u00f8royskt", + "gaa": "Ga", + "gag": "Gagauz", + "gl": "galisiskt", + "gan": "Gan Chinese", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "ka": "georgiskt", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "el": "grikiskt", + "gn": "guarani", + "gu": "gujariti", + "guz": "Gusii", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "ht": "haitiskt", + "hak": "Hakka Chinese", + "ha": "haussa", + "haw": "hawaiianskt", + "he": "hebraiskt", + "hz": "Herero", + "hil": "Hiligaynon", + "hi": "hindi", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "nl": "hollendskt", + "hup": "Hupa", + "be": "hvitarussiskt", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ig": "igbo", + "ilo": "Iloko", + "smn": "Inari Sami", + "id": "indonesiskt", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "interlingua", + "ie": "interlingue", + "iu": "Inuktitut", + "ik": "Inupiaq", + "ga": "\u00edrskt", + "is": "\u00edslendskt", + "it": "italskt", + "jam": "Jamaican Creole English", + "ja": "japanskt", + "jv": "javanesiskt", + "yi": "jiddiskt", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kab": "Kabyle", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kln": "Kalenjin", + "xal": "Kalmyk", + "kl": "Kalaallisut", + "kam": "Kamba", + "km": "kambodjanskt", + "kbl": "Kanembu", + "kn": "kannada", + "yue": "kantones\u00edskt", + "kr": "Kanuri", + "kea": "kapverdiskt", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "ks": "kashmiriskt", + "csb": "Kashubian", + "ca": "katalanskt", + "kaw": "Kawi", + "kk": "kazakiskt", + "cs": "kekkiskt", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "ebu": "kiembu", + "ki": "Kikuyu", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "zh": "kinesiskt", + "ky": "kirgisikt", + "kiu": "Kirmanjki", + "tlh": "klingonskt", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "kg": "Kongo", + "kok": "Konkani", + "ko": "koreanskt", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "kri": "Krio", + "hr": "kroatiskt", + "kj": "Kuanyama", + "kum": "Kumyk", + "ku": "kurdiskt", + "kru": "Kurukh", + "kut": "Kutenai", + "nmg": "Kwasio", + "quc": "K\u02bciche\u02bc", + "lad": "Ladino", + "lah": "lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "lo": "laotiskt", + "ltg": "Latgalian", + "la": "lat\u00edn", + "es_419": "Latin American Spanish", + "lv": "latviskt", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lt": "litavskt", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "dsb": "Lower Sorbian", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "lb": "luxemburgiskt", + "mde": "Maba", + "jmc": "Machame", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mk": "makedonskt", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mg": "malagasiskt", + "ms": "malajiskt", + "ml": "malayalam", + "mt": "maltesiskt", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manx", + "mi": "maoriskt", + "arn": "Mapuche", + "mr": "marathiskt", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mas": "Masai", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u02bc", + "es_MX": "Mexican Spanish", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "ar_001": "Modern Standard Arabic", + "moh": "Mohawk", + "mdf": "Moksha", + "ro_MD": "Moldavian", + "lol": "Mongo", + "mn": "mongoliskt", + "mfe": "Morisyen", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "mua": "Mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "naq": "Nama", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "ne": "nepalskt", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "zxx": "No linguistic content", + "nog": "Nogai", + "no": "norskt", + "nb": "norskt bokm\u00e1l", + "nd": "North Ndebele", + "frr": "Northern Frisian", + "se": "Northern Sami", + "nso": "Northern Sotho", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nn": "n\u00fdnorskt", + "nyo": "Nyoro", + "nzi": "Nzima", + "nqo": "N\u02bcKo", + "oc": "occitan", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "luy": "olulujia", + "or": "oriya", + "om": "Oromo", + "osa": "Osage", + "os": "ossetiskt", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "fa": "persiskt", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pl": "polskt", + "pnt": "Pontic", + "pt": "portugisiskt", + "prg": "Prussian", + "pa": "punjabiskt", + "qu": "quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "romansh", + "ro": "romanskt", + "rom": "Romany", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rw": "ruanda", + "rn": "rundi", + "ru": "russiskt", + "rue": "Rusyn", + "rwk": "Rwa", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "saq": "Samburu", + "sgs": "Samogitian", + "sm": "samoiskt", + "sad": "Sandawe", + "sg": "sango", + "sbp": "Sangu", + "sa": "sanskrit", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "sr": "serbiskt", + "sh": "serbokroatiskt", + "srr": "Serer", + "sei": "Seri", + "st": "sesotho", + "ksb": "Shambala", + "shn": "Shan", + "swb": "shimaor\u00e9", + "sn": "shona", + "ii": "Sichuan Yi", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "zh_Hans": "Simplified Chinese", + "sd": "sindhi", + "si": "sinhalesiskt", + "sms": "Skolt Sami", + "gd": "skotskt g\u00e6liskt", + "den": "Slave", + "sk": "slovakiskt", + "sl": "slovenskt", + "xog": "Soga", + "sog": "Sogdien", + "so": "somaliskt", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "sma": "Southern Sami", + "es": "spanskt", + "srn": "Sranan Tongo", + "zgh": "Standard Moroccan Tamazight", + "suk": "Sukuma", + "zu": "sulu", + "sux": "Sumerian", + "su": "sundanesiskt", + "sus": "Susu", + "sv": "svenskt", + "sw": "swahili", + "ss": "swatiskt", + "fr_CH": "Swiss French", + "gsw": "Swiss German", + "de_CH": "Swiss High German", + "syr": "Syriac", + "shi": "Tachelhit", + "tl": "tagalog", + "ty": "tahitiskt", + "dav": "Taita", + "tg": "tajikiskt", + "tly": "Talysh", + "tmh": "Tamashek", + "ta": "tamilskt", + "trv": "Taroko", + "twq": "Tasawaq", + "tt": "tatariskt", + "te": "telugiskt", + "ter": "Tereno", + "teo": "Teso", + "tet": "tetum", + "th": "thailendskt", + "bo": "tibetanskt", + "tig": "Tigre", + "ti": "tigrinya", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "tok pisin", + "tkl": "Tokelau", + "to": "tonganskt", + "fit": "Tornedalen Finnish", + "zh_Hant": "Traditional Chinese", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "tsonga", + "tn": "tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turkiskt", + "tk": "turkmenskt", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "twi", + "kcg": "Tyap", + "de": "t\u00fdskt", + "udm": "Udmurt", + "uga": "Ugaritic", + "ug": "uighur", + "und": "ukjent m\u00e1l", + "uk": "ukrainskt", + "umb": "Umbundu", + "hu": "ungarskt", + "hsb": "Upper Sorbian", + "ur": "urdu", + "uz": "uzbekiskt", + "vai": "Vai", + "cy": "valisiskt", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "fy": "vestfrisikt", + "vi": "vietnamesiskt", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "Vunjo", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "yo": "yoruba", + "zap": "Zapotec", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/fr-FR.json b/public/intl/language/fr-FR.json new file mode 100644 index 0000000..ccc47cc --- /dev/null +++ b/public/intl/language/fr-FR.json @@ -0,0 +1,611 @@ +{ + "ab": "abkhaze", + "ace": "aceh", + "ach": "acoli", + "ada": "adangme", + "ady": "adygh\u00e9en", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "a\u00efnou", + "ak": "akan", + "akk": "akkadien", + "bss": "akoose", + "akz": "Alabama", + "sq": "albanais", + "ale": "al\u00e9oute", + "arq": "Algerian Arabic", + "de": "allemand", + "de_AT": "allemand autrichien", + "de_CH": "allemand suisse", + "alt": "alta\u00ef du Sud", + "zgh": "amazighe standard marocain", + "ase": "American Sign Language", + "am": "amharique", + "ang": "ancien anglais", + "fro": "ancien fran\u00e7ais", + "goh": "ancien haut allemand", + "sga": "ancien irlandais", + "anp": "angika", + "en": "anglais", + "en_US": "anglais am\u00e9ricain", + "en_AU": "anglais australien", + "en_GB": "anglais britannique", + "en_CA": "anglais canadien", + "njo": "Ao Naga", + "ar": "arabe", + "ar_001": "arabe standard moderne", + "shu": "arabe tchadien", + "an": "aragonais", + "arc": "aram\u00e9en", + "sam": "aram\u00e9en samaritain", + "aro": "Araona", + "arp": "arapaho", + "arn": "araukan", + "arw": "arawak", + "hy": "arm\u00e9nien", + "as": "assamais", + "asa": "assou", + "ast": "asturien", + "cch": "atsam", + "av": "avar", + "ae": "avestique", + "awa": "awadhi", + "ay": "aymara", + "az": "az\u00e9ri", + "ba": "bachkir", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "ban": "balinais", + "bal": "baloutchi", + "bm": "bambara", + "bax": "bamoun", + "bjn": "Banjar", + "nds": "bas-allemand", + "dsb": "bas-sorabe", + "eu": "basque", + "bas": "bassa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "bedja", + "bem": "bemba", + "bez": "b\u00e9na", + "bn": "bengali", + "bew": "Betawi", + "bho": "bhojpuri", + "bi": "bichelamar", + "be": "bi\u00e9lorusse", + "bik": "bikol", + "bin": "bini", + "my": "birman", + "bpy": "Bishnupriya", + "byn": "blin", + "brx": "bodo", + "bs": "bosniaque", + "bum": "boulou", + "bua": "bouriate", + "brh": "Brahui", + "bra": "braj", + "br": "breton", + "bug": "bugi", + "bg": "bulgare", + "cad": "caddo", + "frc": "Cajun French", + "yue": "cantonais", + "cps": "Capiznon", + "kea": "capverdien", + "krl": "car\u00e9lien", + "car": "caribe", + "ca": "catalan", + "cay": "cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "ksb": "chambala", + "ch": "chamorro", + "chr": "cherokee", + "chy": "cheyenne", + "chb": "chibcha", + "qug": "Chimborazo Highland Quichua", + "zh": "chinois", + "zh_Hans": "chinois simplifi\u00e9", + "zh_Hant": "chinois traditionnel", + "chp": "chipewyan", + "shi": "chleuh", + "cho": "choctaw", + "chk": "chuuk", + "si": "cinghalais", + "swb": "comorien", + "cop": "copte", + "ko": "cor\u00e9en", + "kw": "cornique", + "co": "corse", + "cr": "cree", + "mus": "creek", + "mfe": "cr\u00e9ole mauricien", + "hr": "croate", + "dak": "dakota", + "da": "danois", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dyo": "diola-fogny", + "dyu": "dioula", + "doi": "dogri", + "dgr": "dogrib", + "dua": "douala", + "dz": "dzongkha", + "sco": "\u00e9cossais", + "efi": "efik", + "arz": "Egyptian Arabic", + "egy": "\u00e9gyptien ancien", + "eka": "ekajuk", + "elx": "\u00e9lamite", + "ebu": "embou", + "egl": "Emilian", + "myv": "erzya", + "es": "espagnol", + "es_ES": "espagnol europ\u00e9en", + "es_419": "espagnol latino-am\u00e9ricain", + "es_MX": "espagnol mexicain", + "eo": "esp\u00e9ranto", + "et": "estonien", + "ee": "\u00e9w\u00e9", + "ewo": "\u00e9wondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "fo": "f\u00e9ro\u00efen", + "fj": "fidjien", + "hif": "Fiji Hindi", + "fil": "filipino", + "fi": "finnois", + "nl_BE": "flamand", + "fon": "fon", + "gur": "Frafra", + "fr": "fran\u00e7ais", + "fr_CA": "fran\u00e7ais canadien", + "fr_CH": "fran\u00e7ais suisse", + "ksh": "francique ripuaire", + "frp": "franco-proven\u00e7al", + "fur": "frioulan", + "frr": "frison du Nord", + "fy": "frison occidental", + "frs": "frison oriental", + "gaa": "ga", + "gd": "ga\u00e9lique \u00e9cossais", + "gag": "gagaouze", + "gl": "galicien", + "cy": "gallois", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "ka": "g\u00e9orgien", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbertais", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "gotique", + "grb": "grebo", + "el": "grec", + "grc": "grec ancien", + "kl": "groenlandais", + "gn": "guarani", + "gez": "gu\u00e8ze", + "gu": "gujarati", + "guz": "gusii", + "gwi": "gwich\u02bcin", + "hai": "haida", + "ht": "ha\u00eftien", + "hak": "Hakka Chinese", + "ha": "haoussa", + "hsb": "haut-sorabe", + "haw": "hawa\u00efen", + "he": "h\u00e9breu", + "hz": "h\u00e9r\u00e9ro", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hittite", + "hmn": "hmong", + "hu": "hongrois", + "hup": "hupa", + "sah": "iakoute", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "ilokano", + "id": "indon\u00e9sien", + "inh": "ingouche", + "izh": "Ingrian", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaq", + "ga": "irlandais", + "is": "islandais", + "it": "italien", + "jam": "Jamaican Creole English", + "ja": "japonais", + "chn": "jargon chinook", + "jv": "javanais", + "kaj": "jju", + "jrb": "jud\u00e9o-arabe", + "jpr": "jud\u00e9o-persan", + "jut": "Jutish", + "quc": "k\u2019iche\u2019", + "kbd": "kabardin", + "kab": "kabyle", + "kac": "kachin", + "csb": "kachoube", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmouk", + "kam": "kamba", + "kbl": "kanembou", + "kn": "kannada", + "kr": "kanouri", + "kaa": "karakalpak", + "krc": "karatcha\u00ef balkar", + "ks": "kashmiri", + "kaw": "kawi", + "kk": "kazakh", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotanais", + "khw": "Khowar", + "cgg": "kiga", + "ki": "kikuyu", + "kmb": "kiMboundou", + "krj": "Kinaray-a", + "ky": "kirghize", + "kiu": "Kirmanjki", + "tlh": "klingon", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permiak", + "kg": "kongo", + "kok": "konkani", + "kfo": "koro", + "avk": "Kotava", + "kum": "koumyk", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpell\u00e9", + "kri": "Krio", + "kj": "kuanyama", + "ku": "kurde", + "kru": "kurukh", + "kos": "kusaien", + "kut": "kutenai", + "nmg": "kwasio", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "und": "langue ind\u00e9termin\u00e9e", + "lo": "lao", + "ltg": "Latgalian", + "la": "latin", + "lzz": "Laz", + "lv": "letton", + "lez": "lezghien", + "lij": "Ligurian", + "li": "limbourgeois", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "lituanien", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxembourgeois", + "mde": "maba", + "mk": "mac\u00e9donien", + "jmc": "machame", + "mad": "madurais", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makassar", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ms": "malais", + "ml": "malayalam", + "dv": "maldivien", + "mg": "malgache", + "mt": "maltais", + "mdr": "mandar", + "mnc": "mandchou", + "man": "mandingue", + "mni": "manipuri", + "gv": "manx", + "mi": "maori", + "mr": "marathe", + "chm": "mari", + "mh": "marshall", + "mwr": "marwar\u00ee", + "mas": "masai", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mend\u00e9", + "mwv": "Mentawai", + "mer": "merou", + "mgo": "m\u00e9ta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirandais", + "moh": "mohawk", + "mdf": "moksa", + "ro_MD": "moldave", + "lol": "mongo", + "mn": "mongol", + "mos": "mor\u00e9", + "ary": "Moroccan Arabic", + "enm": "moyen anglais", + "frm": "moyen fran\u00e7ais", + "gmh": "moyen haut-allemand", + "mga": "moyen irlandais", + "dum": "moyen n\u00e9erlandais", + "mul": "multilingue", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "my\u00e8n\u00e8", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitain", + "na": "nauruan", + "nv": "navaho", + "nd": "nd\u00e9b\u00e9l\u00e9 du Nord", + "nr": "nd\u00e9b\u00e9l\u00e9 du Sud", + "ng": "ndonga", + "nl": "n\u00e9erlandais", + "ne": "n\u00e9palais", + "new": "newari", + "nwc": "newar\u00ee classique", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niu\u00e9", + "nog": "noga\u00ef", + "no": "norv\u00e9gien", + "nb": "norv\u00e9gien bokm\u00e5l", + "nn": "norv\u00e9gien nynorsk", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankol\u00e9", + "nyo": "nyoro", + "nzi": "nzema", + "oc": "occitan", + "oj": "ojibwa", + "luy": "oluluyia", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "oss\u00e8te", + "udm": "oudmourte", + "uga": "ougaritique", + "ug": "ou\u00efghour", + "ur": "ourdou", + "uz": "ouzbek", + "ps": "pachto", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palau", + "pi": "pali", + "pam": "pampangan", + "pag": "pangasinan", + "pap": "papiamento", + "pa": "pendjabi", + "pdc": "Pennsylvania German", + "fa": "persan", + "peo": "persan ancien", + "ff": "peul", + "phn": "ph\u00e9nicien", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpei", + "pl": "polonais", + "pnt": "Pontic", + "pt": "portugais", + "pt_BR": "portugais br\u00e9silien", + "pt_PT": "portugais europ\u00e9en", + "pro": "proven\u00e7al ancien", + "prg": "Prussian", + "qu": "quechua", + "root": "racine", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotongien", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "romanche", + "rof": "rombo", + "rtm": "Rotuman", + "ro": "roumain", + "rn": "roundi", + "rug": "Roviana", + "ru": "russe", + "rue": "Rusyn", + "rwk": "rwa", + "rw": "rwanda", + "ssy": "saho", + "saq": "samburu", + "smn": "sami d\u2019Inari", + "smj": "sami de Lule", + "se": "sami du Nord", + "sma": "sami du Sud", + "sms": "sami skolt", + "sm": "samoan", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sangho", + "sbp": "sangu", + "zxx": "sans contenu linguistique", + "sa": "sanskrit", + "sat": "santal", + "sc": "sarde", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkoupe", + "seh": "sena", + "see": "seneca", + "sr": "serbe", + "sh": "serbo-croate", + "srr": "s\u00e9r\u00e8re", + "sei": "Seri", + "st": "sesotho", + "shn": "shan", + "sn": "shona", + "scn": "sicilien", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindhi", + "den": "slavey", + "cu": "slavon d\u2019\u00e9glise", + "sk": "slovaque", + "sl": "slov\u00e8ne", + "xog": "soga", + "sog": "sogdien", + "so": "somali", + "snk": "sonink\u00e9", + "ckb": "sorani", + "nso": "sotho du Nord", + "su": "soundanais", + "sus": "soussou", + "azb": "South Azerbaijani", + "srn": "sranan tongo", + "sv": "su\u00e9dois", + "gsw": "suisse allemand", + "suk": "sukuma", + "sux": "sum\u00e9rien", + "sw": "swahili", + "swc": "swahili du Congo", + "ss": "swati", + "zbl": "symboles Bliss", + "syr": "syriaque", + "syc": "syriaque classique", + "tg": "tadjik", + "tl": "tagalog", + "ty": "tahitien", + "dav": "taita", + "tly": "Talysh", + "tmh": "tamacheq", + "tzm": "tamazight", + "ta": "tamoul", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatar", + "chg": "tchaghata\u00ef", + "cs": "tch\u00e8que", + "ce": "tch\u00e9tch\u00e8ne", + "cv": "tchouvache", + "te": "t\u00e9lougou", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "tha\u00ef", + "bo": "tib\u00e9tain", + "tig": "tigr\u00e9", + "ti": "tigrigna", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "tog": "tonga nyasa", + "to": "tonguien", + "fit": "Tornedalen Finnish", + "tyv": "touva", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshian", + "ts": "tsonga", + "tn": "tswana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turc", + "crh": "turc de Crim\u00e9e", + "ota": "turc ottoman", + "tk": "turkm\u00e8ne", + "tru": "Turoyo", + "tvl": "tuvalu", + "tw": "twi", + "kcg": "tyap", + "rom": "tzigane", + "uk": "ukrainien", + "umb": "umbundu", + "vai": "va\u00ef", + "rup": "valaque", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamien", + "non": "vieux norrois", + "vo": "volapuk", + "vro": "V\u00f5ro", + "vot": "vote", + "vun": "vunjo", + "wal": "walamo", + "wa": "wallon", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "yangben", + "yao": "yao", + "yap": "yapois", + "ybb": "yemba", + "ii": "yi du Sichuan", + "yi": "yiddish", + "yo": "yoruba", + "zap": "zapot\u00e8que", + "dje": "zarma", + "zza": "zazaki", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zoulou", + "zun": "zuni" +} diff --git a/public/intl/language/he-IL.json b/public/intl/language/he-IL.json new file mode 100644 index 0000000..552d65a --- /dev/null +++ b/public/intl/language/he-IL.json @@ -0,0 +1,611 @@ +{ + "av": "\u05d0\u05d1\u05d0\u05e8\u05d9\u05ea", + "ab": "\u05d0\u05d1\u05d7\u05d6\u05d9\u05ea", + "ae": "\u05d0\u05d1\u05e1\u05d8\u05df", + "ady": "\u05d0\u05d3\u05d9\u05d2\u05d9\u05ea", + "ada": "\u05d0\u05d3\u05e0\u05de\u05d4", + "agq": "\u05d0\u05d4\u05d9\u05d9\u05dd", + "oj": "\u05d0\u05d5\u05d2\u05f3\u05d9\u05d1\u05d5\u05d5\u05d4", + "uga": "\u05d0\u05d5\u05d2\u05e8\u05d9\u05ea\u05d9\u05ea", + "udm": "\u05d0\u05d5\u05d3\u05de\u05d5\u05e8\u05d8", + "awa": "\u05d0\u05d5\u05d5\u05d0\u05d3\u05d9\u05ea", + "ee": "\u05d0\u05d5\u05d5\u05d4", + "ewo": "\u05d0\u05d5\u05d5\u05e0\u05d3\u05d5", + "uz": "\u05d0\u05d5\u05d6\u05d1\u05e7\u05d9\u05ea", + "ug": "\u05d0\u05d5\u05d9\u05d2\u05d4\u05d5\u05e8", + "umb": "\u05d0\u05d5\u05de\u05d1\u05d5\u05e0\u05d3\u05d5", + "osa": "\u05d0\u05d5\u05e1\u05d2\u05f3\u05d4", + "os": "\u05d0\u05d5\u05e1\u05d8\u05d9\u05ea", + "oc": "\u05d0\u05d5\u05e7\u05e1\u05d9\u05d8\u05e0\u05d9\u05ea", + "uk": "\u05d0\u05d5\u05e7\u05e8\u05d0\u05d9\u05e0\u05d9\u05ea", + "ur": "\u05d0\u05d5\u05e8\u05d3\u05d5", + "om": "\u05d0\u05d5\u05e8\u05d5\u05de\u05d5", + "or": "\u05d0\u05d5\u05e8\u05d9\u05d4", + "az": "\u05d0\u05d6\u05e8\u05d9\u05ea", + "cch": "\u05d0\u05d8\u05e1\u05dd", + "iba": "\u05d0\u05d9\u05d1\u05d0\u05df", + "ibb": "\u05d0\u05d9\u05d1\u05d9\u05d1\u05d9\u05d5", + "ig": "\u05d0\u05d9\u05d2\u05d1\u05d5", + "io": "\u05d0\u05d9\u05d3\u05d5", + "it": "\u05d0\u05d9\u05d8\u05dc\u05e7\u05d9\u05ea", + "ay": "\u05d0\u05d9\u05d9\u05de\u05d0\u05e8\u05d9\u05ea", + "ilo": "\u05d0\u05d9\u05dc\u05d5\u05e7\u05d5", + "smn": "\u05d0\u05d9\u05e0\u05d0\u05e8\u05d9 \u05e1\u05d0\u05de\u05d9", + "inh": "\u05d0\u05d9\u05e0\u05d2\u05d5\u05e9\u05d9\u05ea", + "id": "\u05d0\u05d9\u05e0\u05d3\u05d5\u05e0\u05d6\u05d9\u05ea", + "ain": "\u05d0\u05d9\u05e0\u05d5", + "ik": "\u05d0\u05d9\u05e0\u05d5\u05e4\u05d9\u05d0\u05e7", + "iu": "\u05d0\u05d9\u05e0\u05d5\u05e7\u05d8\u05d9\u05d8\u05d5\u05d8", + "ie": "\u05d0\u05d9\u05e0\u05d8\u05e8\u05dc\u05d9\u05e0\u05d2\u05d4", + "ia": "\u200f\u05d0\u05d9\u05e0\u05d8\u05e8\u05dc\u05d9\u05e0\u05d2\u05d5\u05d0\u05d4", + "is": "\u05d0\u05d9\u05e1\u05dc\u05e0\u05d3\u05d9\u05ea", + "ga": "\u05d0\u05d9\u05e8\u05d9\u05ea", + "sga": "\u05d0\u05d9\u05e8\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "mga": "\u05d0\u05d9\u05e8\u05d9\u05ea \u05ea\u05d9\u05db\u05d5\u05e0\u05d4", + "akk": "\u05d0\u05db\u05d3\u05d9\u05ea", + "ace": "\u05d0\u05db\u05d9\u05e0\u05d6\u05d9\u05ea", + "ale": "\u05d0\u05dc\u05d0\u05d5\u05d8", + "sq": "\u05d0\u05dc\u05d1\u05e0\u05d9\u05ea", + "alt": "\u05d0\u05dc\u05d8\u05d0\u05d9 \u05d3\u05e8\u05d5\u05de\u05d9\u05ea", + "ebu": "\u05d0\u05de\u05d1\u05d5", + "am": "\u05d0\u05de\u05d4\u05e8\u05d9\u05ea", + "anp": "\u05d0\u05e0\u05d2\u05f3\u05d9\u05e7\u05d4", + "en": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea", + "en_AU": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05d0\u05d5\u05e1\u05d8\u05e8\u05dc\u05d9\u05ea", + "en_US": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05d0\u05de\u05e8\u05d9\u05e7\u05d0\u05d9\u05ea", + "en_GB": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05d1\u05e8\u05d9\u05d8\u05d9\u05ea", + "ang": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "en_CA": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05e7\u05e0\u05d3\u05d9\u05ea", + "enm": "\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05ea\u05d9\u05db\u05d5\u05e0\u05d4", + "as": "\u05d0\u05e1\u05d0\u05de\u05d9\u05ea", + "asa": "\u05d0\u05e1\u05d5", + "et": "\u05d0\u05e1\u05d8\u05d5\u05e0\u05d9\u05ea", + "ast": "\u05d0\u05e1\u05d8\u05d5\u05e8\u05d9\u05ea", + "eo": "\u05d0\u05e1\u05e4\u05e8\u05e0\u05d8\u05d5", + "aa": "\u05d0\u05e4\u05d0\u05e8\u05d9\u05ea", + "efi": "\u05d0\u05e4\u05d9\u05e7", + "afh": "\u05d0\u05e4\u05e8\u05d9\u05d4\u05d9\u05dc\u05d9", + "af": "\u05d0\u05e4\u05e8\u05d9\u05e7\u05d0\u05e0\u05e1", + "ak": "\u05d0\u05e7\u05d0\u05df", + "ach": "\u05d0\u05e7\u05d5\u05dc\u05d9", + "bss": "\u05d0\u05e7\u05d5\u05e1\u05d4", + "eka": "\u05d0\u05e7\u05d9\u05d5\u05e7", + "an": "\u05d0\u05e8\u05d0\u05d2\u05d5\u05e0\u05d9\u05ea", + "arn": "\u05d0\u05e8\u05d0\u05d5\u05e7\u05e0\u05d9\u05ea", + "arw": "\u05d0\u05e8\u05d5\u05d5\u05d0\u05e7", + "rup": "\u05d0\u05e8\u05d5\u05de\u05e0\u05d9\u05ea", + "myv": "\u05d0\u05e8\u05d6\u05d9\u05d4", + "arc": "\u05d0\u05e8\u05de\u05d9\u05ea", + "sam": "\u05d0\u05e8\u05de\u05d9\u05ea \u05e9\u05d5\u05de\u05e8\u05d5\u05e0\u05d9\u05ea", + "hy": "\u05d0\u05e8\u05de\u05e0\u05d9\u05ea", + "arp": "\u05d0\u05e8\u05e4\u05d4\u05d5", + "bal": "\u05d1\u05d0\u05dc\u05d5\u05e6\u05f3\u05d9", + "bfd": "\u05d1\u05d0\u05e4\u05d5\u05d8", + "ksf": "\u05d1\u05d0\u05e4\u05d9\u05d4", + "bax": "\u05d1\u05d0\u05e7\u05e1", + "bho": "\u05d1\u05d5\u05d2\u05f3\u05e4\u05d5\u05e8\u05d9", + "bug": "\u05d1\u05d5\u05d2\u05d9\u05e0\u05d6\u05d9\u05ea", + "brx": "\u05d1\u05d5\u05d3\u05d5", + "bar": "\u05d1\u05d5\u05d5\u05d0\u05e8\u05d9\u05ea", + "bg": "\u05d1\u05d5\u05dc\u05d2\u05e8\u05d9\u05ea", + "bum": "\u05d1\u05d5\u05dc\u05d5", + "bs": "\u05d1\u05d5\u05e1\u05e0\u05d9\u05ea", + "bua": "\u05d1\u05d5\u05e8\u05d9\u05d0\u05d8", + "my": "\u05d1\u05d5\u05e8\u05de\u05d6\u05d9\u05ea", + "bej": "\u05d1\u05d6\u05f3\u05d4", + "bin": "\u05d1\u05d9\u05e0\u05d9", + "bi": "\u05d1\u05d9\u05e1\u05dc\u05de\u05d4", + "bik": "\u05d1\u05d9\u05e7\u05d5\u05dc", + "be": "\u05d1\u05dc\u05d0\u05e8\u05d5\u05e1\u05d9\u05ea", + "byn": "\u05d1\u05dc\u05d9\u05df", + "ban": "\u05d1\u05dc\u05d9\u05e0\u05d6\u05d9\u05ea", + "zbl": "\u05d1\u05dc\u05d9\u05e1\u05d9\u05de\u05d1\u05d5\u05dc\u05e1", + "bm": "\u05d1\u05de\u05d1\u05d0\u05e8\u05d4", + "bem": "\u05d1\u05de\u05d1\u05d4", + "bn": "\u05d1\u05e0\u05d2\u05dc\u05d9\u05ea", + "bez": "\u05d1\u05e0\u05d4", + "bas": "\u05d1\u05e1\u05d0\u05d0", + "eu": "\u05d1\u05e1\u05e7\u05d9\u05ea", + "bra": "\u05d1\u05e8\u05d0\u05d2\u05f3", + "br": "\u05d1\u05e8\u05d8\u05d5\u05e0\u05d9\u05ea", + "ba": "\u05d1\u05e9\u05e7\u05d9\u05e8\u05d9\u05ea", + "wo": "\u05d2\u05f3\u05d5\u05dc\u05d5\u05e3", + "kaj": "\u05d2\u05f3\u05d9\u05d5", + "gaa": "\u05d2\u05d0", + "ka": "\u05d2\u05d0\u05d5\u05e8\u05d2\u05d9\u05ea", + "gay": "\u05d2\u05d0\u05d9\u05d5", + "gd": "\u05d2\u05d0\u05dc\u05d9\u05ea \u05e1\u05e7\u05d5\u05d8\u05d9\u05ea", + "lg": "\u05d2\u05d0\u05e0\u05d3\u05d4", + "gba": "\u05d2\u05d1\u05d0\u05d9\u05d4", + "gag": "\u05d2\u05d2\u05d0\u05d5\u05d6\u05d9\u05ea", + "gn": "\u05d2\u05d5\u05d0\u05e8\u05e0\u05d9", + "gu": "\u05d2\u05d5\u05d2\u05f3\u05e8\u05d0\u05d8\u05d9\u05ea", + "gwi": "\u05d2\u05d5\u05d5\u05d9\u05e6\u05f3\u05d9\u05df", + "bbj": "\u05d2\u05d5\u05de\u05dc", + "gon": "\u05d2\u05d5\u05e0\u05d3\u05d9", + "guz": "\u05d2\u05d5\u05e1\u05d9", + "gor": "\u05d2\u05d5\u05e8\u05d5\u05e0\u05d8\u05d0\u05dc\u05d5", + "got": "\u05d2\u05d5\u05ea\u05d9\u05ea", + "gil": "\u05d2\u05d9\u05dc\u05d1\u05e8\u05d8\u05d6\u05d9\u05ea", + "gl": "\u05d2\u05dc\u05d9\u05e6\u05d9\u05d0\u05e0\u05d9\u05ea", + "gez": "\u05d2\u05e2\u05d6", + "grb": "\u05d2\u05e8\u05d1\u05d5", + "de": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea", + "de_AT": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea \u05d0\u05d5\u05e1\u05d8\u05e8\u05d9\u05ea", + "gmh": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9\u05ea-\u05d2\u05d1\u05d5\u05d4\u05d4", + "goh": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4 \u05d2\u05d1\u05d5\u05d4\u05d4", + "gsw": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea \u05e9\u05d5\u05d5\u05d9\u05e6\u05e8\u05d9\u05ea", + "de_CH": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea \u05e9\u05d5\u05d5\u05d9\u05e6\u05e8\u05d9\u05ea (\u05d2\u05d1\u05d5\u05d4\u05d4)", + "nds": "\u05d2\u05e8\u05de\u05e0\u05d9\u05ea \u05ea\u05d7\u05ea\u05d9\u05ea", + "dua": "\u05d3\u05d5\u05d0\u05dc\u05d4", + "doi": "\u05d3\u05d5\u05d2\u05e8\u05d9", + "dgr": "\u05d3\u05d5\u05d2\u05e8\u05d9\u05d1", + "dzg": "\u05d3\u05d6\u05d0\u05e0\u05d2\u05d4", + "dz": "\u05d3\u05d6\u05d5\u05e0\u05e7\u05d4", + "dv": "\u05d3\u05d9\u05d1\u05d4\u05d9", + "dyu": "\u05d3\u05d9\u05d5\u05dc\u05d4", + "din": "\u05d3\u05d9\u05e0\u05e7\u05d4", + "del": "\u05d3\u05dc\u05d0\u05d5\u05d5\u05e8", + "da": "\u05d3\u05e0\u05d9\u05ea", + "dak": "\u05d3\u05e7\u05d5\u05d8\u05d4", + "dar": "\u05d3\u05e8\u05d2\u05d5\u05d5\u05d4", + "nr": "\u05d3\u05e8\u05d5\u05dd \u05e0\u05d3\u05d1\u05dc\u05d4", + "ha": "\u05d4\u05d0\u05d5\u05e1\u05d4", + "hai": "\u05d4\u05d0\u05d9\u05d3\u05d4", + "ht": "\u05d4\u05d0\u05d9\u05d8\u05d9\u05ea", + "ho": "\u05d4\u05d0\u05e8\u05d9 \u05de\u05d5\u05d8\u05d5", + "haw": "\u05d4\u05d5\u05d5\u05d0\u05d9\u05ea", + "dyo": "\u05d4\u05d5\u05dc\u05d4-\u05e4\u05d5\u05e0\u05d9\u05d9", + "nl": "\u05d4\u05d5\u05dc\u05e0\u05d3\u05d9\u05ea", + "dum": "\u05d4\u05d5\u05dc\u05e0\u05d3\u05d9\u05ea \u05ea\u05d9\u05db\u05d5\u05e0\u05d4", + "hu": "\u05d4\u05d5\u05e0\u05d2\u05e8\u05d9\u05ea", + "hup": "\u05d4\u05d5\u05e4\u05d4", + "hil": "\u05d4\u05d9\u05dc\u05d9\u05d2\u05d0\u05d9\u05e0\u05d5\u05df", + "hi": "\u05d4\u05d9\u05e0\u05d3\u05d9", + "hz": "\u05d4\u05e8\u05e8\u05d5", + "vai": "\u05d5\u05d0\u05d9", + "wa": "\u05d5\u05d5\u05d0\u05dc\u05d5\u05df", + "wae": "\u05d5\u05d5\u05d0\u05dc\u05e1\u05e8", + "was": "\u05d5\u05d5\u05d0\u05e9\u05d5", + "vot": "\u05d5\u05d5\u05d8\u05d9\u05e7", + "wal": "\u05d5\u05d5\u05dc\u05d0\u05de\u05d5", + "vo": "\u200f\u05d5\u05d5\u05dc\u05d0\u05e4\u05d9\u05e7", + "vun": "\u05d5\u05d5\u05e0\u05d2\u05f3\u05d5", + "ve": "\u05d5\u05d5\u05e0\u05d3\u05d4", + "war": "\u05d5\u05d5\u05e8\u05d0\u05d9", + "vi": "\u05d5\u05d9\u05d0\u05d8\u05e0\u05de\u05d9\u05ea", + "cy": "\u05d5\u05dc\u05e9\u05d9\u05ea", + "za": "\u05d6\u05f3\u05d5\u05d0\u05e0\u05d2", + "zza": "\u05d6\u05d0\u05d6\u05d0", + "zap": "\u05d6\u05d0\u05e4\u05d5\u05d8\u05e7", + "dje": "\u05d6\u05d0\u05e8\u05de\u05d4", + "zu": "\u05d6\u05d5\u05dc\u05d5", + "zun": "\u05d6\u05d5\u05e0\u05d9", + "zen": "\u05d6\u05e0\u05d0\u05d2\u05d4", + "hit": "\u05d7\u05d9\u05ea\u05d9\u05ea", + "dav": "\u05d8\u05d0\u05d9\u05d8\u05d4", + "tg": "\u05d8\u05d2\u05f3\u05d9\u05e7\u05d9\u05ea", + "tl": "\u05d8\u05d2\u05dc\u05d5\u05d2", + "ty": "\u05d8\u05d4\u05d9\u05d8\u05d9\u05ea", + "tvl": "\u05d8\u05d5\u05d1\u05d0\u05dc\u05d5", + "tyv": "\u05d8\u05d5\u05d1\u05d9\u05e0\u05d9\u05ea", + "tw": "\u05d8\u05d5\u05d5\u05d9", + "tum": "\u05d8\u05d5\u05de\u05d1\u05d5\u05e7\u05d4", + "to": "\u05d8\u05d5\u05e0\u05d2\u05df", + "tn": "\u05d8\u05d5\u05e0\u05d9\u05e1\u05d9\u05d4", + "tpi": "\u05d8\u05d5\u05e7 \u05e4\u05d9\u05e1\u05d9\u05df", + "tkl": "\u05d8\u05d5\u05e7\u05dc\u05d0\u05d5", + "tr": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05ea", + "ota": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05ea \u05e2\u05d5\u05ea\u05d5\u05de\u05e0\u05d9\u05ea", + "tk": "\u05d8\u05d5\u05e8\u05e7\u05de\u05e0\u05d9\u05ea", + "tet": "\u05d8\u05d8\u05d5\u05dd", + "tt": "\u05d8\u05d8\u05e8\u05d9\u05ea", + "crh": "\u05d8\u05d8\u05e8\u05d9\u05ea \u05e9\u05dc \u05e7\u05e8\u05d9\u05dd", + "kcg": "\u05d8\u05d9\u05d0\u05e4", + "tiv": "\u05d8\u05d9\u05d1", + "bo": "\u05d8\u05d9\u05d1\u05d8\u05d9\u05ea", + "ti": "\u05d8\u05d9\u05d2\u05e8\u05d9\u05e0\u05d0\u05d9\u05ea", + "tig": "\u05d8\u05d9\u05d2\u05e8\u05d9\u05ea", + "tem": "\u05d8\u05d9\u05de\u05e0\u05d4", + "te": "\u05d8\u05dc\u05d5\u05d2\u05d5", + "tli": "\u05d8\u05dc\u05d9\u05e0\u05d2\u05d9\u05d8", + "tmh": "\u05d8\u05de\u05d0\u05e9\u05e7", + "tzm": "\u05d8\u05de\u05d6\u05d9\u05d9\u05d8 \u05e9\u05dc \u05de\u05e8\u05db\u05d6 \u05de\u05e8\u05d5\u05e7\u05d5", + "ta": "\u05d8\u05de\u05d9\u05dc\u05d9\u05ea", + "teo": "\u05d8\u05e1\u05d5", + "twq": "\u05d8\u05e1\u05d5\u05d5\u05d0\u05e7", + "ts": "\u05d8\u05e1\u05d5\u05e0\u05d2\u05d4", + "tsi": "\u05d8\u05e1\u05d9\u05de\u05e9\u05d9\u05d0\u05df", + "shi": "\u05d8\u05e6\u05f3\u05dc\u05d4\u05d9\u05d8", + "trv": "\u05d8\u05e8\u05d5\u05e7\u05d5", + "ter": "\u05d8\u05e8\u05e0\u05d5", + "yao": "\u05d9\u05d0\u05d5", + "jv": "\u05d9\u05d0\u05d5\u05d5\u05e0\u05d9\u05ea", + "yav": "\u05d9\u05d0\u05e0\u05d2\u05d1\u05df", + "yap": "\u05d9\u05d0\u05e4\u05d6\u05d9\u05ea", + "el": "\u05d9\u05d5\u05d5\u05e0\u05d9\u05ea", + "grc": "\u05d9\u05d5\u05d5\u05e0\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "yo": "\u05d9\u05d5\u05e8\u05d5\u05d1\u05d4", + "yi": "\u05d9\u05d9\u05d3\u05d9\u05e9", + "ybb": "\u05d9\u05de\u05d1\u05d4", + "ja": "\u05d9\u05e4\u05e0\u05d9\u05ea", + "ku": "\u05db\u05d5\u05e8\u05d3\u05d9\u05ea", + "ckb": "\u05db\u05d5\u05e8\u05d3\u05d9\u05ea \u05e1\u05d5\u05e8\u05d0\u05e0\u05d9\u05ea", + "lo": "\u05dc\u05d0\u05d9\u05ea", + "lag": "\u05dc\u05d0\u05e0\u05d2\u05d9", + "se": "\u05dc\u05d0\u05e4\u05d9\u05ea \u05e6\u05e4\u05d5\u05e0\u05d9\u05ea", + "lad": "\u05dc\u05d3\u05d9\u05e0\u05d5", + "luo": "\u05dc\u05d5\u05d0\u05d5", + "lui": "\u05dc\u05d5\u05d0\u05d9\u05e1\u05e0\u05d5", + "lu": "\u05dc\u05d5\u05d1\u05d4-\u05e7\u05d8\u05e0\u05d2\u05d4", + "lua": "\u05dc\u05d5\u05d1\u05d4, \u05dc\u05d5\u05dc\u05d5\u05d0\u05d4", + "loz": "\u05dc\u05d5\u05d6\u05d9", + "jbo": "\u05dc\u05d5\u05d9\u05d1\u05d0\u05df", + "luy": "\u05dc\u05d5\u05d9\u05d4", + "smj": "\u05dc\u05d5\u05dc\u05d4 \u05e1\u05d0\u05de\u05d9", + "lun": "\u05dc\u05d5\u05e0\u05d3\u05d4", + "lb": "\u05dc\u05d5\u05e7\u05e1\u05de\u05d1\u05d5\u05e8\u05d2\u05d9\u05ea", + "lus": "\u05dc\u05d5\u05e9\u05d0\u05d9", + "lez": "\u05dc\u05d6\u05d2\u05d9\u05ea", + "lv": "\u05dc\u05d8\u05d1\u05d9\u05ea", + "la": "\u05dc\u05d8\u05d9\u05e0\u05d9\u05ea", + "lt": "\u05dc\u05d9\u05d8\u05d0\u05d9\u05ea", + "li": "\u05dc\u05d9\u05de\u05d1\u05d5\u05e8\u05d2\u05d9\u05e9", + "ln": "\u05dc\u05d9\u05e0\u05d2\u05dc\u05d4", + "zxx": "\u05dc\u05dc\u05d0 \u05ea\u05d5\u05db\u05df \u05dc\u05e9\u05d5\u05e0\u05d9", + "lam": "\u05dc\u05de\u05d1\u05d4", + "lah": "\u05dc\u05e0\u05d3\u05d4", + "lkt": "\u05dc\u05e7\u05d5\u05d8\u05d4", + "mde": "\u05de\u05d0\u05d1\u05d0", + "mag": "\u05de\u05d0\u05d2\u05d0\u05d4\u05d9\u05ea", + "mi": "\u05de\u05d0\u05d5\u05e8\u05d9\u05ea", + "mai": "\u05de\u05d0\u05d9\u05d8\u05d9\u05dc\u05d9\u05ea", + "mye": "\u05de\u05d0\u05d9\u05d9\u05df", + "gv": "\u05de\u05d0\u05e0\u05d9\u05ea", + "mas": "\u05de\u05d0\u05e1\u05d0\u05d9\u05ea", + "maf": "\u05de\u05d0\u05e4\u05d0", + "chm": "\u05de\u05d0\u05e8\u05d9", + "byv": "\u05de\u05d3\u05d5\u05de\u05d1\u05d4", + "mad": "\u05de\u05d3\u05d5\u05e8\u05e1\u05d4", + "moh": "\u05de\u05d5\u05d4\u05d5\u05e7", + "ro_MD": "\u05de\u05d5\u05dc\u05d3\u05d1\u05d9\u05ea", + "hmn": "\u05de\u05d5\u05e0\u05d2", + "lol": "\u05de\u05d5\u05e0\u05d2\u05d5", + "mn": "\u05de\u05d5\u05e0\u05d2\u05d5\u05dc\u05d9\u05ea", + "mua": "\u05de\u05d5\u05e0\u05d3\u05d0\u05e0\u05d2", + "mos": "\u05de\u05d5\u05e1\u05d9", + "mdf": "\u05de\u05d5\u05e7\u05e9\u05d4", + "mfe": "\u05de\u05d5\u05e8\u05d9\u05e1\u05d9\u05d9\u05df", + "mgo": "\u05de\u05d8\u05d0", + "min": "\u05de\u05d9\u05e0\u05e0\u05d2\u05e7\u05d1\u05d0\u05d5", + "mic": "\u05de\u05d9\u05e7\u05de\u05e7", + "mwl": "\u05de\u05d9\u05e8\u05e0\u05d3\u05d6\u05d9\u05ea", + "ml": "\u05de\u05dc\u05d0\u05d9\u05d0\u05dc\u05dd", + "ms": "\u05de\u05dc\u05d0\u05d9\u05ea", + "mg": "\u05de\u05dc\u05d2\u05e9\u05d9\u05ea", + "mt": "\u05de\u05dc\u05d8\u05d9\u05ea", + "mdr": "\u05de\u05e0\u05d3\u05d0\u05e8", + "men": "\u05de\u05e0\u05d3\u05d4", + "man": "\u05de\u05e0\u05d3\u05d9\u05e0\u05d2\u05d5", + "mni": "\u05de\u05e0\u05d9\u05e4\u05d5\u05e8\u05d9\u05ea", + "mnc": "\u05de\u05e0\u05e6\u05f3\u05d5", + "mul": "\u05de\u05e1\u05e4\u05e8 \u05e9\u05e4\u05d5\u05ea", + "jmc": "\u05de\u05e6\u05f3\u05d0\u05de\u05d4", + "egy": "\u05de\u05e6\u05e8\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "mk": "\u05de\u05e7\u05d3\u05d5\u05e0\u05d9\u05ea", + "mgh": "\u05de\u05e7\u05d5\u05d0\u05d4-\u05de\u05d9\u05d8\u05d5", + "kde": "\u05de\u05e7\u05d5\u05e0\u05d3\u05d4", + "mak": "\u05de\u05e7\u05e1\u05d0\u05e8", + "mer": "\u05de\u05e8\u05d5", + "mwr": "\u05de\u05e8\u05d5\u05d5\u05d0\u05e8\u05d9", + "mr": "\u05de\u05e8\u05d8\u05d4\u05d9", + "mh": "\u05de\u05e8\u05e9\u05d0\u05dc\u05e1", + "nqo": "\u05e0\u05f3\u05e7\u05d5", + "na": "\u05e0\u05d0\u05d5\u05e8\u05d9\u05ea", + "naq": "\u05e0\u05d0\u05de\u05d4", + "nv": "\u05e0\u05d1\u05d7\u05d5", + "jgo": "\u05e0\u05d2\u05d5\u05de\u05d4", + "nnh": "\u05e0\u05d2\u05d9\u05d0\u05de\u05d1\u05d5\u05df", + "sba": "\u05e0\u05d2\u05de\u05d1\u05d0\u05d9", + "ng": "\u05e0\u05d3\u05d5\u05e0\u05d2\u05d4", + "nus": "\u05e0\u05d5\u05d0\u05e8", + "nog": "\u05e0\u05d5\u05d2\u05d0\u05d9", + "new": "\u05e0\u05d5\u05d5\u05d0\u05e8\u05d9", + "nwc": "\u05e0\u05d5\u05d5\u05d0\u05e8\u05d9\u05ea \u05e7\u05dc\u05d0\u05e1\u05d9\u05ea", + "no": "\u05e0\u05d5\u05e8\u05d1\u05d2\u05d9\u05ea", + "nn": "\u05e0\u05d5\u05e8\u05d1\u05d2\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4", + "nb": "\u200f\u05e0\u05d5\u05e8\u05d1\u05d2\u05d9\u05ea \u05e1\u05e4\u05e8\u05d5\u05ea\u05d9\u05ea", + "non": "\u200f\u05e0\u05d5\u05e8\u05d3\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "nzi": "\u05e0\u05d6\u05d9\u05de\u05d4", + "nym": "\u05e0\u05d9\u05d0\u05de\u05d5\u05d5\u05d6\u05d9", + "ny": "\u05e0\u05d9\u05d0\u05e0\u05d2\u05f3\u05d4", + "nyn": "\u05e0\u05d9\u05d0\u05e0\u05e7\u05d5\u05dc\u05d4", + "nia": "\u05e0\u05d9\u05d0\u05e1", + "tog": "\u05e0\u05d9\u05d0\u05e1\u05d4 \u05d8\u05d5\u05e0\u05d2\u05d4", + "chn": "\u05e0\u05d9\u05d1 \u05e6\u05f3\u05d9\u05e0\u05d5\u05e7", + "niu": "\u05e0\u05d9\u05d5\u05d0\u05d9\u05d0\u05df", + "nyo": "\u05e0\u05d9\u05d5\u05e8\u05d5", + "ne": "\u05e0\u05e4\u05d0\u05dc\u05d9\u05ea", + "nap": "\u05e0\u05e4\u05d5\u05dc\u05d9\u05d8\u05e0\u05d9\u05ea", + "ssy": "\u05e1\u05d0\u05d4\u05d5", + "sah": "\u05e1\u05d0\u05d7\u05d4", + "sma": "\u05e1\u05d0\u05de\u05d9 \u05d3\u05e8\u05d5\u05de\u05d9\u05ea", + "sbp": "\u05e1\u05d0\u05e0\u05d2\u05d5", + "sat": "\u05e1\u05d0\u05e0\u05d8\u05dc\u05d9", + "sog": "\u05e1\u05d5\u05d2\u05d3\u05d9\u05d0\u05df", + "xog": "\u05e1\u05d5\u05d2\u05d4", + "swc": "\u05e1\u05d5\u05d5\u05d4\u05d9\u05dc\u05d9 \u05e7\u05d5\u05e0\u05d2\u05d5\u05dc\u05d8\u05d6\u05d9\u05ea", + "sw": "\u05e1\u05d5\u05d5\u05d4\u05d9\u05dc\u05d9\u05ea", + "nso": "\u05e1\u05d5\u05d8\u05d5 \u05d4\u05e6\u05e4\u05d5\u05e0\u05d9\u05ea", + "so": "\u05e1\u05d5\u05de\u05dc\u05d9\u05ea", + "su": "\u05e1\u05d5\u05e0\u05d3\u05e0\u05d9\u05ea", + "snk": "\u05e1\u05d5\u05e0\u05d9\u05e0\u05e7\u05d4", + "sus": "\u05e1\u05d5\u05e1\u05d5", + "suk": "\u05e1\u05d5\u05e7\u05d5\u05de\u05d4", + "hsb": "\u05e1\u05d5\u05e8\u05d1\u05d9\u05ea \u05d2\u05d1\u05d5\u05d4\u05d4", + "dsb": "\u05e1\u05d5\u05e8\u05d1\u05d9\u05ea \u05e0\u05de\u05d5\u05db\u05d4", + "syr": "\u05e1\u05d5\u05e8\u05d9\u05ea", + "sid": "\u05e1\u05d9\u05d3\u05de\u05d5", + "sd": "\u05e1\u05d9\u05e0\u05d3\u05d4\u05d9\u05ea", + "si": "\u05e1\u05d9\u05e0\u05d4\u05dc\u05d4", + "zh": "\u05e1\u05d9\u05e0\u05d9\u05ea", + "zh_Hant": "\u05e1\u05d9\u05e0\u05d9\u05ea \u05de\u05e1\u05d5\u05e8\u05ea\u05d9\u05ea", + "zh_Hans": "\u05e1\u05d9\u05e0\u05d9\u05ea \u05de\u05e4\u05d5\u05e9\u05d8\u05ea", + "ss": "\u05e1\u05d9\u05e1\u05d5\u05d5\u05d0\u05d8\u05d9", + "ii": "\u05e1\u05d9\u05e6\u05f3\u05d5\u05d0\u05df \u05d9\u05d9", + "scn": "\u05e1\u05d9\u05e6\u05d9\u05dc\u05d9\u05d0\u05e0\u05d9\u05ea", + "bla": "\u05e1\u05d9\u05e7\u05e1\u05d9\u05e7\u05d4", + "syc": "\u05e1\u05d9\u05e8\u05d9\u05ea \u05e7\u05dc\u05d0\u05e1\u05d9\u05ea", + "den": "\u05e1\u05dc\u05d0\u05d1\u05d9\u05ea", + "cu": "\u05e1\u05dc\u05d0\u05d1\u05d9\u05ea \u05db\u05e0\u05e1\u05d9\u05d9\u05ea\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "sl": "\u05e1\u05dc\u05d5\u05d1\u05e0\u05d9\u05ea", + "sk": "\u05e1\u05dc\u05d5\u05d1\u05e7\u05d9\u05ea", + "sel": "\u05e1\u05dc\u05e7\u05d5\u05e4", + "saq": "\u05e1\u05de\u05d1\u05d5\u05e8\u05d5", + "sm": "\u05e1\u05de\u05d5\u05d0\u05d9\u05ea", + "sg": "\u05e1\u05e0\u05d2\u05d5", + "sad": "\u05e1\u05e0\u05d3\u05d0\u05d5\u05d5\u05d4", + "seh": "\u05e1\u05e0\u05d4", + "sa": "\u05e1\u05e0\u05e1\u05e7\u05e8\u05d9\u05d8", + "see": "\u05e1\u05e0\u05e7\u05d4", + "sas": "\u05e1\u05e1\u05d0\u05e7", + "st": "\u05e1\u05e1\u05d5\u05ea\u05f3\u05d5", + "es": "\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea", + "es_ES": "\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea \u05d0\u05d9\u05e8\u05d5\u05e4\u05d0\u05d9\u05ea", + "es_419": "\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea \u05dc\u05d8\u05d9\u05e0\u05d5\u05be\u05d0\u05de\u05e8\u05d9\u05e7\u05d0\u05d9\u05ea", + "es_MX": "\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea \u05de\u05e7\u05e1\u05d9\u05e7\u05e0\u05d9\u05ea", + "sco": "\u05e1\u05e7\u05d5\u05d8\u05d9\u05ea", + "sms": "\u05e1\u05e7\u05d5\u05dc\u05d8 \u05e1\u05d0\u05de\u05d9", + "sh": "\u05e1\u05e8\u05d1\u05d5-\u05e7\u05e8\u05d5\u05d0\u05d8\u05d9\u05ea", + "sr": "\u05e1\u05e8\u05d1\u05d9\u05ea", + "sc": "\u05e1\u05e8\u05d3\u05d9\u05e0\u05d9\u05ea", + "srn": "\u05e1\u05e8\u05e0\u05d0\u05df \u05d8\u05d5\u05e0\u05d2\u05d5", + "srr": "\u05e1\u05e8\u05e8", + "he": "\u05e2\u05d1\u05e8\u05d9\u05ea", + "elx": "\u05e2\u05d9\u05dc\u05de\u05d9\u05ea", + "ar": "\u05e2\u05e8\u05d1\u05d9\u05ea", + "jrb": "\u05e2\u05e8\u05d1\u05d9\u05ea \u05d9\u05d4\u05d5\u05d3\u05d9\u05ea", + "ar_001": "\u05e2\u05e8\u05d1\u05d9\u05ea \u05e1\u05e4\u05e8\u05d5\u05ea\u05d9\u05ea", + "shu": "\u05e2\u05e8\u05d1\u05d9\u05ea \u05e6\u05f3\u05d0\u05d3\u05d9\u05ea", + "pi": "\u05e4\u05d0\u05dc\u05d9", + "fat": "\u05e4\u05d0\u05e0\u05d8\u05d9", + "fo": "\u05e4\u05d0\u05e8\u05d5\u05d0\u05d6\u05d9\u05ea", + "ps": "\u05e4\u05d0\u05e9\u05d8\u05d5", + "ff": "\u05e4\u05d5\u05dc\u05d4", + "pl": "\u05e4\u05d5\u05dc\u05e0\u05d9\u05ea", + "fon": "\u05e4\u05d5\u05df", + "pon": "\u05e4\u05d5\u05e0\u05e4\u05d9\u05d0\u05df", + "pt": "\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc\u05d9\u05ea", + "pt_PT": "\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc\u05d9\u05ea \u05d0\u05d9\u05e8\u05d5\u05e4\u05d0\u05d9\u05ea", + "pt_BR": "\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc\u05d9\u05ea \u05d1\u05e8\u05d6\u05d9\u05dc\u05d0\u05d9\u05ea", + "fj": "\u05e4\u05d9\u05d2\u05f3\u05d9\u05ea", + "fil": "\u05e4\u05d9\u05dc\u05d9\u05e4\u05d9\u05e0\u05d9\u05ea", + "fi": "\u05e4\u05d9\u05e0\u05d9\u05ea", + "pal": "\u05e4\u05dc\u05d0\u05d1\u05d9", + "pau": "\u05e4\u05dc\u05d5\u05d5\u05d0\u05df", + "nl_BE": "\u05e4\u05dc\u05de\u05d9\u05ea", + "pam": "\u05e4\u05de\u05e4\u05d0\u05e0\u05d9\u05d4", + "fan": "\u05e4\u05e0\u05d2", + "pa": "\u05e4\u05e0\u05d2\u05f3\u05d0\u05d1\u05d9\u05ea", + "pag": "\u05e4\u05e0\u05d2\u05e1\u05d9\u05e0\u05d0\u05df", + "phn": "\u05e4\u05e0\u05d9\u05e7\u05d9\u05ea", + "pap": "\u05e4\u05e4\u05d9\u05d0\u05de\u05e0\u05d8\u05d5", + "pro": "\u05e4\u05e8\u05d5\u05d1\u05e0\u05e1\u05d0\u05dc \u05e2\u05ea\u05d9\u05e7\u05d4", + "fur": "\u05e4\u05e8\u05d9\u05d5\u05dc\u05d9\u05ea", + "frs": "\u05e4\u05e8\u05d9\u05d6\u05d9\u05d0\u05df \u05de\u05d6\u05e8\u05d7\u05d9\u05ea", + "fy": "\u05e4\u05e8\u05d9\u05d6\u05d9\u05ea", + "frr": "\u05e4\u05e8\u05d9\u05d6\u05d9\u05ea \u05e6\u05e4\u05d5\u05e0\u05d9\u05ea", + "fa": "\u05e4\u05e8\u05e1\u05d9\u05ea", + "jpr": "\u05e4\u05e8\u05e1\u05d9\u05ea \u05d9\u05d4\u05d5\u05d3\u05d9\u05ea", + "peo": "\u05e4\u05e8\u05e1\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "chg": "\u05e6\u05f3\u05d0\u05d2\u05d0\u05d8\u05d0\u05d9", + "cv": "\u05e6\u05f3\u05d5\u05d1\u05d0\u05e9", + "cho": "\u05e6\u05f3\u05d5\u05e7\u05d8\u05d0\u05d5", + "chk": "\u05e6\u05f3\u05d5\u05e7\u05e1\u05d4", + "chb": "\u05e6\u05f3\u05d9\u05d1\u05e6\u05f3\u05d4", + "cgg": "\u05e6\u05f3\u05d9\u05d2\u05d4", + "chp": "\u05e6\u05f3\u05d9\u05e4\u05d5\u05d5\u05d9\u05d0\u05df", + "cs": "\u05e6\u05f3\u05db\u05d9\u05ea", + "ch": "\u05e6\u05f3\u05de\u05d5\u05e8\u05d5", + "ce": "\u05e6\u05f3\u05e6\u05f3\u05e0\u05d9\u05ea", + "chr": "\u05e6\u05f3\u05e8\u05d5\u05e7\u05d9", + "nd": "\u05e6\u05e4\u05d5\u05df \u05e0\u05d3\u05d1\u05dc\u05d4", + "fr": "\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea", + "fro": "\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea \u05e2\u05ea\u05d9\u05e7\u05d4", + "fr_CA": "\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea \u05e7\u05e0\u05d3\u05d9\u05ea", + "fr_CH": "\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea \u05e9\u05d5\u05d5\u05d9\u05e6\u05e8\u05d9\u05ea", + "frm": "\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea \u05ea\u05d9\u05db\u05d5\u05e0\u05d4", + "kea": "\u05e7\u05d0\u05d1\u05d5\u05d5\u05e8\u05d3\u05d9\u05d0\u05e0\u05d5", + "cad": "\u05e7\u05d0\u05d3\u05d5", + "kaw": "\u05e7\u05d0\u05d5\u05d5\u05d9", + "cay": "\u05e7\u05d0\u05d9\u05d5\u05d2\u05d4", + "kl": "\u05e7\u05d0\u05dc\u05d0\u05dc\u05d9\u05e1\u05d5\u05d8\u05d9\u05ea", + "kln": "\u05e7\u05d0\u05dc\u05e0\u05d2\u05f3\u05d9\u05df", + "kr": "\u05e7\u05d0\u05e0\u05d5\u05e8\u05d9", + "kha": "\u05e7\u05d0\u05e1\u05d9", + "kkj": "\u05e7\u05d0\u05e7\u05d5", + "kaa": "\u05e7\u05d0\u05e8\u05d0-\u05e7\u05dc\u05e4\u05d0\u05e7", + "car": "\u05e7\u05d0\u05e8\u05d9\u05d1", + "krl": "\u05e7\u05d0\u05e8\u05dc\u05d9\u05ea", + "ceb": "\u05e7\u05d1\u05d5\u05d0\u05e0\u05d5", + "kab": "\u05e7\u05d1\u05d9\u05dc\u05d4", + "kbd": "\u05e7\u05d1\u05e8\u05d3\u05d9\u05ea", + "kj": "\u05e7\u05d5\u05d0\u05e0\u05d9\u05d0\u05de\u05d4", + "nmg": "\u05e7\u05d5\u05d5\u05d0\u05e1\u05d9\u05d5", + "kho": "\u05e7\u05d5\u05d8\u05d0\u05e0\u05d6\u05d9\u05ea", + "kut": "\u05e7\u05d5\u05d8\u05e0\u05d0\u05d9", + "ses": "\u05e7\u05d5\u05d9\u05e8\u05d0\u05d1\u05d5\u05e8\u05d5 \u05e1\u05e0\u05d9", + "khq": "\u05e7\u05d5\u05d9\u05e8\u05d4 \u05e6\u05f3\u05d9\u05e0\u05d9", + "ksh": "\u05e7\u05d5\u05dc\u05d5\u05e0\u05d9\u05d0\u05df", + "bkm": "\u05e7\u05d5\u05dd", + "kv": "\u05e7\u05d5\u05de\u05d9", + "koi": "\u05e7\u05d5\u05de\u05d9-\u05e4\u05e8\u05de\u05d9\u05d0\u05e7\u05d9\u05ea", + "kum": "\u05e7\u05d5\u05de\u05d9\u05e7", + "kg": "\u05e7\u05d5\u05e0\u05d2\u05d5", + "kok": "\u05e7\u05d5\u05e0\u05e7\u05d0\u05e0\u05d9", + "kos": "\u05e7\u05d5\u05e1\u05e8\u05d0\u05d9\u05d0\u05df", + "cop": "\u05e7\u05d5\u05e4\u05d8\u05d9\u05ea", + "kfo": "\u05e7\u05d5\u05e8\u05d5", + "kru": "\u05e7\u05d5\u05e8\u05d5\u05e7", + "ko": "\u05e7\u05d5\u05e8\u05d9\u05d0\u05e0\u05d9\u05ea", + "kw": "\u05e7\u05d5\u05e8\u05e0\u05d9\u05ea", + "co": "\u05e7\u05d5\u05e8\u05e1\u05d9\u05e7\u05e0\u05d9\u05ea", + "kk": "\u05e7\u05d6\u05d7\u05d9\u05ea", + "ca": "\u05e7\u05d8\u05dc\u05d0\u05e0\u05d9\u05ea", + "kmb": "\u05e7\u05d9\u05de\u05d1\u05d5\u05e0\u05d3\u05d5", + "rw": "\u05e7\u05d9\u05e0\u05d9\u05e8\u05d5\u05d0\u05e0\u05d3\u05d4", + "quc": "\u05e7\u05d9\u05e6\u05f3\u05d4", + "ki": "\u05e7\u05d9\u05e7\u05d5\u05d9\u05d5", + "ky": "\u05e7\u05d9\u05e8\u05d2\u05d9\u05d6\u05d9\u05ea", + "rn": "\u05e7\u05d9\u05e8\u05d5\u05e0\u05d3\u05d9", + "tlh": "\u05e7\u05dc\u05d9\u05e0\u05d2\u05d5\u05df", + "xal": "\u05e7\u05dc\u05de\u05d9\u05e7", + "kam": "\u05e7\u05de\u05d1\u05d4", + "km": "\u05e7\u05de\u05e8\u05d9\u05ea", + "kn": "\u05e7\u05e0\u05d0\u05d3\u05d4", + "yue": "\u05e7\u05e0\u05d8\u05d5\u05e0\u05d6\u05d9\u05ea", + "kbl": "\u05e7\u05e0\u05de\u05d1\u05d5", + "xh": "\u05e7\u05e1\u05d5\u05e1\u05d4", + "kpe": "\u05e7\u05e4\u05dc\u05d4", + "qu": "\u05e7\u05e6\u05f3\u05d5\u05d0\u05d4", + "kac": "\u05e7\u05e6\u05f3\u05d9\u05df", + "krc": "\u05e7\u05e8\u05d0\u05e6\u05f3\u05d9-\u05d1\u05dc\u05e7\u05e8", + "hr": "\u05e7\u05e8\u05d5\u05d0\u05d8\u05d9\u05ea", + "cr": "\u05e7\u05e8\u05d9", + "mus": "\u05e7\u05e8\u05d9\u05e7", + "csb": "\u05e7\u05e9\u05d5\u05d1\u05d9\u05d0\u05df", + "ks": "\u05e7\u05e9\u05de\u05d9\u05e8\u05d9\u05ea", + "raj": "\u05e8\u05d0\u05d2\u05f3\u05e1\u05d8\u05df", + "rwk": "\u05e8\u05d5\u05d5\u05d0", + "root": "\u05e8\u05d5\u05d8", + "rom": "\u05e8\u05d5\u05de\u05d0\u05e0\u05d9\u05ea", + "rm": "\u05e8\u05d5\u05de\u05d0\u05e0\u05e9", + "rof": "\u05e8\u05d5\u05de\u05d1\u05d5", + "ro": "\u05e8\u05d5\u05de\u05e0\u05d9\u05ea", + "ru": "\u05e8\u05d5\u05e1\u05d9\u05ea", + "rap": "\u05e8\u05e4\u05d0\u05e0\u05d5\u05d9", + "rar": "\u05e8\u05e8\u05d5\u05d8\u05d5\u05e0\u05d2\u05d0\u05df", + "chy": "\u05e9\u05d0\u05d9\u05d9\u05df", + "shn": "\u05e9\u05d0\u05df", + "sv": "\u05e9\u05d5\u05d5\u05d3\u05d9\u05ea", + "sux": "\u05e9\u05d5\u05de\u05e8\u05d9\u05ea", + "sn": "\u05e9\u05d5\u05e0\u05d4", + "ksb": "\u05e9\u05de\u05d1\u05d0\u05dc\u05d4", + "und": "\u05e9\u05e4\u05d4 \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2\u05d4", + "th": "\u05ea\u05d0\u05d9\u05ea", + "zgh": "\u05ea\u05de\u05d6\u05d9\u05e2\u05f3\u05ea \u05de\u05e8\u05d5\u05e7\u05d0\u05d9\u05ea \u05ea\u05e7\u05e0\u05d9\u05ea", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "swb": "Comorian", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/hi-IN.json b/public/intl/language/hi-IN.json new file mode 100644 index 0000000..ce12994 --- /dev/null +++ b/public/intl/language/hi-IN.json @@ -0,0 +1,611 @@ +{ + "anp": "\u0905\u0902\u0917\u093f\u0915\u093e", + "en": "\u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "ak": "\u0905\u0915\u0928", + "ach": "\u0905\u0915\u094b\u0932\u0940", + "akk": "\u0905\u0915\u094d\u0915\u093e\u0926\u0940", + "agq": "\u0905\u0917\u094d\u0939\u0947\u092e", + "ace": "\u0905\u091a\u093e\u0907\u0928\u0940\u0938", + "az": "\u0905\u091c\u093c\u0930\u092c\u0948\u091c\u093e\u0928\u0940", + "und": "\u0905\u091c\u094d\u091e\u093e\u0924 \u092d\u093e\u0937\u093e", + "cch": "\u0905\u0924\u094d\u0938\u092e", + "ada": "\u0905\u0926\u093e\u0928\u094d\u0917\u092e\u0947", + "ady": "\u0905\u0926\u093f\u0918\u0947", + "aa": "\u0905\u092b\u093c\u093e\u0930", + "afh": "\u0905\u092b\u094d\u0930\u093f\u0939\u093f\u0932\u0940", + "af": "\u0905\u092b\u093c\u094d\u0930\u0940\u0915\u0940", + "ab": "\u0905\u092c\u094d\u0916\u093c\u093e\u091c\u093c\u093f\u092f\u0928", + "en_US": "\u0905\u092e\u0947\u0930\u093f\u0915\u0940 \u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "am": "\u0905\u092e\u094d\u0939\u0947\u0930\u0940", + "ar": "\u0905\u0930\u092c\u0940", + "arp": "\u0905\u0930\u093e\u092b\u093e\u0913", + "arw": "\u0905\u0930\u093e\u0935\u0915", + "rup": "\u0905\u0930\u094b\u092e\u093e\u0928\u093f\u092f\u0928", + "an": "\u0905\u0930\u094d\u0917\u094b\u0928\u0940", + "ale": "\u0905\u0932\u0947\u0909\u0924", + "sq": "\u0905\u0932\u094d\u092c\u093e\u0928\u093f\u092f\u093e\u0908", + "awa": "\u0905\u0935\u0927\u0940", + "ae": "\u0905\u0935\u0938\u094d\u0924\u093e\u0908", + "av": "\u0905\u0935\u0947\u0930\u093f\u0915", + "as": "\u0905\u0938\u092e\u093f\u092f\u093e", + "asa": "\u0905\u0938\u0941", + "ast": "\u0905\u0938\u094d\u0924\u0941\u0930\u093f\u092f\u0928", + "ga": "\u0906\u0907\u0930\u093f\u0936", + "is": "\u0906\u0907\u0938\u0932\u0948\u0902\u0921\u0940", + "ar_001": "\u0906\u0927\u0941\u0928\u093f\u0915 \u092e\u093e\u0928\u0915 \u0905\u0930\u092c\u0940", + "ay": "\u0906\u092f\u092e\u093e\u0930\u093e", + "hy": "\u0906\u0930\u094d\u092e\u0947\u0928\u093f\u092f\u093e\u0908", + "inh": "\u0907\u0902\u0917\u0941\u0936", + "id": "\u0907\u0902\u0921\u094b\u0928\u0947\u0936\u093f\u092f\u093e\u0908", + "io": "\u0907\u0921\u094c", + "it": "\u0907\u0924\u093e\u0932\u0935\u0940", + "smn": "\u0907\u0928\u093e\u0930\u0940 \u0938\u093e\u092e\u0940", + "ik": "\u0907\u0928\u0941\u092a\u093f\u092f\u093e\u0915\u094d", + "iu": "\u0907\u0928\u0942\u0915\u0940\u091f\u0942\u0924\u094d", + "iba": "\u0907\u092c\u093e\u0928", + "ilo": "\u0907\u0932\u094b\u0915\u094b", + "ewo": "\u0907\u0935\u094b\u0928\u094d\u0921\u094b", + "ig": "\u0908\u0917\u094d\u092c\u094b", + "ia": "\u0908\u0928\u094d\u091f\u0930\u0932\u093f\u0902\u0917\u0941\u0906", + "ie": "\u0908\u0928\u094d\u091f\u0930\u0932\u093f\u0902\u0917\u0941\u0907", + "ee": "\u0908\u0935\u0947", + "uz": "\u0909\u091c\u093c\u094d\u092c\u0947\u0915", + "or": "\u0909\u0921\u093c\u093f\u092f\u093e", + "nd": "\u0909\u0924\u094d\u0924\u0930\u0940 \u0926\u0947\u092c\u0947\u0932", + "frr": "\u0909\u0924\u094d\u0924\u0930\u0940 \u092b\u094d\u0930\u0940\u0938\u0940\u092f\u0928", + "nso": "\u0909\u0924\u094d\u0924\u0930\u0940 \u0938\u094b\u0925\u094b", + "udm": "\u0909\u0926\u092e\u0941\u0930\u094d\u0924", + "umb": "\u0909\u092e\u094d\u092c\u0941\u0928\u094d\u0921\u0941", + "ur": "\u0909\u0930\u094d\u0926\u0942", + "hsb": "\u090a\u092a\u0930\u0940 \u0938\u0949\u0930\u094d\u092c\u093f\u092f\u0928", + "eka": "\u090f\u0915\u093e\u091c\u0941\u0915", + "nqo": "\u090f\u0928\u094d\u0915\u094b", + "efi": "\u090f\u092b\u093f\u0915", + "ebu": "\u090f\u092e\u094d\u092c\u0941", + "myv": "\u090f\u0930\u094d\u091c\u093c\u092f\u093e", + "elx": "\u090f\u0932\u093e\u092e\u093e\u0907\u091f", + "et": "\u090f\u0938\u094d\u091f\u094b\u0928\u093f\u092f\u093e\u0908", + "eo": "\u090f\u0938\u094d\u092a\u0947\u0930\u0947\u0902\u0924\u094b", + "ain": "\u0910\u0928\u0942", + "arc": "\u0910\u0930\u0947\u092e\u0947\u0915", + "de_AT": "\u0911\u0938\u094d\u091f\u094d\u0930\u093f\u092f\u093e\u0908 \u091c\u0930\u094d\u092e\u0928", + "en_AU": "\u0911\u0938\u094d\u091f\u094d\u0930\u0947\u0932\u093f\u092f\u093e\u0908 \u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "oj": "\u0913\u091c\u093f\u092c\u094d\u0935\u093e", + "ota": "\u0913\u091f\u094b\u092e\u093e\u0928 \u0924\u0941\u0930\u094d\u0915\u093f\u0936", + "om": "\u0913\u0930\u094b\u092e\u094b", + "oc": "\u0913\u0938\u0940\u091f\u093e\u0928", + "osa": "\u0913\u0938\u0947\u091c", + "os": "\u0913\u0938\u094d\u0938\u0947\u091f\u093f\u0915", + "kk": "\u0915\u091c\u093c\u093e\u0916\u093c", + "en_CA": "\u0915\u0928\u093e\u0921\u093e\u0908 \u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "fr_CA": "\u0915\u0928\u093e\u0921\u093e\u0908 \u092b\u093c\u094d\u0930\u0947\u0902\u091a", + "kr": "\u0915\u0928\u0941\u0930\u0940", + "kn": "\u0915\u0928\u094d\u0928\u0921\u093c", + "kab": "\u0915\u092c\u093e\u0907\u0932", + "kbd": "\u0915\u092c\u093e\u0930\u094d\u0921\u093f\u092f\u0928", + "ch": "\u0915\u092e\u094b\u0930\u094b", + "kam": "\u0915\u092e\u094d\u092c\u093e", + "krc": "\u0915\u0930\u093e\u091a\u092f-\u092c\u0932\u094d\u0915\u093e\u0930", + "krl": "\u0915\u0930\u0947\u0932\u093f\u092f\u0928", + "kln": "\u0915\u0932\u0947\u0902\u091c\u093f\u0928", + "ks": "\u0915\u0936\u094d\u092e\u0940\u0930\u0940", + "swc": "\u0915\u093e\u0902\u0917\u094b \u0938\u094d\u0935\u093e\u0939\u093f\u0932\u0940", + "kac": "\u0915\u093e\u091a\u093f\u0928", + "ca": "\u0915\u093e\u0924\u093e\u0932\u093e\u0928", + "kea": "\u0915\u093e\u092c\u0941\u0935\u0947\u0930\u094d\u0926\u093f\u092f\u093e\u0928\u0941", + "kaa": "\u0915\u093e\u0930\u093e-\u0915\u0932\u094d\u092a\u0915", + "xal": "\u0915\u093e\u0932\u094d\u092e\u093f\u0915", + "kaw": "\u0915\u093e\u0935\u0940", + "csb": "\u0915\u093e\u0936\u0941\u092c\u093f\u092f\u0928", + "ki": "\u0915\u093f\u0915\u0941\u092f\u0942", + "rw": "\u0915\u093f\u0928\u094d\u092f\u093e\u0930\u0935\u093e\u0902\u0921\u093e", + "kmb": "\u0915\u093f\u092e\u094d\u092c\u0928\u094d\u0926\u0941", + "ky": "\u0915\u093f\u0930\u094d\u0917\u0940\u091c\u093c", + "quc": "\u0915\u093f\u0936", + "kut": "\u0915\u0941\u0924\u0947\u0928\u093e\u0908", + "kum": "\u0915\u0941\u092e\u0940\u0915", + "kru": "\u0915\u0941\u0930\u0942\u0916", + "ku": "\u0915\u0941\u0930\u094d\u0926\u093f\u0936", + "yue": "\u0915\u0948\u0902\u091f\u094b\u0928\u0940\u091c\u093c", + "cad": "\u0915\u0948\u0921\u094d\u0921\u094b", + "car": "\u0915\u0948\u0930\u093f\u092c", + "cop": "\u0915\u0949\u092a\u094d\u091f\u093f\u0915", + "kok": "\u0915\u094b\u0902\u0915\u0923\u0940", + "kg": "\u0915\u094b\u0902\u0917\u094b", + "zxx": "\u0915\u094b\u0908 \u092d\u093e\u0937\u093e \u0938\u093e\u092e\u0917\u094d\u0930\u0940 \u0928\u0939\u0940\u0902", + "kv": "\u0915\u094b\u092e\u0940", + "koi": "\u0915\u094b\u092e\u0940-\u092a\u0930\u094d\u092e\u092f\u093e\u0915", + "khq": "\u0915\u094b\u092f\u0930\u093e \u091a\u0940\u0928\u0940", + "ses": "\u0915\u094b\u092f\u0930\u093e\u092c\u094b\u0930\u094b \u0938\u0947\u0928\u094d\u0928\u0940", + "ko": "\u0915\u094b\u0930\u093f\u092f\u093e\u0908", + "kfo": "\u0915\u094b\u0930\u094b", + "kw": "\u0915\u094b\u0930\u094d\u0928\u093f\u0936", + "co": "\u0915\u094b\u0930\u094d\u0938\u0940\u0915\u0928", + "kos": "\u0915\u094b\u0938\u0930\u0948\u0928", + "kpe": "\u0915\u094d\u092a\u0947\u0932\u094d\u0932\u0948", + "cr": "\u0915\u094d\u0930\u0940", + "mus": "\u0915\u094d\u0930\u0940\u0915", + "crh": "\u0915\u094d\u0930\u0940\u092e\u0940\u0928 \u0924\u0941\u0930\u094d\u0915\u0940", + "hr": "\u0915\u094d\u0930\u094b\u090f\u0936\u093f\u092f\u093e\u0908", + "syc": "\u0915\u094d\u0932\u093e\u0938\u093f\u0915\u0932 \u0938\u093f\u0930\u093f\u090f\u0915", + "tlh": "\u0915\u094d\u0932\u093f\u0902\u0917\u0928", + "kj": "\u0915\u094d\u0935\u093e\u0928\u094d\u092f\u093e\u092e\u093e", + "nmg": "\u0915\u094d\u0935\u093e\u0938\u093f\u0913", + "qu": "\u0915\u094d\u0935\u0947\u091a\u0941\u0906", + "km": "\u0916\u092e\u0947\u0930", + "kha": "\u0916\u093e\u0938\u0940", + "kho": "\u0916\u094b\u0924\u093e\u0928\u0940\u0938", + "xh": "\u0916\u093c\u094b\u0938\u093e", + "gaa": "\u0917\u093e", + "lg": "\u0917\u093e\u0902\u0921\u093e", + "gon": "\u0917\u093e\u0901\u0921\u0940", + "gag": "\u0917\u093e\u0917\u094c\u091c\u093c", + "gay": "\u0917\u093e\u092f\u094b", + "gil": "\u0917\u093f\u0932\u094d\u092c\u0930\u0924\u0940\u0938", + "gez": "\u0917\u0940\u091c\u093c", + "gn": "\u0917\u0941\u0906\u0930\u093e\u0928\u0940", + "gu": "\u0917\u0941\u091c\u0930\u093e\u0924\u0940", + "guz": "\u0917\u0941\u0938\u0940", + "gl": "\u0917\u0948\u0932\u093f\u0936\u093f\u092f\u0928", + "got": "\u0917\u0949\u0925\u093f\u0915", + "gor": "\u0917\u094b\u0930\u094b\u0928\u094d\u0924\u093e\u0932\u094b", + "gba": "\u0917\u094d\u092c\u093e\u092f\u093e", + "kl": "\u0917\u094d\u0930\u0940\u0928\u0932\u0948\u0902\u0921\u093f\u0915", + "grb": "\u0917\u094d\u0930\u0947\u092c\u094b", + "gwi": "\u0917\u094d\u0935\u093f\u091a\u2019\u0907\u0928", + "cu": "\u091a\u0930\u094d\u091a \u0938\u093e\u0932\u094d\u0935\u093f\u0915", + "chn": "\u091a\u093f\u0928\u0942\u0915 \u091c\u093e\u0930\u0917\u0949\u0928", + "chb": "\u091a\u093f\u092c\u094d\u091a\u093e", + "zh": "\u091a\u0940\u0928\u0940", + "chk": "\u091a\u0942\u0915\u0940\u0938", + "cv": "\u091a\u0942\u0935\u093e\u0936", + "cs": "\u091a\u0947\u0915", + "ce": "\u091a\u0947\u091a\u0928", + "cho": "\u091a\u094b\u0915\u094d\u0924\u094c", + "chg": "\u091b\u0917\u093e\u0924\u093e\u0908", + "de": "\u091c\u0930\u094d\u092e\u0928", + "zza": "\u091c\u093c\u093e\u091c\u093c\u093e", + "ja": "\u091c\u093e\u092a\u093e\u0928\u0940", + "jv": "\u091c\u093e\u0935\u093e\u0928\u0940\u091c\u093c", + "za": "\u091c\u093c\u0941\u0906\u0902\u0917", + "jrb": "\u091c\u0941\u0926\u0947\u0913-\u0905\u0930\u0947\u092c\u093f\u0915", + "jpr": "\u091c\u0941\u0926\u0947\u0913-\u092a\u0930\u094d\u0936\u093f\u092f\u0928", + "zu": "\u091c\u093c\u0941\u0932\u0942", + "zun": "\u091c\u093c\u0942\u0928\u0940", + "zen": "\u091c\u093c\u0947\u0928\u093e\u0928\u094d\u0917\u093e", + "zap": "\u091c\u093c\u0947\u092a\u094b\u091f\u0947\u0915", + "ka": "\u091c\u0949\u0930\u094d\u091c\u093f\u092f\u093e\u0908", + "dz": "\u091c\u093c\u094b\u0928\u094d\u0917\u0916\u093e", + "dyo": "\u091c\u094b\u0932\u093e-\u092b\u094b\u0902\u0908", + "kaj": "\u091c\u094d\u091c\u0941", + "dje": "\u091d\u093e\u0930\u094d\u092e\u093e", + "tig": "\u091f\u093e\u0907\u0917\u094d\u0930\u0947", + "twq": "\u091f\u093e\u0938\u0935\u093e\u0915", + "tem": "\u091f\u093f\u092e\u094d\u0928\u0947", + "teo": "\u091f\u0947\u0938\u094b", + "to": "\u091f\u094b\u0902\u0917\u0928", + "tpi": "\u091f\u094b\u0915 \u092a\u093f\u0938\u093f\u0928", + "tw": "\u091f\u094d\u0935\u0940", + "nl": "\u0921\u091a", + "del": "\u0921\u093f\u0932\u0948\u0935\u0947\u092f\u0930", + "da": "\u0921\u0947\u0928\u093f\u0936", + "dgr": "\u0921\u094b\u0917\u094d\u0930\u093f\u092c", + "doi": "\u0921\u094b\u0917\u094d\u0930\u0940", + "ng": "\u0921\u094b\u0928\u094d\u0917\u093e", + "dyu": "\u0921\u094d\u092f\u0941\u0932\u093e", + "ta": "\u0924\u092e\u093f\u0932", + "tum": "\u0924\u092e\u094d\u092c\u0942\u0915\u093e", + "tl": "\u0924\u093e\u0917\u093e\u0932\u094b\u0917", + "tg": "\u0924\u093e\u091c\u093f\u0915", + "tt": "\u0924\u093e\u0924\u093e\u0930", + "tmh": "\u0924\u093e\u092e\u093e\u0936\u0947\u0915", + "ty": "\u0924\u093e\u0939\u093f\u0924\u093f\u092f\u0928", + "ti": "\u0924\u093f\u0917\u094d\u0930\u0940\u0928\u094d\u092f\u093e", + "bo": "\u0924\u093f\u092c\u094d\u092c\u0924\u0940", + "tiv": "\u0924\u093f\u0935", + "tk": "\u0924\u0941\u0930\u094d\u0915\u092e\u0947\u0928", + "tr": "\u0924\u0941\u0930\u094d\u0915\u0940", + "tvl": "\u0924\u0941\u0935\u093e\u0932\u0941", + "tyv": "\u0924\u0941\u0935\u0940\u0928\u093f\u092f\u0928", + "tet": "\u0924\u0947\u0924\u0941\u092e", + "ter": "\u0924\u0947\u0930\u0947\u0928\u094b", + "te": "\u0924\u0947\u0932\u0941\u0917\u0942", + "shi": "\u0924\u0948\u091a\u0947\u0932\u094d\u0939\u093f\u0924", + "dav": "\u0924\u0948\u0924\u093e", + "tkl": "\u0924\u094b\u0915\u0947\u0932\u093e\u090a", + "kcg": "\u0924\u094d\u092f\u093e\u092a", + "tli": "\u0924\u094d\u0932\u093f\u0902\u0917\u093f\u0924", + "tsi": "\u0924\u094d\u0938\u093f\u092e\u0940\u0936\u093f\u092f\u0928", + "th": "\u0925\u093e\u0908", + "nr": "\u0926\u0915\u094d\u0937\u093f\u0923 \u0926\u0947\u092c\u0947\u0932", + "sma": "\u0926\u0915\u094d\u0937\u093f\u0923 \u0938\u093e\u092e\u0940", + "alt": "\u0926\u0915\u094d\u0937\u093f\u0923\u0940 \u0905\u0932\u094d\u0924\u093e\u0908", + "dak": "\u0926\u093e\u0915\u094b\u0924\u093e", + "dar": "\u0926\u093e\u0930\u094d\u0917\u0935\u093e", + "din": "\u0926\u093f\u0928\u094d\u0915\u093e", + "dv": "\u0926\u093f\u0935\u0947\u0939\u0940", + "dua": "\u0926\u0941\u0906\u0932\u093e", + "jgo": "\u0928\u0917\u094b\u0902\u092c\u093e", + "na": "\u0928\u093e\u0909\u0930\u0942", + "naq": "\u0928\u093e\u092e\u093e", + "nv": "\u0928\u093e\u0935\u093e\u091c\u094b", + "nds": "\u0928\u093f\u091a\u0932\u093e \u091c\u0930\u094d\u092e\u0928", + "dsb": "\u0928\u093f\u091a\u0932\u093e \u0938\u0949\u0930\u094d\u092c\u093f\u092f\u0928", + "nia": "\u0928\u093f\u092f\u093e\u0938", + "niu": "\u0928\u093f\u092f\u0941\u0906\u0928", + "nap": "\u0928\u0940\u092a\u094b\u0932\u093f\u091f\u0928", + "nus": "\u0928\u0941\u090f\u0930", + "ne": "\u0928\u0947\u092a\u093e\u0932\u0940", + "new": "\u0928\u0947\u0935\u093e\u0921\u093c\u0940", + "se": "\u0928\u0949\u0930\u094d\u0926\u0928 \u0938\u093e\u092e\u0940", + "no": "\u0928\u0949\u0930\u094d\u0935\u0947\u091c\u093f\u092f\u093e\u0908", + "nn": "\u0928\u0949\u0930\u094d\u0935\u0947\u091c\u093f\u092f\u093e\u0908 \u0928\u0949\u092f\u0928\u0949\u0930\u094d\u0938\u094d\u0915", + "nb": "\u0928\u0949\u0930\u094d\u0935\u0947\u091c\u093f\u092f\u093e\u0908 \u092c\u094b\u0915\u092e\u093e\u0932", + "nog": "\u0928\u094b\u0917\u093e\u0908", + "nzi": "\u0928\u094d\u091c\u093c\u0940\u092e\u093e", + "nyn": "\u0928\u094d\u092f\u093e\u0928\u0915\u094b\u0932", + "ny": "\u0928\u094d\u092f\u093e\u0928\u091c\u093e", + "nym": "\u0928\u094d\u092f\u093e\u092e\u0935\u0947\u091c\u093c\u0940", + "tog": "\u0928\u094d\u092f\u093e\u0938\u093e \u091f\u094b\u0928\u094d\u0917\u093e", + "nyo": "\u0928\u094d\u092f\u094b\u0930\u094b", + "pag": "\u092a\u0902\u0917\u093e\u0938\u0940\u0928\u093e\u0928", + "pa": "\u092a\u0902\u091c\u093e\u092c\u0940", + "pau": "\u092a\u0932\u094b\u0909\u0906\u0928", + "fy": "\u092a\u0936\u094d\u091a\u093f\u092e\u0940 \u092b\u093c\u094d\u0930\u093f\u0938\u093f\u092f\u093e\u0908", + "ps": "\u092a\u0936\u094d\u0924\u094b", + "pap": "\u092a\u093e\u092a\u093f\u092f\u093e\u092e\u0947\u0928\u094d\u091f\u094b", + "pam": "\u092a\u093e\u092e\u094d\u092a\u093e\u0928\u094d\u0917\u093e", + "zh_Hant": "\u092a\u093e\u0930\u0902\u092a\u0930\u093f\u0915 \u091a\u0940\u0928\u0940", + "nwc": "\u092a\u093e\u0930\u092e\u094d\u092a\u0930\u093f\u0915 \u0928\u0947\u0935\u093e\u0930\u0940", + "pi": "\u092a\u093e\u0932\u0940", + "pal": "\u092a\u093e\u0939\u094d\u0932\u093e\u0935\u0940", + "fro": "\u092a\u0941\u0930\u093e\u0924\u0928 \u092b\u093c\u094d\u0930\u093e\u0902\u0938\u0940\u0938\u0940", + "goh": "\u092a\u0941\u0930\u093e\u0924\u0928 \u0939\u093e\u0907 \u091c\u0930\u094d\u092e\u0928", + "non": "\u092a\u0941\u0930\u093e\u0928\u093e \u0928\u0949\u0930\u094d\u0938", + "ang": "\u092a\u0941\u0930\u093e\u0928\u0940 \u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "sga": "\u092a\u0941\u0930\u093e\u0928\u0940 \u0906\u0907\u0930\u093f\u0936", + "pro": "\u092a\u0941\u0930\u093e\u0928\u0940 \u092a\u094d\u0930\u094b\u0935\u0947\u0928\u094d\u0938\u0932", + "peo": "\u092a\u0941\u0930\u093e\u0928\u0940 \u092b\u093e\u0930\u0938\u0940", + "pt": "\u092a\u0941\u0930\u094d\u0924\u0917\u093e\u0932\u0940", + "frs": "\u092a\u0942\u0930\u094d\u0935\u0940 \u092b\u094d\u0930\u0940\u0938\u0940\u092f\u0928", + "pl": "\u092a\u094b\u0932\u093f\u0936", + "pon": "\u092a\u094b\u0939\u094d\u0928\u092a\u093f\u090f\u0928", + "egy": "\u092a\u094d\u0930\u093e\u091a\u0940\u0928 \u092e\u093f\u0938\u094d\u0930\u0940", + "grc": "\u092a\u094d\u0930\u093e\u091a\u0940\u0928 \u092f\u0942\u0928\u093e\u0928\u0940", + "fat": "\u092b\u0928\u094d\u091f\u0940", + "fa": "\u092b\u093c\u093e\u0930\u0938\u0940", + "fi": "\u092b\u093c\u093f\u0928\u093f\u0936", + "fil": "\u092b\u093c\u093f\u0932\u093f\u092a\u0940\u0928\u094b", + "fj": "\u092b\u093c\u0940\u091c\u0940", + "ff": "\u092b\u0941\u0932\u093e\u0939", + "fan": "\u092b\u0948\u0928\u094d\u0917", + "fo": "\u092b\u093c\u0948\u0930\u094b\u0907\u091c\u093c", + "fon": "\u092b\u0949\u0928", + "phn": "\u092b\u094b\u090f\u0928\u093f\u0936\u093f\u092f\u0928", + "fur": "\u092b\u094d\u0930\u0940\u092f\u0941\u0932\u0940\u092f\u093e\u0928", + "fr": "\u092b\u093c\u094d\u0930\u0947\u0902\u091a", + "nl_BE": "\u092b\u093c\u094d\u0932\u0947\u092e\u093f\u0936", + "bn": "\u092c\u0902\u0917\u093e\u0932\u0940", + "bug": "\u092c\u0917\u093f\u0928\u0940\u0938", + "ksf": "\u092c\u092b\u093f\u0906", + "my": "\u092c\u0930\u094d\u092e\u0940\u091c\u093c", + "bal": "\u092c\u0932\u0942\u091a\u0940", + "ba": "\u092c\u0936\u0916\u093c\u093f\u0930", + "bas": "\u092c\u0938\u093e", + "bm": "\u092c\u093e\u092e\u094d\u092c\u093e\u0930\u093e", + "ban": "\u092c\u093e\u0932\u093f\u0928\u0940\u0938", + "eu": "\u092c\u093e\u0938\u094d\u0915", + "bik": "\u092c\u093f\u0915\u094b\u0932", + "bin": "\u092c\u093f\u0928\u0940", + "bi": "\u092c\u093f\u0938\u094d\u0932\u093e\u092e\u093e", + "bua": "\u092c\u0941\u0930\u093f\u092f\u093e\u0924", + "bg": "\u092c\u0941\u0932\u094d\u0917\u093e\u0930\u093f\u092f\u093e\u0908", + "bej": "\u092c\u0947\u091c\u093e", + "bez": "\u092c\u0947\u0928\u093e", + "bem": "\u092c\u0947\u092e\u094d\u092c\u093e", + "be": "\u092c\u0947\u0932\u093e\u0930\u0942\u0938\u0940", + "brx": "\u092c\u094b\u0921\u094b", + "bs": "\u092c\u094b\u0938\u094d\u0928\u093f\u092f\u093e\u0908", + "bra": "\u092c\u094d\u0930\u091c", + "pt_BR": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0940 \u092a\u0941\u0930\u094d\u0924\u0917\u093e\u0932\u0940", + "en_GB": "\u092c\u094d\u0930\u093f\u091f\u093f\u0936 \u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "br": "\u092c\u094d\u0930\u0947\u091f\u0928", + "byn": "\u092c\u094d\u0932\u093f\u0928", + "zbl": "\u092c\u094d\u0932\u093f\u0938\u093f\u092e\u094d\u092c\u0949\u0932\u094d\u0938", + "bho": "\u092d\u094b\u091c\u092a\u0941\u0930\u0940", + "mn": "\u092e\u0902\u0917\u094b\u0932\u0940\u092f\u093e\u0908", + "mdr": "\u092e\u0902\u0927\u093e\u0930", + "mak": "\u092e\u0915\u093e\u0938\u0930", + "mag": "\u092e\u0917\u093e\u0939\u0940", + "mni": "\u092e\u0923\u093f\u092a\u0942\u0930\u0940", + "tzm": "\u092e\u0927\u094d\u092f \u090f\u091f\u0932\u0938 \u0924\u092e\u093e\u091c\u093c\u093f\u0924", + "dum": "\u092e\u0927\u094d\u092f \u092a\u0941\u0930\u094d\u0924\u0917\u093e\u0932\u0940", + "mga": "\u092e\u0927\u094d\u092f\u0915\u093e\u0932 \u0906\u0907\u0930\u093f\u0936", + "enm": "\u092e\u0927\u094d\u092f\u0915\u093e\u0932\u0940\u0928 \u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940", + "frm": "\u092e\u0927\u094d\u092f\u0915\u093e\u0932\u0940\u0928 \u092b\u093c\u094d\u0930\u093e\u0902\u0938\u0940\u0938\u0940", + "gmh": "\u092e\u0927\u094d\u092f\u0915\u093e\u0932\u0940\u0928 \u0939\u093e\u0907 \u091c\u0930\u094d\u092e\u0928", + "mnc": "\u092e\u0928\u094d\u091a\u0941", + "man": "\u092e\u0928\u094d\u0921\u093f\u0928\u094d\u0917\u094b", + "mr": "\u092e\u0930\u093e\u0920\u0940", + "ms": "\u092e\u0932\u092f", + "ml": "\u092e\u0932\u092f\u093e\u0932\u092e", + "mas": "\u092e\u0938\u093e\u0908", + "mi": "\u092e\u093e\u0913\u0930\u0940", + "mad": "\u092e\u093e\u0926\u0941\u0930\u0940\u0938", + "zgh": "\u092e\u093e\u0928\u0915 \u092e\u094b\u0930\u0915\u094d\u0915\u0928 \u0924\u093e\u092e\u093e\u091c\u093c\u093e\u0907\u091f", + "arn": "\u092e\u093e\u092a\u0942\u091a\u0947", + "mwr": "\u092e\u093e\u0930\u0935\u093e\u0921\u093c\u0940", + "chm": "\u092e\u093e\u0930\u0940", + "mh": "\u092e\u093e\u0930\u094d\u0936\u0932\u0940\u091c\u093c", + "mg": "\u092e\u093e\u0932\u093e\u0917\u093e\u0938\u0940", + "mt": "\u092e\u093e\u0932\u094d\u091f\u0940\u091c\u093c", + "mic": "\u092e\u093f\u0915\u092e\u0948\u0915", + "min": "\u092e\u093f\u0928\u093e\u0902\u0917\u094d\u0915\u093e\u092c\u093e\u0909", + "mwl": "\u092e\u093f\u0930\u093e\u0902\u0921\u0940", + "mua": "\u092e\u0941\u0902\u0921\u0948\u0902\u0917", + "mgo": "\u092e\u0947\u091f\u093e", + "men": "\u092e\u0947\u0928\u094d\u0921\u0947", + "mer": "\u092e\u0947\u0930\u0941", + "gv": "\u092e\u0948\u0902\u0915\u094d\u0938", + "jmc": "\u092e\u0948\u0915\u0939\u0948\u092e\u0947", + "kde": "\u092e\u0948\u0915\u094b\u0902\u0921", + "es_MX": "\u092e\u0948\u0915\u094d\u0938\u093f\u0915\u0928 \u0938\u094d\u092a\u0947\u0928\u093f\u0936", + "mgh": "\u092e\u0948\u0916\u0941\u0935\u093e-\u092e\u0940\u091f\u094d\u091f\u094b", + "mai": "\u092e\u0948\u0925\u093f\u0932\u0940", + "mk": "\u092e\u0948\u0938\u093f\u0921\u094b\u0928\u093f\u092f\u093e\u0908", + "lol": "\u092e\u094b\u0902\u0917\u094b", + "mdf": "\u092e\u094b\u0915\u094d\u0937", + "mfe": "\u092e\u094b\u0930\u0940\u0938\u094d\u092f\u0947\u0928", + "ro_MD": "\u092e\u094b\u0932\u0921\u093e\u0935\u093f\u092f\u0928", + "mos": "\u092e\u094b\u0938\u094d\u0938\u0940", + "moh": "\u092e\u094b\u0939\u094c\u0915", + "yao": "\u092f\u093e\u0913", + "sah": "\u092f\u093e\u0915\u0942\u0924", + "yap": "\u092f\u093e\u092a\u0940\u0938", + "uga": "\u092f\u0941\u0917\u0948\u0930\u093f\u091f\u093f\u0915", + "uk": "\u092f\u0942\u0915\u094d\u0930\u0947\u0928\u093f\u092f\u093e\u0908", + "el": "\u092f\u0942\u0928\u093e\u0928\u0940", + "pt_PT": "\u092f\u0942\u0930\u094b\u092a\u0940\u092f \u092a\u0941\u0930\u094d\u0924\u0917\u093e\u0932\u0940", + "es_ES": "\u092f\u0942\u0930\u094b\u092a\u0940\u092f \u0938\u094d\u092a\u0947\u0928\u0940", + "yi": "\u092f\u0947\u0939\u0941\u0926\u0940", + "yo": "\u092f\u094b\u0930\u0942\u092c\u093e", + "rwk": "\u0930\u0935\u093e", + "raj": "\u0930\u093e\u091c\u0938\u094d\u0925\u093e\u0928\u0940", + "rap": "\u0930\u093e\u092a\u093e\u0928\u0941\u0908", + "rar": "\u0930\u093e\u0930\u094b\u0924\u094b\u0902\u0917\u0928", + "rn": "\u0930\u0941\u0928\u094d\u0926\u0940", + "root": "\u0930\u0942\u091f", + "ru": "\u0930\u0942\u0938\u0940", + "ro": "\u0930\u094b\u092e\u093e\u0928\u093f\u092f\u093e\u0908", + "rom": "\u0930\u094b\u092e\u093e\u0928\u0940", + "rm": "\u0930\u094b\u092e\u093e\u0928\u094d\u0936", + "rof": "\u0930\u094b\u092e\u094d\u092c\u094b", + "lb": "\u0932\u0917\u094d\u091c\u093c\u092e\u092c\u0930\u094d\u0917\u0940", + "lag": "\u0932\u093e\u0902\u0917\u093f", + "lo": "\u0932\u093e\u0913", + "lv": "\u0932\u093e\u0924\u0935\u093f\u092f\u093e\u0908", + "lad": "\u0932\u093e\u0926\u0940\u0928\u094b", + "lam": "\u0932\u093e\u092e\u094d\u092c\u093e", + "lah": "\u0932\u093e\u0939\u094d\u0928\u094d\u0921\u093e", + "ln": "\u0932\u093f\u0902\u0917\u093e\u0932\u093e", + "li": "\u0932\u093f\u0902\u092c\u0930\u094d\u0917\u093f\u0936", + "lt": "\u0932\u093f\u0925\u0941\u0906\u0928\u093f\u092f\u093e\u0908", + "lui": "\u0932\u0941\u0907\u0938\u0947\u0928\u094b", + "lun": "\u0932\u0941\u0928\u094d\u0921\u093e", + "lus": "\u0932\u0941\u0936\u093e\u0908", + "lez": "\u0932\u0947\u091c\u093c\u094d\u0918\u0940\u092f\u0928", + "lkt": "\u0932\u0948\u0915\u094b\u091f\u093e", + "la": "\u0932\u0948\u091f\u093f\u0928", + "es_419": "\u0932\u0948\u091f\u093f\u0928 \u0905\u092e\u0947\u0930\u093f\u0915\u0940 \u0938\u094d\u092a\u0947\u0928\u0940", + "loz": "\u0932\u094b\u091c\u093c\u0940", + "jbo": "\u0932\u094b\u091c\u094d\u092c\u093e\u0928", + "luy": "\u0932\u094d\u092f\u0941\u0908\u0906", + "luo": "\u0932\u094d\u092f\u0941\u0913", + "smj": "\u0932\u094d\u092f\u0941\u0932 \u0938\u093e\u092e\u0940", + "lu": "\u0932\u094d\u092f\u0942\u092c\u093e-\u0915\u091f\u093e\u0902\u0917\u093e", + "lua": "\u0932\u094d\u092f\u0942\u092c\u093e-\u0932\u0941\u0932\u0941\u0906", + "wal": "\u0935\u0932\u093e\u092e\u094b", + "vai": "\u0935\u093e\u0908", + "war": "\u0935\u093e\u0930\u0948", + "wa": "\u0935\u093e\u0932\u094d\u0932\u0942\u0928", + "was": "\u0935\u093e\u0936\u094b", + "ug": "\u0935\u093f\u0918\u0941\u0930", + "vi": "\u0935\u093f\u092f\u0924\u0928\u093e\u092e\u0940", + "mul": "\u0935\u093f\u0935\u093f\u0927 \u092d\u093e\u0937\u093e\u090f\u0901", + "vun": "\u0935\u0941\u0902\u091c\u094b", + "ve": "\u0935\u0947\u0928\u094d\u0926\u093e", + "cy": "\u0935\u0947\u0932\u094d\u0936", + "vot": "\u0935\u0949\u091f\u093f\u0915", + "vo": "\u0935\u094b\u0932\u093e\u092a\u0941\u0915", + "wo": "\u0935\u094b\u0932\u094b\u092b\u093c", + "ksb": "\u0936\u092e\u094d\u092c\u093e\u0932\u093e", + "cgg": "\u0936\u093f\u0917\u093e", + "chp": "\u0936\u093f\u092a\u0947\u0935\u094d\u092f\u093e\u0928", + "chy": "\u0936\u0947\u092f\u0947\u0928\u094d\u0928", + "chr": "\u0936\u0947\u0930\u094b\u0915\u0940", + "shn": "\u0936\u0948\u0928", + "sn": "\u0936\u094b\u0923\u093e", + "sat": "\u0938\u0902\u0924\u093e\u0932\u0940", + "sa": "\u0938\u0902\u0938\u094d\u0915\u0943\u0924", + "sad": "\u0938\u0928\u094d\u0921\u093e\u0935\u0947", + "zh_Hans": "\u0938\u0930\u0932\u0940\u0915\u0943\u0924 \u091a\u0940\u0928\u0940", + "sr": "\u0938\u0930\u094d\u092c\u093f\u092f\u093e\u0908", + "sg": "\u0938\u093e\u0902\u0917\u094b", + "sam": "\u0938\u093e\u092e\u0948\u0930\u093f\u091f\u0928 \u0905\u0930\u0948\u092e\u093f\u0915", + "sm": "\u0938\u093e\u092e\u094b\u0928", + "sc": "\u0938\u093e\u0930\u094d\u0926\u093f\u0928\u093f\u092f\u0928", + "sas": "\u0938\u093e\u0938\u093e\u0915", + "sd": "\u0938\u093f\u0902\u0927\u0940", + "si": "\u0938\u093f\u0902\u0939\u0932\u0940", + "bla": "\u0938\u093f\u0915\u094d\u0938\u093f\u0915\u093e", + "ii": "\u0938\u093f\u091a\u0941\u0906\u0928 \u092f\u0940", + "sid": "\u0938\u093f\u0926\u093e\u092e\u094b", + "ceb": "\u0938\u093f\u092c\u0941\u0906\u0928\u094b", + "syr": "\u0938\u093f\u0930\u093f\u090f\u0915", + "scn": "\u0938\u093f\u0938\u093f\u0932\u093f\u092f\u0928", + "su": "\u0938\u0941\u0902\u0921\u093e\u0928\u0940", + "suk": "\u0938\u0941\u0915\u0941\u092e\u093e", + "sux": "\u0938\u0941\u092e\u0947\u0930\u093f\u092f\u0928", + "sus": "\u0938\u0941\u0938\u0941", + "tn": "\u0938\u0947\u0924\u094d\u0938\u094d\u0935\u093e\u0928\u093e", + "seh": "\u0938\u0947\u0928\u093e", + "srr": "\u0938\u0947\u0930\u0947\u0930", + "sh": "\u0938\u0947\u0930\u094d\u092c\u094b-\u0915\u094d\u0930\u094b\u090f\u0936\u0928\u094d", + "sel": "\u0938\u0947\u0932\u094d\u0915\u092a", + "st": "\u0938\u0947\u0938\u094b\u0925\u094b", + "sbp": "\u0938\u0948\u0902\u0917\u0941", + "saq": "\u0938\u0948\u092e\u094d\u092c\u0941\u0930\u0941", + "ts": "\u0938\u094b\u0902\u0917\u093e", + "xog": "\u0938\u094b\u0917\u093e", + "sog": "\u0938\u094b\u0917\u094d\u0921\u093f\u090f\u0928", + "snk": "\u0938\u094b\u0928\u093f\u0928\u094d\u0915\u0947", + "so": "\u0938\u094b\u092e\u093e\u0932\u0940", + "ckb": "\u0938\u094b\u0930\u093e\u0928\u0940 \u0915\u0941\u0930\u094d\u0926\u093f\u0936", + "gd": "\u0938\u094d\u0915\u093e\u091f\u094d\u0938\u094d \u0917\u093e\u092f\u0947\u0932\u093f\u0915\u094d", + "sco": "\u0938\u094d\u0915\u0949\u091f\u094d\u0938", + "sms": "\u0938\u094d\u0915\u094b\u0932\u094d\u091f \u0938\u093e\u092e\u0940", + "es": "\u0938\u094d\u092a\u0947\u0928\u0940", + "srn": "\u0938\u094d\u0930\u093e\u0928\u093e\u0928 \u091f\u0949\u0928\u094d\u0917\u094b", + "den": "\u0938\u094d\u0932\u0947\u0935", + "sk": "\u0938\u094d\u0932\u094b\u0935\u093e\u0915", + "sl": "\u0938\u094d\u0932\u094b\u0935\u0947\u0928\u093f\u092f\u093e\u0908", + "ss": "\u0938\u094d\u0935\u093e\u0924\u0940", + "sw": "\u0938\u094d\u0935\u093e\u0939\u093f\u0932\u0940", + "de_CH": "\u0938\u094d\u0935\u093f\u0938 \u0909\u091a\u094d\u091a \u091c\u0930\u094d\u092e\u0928", + "gsw": "\u0938\u094d\u0935\u093f\u0938 \u091c\u0930\u094d\u092e\u0928", + "fr_CH": "\u0938\u094d\u0935\u093f\u0938 \u092b\u093c\u094d\u0930\u0947\u0902\u091a", + "sv": "\u0938\u094d\u0935\u0940\u0921\u093f\u0936", + "hu": "\u0939\u0902\u0917\u0947\u0930\u093f\u092f\u093e\u0908", + "hz": "\u0939\u0930\u0948\u0930\u094b", + "haw": "\u0939\u0935\u093e\u0908", + "hit": "\u0939\u093f\u0924\u093e\u0907\u0924", + "hi": "\u0939\u093f\u0928\u094d\u0926\u0940", + "he": "\u0939\u093f\u092c\u094d\u0930\u0942", + "ho": "\u0939\u093f\u0930\u0940 \u092e\u094b\u091f\u0942", + "hil": "\u0939\u093f\u0932\u093f\u0917\u0947\u0928\u0928", + "hup": "\u0939\u0942\u092a\u093e", + "hai": "\u0939\u0948\u0921\u093e", + "ht": "\u0939\u0948\u0924\u093f\u092f\u093e\u0908", + "ha": "\u0939\u094c\u0938\u093e", + "hmn": "\u0939\u094d\u092e\u0949\u0902\u0917", + "bss": "Akoose", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bax": "Bamun", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "bum": "Bulu", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "swb": "Comorian", + "dzg": "Dazaga", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "ibb": "Ibibio", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "kbl": "Kanembu", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "mde": "Maba", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "byv": "Medumba", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "mye": "Myene", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "see": "Seneca", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "trv": "Taroko", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/hr-HR.json b/public/intl/language/hr-HR.json new file mode 100644 index 0000000..3377abe --- /dev/null +++ b/public/intl/language/hr-HR.json @@ -0,0 +1,611 @@ +{ + "ab": "abhaski", + "ace": "achinese", + "ach": "acoli", + "ada": "adangme", + "ady": "adigejski", + "aa": "afarski", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "ainu", + "ak": "akanski", + "akk": "akkadian", + "bss": "akoose", + "akz": "Alabama", + "sq": "albanski", + "ale": "aleutski", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "en_US": "ameri\u010dki engleski", + "am": "amharski", + "anp": "angika", + "njo": "Ao Naga", + "an": "aragonski", + "arc": "aramejski", + "aro": "Araona", + "arp": "arapaho", + "ar": "arapski", + "arn": "araukanski", + "arw": "arawak", + "hy": "armenski", + "rup": "aromunski", + "frp": "Arpitan", + "as": "asamski", + "ast": "asturijski", + "asa": "asu", + "cch": "atsam", + "en_AU": "australski engleski", + "de_AT": "austrijski njema\u010dki", + "av": "avarski", + "ae": "avestan", + "awa": "awadhi", + "ay": "aymara", + "az": "azerbajd\u017eanski", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "ban": "balinezijski", + "bal": "baluchi", + "bm": "bambara", + "bax": "bamunski", + "bjn": "Banjar", + "bas": "basa", + "eu": "baskijski", + "ba": "ba\u0161kirski", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengalski", + "bew": "Betawi", + "zxx": "bez jezi\u010dnog sadr\u017eaja", + "bho": "bhojpuri", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "be": "bjeloruski", + "byn": "blin", + "zbl": "blissymbols", + "brx": "bodo", + "bs": "bosanski", + "brh": "Brahui", + "bra": "braj", + "pt_BR": "brazilski portugalski", + "br": "bretonski", + "en_GB": "britanski engleski", + "bg": "bugarski", + "bug": "buginski", + "bum": "bulu", + "bua": "buriat", + "my": "burmanski", + "cad": "caddo", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagatai", + "ch": "chamorro", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "chn": "chinook \u017eargon", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuukese", + "cv": "chuvash", + "cr": "cree", + "mus": "creek", + "cu": "crkvenoslavenski", + "tn": "cvana", + "shu": "\u010dadski arapski", + "ce": "\u010de\u010denski", + "chy": "\u010dejenski", + "chr": "\u010deroki", + "cs": "\u010de\u0161ki", + "dak": "dakota jezik", + "da": "danski", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delavarski", + "din": "dinka", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "nds": "donjonjema\u010dki", + "dua": "duala", + "dyu": "dyula", + "dz": "dzongkha", + "efi": "efik", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamitski", + "ebu": "embu", + "egl": "Emilian", + "en": "engleski", + "enm": "engleski, srednji", + "eo": "esperanto", + "et": "estonski", + "pt_PT": "europski portugalski", + "es_ES": "europski \u0161panjolski", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "phn": "feni\u010dki", + "fo": "ferojski", + "fj": "fid\u017eijski", + "hif": "Fiji Hindi", + "fil": "filipino", + "fi": "finski", + "nl_BE": "flamanski", + "fon": "fon", + "gur": "Frafra", + "fr": "francuski", + "frm": "francuski, srednji", + "fur": "friulski", + "ff": "fulah", + "gaa": "ga", + "gag": "gagauski", + "gl": "galicijski", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbertski", + "gom": "Goan Konkani", + "gon": "gondi", + "hsb": "gornjolu\u017ei\u010dki", + "de_CH": "gornjonjema\u010dki (\u0161vicarski)", + "gor": "gorontalo", + "got": "gothic", + "el": "gr\u010dki", + "grb": "grebo", + "ka": "gruzijski", + "gn": "guarani", + "gu": "gud\u017earatski", + "guz": "gusii", + "gwi": "gwich\u2019in", + "hai": "haidi", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "havajski", + "he": "hebrejski", + "hz": "herero", + "hit": "hetitski", + "hil": "hiligaynon", + "hi": "hindski", + "ho": "hiri motu", + "hmn": "hmong", + "hr": "hrvatski", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "iloko", + "smn": "inari sami", + "id": "indonezijski", + "izh": "Ingrian", + "inh": "ingu\u0161etski", + "ie": "interligua", + "ia": "interlingua", + "iu": "inuktitut", + "ik": "inupiaq", + "ga": "irski", + "mga": "irski, srednji", + "is": "islandski", + "frs": "isto\u010dnofrizijski", + "sah": "jakutski", + "jam": "Jamaican Creole English", + "ja": "japanski", + "yap": "japski", + "jv": "javanski", + "yi": "jidi\u0161", + "dyo": "jola-fonyi", + "yo": "joruba", + "jrb": "judejsko-arapski", + "jpr": "judejsko-perzijski", + "jut": "Jutish", + "alt": "ju\u017eni altai", + "nr": "ju\u017eni ndebele", + "se": "ju\u017eni sami", + "kbd": "kabardian", + "kab": "kabilski", + "kac": "kachin", + "kgp": "Kaingang", + "kaj": "kaje", + "kkj": "kako", + "kl": "kalaallisut", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "en_CA": "kanadski engleski", + "fr_CA": "kanadski francuski", + "kbl": "kanembu", + "kn": "kannadski", + "yue": "kantonski", + "kr": "kanuri", + "kaa": "kara-kalpak", + "krc": "karachay-balkar", + "krl": "karelijski", + "car": "karipski", + "ks": "ka\u0161mirski", + "csb": "ka\u0161upski", + "ca": "katalonski", + "kaw": "kawi", + "kk": "kaza\u0161ki", + "qu": "ke\u010dua", + "ksh": "kelnski", + "ken": "Kenyang", + "kha": "khasi", + "kho": "khotanese", + "khw": "Khowar", + "quc": "ki\u010de", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "zh": "kineski", + "zh_Hans": "kineski (pojednostavljeni)", + "zh_Hant": "kineski (tradicionalni)", + "rw": "kinyarwanda", + "ky": "kirgi\u0161ki", + "kiu": "Kirmanjki", + "nwc": "klasi\u010dni newari", + "syc": "klasi\u010dni sirski", + "tlh": "klingonski", + "km": "kmerski", + "nb": "knji\u017eevni norve\u0161ki", + "bkm": "kom", + "kv": "komi", + "swb": "komorski", + "koi": "komski ili permski", + "kg": "kongo", + "swc": "kongoanski swahili", + "kok": "konkani", + "cop": "koptski", + "ko": "korejski", + "root": "korijenski", + "kw": "kornski", + "kfo": "koro", + "co": "korzi\u010dki", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "ht": "kreolski", + "crh": "krimski turski", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "ku": "kurdski", + "kru": "kuru\u0161ki", + "kut": "kutenai", + "nmg": "kwasio", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laoski", + "ltg": "Latgalian", + "es_419": "latinoameri\u010dki \u0161panjolski", + "la": "latinski", + "lv": "latvijski", + "lzz": "Laz", + "lez": "lezgi\u0161ki", + "lij": "Ligurian", + "li": "limburgish", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lt": "litavski", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "lb": "luksembur\u0161ki", + "smj": "lule sami", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "luy": "luyia", + "dsb": "lu\u017ei\u010dkosrpski", + "mde": "maba", + "jmc": "machame", + "mad": "madurski", + "hu": "ma\u0111arski", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "mk": "makedonski", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ml": "malajalamski", + "ms": "malajski", + "mg": "malga\u0161ki", + "mt": "malte\u0161ki", + "mdr": "mandar", + "man": "mandingo", + "mnc": "mand\u017eurski", + "mni": "manipurski", + "gv": "manski", + "mi": "maorski", + "mr": "marathski", + "chm": "mari", + "tzm": "marokanski tamazight", + "mh": "mar\u0161alski", + "mwr": "marwari", + "mas": "masajski", + "mfe": "mauricijski kreolski", + "mzn": "Mazanderani", + "byv": "medumba", + "es_MX": "meksi\u010dki \u0161panjolski", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirandski", + "ar_001": "moderni standardni arapski", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldavski", + "lol": "mongo", + "mn": "mongolski", + "myv": "mordvinski", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitanski", + "kos": "naurski", + "na": "nauru", + "nv": "navajo", + "ng": "ndonga", + "ne": "nepalski", + "und": "nepoznati jezik", + "new": "newari", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niujski", + "nl": "nizozemski", + "dum": "nizozemski, srednji", + "nog": "nogajski", + "no": "norve\u0161ki", + "nov": "Novial", + "nn": "novonorve\u0161ki", + "nus": "nuer", + "nym": "nyamwezi", + "nyn": "nyankole", + "ny": "nyanja", + "tog": "nyasa tonga", + "nyo": "nyoro", + "nzi": "nzima", + "de": "njema\u010dki", + "gmh": "njema\u010dki, srednji visoki", + "oj": "ojibwa", + "oc": "okcitanski", + "or": "orijski", + "om": "oromski", + "osa": "osage", + "os": "osetski", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauanski", + "pi": "pali", + "pam": "pampanga", + "pa": "pand\u017eapski", + "pag": "pangasinan", + "pap": "papiamento", + "ps": "pa\u0161tu", + "pdc": "Pennsylvania German", + "fa": "perzijski", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpeian", + "pl": "poljski", + "pnt": "Pontic", + "pt": "portugalski", + "prg": "Prussian", + "raj": "rajasthani", + "rap": "rapa nui", + "rar": "raroton\u0161ki", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "roman\u0161", + "rof": "rombo", + "rom": "romski", + "rtm": "Rotuman", + "rug": "Roviana", + "ro": "rumunjski", + "rn": "rundi", + "ru": "ruski", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "sam": "samarijanski aramejski", + "saq": "samburu", + "sm": "samoanski", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrtski", + "sat": "santali", + "sc": "sardski", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkupski", + "seh": "sena", + "see": "seneca", + "srr": "serer", + "sei": "Seri", + "st": "sesotski", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "ii": "sichuan yi", + "scn": "sicilijski", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindhi", + "si": "sinhale\u0161ki", + "syr": "sirijski", + "nd": "sjeverni ndebele", + "sma": "sjeverni sami", + "nso": "sjeverni sotho", + "frr": "sjevernofrizijski", + "sms": "skolt sami", + "den": "slave", + "sk": "slova\u010dki", + "sl": "slovenski", + "xog": "soga", + "sog": "sogdien", + "so": "somalski", + "snk": "soninke", + "ckb": "soranski kurdski", + "azb": "South Azerbaijani", + "srn": "sranan tongo", + "sr": "srpski", + "sh": "srpsko-hrvatski", + "zgh": "standardni marokanski tamazight", + "egy": "staroegipatski", + "ang": "staroengleski", + "gez": "staroetiopski", + "fro": "starofrancuski", + "grc": "starogr\u010dki", + "sga": "staroirski", + "non": "staronorve\u0161ki", + "goh": "staronjema\u010dki, visoki", + "peo": "staroperzijski", + "pro": "staroprovansalski", + "suk": "sukuma", + "sux": "sumerski", + "su": "sundanski", + "sus": "susu", + "sw": "svahili", + "ss": "svati", + "sco": "\u0161kotski", + "gd": "\u0161kotski-galski", + "es": "\u0161panjolski", + "sv": "\u0161vedski", + "fr_CH": "\u0161vicarski francuski", + "gsw": "\u0161vicarski njema\u010dki", + "shi": "tachelhit", + "tg": "tad\u017ei\u010dki", + "tl": "tagalog", + "ty": "tahi\u0107anski", + "dav": "taita", + "th": "tajlandski", + "it": "talijanski", + "tly": "Talysh", + "tmh": "tamashek", + "ta": "tamilski", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatarski", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "bo": "tibetanski", + "ti": "tigrinja", + "tig": "tigri\u0161ki", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelaunski", + "to": "tonganski", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshian", + "ts": "tsonga", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tk": "turkmenski", + "tru": "Turoyo", + "tr": "turski", + "ota": "turski - otomanski", + "tvl": "tuvaluanski", + "tyv": "tuvinian", + "tw": "twi", + "kcg": "tyap", + "udm": "udmurtski", + "uga": "ugaritski", + "ug": "ujgurski", + "uk": "ukrajinski", + "umb": "umbundu", + "ur": "urdski", + "uz": "uzbe\u010dki", + "vai": "vai", + "wa": "valonski", + "cy": "vel\u0161ki", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vijetnamski", + "mul": "vi\u0161e jezika", + "vo": "volap\u00fck", + "vro": "V\u00f5ro", + "vot": "votic", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "yangben", + "yao": "yao", + "ybb": "yemba", + "fy": "zapadnofrizijski", + "zap": "zapotec", + "dje": "zarma", + "zza": "zazaki", + "zea": "Zeelandic", + "kea": "zelenortski", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zuni" +} diff --git a/public/intl/language/hu-HU.json b/public/intl/language/hu-HU.json new file mode 100644 index 0000000..56c775a --- /dev/null +++ b/public/intl/language/hu-HU.json @@ -0,0 +1,611 @@ +{ + "ab": "abh\u00e1z", + "ace": "achin\u00e9z", + "ada": "adangme", + "ady": "adyghe", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "agem", + "ain": "ainu", + "ay": "ajmara", + "ak": "akan", + "akk": "akk\u00e1d", + "ach": "akoli", + "akz": "Alabama", + "sq": "alb\u00e1n", + "ale": "aleut", + "arq": "Algerian Arabic", + "dsb": "als\u00f3 szorb", + "nds": "als\u00f3n\u00e9met", + "ase": "American Sign Language", + "en_US": "amerikai angol", + "am": "amhara", + "anp": "angika", + "en": "angol", + "njo": "Ao Naga", + "ar": "arab", + "an": "aragon\u00e9z", + "arc": "ar\u00e1mi", + "aro": "Araona", + "arp": "arapaho", + "arn": "araucani", + "arw": "aravak", + "rup": "arom\u00e1n", + "frp": "Arpitan", + "asa": "asu", + "as": "assz\u00e1mi", + "ast": "aszt\u00far", + "cch": "atszam", + "en_AU": "ausztr\u00e1l angol", + "av": "avar", + "ae": "aveszt\u00e1n", + "awa": "aw\u00e1di", + "az": "azerbajdzs\u00e1ni", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "ban": "balin\u00e9z", + "bal": "balucsi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "ba": "bask\u00edr", + "bas": "basza", + "eu": "baszk", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "bedzsa", + "be": "belorusz", + "bem": "bemba", + "bez": "bena", + "bn": "beng\u00e1li", + "bew": "Betawi", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "zbl": "Bliss jelk\u00e9prendszer", + "brx": "bodo", + "bho": "bodzspuri", + "bg": "bolg\u00e1r", + "bs": "bosny\u00e1k", + "brh": "Brahui", + "bra": "braj", + "pt_BR": "braz\u00edliai portug\u00e1l", + "br": "breton", + "en_GB": "brit angol", + "bug": "bugin\u00e9z", + "bum": "bulu", + "bua": "burj\u00e1t", + "my": "burmai", + "dz": "but\u00e1ni", + "cad": "caddo", + "frc": "Cajun French", + "cps": "Capiznon", + "ceb": "cebui", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "swb": "comorei", + "ts": "conga", + "shu": "cs\u00e1di arab", + "chg": "csagat\u00e1j", + "ch": "csamor\u00f3", + "ce": "csecsen", + "cs": "cseh", + "chy": "csejen", + "chr": "cseroki", + "chb": "csibcsa", + "tsi": "csimsi\u00e1ni", + "chn": "csinuk zsargon", + "chp": "csipev\u00e9", + "cho": "csokt\u00f3", + "chk": "csuk\u00e9z", + "cv": "csuvas", + "dak": "dakota", + "da": "d\u00e1n", + "dar": "dargva", + "dzg": "dazaga", + "alt": "d\u00e9l-altaji", + "del": "delav\u00e1r", + "nr": "d\u00e9li ndebele", + "sma": "d\u00e9li sz\u00e1mi", + "din": "dinka", + "dyu": "diula", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "efi": "efik", + "cu": "egyh\u00e1zi szl\u00e1v", + "arz": "Egyptian Arabic", + "zh_Hans": "egyszer\u0171s\u00edtett k\u00ednai", + "eka": "ekadzsuk", + "elx": "elamit", + "ebu": "embu", + "egl": "Emilian", + "myv": "erzj\u00e1ny", + "frr": "\u00e9szaki fr\u00edz", + "nd": "\u00e9szaki ndebele", + "se": "\u00e9szaki sz\u00e1mi", + "nso": "\u00e9szaki szot\u00f3", + "eo": "eszperant\u00f3", + "et": "\u00e9szt", + "pt_PT": "eur\u00f3pai portug\u00e1l", + "es_ES": "eur\u00f3pai spanyol", + "ee": "eve", + "ewo": "evondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "hsb": "fels\u0151 szorb", + "fo": "fer\u00f6eri", + "fj": "fidzsi", + "hif": "Fiji Hindi", + "fil": "filipp\u00edn\u00f3", + "fi": "finn", + "nl_BE": "flamand", + "fon": "fon", + "phn": "f\u0151niciai", + "gur": "Frafra", + "fr": "francia", + "fur": "friuli", + "fy": "fr\u00edz", + "ff": "fulani", + "gaa": "ga", + "gag": "gagauz", + "gay": "gajo", + "gl": "gal\u00edciai", + "gan": "Gan Chinese", + "lg": "ganda", + "gba": "gbaja", + "gez": "geez", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "bbj": "gomala", + "gon": "gondi", + "gor": "gorontalo", + "got": "g\u00f3t", + "el": "g\u00f6r\u00f6g", + "grb": "greb\u00f3", + "kl": "gr\u00f6nlandi", + "ka": "gr\u00faz", + "gn": "guarani", + "gu": "gudzsarati", + "guz": "guszii", + "gwi": "gvicsin", + "zh_Hant": "hagyom\u00e1nyos k\u00ednai", + "hai": "haida", + "ht": "haiti", + "hak": "Hakka Chinese", + "ha": "hausza", + "haw": "hawaii", + "he": "h\u00e9ber", + "hz": "herero", + "hil": "hiligajnon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hittite", + "hmn": "hmong", + "nl": "holland", + "hr": "horv\u00e1t", + "xh": "hosza", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibi\u00f3", + "io": "id\u00f3", + "ig": "igb\u00f3", + "gil": "ikiribati", + "ilo": "ilok\u00f3", + "smn": "inar sami", + "id": "indon\u00e9z", + "izh": "Ingrian", + "inh": "ingus", + "ie": "interlingue", + "ia": "interlingva", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "\u00edr", + "und": "ismeretlen nyelv", + "is": "izlandi", + "sah": "jakut", + "jam": "Jamaican Creole English", + "yav": "jangben", + "yao": "ja\u00f3", + "ja": "jap\u00e1n", + "yap": "japi", + "jv": "j\u00e1vai", + "ybb": "jemba", + "yi": "jiddis", + "kaj": "jju", + "dyo": "jola-fonyi", + "yo": "joruba", + "jut": "Jutish", + "kbd": "kabardi", + "kab": "kabije", + "kea": "kabuverdianu", + "kac": "kacsin", + "kgp": "Kaingang", + "cay": "kajuga", + "kkj": "kak\u00f3", + "kln": "kalendzsin", + "xal": "kalm\u00fck", + "kam": "kamba", + "km": "kambodzsai", + "en_CA": "kanadai angol", + "fr_CA": "kanadai francia", + "kbl": "kanembu", + "kn": "kannada", + "yue": "kantoni", + "kr": "kanuri", + "kaa": "kara-kalpak", + "krc": "karacs\u00e1j-balk\u00e1r", + "krl": "karelai", + "car": "karib", + "ks": "k\u00e1sm\u00edri", + "csb": "kasub", + "kha": "kaszi", + "ca": "katal\u00e1n", + "kaw": "kawi", + "kk": "kazah", + "qu": "kecsua", + "frs": "keleti fr\u00edz", + "ken": "Kenyang", + "khw": "Khowar", + "quc": "kicse", + "cgg": "kiga", + "ki": "kikuju", + "kmb": "kimbundu", + "zh": "k\u00ednai", + "krj": "Kinaray-a", + "ky": "kirgiz", + "kiu": "Kirmanjki", + "rw": "kiruanda", + "rn": "kirundi", + "nwc": "klasszikus newari", + "syc": "klasszikus sz\u00edr", + "tlh": "klingon", + "khq": "kojra-cs\u00edni", + "ses": "kojra-szenni", + "sms": "koltta lapp", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permj\u00e1k", + "kg": "kongo", + "swc": "kong\u00f3i szuah\u00e9li", + "kok": "konkani", + "cop": "kopt", + "ko": "koreai", + "kw": "korni", + "kfo": "koro", + "co": "korzikai", + "kos": "kosrei", + "bss": "koszi", + "kho": "kotan\u00e9z", + "avk": "Kotava", + "ksh": "k\u00f6lsch", + "enm": "k\u00f6z\u00e9p angol", + "gmh": "k\u00f6z\u00e9p fels\u0151 n\u00e9met", + "frm": "k\u00f6z\u00e9p francia", + "dum": "k\u00f6z\u00e9p holland", + "mga": "k\u00f6z\u00e9p \u00edr", + "tzm": "k\u00f6z\u00e9p-marokk\u00f3i tamazigt", + "kpe": "kpelle", + "cr": "kr\u00ed", + "mus": "kr\u00edk", + "crh": "kr\u00edmi tat\u00e1r", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kum\u00fck", + "ku": "kurd", + "kru": "kuruh", + "kut": "kutenai", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laoszi", + "ltg": "Latgalian", + "la": "latin", + "es_419": "latin-amerikai spanyol", + "lzz": "Laz", + "pl": "lengyel", + "lv": "lett", + "lez": "lezg", + "lij": "Ligurian", + "li": "limburgi", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litv\u00e1n", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "luy": "lujia", + "smj": "lule sz\u00e1mi", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxemburgi", + "mde": "maba", + "mk": "maced\u00f3n", + "jmc": "machame", + "mad": "madurai", + "maf": "mafa", + "mag": "magahi", + "hu": "magyar", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makaszar", + "kde": "makonde", + "mgh": "makua-met\u00f3", + "ms": "mal\u00e1j", + "ml": "malaj\u00e1lam", + "mg": "m\u00e1lgas", + "mt": "m\u00e1ltai", + "gv": "man-szigeti", + "mdr": "mandar", + "man": "manding\u00f3", + "mnc": "mandzsu", + "mni": "manipuri", + "mi": "maori", + "mr": "marathi", + "chm": "mari", + "zgh": "marokk\u00f3i tamazight", + "mh": "marshalli", + "mwr": "marvari", + "mas": "masai", + "mfe": "mauritiusi kreol", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "mikmak", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirand\u00e9z", + "ar_001": "modern szab\u00e1nyos arab", + "moh": "mohawk", + "mdf": "moks\u00e1n", + "ro_MD": "moldvai", + "lol": "mong\u00f3", + "mn": "mongol", + "ary": "Moroccan Arabic", + "mos": "moszi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019k\u00f3", + "naq": "nama", + "nap": "n\u00e1polyi", + "na": "naurui", + "nv": "navah\u00f3", + "ng": "ndonga", + "de": "n\u00e9met", + "ne": "nep\u00e1li", + "new": "nevari", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "nmg": "ngumba", + "yrl": "Nheengatu", + "nia": "nias", + "zxx": "nincs nyelv\u00e9szeti tartalom", + "niu": "niui", + "nog": "nogaj", + "no": "norv\u00e9g", + "nb": "norv\u00e9g bokmal", + "nn": "norv\u00e9g nynorsk", + "nov": "Novial", + "nus": "nuer", + "nzi": "nzima", + "nym": "nyamv\u00e9zi", + "ny": "nyanja", + "nyn": "nyankole", + "tog": "nyasa tonga", + "nyo": "nyor\u00f3", + "ang": "\u00f3angol", + "egy": "\u00f3egyiptomi", + "goh": "\u00f3fels\u0151 n\u00e9met", + "fro": "\u00f3francia", + "grc": "\u00f3g\u00f6r\u00f6g", + "sga": "\u00f3\u00edr", + "oj": "ojibva", + "oc": "okszit\u00e1n", + "it": "olasz", + "peo": "\u00f3perzsa", + "pro": "\u00f3prov\u00e1nszi", + "or": "orija", + "om": "orom\u00f3i", + "ru": "orosz", + "osa": "osage", + "non": "\u00f3skandin\u00e1v", + "os": "osz\u00e9t", + "de_AT": "osztr\u00e1k n\u00e9met", + "ota": "ottom\u00e1n t\u00f6r\u00f6k", + "hy": "\u00f6rm\u00e9ny", + "root": "\u0151si", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palaui", + "pi": "pali", + "pam": "pampangan", + "pa": "pandzs\u00e1bi", + "pag": "pangaszinan", + "pap": "papiament\u00f3", + "ps": "pastu", + "pdc": "Pennsylvania German", + "fa": "perzsa", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpei", + "pnt": "Pontic", + "pt": "portug\u00e1l", + "prg": "Prussian", + "raj": "radzsaszt\u00e1ni", + "rap": "rapanui", + "rar": "rarotongai", + "rm": "r\u00e9to-rom\u00e1n", + "rif": "Riffian", + "rom": "roma", + "rgn": "Romagnol", + "ro": "rom\u00e1n", + "rof": "rombo", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "rwk": "rwo", + "ksb": "sambala", + "sgs": "Samogitian", + "shn": "san", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "bla": "siksika", + "szl": "Silesian", + "sco": "sk\u00f3t", + "gd": "sk\u00f3t gael", + "sog": "sogdien", + "sn": "sona", + "azb": "South Azerbaijani", + "es": "spanyol", + "es_MX": "spanyol (mexik\u00f3i)", + "sux": "sum\u00e9r", + "de_CH": "sv\u00e1jci feln\u00e9met", + "fr_CH": "sv\u00e1jci francia", + "gsw": "sv\u00e1jci n\u00e9met", + "sv": "sv\u00e9d", + "ssy": "szah\u00f3", + "sam": "szamarit\u00e1nus ar\u00e1mi", + "saq": "szamburu", + "sm": "szamoai", + "sad": "szandave", + "sg": "szang\u00f3", + "sbp": "szangu", + "sa": "szanszkrit", + "sat": "szant\u00e1li", + "sc": "szard\u00edniai", + "twq": "szav\u00e1k", + "ii": "szecsu\u00e1n ji", + "tn": "szecsu\u00e1ni", + "seh": "szena", + "see": "szeneka", + "sr": "szerb", + "sh": "szerbhorv\u00e1t", + "srr": "szerer", + "st": "szeszot\u00f3", + "scn": "szic\u00edliai", + "sid": "szidam\u00f3", + "sd": "szindhi", + "si": "szingal\u00e9z", + "syr": "sz\u00edriai", + "ss": "sziszuati", + "den": "szlevi", + "sk": "szlov\u00e1k", + "sl": "szlov\u00e9n", + "xog": "szoga", + "so": "szom\u00e1liai", + "snk": "szoninke", + "ckb": "szor\u00e1ni kurd", + "sel": "sz\u00f6lkup", + "srn": "szranai tong\u00f3", + "sw": "szuah\u00e9li", + "suk": "szukuma", + "su": "szundan\u00e9z", + "sus": "szuszu", + "shi": "tachelhit", + "tg": "tadzsik", + "tl": "tagalog", + "ty": "tahiti", + "dav": "taita", + "tly": "Talysh", + "tmh": "tamasek", + "ta": "tamil", + "trv": "tarok\u00f3", + "tt": "tat\u00e1r", + "te": "telugu", + "tem": "temne", + "ter": "teren\u00f3", + "teo": "tesz\u00f3", + "tet": "tetum", + "th": "thai", + "bo": "tibeti", + "tig": "tigr\u00e9", + "ti": "tigrinja", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelaui", + "to": "tonga", + "fit": "Tornedalen Finnish", + "mul": "t\u00f6bbsz\u00f6r\u00f6s nyelvek", + "tr": "t\u00f6r\u00f6k", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tyv": "tuvai", + "tvl": "tuvalu", + "tk": "t\u00fcrkm\u00e9n", + "tw": "twi", + "kcg": "tyap", + "udm": "udmurt", + "uga": "ugariti", + "ug": "ujgur", + "uk": "ukr\u00e1n", + "umb": "umbundu", + "ur": "urdu", + "uz": "\u00fczb\u00e9g", + "vai": "vai", + "wal": "valamo", + "wa": "vallon", + "war": "vara\u00f3", + "was": "vas\u00f3", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnami", + "vo": "volap\u00fck", + "wo": "volof", + "vro": "V\u00f5ro", + "vot": "votj\u00e1k", + "vun": "vunjo", + "cy": "walesi", + "wae": "walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zap": "zapot\u00e9k", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zuni", + "jrb": "zsid\u00f3-arab", + "jpr": "zsid\u00f3-perzsa", + "za": "zsuang" +} diff --git a/public/intl/language/id-ID.json b/public/intl/language/id-ID.json new file mode 100644 index 0000000..490fdfd --- /dev/null +++ b/public/intl/language/id-ID.json @@ -0,0 +1,611 @@ +{ + "ab": "Abkhaz", + "ace": "Aceh", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adygei", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaans", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "akk": "Akkadia", + "bss": "Akoose", + "akz": "Alabama", + "sq": "Albania", + "ale": "Aleut", + "alt": "Altai Selatan", + "am": "Amharik", + "anp": "Angika", + "njo": "Ao Naga", + "ar": "Arab", + "arq": "Arab Algeria", + "ary": "Arab Maroko", + "arz": "Arab Mesir", + "ar_001": "Arab Standar Modern", + "shu": "Arab Suwa", + "aeb": "Arab Tunisia", + "an": "Aragon", + "arc": "Aram", + "sam": "Aram Samaria", + "aro": "Araona", + "arp": "Arapaho", + "arn": "Araukan", + "arw": "Arawak", + "hy": "Armenia", + "frp": "Arpitan", + "as": "Assam", + "ast": "Astur", + "asa": "Asu", + "cch": "Atsam", + "av": "Avar", + "ae": "Avesta", + "awa": "Awadhi", + "ay": "Aymara", + "az": "Azerbaijan", + "azb": "Azerbaijani Selatan", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "cu": "Bahasa Gereja Slavonia", + "id": "Bahasa Indonesia", + "ase": "Bahasa Isyarat Amerika", + "mus": "Bahasa Muskogee", + "und": "Bahasa Tidak Dikenal", + "bqi": "Bakhtiari", + "ban": "Bali", + "bal": "Baluchi", + "bm": "Bambara", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basa", + "ba": "Bashkir", + "eu": "Bask", + "bbc": "Batak Toba", + "bar": "Bavaria", + "mul": "Beberapa Bahasa", + "bej": "Beja", + "nl": "Belanda", + "dum": "Belanda Tengah", + "be": "Belarusia", + "bem": "Bemba", + "bez": "Bena", + "bn": "Bengali", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbol", + "brx": "Bodo", + "nb": "Bokm\u00e5l Norwegia", + "bs": "Bosnia", + "brh": "Brahui", + "bra": "Braj", + "br": "Breton", + "bug": "Bugis", + "bg": "Bulgar", + "bum": "Bulu", + "bua": "Buriat", + "my": "Burma", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chr": "Cherokee", + "cs": "Cheska", + "chy": "Cheyenne", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "zh": "China", + "zh_Hans": "China (Aksara Sederhana)", + "zh_Hant": "China (Aksara Tradisional)", + "chp": "Chipewyan", + "chk": "Chuuke", + "cv": "Chuvash", + "dak": "Dakota", + "da": "Dansk", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "ksh": "Dialek Kolsch", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula", + "dz": "Dzongkha", + "efi": "Efik", + "eka": "Ekajuk", + "elx": "Elam", + "ebu": "Embu", + "egl": "Emilian", + "myv": "Eryza", + "eo": "Esperanto", + "et": "Esti", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "fo": "Faro", + "fj": "Fiji", + "fil": "Filipino", + "nl_BE": "Flemish", + "fon": "Fon", + "gur": "Frafra", + "fy": "Frisia Barat", + "frs": "Frisia Timur", + "frr": "Frisia Utara", + "fur": "Friuli", + "ff": "Fula", + "phn": "Funisia", + "gaa": "Ga", + "gd": "Gaelik Skotlandia", + "gag": "Gagauz", + "gl": "Galisia", + "gan": "Gan Chinese", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "ka": "Georgia", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbert", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothik", + "grb": "Grebo", + "gn": "Guarani", + "gu": "Gujarati", + "guz": "Gusii", + "gwi": "Gwich\u2019in", + "hai": "Haida", + "ht": "Haiti", + "hak": "Hakka Chinese", + "ha": "Hausa", + "haw": "Hawaii", + "hz": "Herero", + "hil": "Hiligaynon", + "hi": "Hindi", + "hif": "Hindi Fiji", + "ho": "Hiri Motu", + "hit": "Hitit", + "hmn": "Hmong", + "hu": "Hungaria", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "he": "Ibrani", + "jrb": "Ibrani-Arab", + "jpr": "Ibrani-Persia", + "io": "Ido", + "ig": "Igbo", + "ilo": "Iloko", + "smn": "Inari Sami", + "en": "Inggris", + "enm": "Inggris Abad Pertengahan", + "en_US": "Inggris Amerika", + "en_AU": "Inggris Australia", + "en_GB": "Inggris Inggris", + "en_CA": "Inggris Kanada", + "ang": "Inggris Kuno", + "izh": "Ingrian", + "inh": "Ingushetia", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiak", + "ga": "Irlandia", + "mga": "Irlandia Abad Pertengahan", + "sga": "Irlandia Kuno", + "is": "Islandia", + "it": "Italia", + "jam": "Jamaican Creole English", + "chn": "Jargon Chinook", + "jv": "Jawa", + "ja": "Jepang", + "de": "Jerman", + "gmh": "Jerman Abad Pertengahan", + "de_AT": "Jerman Austria", + "goh": "Jerman Kuno", + "pdc": "Jerman Pennsylvania", + "nds": "Jerman Rendah", + "gsw": "Jerman Swiss", + "de_CH": "Jerman Tinggi Swiss", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jut": "Jutish", + "kbd": "Kabardi", + "kea": "Kabuverdianu", + "kab": "Kabyle", + "kac": "Kachin", + "cad": "Kado", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "Kalaallisut", + "kln": "Kalenjin", + "xal": "Kalmuk", + "kam": "Kamba", + "kbl": "Kanembu", + "kn": "Kannada", + "yue": "Kanton", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachai Balkar", + "krl": "Karelia", + "car": "Karib", + "ks": "Kashmir", + "csb": "Kashubia", + "ca": "Katalan", + "kaw": "Kawi", + "kk": "Kazakh", + "ken": "Kenyang", + "kha": "Khasi", + "km": "Khmer", + "kho": "Khotan", + "khw": "Khowar", + "cgg": "Kiga", + "ki": "Kikuyu", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "ky": "Kirgiz", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "cho": "Koktaw", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "swb": "Komoria", + "kg": "Kongo", + "swc": "Kongo Swahili", + "kok": "Konkani", + "cop": "Koptik", + "ko": "Korea", + "kw": "Kornish", + "kfo": "Koro", + "co": "Korsika", + "kos": "Kosre", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "cr": "Kree", + "kri": "Krio", + "hr": "Kroasia", + "kj": "Kuanyama", + "kum": "Kumyk", + "ku": "Kurdi", + "ckb": "Kurdi Sorani", + "kru": "Kuruk", + "kut": "Kutenai", + "nmg": "Kwasio", + "quc": "K\u02bciche\u02bc", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "lo": "Lao", + "ltg": "Latgalian", + "la": "Latin", + "lv": "Latvi", + "lzz": "Laz", + "lez": "Lezghia", + "lij": "Liguria", + "li": "Limburgia", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "Lituavi", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "lb": "Luksemburg", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "luy": "Luyia", + "mde": "Maba", + "jmc": "Machame", + "mad": "Madura", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "rup": "Makedo-Rumania", + "mk": "Makedonia", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mg": "Malagasi", + "ml": "Malayalam", + "mt": "Malta", + "mnc": "Manchuria", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manx", + "mi": "Maori", + "mr": "Marathi", + "chm": "Mari", + "mh": "Marshall", + "mwr": "Marwari", + "mas": "Masai", + "mzn": "Mazanderani", + "byv": "Medumba", + "ms": "Melayu", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "egy": "Mesir Kuno", + "mgo": "meta\u2019", + "mic": "Mikmak", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Miranda", + "lus": "Mizo", + "moh": "Mohawk", + "mdf": "Moksha", + "ro_MD": "Moldavia", + "lol": "Mongo", + "mn": "Mongolia", + "mfe": "Morisien", + "mos": "Mossi", + "mua": "Mundang", + "mye": "Myene", + "nqo": "N\u2019Ko", + "naq": "Nama", + "na": "Nauru", + "nv": "Navajo", + "nr": "Ndebele Selatan", + "nd": "Ndebele Utara", + "ng": "Ndonga", + "nap": "Neapolitan", + "ne": "Nepali", + "new": "Newari", + "nwc": "Newari Klasik", + "sba": "Ngambai", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuea", + "nog": "Nogai", + "non": "Norse Kuno", + "no": "Norwegia", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nn": "Nynorsk Norwegia", + "nyo": "Nyoro", + "nzi": "Nzima", + "oj": "Ojibwa", + "or": "Oriya", + "om": "Oromo", + "osa": "Osage", + "oc": "Ositania", + "os": "Ossetia", + "pal": "Pahlevi", + "pfl": "Palatine German", + "pau": "Palau", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasina", + "pap": "Papiamento", + "ps": "Pashto", + "fa": "Persia", + "peo": "Persia Kuno", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeia", + "pl": "Polski", + "pnt": "Pontic", + "pt": "Portugis", + "pt_BR": "Portugis Brasil", + "pt_PT": "Portugis Eropa", + "fr": "Prancis", + "frm": "Prancis Abad Pertengahan", + "fr_CA": "Prancis Kanada", + "fro": "Prancis Kuno", + "fr_CH": "Prancis Swiss", + "pro": "Provencal Lama", + "prg": "Prussian", + "pa": "Punjabi", + "qu": "Quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotonga", + "rm": "Reto-Roman", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romani", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotuma", + "rug": "Roviana", + "ro": "Rumania", + "rn": "Rundi", + "ru": "Rusia", + "rue": "Rusyn", + "rwk": "Rwa", + "ssy": "Saho", + "sah": "Sakha", + "saq": "Samburu", + "sma": "Sami Selatan", + "se": "Sami Utara", + "sm": "Samoa", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskerta", + "sat": "Santali", + "sc": "Sardinia", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "ceb": "Sebuano", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "sr": "Serb", + "sh": "Serbo-Kroasia", + "srr": "Serer", + "sei": "Seri", + "ksb": "Shambala", + "shn": "Shan", + "sn": "Shona", + "ii": "Sichuan Yi", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesia", + "sli": "Silesia Bawah", + "sd": "Sindhi", + "si": "Sinhala", + "scn": "Sisilia", + "sms": "Skolt Sami", + "sco": "Skotlandia", + "den": "Slave", + "sk": "Slovak", + "sl": "Sloven", + "xog": "Soga", + "sog": "Sogdien", + "so": "Somali", + "snk": "Soninke", + "hsb": "Sorbia Atas", + "dsb": "Sorbia Rendah", + "st": "Sotho Selatan", + "nso": "Sotho Utara", + "es": "Spanyol", + "es_419": "Spanyol Amerika Latin", + "es_ES": "Spanyol Eropa", + "es_MX": "Spanyol Meksiko", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumeria", + "su": "Sunda", + "fi": "Suomi", + "syr": "Suriah", + "syc": "Suriah Klasik", + "sus": "Susu", + "sw": "Swahili", + "ss": "Swati", + "sv": "Swedia", + "shi": "Tachelhit", + "tl": "Tagalog", + "ty": "Tahiti", + "dav": "Taita", + "tg": "Tajik", + "tly": "Talysh", + "tmh": "Tamashek", + "zgh": "Tamazight Maroko Standar", + "tzm": "Tamazight Maroko Tengah", + "ta": "Tamil", + "trv": "Taroko", + "twq": "Tasawaq", + "ttt": "Tat Muslim", + "tt": "Tatar", + "crh": "Tatar Krimea", + "te": "Telugu", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetun", + "th": "Thai", + "bo": "Tibet", + "zxx": "Tidak ada konten linguistik", + "tig": "Tigre", + "ti": "Tigrinya", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "to": "Tonga", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshia", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "tr": "Turki", + "ota": "Turki Osmani", + "tk": "Turkmen", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinia", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugarit", + "uk": "Ukraina", + "umb": "Umbundu", + "ur": "Urdu", + "ug": "Uyghur", + "uz": "Uzbek", + "vai": "Vai", + "ve": "Venda", + "vec": "Venesia", + "vep": "Veps", + "vi": "Vietnam", + "vo": "Volapuk", + "vro": "V\u00f5ro", + "vot": "Votia", + "vun": "Vunjo", + "wal": "Walamo", + "wa": "Walloon", + "wae": "Walser", + "war": "Warai", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "cy": "Welsh", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "Wolof", + "wuu": "Wu Chinese", + "xh": "Xhosa", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapois", + "ybb": "Yemba", + "yi": "Yiddish", + "yo": "Yoruba", + "el": "Yunani", + "grc": "Yunani Kuno", + "zap": "Zapotek", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zu": "Zulu", + "zun": "Zuni" +} diff --git a/public/intl/language/it-IT.json b/public/intl/language/it-IT.json new file mode 100644 index 0000000..8e4f752 --- /dev/null +++ b/public/intl/language/it-IT.json @@ -0,0 +1,611 @@ +{ + "ab": "abcaso", + "akk": "accado", + "ace": "accinese", + "ach": "acioli", + "ada": "adangme", + "ady": "adyghe", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "ainu", + "ak": "akan", + "bss": "akoose", + "akz": "alabama", + "sq": "albanese", + "aln": "albanese ghego", + "ale": "aleuto", + "alt": "altai meridionale", + "hsb": "alto sorabo", + "de_CH": "alto tedesco svizzero", + "am": "amarico", + "anp": "angika", + "njo": "ao", + "ar": "arabo", + "arq": "arabo algerino", + "arz": "arabo egiziano", + "ary": "arabo marocchino", + "ar_001": "arabo moderno standard", + "aeb": "arabo tunisino", + "an": "aragonese", + "arc": "aramaico", + "sam": "aramaico samaritano", + "aro": "araona", + "arp": "arapaho", + "arn": "araucano", + "hy": "armeno", + "arw": "aruaco", + "rup": "arumeno", + "as": "assamese", + "ast": "asturiano", + "asa": "asu", + "cch": "atsam", + "av": "avaro", + "ae": "avestan", + "awa": "awadhi", + "ay": "aymara", + "az": "azerbaigiano", + "azb": "azero meridionale", + "bfq": "badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "bakhtiari", + "ban": "balinese", + "bm": "bambara", + "bax": "bamun", + "bjn": "banjar", + "bas": "basa", + "ba": "baschiro", + "eu": "basco", + "dsb": "basso sorabo", + "nds": "basso tedesco", + "bbc": "batak toba", + "bar": "bavarese", + "bej": "begia", + "bal": "beluci", + "bez": "bena", + "bn": "bengalese", + "bew": "betawi", + "bho": "bhojpuri", + "bik": "bicol", + "be": "bielorusso", + "bin": "bini", + "my": "birmano", + "bpy": "bishnupriya", + "bi": "bislama", + "byn": "blin", + "zbl": "blissymbol", + "brx": "bodo", + "bs": "bosniaco", + "brh": "brahui", + "bra": "braj", + "br": "bretone", + "bug": "bugi", + "bg": "bulgaro", + "bum": "bulu", + "bua": "buriat", + "kab": "cabilo", + "cad": "caddo", + "yue": "cantonese", + "cps": "capiznon", + "kea": "capoverdiano", + "krl": "careliano", + "car": "caribico", + "ca": "catalano", + "cay": "cayuga", + "ceb": "cebuano", + "ce": "ceceno", + "cs": "ceco", + "shu": "chadian arabic", + "ch": "chamorro", + "chr": "cherokee", + "chy": "cheyenne", + "chb": "chibcha", + "cgg": "chiga", + "chp": "chipewyan", + "ky": "chirghiso", + "cho": "choctaw", + "chk": "chuukese", + "cv": "chuvash", + "tw": "ci", + "chg": "ciagataico", + "zh": "cinese", + "lzh": "cinese classico", + "zh_Hans": "cinese semplificato", + "zh_Hant": "cinese tradizionale", + "ksh": "coloniese", + "swb": "comoriano", + "swc": "congo swahili", + "cop": "copto", + "ko": "coreano", + "kw": "cornico", + "co": "corso", + "cr": "cree", + "mus": "creek", + "jam": "creolo giamaicano", + "mfe": "creolo mauriziano", + "hr": "croato", + "ku": "curdo", + "ckb": "curdo sorani", + "dak": "dakota", + "da": "danese", + "dar": "dargwa", + "gbz": "dari zoroastriano", + "dzg": "dazaga", + "del": "delaware", + "din": "dinca", + "dyu": "diula", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dtp": "dusun centrale", + "dz": "dzongkha", + "he": "ebraico", + "efi": "efik", + "egy": "egiziano antico", + "eka": "ekajuka", + "elx": "elamitico", + "ebu": "embu", + "egl": "emiliano", + "myv": "erzya", + "eo": "esperanto", + "et": "estone", + "ext": "estremegno", + "ee": "ewe", + "ewo": "ewondo", + "fan": "fang", + "fat": "fanti", + "fo": "faroese", + "phn": "fenicio", + "nl_BE": "fiammingo", + "vls": "fiammingo occidentale", + "fj": "figiano", + "fil": "filippino", + "fi": "finlandese", + "fit": "finlandese del Tornedalen", + "fon": "fon", + "gur": "Frafra", + "fr": "francese", + "fro": "francese antico", + "frc": "francese cajun", + "fr_CA": "francese canadese", + "frm": "francese medio", + "fr_CH": "francese svizzero", + "frp": "francoprovenzale", + "fy": "frisone occidentale", + "frs": "frisone orientale", + "frr": "frisone settentrionale", + "fur": "friulano", + "ff": "fulah", + "gaa": "ga", + "gd": "gaelico scozzese", + "gag": "gagauzo", + "gl": "galiziano", + "cy": "gallese", + "gan": "gan", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "gez": "geez", + "ka": "georgiano", + "grb": "gerbo", + "chn": "gergo chinook", + "bbj": "ghomala", + "ja": "giapponese", + "jv": "giavanese", + "glk": "gilaki", + "gil": "gilbertese", + "jrb": "giudeo arabo", + "jpr": "giudeo persiano", + "lad": "giudeo-spagnolo", + "gon": "gondi", + "gor": "gorontalo", + "got": "gotico", + "el": "greco", + "grc": "greco antico", + "gn": "guaran\u00ed", + "gu": "gujarati", + "guz": "gusii", + "gwi": "gwich\u02bcin", + "hai": "haida", + "ht": "haitiano", + "hak": "hakka", + "ha": "hausa", + "haw": "hawaiano", + "hz": "herero", + "hil": "hiligayna", + "hi": "hindi", + "hif": "hindi figiano", + "ho": "hiri motu", + "hit": "hittite", + "hmn": "hmong", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "ilocano", + "id": "indonesiano", + "en": "inglese", + "en_US": "inglese americano", + "ang": "inglese antico", + "en_AU": "inglese australiano", + "en_GB": "inglese britannico", + "en_CA": "inglese canadese", + "enm": "inglese medio", + "izh": "ingrico", + "inh": "ingush", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "irlandese", + "sga": "irlandese antico", + "mga": "irlandese medio", + "is": "islandese", + "it": "italiano", + "dyo": "jola-fony", + "jut": "jutlandico", + "quc": "k\u2019iche\u2019", + "kbd": "kabardia", + "kac": "kachin", + "kaj": "kai", + "kgp": "kaingang", + "kkj": "kako", + "kl": "kalaallisut", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kn": "kannada", + "kr": "kanuri", + "kaa": "kara-kalpak", + "krc": "karachay-Balkar", + "ks": "kashmiri", + "csb": "kashubian", + "kaw": "kawi", + "kk": "kazako", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotanese", + "khw": "khowar", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "rw": "kinyarwanda", + "kiu": "kirmanjki", + "tlh": "klingon", + "bkm": "kom", + "kv": "komi", + "kg": "kongo", + "kok": "konkani", + "gom": "konkani goano", + "kfo": "koro", + "kos": "kosraean", + "avk": "kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "kru": "kurukh", + "kut": "kutenai", + "nmg": "kwasio", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "lao", + "la": "latino", + "lzz": "laz", + "ltg": "letgallo", + "lv": "lettone", + "lez": "lezghian", + "lij": "ligure", + "li": "limburgese", + "ln": "lingala", + "ase": "lingua dei segni americana", + "lfn": "Lingua Franca Nova", + "und": "lingua imprecisata", + "lt": "lituano", + "liv": "livone", + "jbo": "lojban", + "lol": "lolo bantu", + "lmo": "lombardo", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "lussemburghese", + "luy": "luyia", + "mde": "maba", + "mk": "macedone", + "jmc": "machame", + "mad": "madurese", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ml": "malayalam", + "ms": "malese", + "mg": "malgascio", + "mt": "maltese", + "mnc": "manchu", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuri", + "gv": "manx", + "mi": "maori", + "mr": "marathi", + "chm": "mari", + "mrj": "mari occidentale", + "mh": "marshallese", + "mwr": "marwari", + "mas": "masai", + "mzn": "mazandarani", + "umb": "mbundu", + "byv": "medumba", + "min": "menangkabau", + "men": "mende", + "xmf": "mengrelio", + "mwv": "mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "min nan", + "mwl": "mirandese", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldavo", + "mn": "mongolo", + "mos": "mossi", + "mul": "multilingua", + "mua": "mundang", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napoletano", + "na": "nauru", + "nv": "navajo", + "nd": "ndebele del nord", + "nr": "ndebele del sud", + "ng": "ndonga", + "ne": "nepalese", + "zxx": "nessun contenuto linguistico", + "new": "newari", + "nwc": "newari classico", + "jgo": "ngamambo", + "sba": "ngambay", + "nnh": "ngiemboon", + "yrl": "nheengatu", + "nia": "nias", + "niu": "niue", + "nog": "nogai", + "non": "norse antico", + "no": "norvegese", + "nb": "norvegese bokm\u00e5l", + "nn": "norvegese nynorsk", + "nov": "novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "tog": "nyasa del Tonga", + "nyo": "nyoro", + "nzi": "nzima", + "oc": "occitano", + "oj": "ojibwa", + "nl": "olandese", + "dum": "olandese medio", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "ossetico", + "pal": "pahlavi", + "pau": "palau", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasinan", + "pap": "papiamento", + "ps": "pashto", + "koi": "permiaco", + "fa": "persiano", + "peo": "persiano antico", + "pcd": "piccardo", + "pms": "piemontese", + "pdt": "Plautdietsch", + "pl": "polacco", + "pon": "ponape", + "pnt": "pontico", + "pt": "portoghese", + "pt_BR": "portoghese brasiliano", + "pt_PT": "portoghese europeo", + "pro": "provenzale antico", + "prg": "prussiano", + "pa": "punjabi", + "qu": "quechua", + "qug": "quechua dell\u2019altopiano del Chimborazo", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotonga", + "rgn": "romagnolo", + "rm": "romancio", + "rom": "romani", + "rof": "rombo", + "root": "root", + "rtm": "rotumano", + "rug": "roviana", + "ro": "rumeno", + "rn": "rundi", + "ru": "russo", + "rue": "ruteno", + "rwk": "rwa", + "ssy": "saho", + "saq": "samburu", + "se": "sami del nord", + "sma": "sami del sud", + "smn": "sami di Inari", + "smj": "sami di Lule", + "sms": "sami skolt", + "sm": "samoano", + "sgs": "samogitico", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanscrito", + "sat": "santali", + "sc": "sardo", + "sas": "sasak", + "sdc": "sassarese", + "stq": "saterfriesisch", + "saz": "saurashtra", + "sco": "scozzese", + "sly": "selayar", + "sel": "selkup", + "seh": "sena", + "see": "seneca", + "sr": "serbo", + "sh": "serbo-croato", + "srr": "serer", + "sei": "seri", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "ii": "sichuan yi", + "scn": "siciliano", + "sid": "sidamo", + "bla": "siksika", + "sd": "sindhi", + "si": "singalese", + "syr": "siriaco", + "syc": "siriaco classico", + "den": "slave", + "cu": "slavo della Chiesa", + "szl": "slesiano", + "sk": "slovacco", + "sl": "sloveno", + "xog": "soga", + "sog": "sogdiano", + "so": "somalo", + "snk": "soninke", + "nso": "sotho del nord", + "st": "sotho del sud", + "es": "spagnolo", + "es_ES": "spagnolo europeo", + "es_419": "spagnolo latinoamericano", + "es_MX": "spagnolo messicano", + "srn": "sranan tongo", + "suk": "sukuma", + "sux": "sumero", + "su": "sundanese", + "sus": "susu", + "sv": "svedese", + "sw": "swahili", + "ss": "swati", + "tl": "tagalog", + "tg": "tagico", + "dav": "taita", + "ty": "taitiano", + "tly": "taliscio", + "tmh": "tamashek", + "tzm": "tamazight", + "zgh": "tamazight del Marocco standard", + "ta": "tamil", + "rif": "tarifit", + "trv": "taroko", + "twq": "tasawaq", + "shi": "tashelhit", + "ttt": "tat islamico", + "tt": "tataro", + "de": "tedesco", + "goh": "tedesco antico alto", + "de_AT": "tedesco austriaco", + "pdc": "tedesco della Pennsylvania", + "gmh": "tedesco medio alto", + "pfl": "tedesco palatino", + "sli": "tedesco slesiano", + "gsw": "tedesco svizzero", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thai", + "bo": "tibetano", + "tig": "tigre", + "ti": "tigrino", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tongano", + "tkr": "tsakhur", + "tsi": "tsimshian", + "ts": "tsonga", + "tn": "tswana", + "tcy": "tulu", + "tum": "tumbuka", + "tr": "turco", + "crh": "turco crimeo", + "ota": "turco ottomano", + "tk": "turcomanno", + "tru": "turoyo", + "tvl": "tuvalu", + "tyv": "tuvinian", + "kcg": "tyap", + "uk": "ucraino", + "udm": "udmurt", + "uga": "ugaritico", + "ug": "uiguro", + "hu": "ungherese", + "ur": "urdu", + "uz": "usbeco", + "vai": "vai", + "wa": "vallone", + "ve": "venda", + "vec": "veneto", + "vep": "vepso", + "vi": "vietnamita", + "vo": "volap\u00fck", + "vro": "v\u00f5ro", + "vot": "voto", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "wayuu", + "bem": "wemba", + "wo": "wolof", + "wuu": "wu", + "xh": "xhosa", + "hsn": "xiang", + "sah": "yakut", + "yav": "yangben", + "yao": "yao (bantu)", + "yap": "yapese", + "ybb": "yemba", + "yi": "yiddish", + "yo": "yoruba", + "esu": "yupik centrale", + "tsd": "zaconico", + "zap": "zapotec", + "dje": "zarma", + "zza": "zaza", + "zea": "zelandese", + "zen": "zenaga", + "za": "zhuang", + "zu": "zulu", + "zun": "zuni" +} diff --git a/public/intl/language/ja-JP.json b/public/intl/language/ja-JP.json new file mode 100644 index 0000000..9f0ad8a --- /dev/null +++ b/public/intl/language/ja-JP.json @@ -0,0 +1,611 @@ +{ + "de_AT": "Austrian German", + "bar": "Bavarian", + "pt_BR": "Brazilian Portuguese", + "fr_CA": "Canadian French", + "es_419": "Latin American Spanish", + "es_MX": "Mexican Spanish", + "nov": "Novial", + "fr_CH": "Swiss French", + "wbp": "Warlpiri", + "is": "\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9\u8a9e", + "ain": "\u30a2\u30a4\u30cc\u8a9e", + "ay": "\u30a2\u30a4\u30de\u30e9\u8a9e", + "ga": "\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u8a9e", + "av": "\u30a2\u30f4\u30a1\u30eb\u8a9e", + "ae": "\u30a2\u30f4\u30a7\u30b9\u30bf\u8a9e", + "njo": "\u30a2\u30aa\u30fb\u30ca\u30ac\u8a9e", + "ak": "\u30a2\u30ab\u30f3\u8a9e", + "agq": "\u30a2\u30b2\u30e0\u8a9e", + "bss": "\u30a2\u30b3\u30fc\u30b9\u8a9e", + "ast": "\u30a2\u30b9\u30c8\u30a5\u30ea\u30a2\u30b9\u8a9e", + "asa": "\u30a2\u30b9\u8a9e", + "az": "\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3\u8a9e", + "hup": "\u30a2\u30bf\u30d1\u30b9\u30ab\u8a9e", + "ada": "\u30a2\u30c0\u30f3\u30b0\u30e1\u8a9e", + "ace": "\u30a2\u30c1\u30a7\u8a9e", + "ach": "\u30a2\u30c1\u30e7\u30ea\u8a9e", + "akk": "\u30a2\u30c3\u30ab\u30c9\u8a9e", + "as": "\u30a2\u30c3\u30b5\u30e0\u8a9e", + "ady": "\u30a2\u30c7\u30a3\u30b2\u8a9e", + "aa": "\u30a2\u30d5\u30a1\u30eb\u8a9e", + "ab": "\u30a2\u30d6\u30cf\u30ba\u8a9e", + "af": "\u30a2\u30d5\u30ea\u30ab\u30fc\u30f3\u30b9\u8a9e", + "afh": "\u30a2\u30d5\u30ea\u30d2\u30ea\u8a9e", + "am": "\u30a2\u30e0\u30cf\u30e9\u8a9e", + "en_US": "\u30a2\u30e1\u30ea\u30ab\u82f1\u8a9e", + "ase": "\u30a2\u30e1\u30ea\u30ab\u624b\u8a71", + "arn": "\u30a2\u30e9\u30a6\u30ab\u30f3\u8a9e", + "aro": "\u30a2\u30e9\u30aa\u30ca\u8a9e", + "an": "\u30a2\u30e9\u30b4\u30f3\u8a9e", + "arp": "\u30a2\u30e9\u30d1\u30db\u30fc\u8a9e", + "akz": "\u30a2\u30e9\u30d0\u30de\u8a9e", + "ar": "\u30a2\u30e9\u30d3\u30a2\u8a9e", + "arc": "\u30a2\u30e9\u30e0\u8a9e", + "arw": "\u30a2\u30e9\u30ef\u30af\u8a9e", + "rup": "\u30a2\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e", + "arq": "\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2\u30fb\u30a2\u30e9\u30d3\u30a2\u8a9e", + "sq": "\u30a2\u30eb\u30d0\u30cb\u30a2\u8a9e", + "frp": "\u30a2\u30eb\u30d4\u30bf\u30f3\u8a9e", + "hy": "\u30a2\u30eb\u30e1\u30cb\u30a2\u8a9e", + "ale": "\u30a2\u30ec\u30a6\u30c8\u8a9e", + "awa": "\u30a2\u30ef\u30c7\u30a3\u30fc\u8a9e", + "anp": "\u30a2\u30f3\u30ae\u30ab\u8a9e", + "ybb": "\u30a4\u30a8\u30f3\u30d0\u8a9e", + "en_GB": "\u30a4\u30ae\u30ea\u30b9\u82f1\u8a9e", + "it": "\u30a4\u30bf\u30ea\u30a2\u8a9e", + "yi": "\u30a4\u30c7\u30a3\u30c3\u30b7\u30e5\u8a9e", + "io": "\u30a4\u30c9\u8a9e", + "smn": "\u30a4\u30ca\u30ea\u30fb\u30b5\u30fc\u30df\u8a9e", + "iu": "\u30a4\u30cc\u30af\u30a6\u30c6\u30a3\u30c8\u30c3\u30c8\u8a9e", + "ik": "\u30a4\u30cc\u30d4\u30a2\u30c3\u30af\u8a9e", + "iba": "\u30a4\u30d0\u30f3\u8a9e", + "ibb": "\u30a4\u30d3\u30d3\u30aa\u8a9e", + "ig": "\u30a4\u30dc\u8a9e", + "ilo": "\u30a4\u30ed\u30ab\u30ce\u8a9e", + "inh": "\u30a4\u30f3\u30b0\u30fc\u30b7\u8a9e", + "izh": "\u30a4\u30f3\u30b0\u30ea\u30a2\u8a9e", + "ie": "\u30a4\u30f3\u30bf\u30fc\u30ea\u30f3\u30b0", + "ia": "\u30a4\u30f3\u30bf\u30fc\u30ea\u30f3\u30b0\u30a2", + "id": "\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2\u8a9e", + "vai": "\u30f4\u30a1\u30a4\u8a9e", + "wae": "\u30f4\u30a1\u30ea\u30b9\u8a9e", + "ug": "\u30a6\u30a4\u30b0\u30eb\u8a9e", + "cy": "\u30a6\u30a7\u30fc\u30eb\u30ba\u8a9e", + "vec": "\u30f4\u30a7\u30cd\u30c8\u8a9e", + "vep": "\u30f4\u30a7\u30d7\u30b9\u8a9e", + "vot": "\u30f4\u30a9\u30fc\u30c8\u8a9e", + "wal": "\u30a6\u30a9\u30e9\u30a4\u30bf\u8a9e", + "vo": "\u30f4\u30a9\u30e9\u30d4\u30e5\u30af\u8a9e", + "wo": "\u30a6\u30a9\u30ed\u30d5\u8a9e", + "vro": "\u30f4\u30a9\u30ed\u8a9e", + "uga": "\u30a6\u30ac\u30ea\u30c8\u8a9e", + "uk": "\u30a6\u30af\u30e9\u30a4\u30ca\u8a9e", + "uz": "\u30a6\u30ba\u30d9\u30af\u8a9e", + "udm": "\u30a6\u30c9\u30e0\u30eb\u30c8\u8a9e", + "ur": "\u30a6\u30eb\u30c9\u30a5\u30fc\u8a9e", + "vun": "\u30f4\u30f3\u30b8\u30e7\u8a9e", + "ee": "\u30a8\u30a6\u30a7\u8a9e", + "ewo": "\u30a8\u30a6\u30a9\u30f3\u30c9\u8a9e", + "eka": "\u30a8\u30ab\u30b8\u30e5\u30af\u8a9e", + "arz": "\u30a8\u30b8\u30d7\u30c8\u30fb\u30a2\u30e9\u30d3\u30a2\u8a9e", + "et": "\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e", + "ext": "\u30a8\u30b9\u30c8\u30ec\u30de\u30c9\u30a5\u30fc\u30e9\u8a9e", + "eo": "\u30a8\u30b9\u30da\u30e9\u30f3\u30c8\u8a9e", + "efi": "\u30a8\u30d5\u30a3\u30af\u8a9e", + "egl": "\u30a8\u30df\u30ea\u30a2\u8a9e", + "elx": "\u30a8\u30e9\u30e0\u8a9e", + "myv": "\u30a8\u30eb\u30b8\u30e3\u8a9e", + "ebu": "\u30a8\u30f3\u30d6\u8a9e", + "en_AU": "\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2\u82f1\u8a9e", + "oj": "\u30aa\u30b8\u30d6\u30a6\u30a7\u30fc\u8a9e", + "ota": "\u30aa\u30b9\u30de\u30f3\u30c8\u30eb\u30b3\u8a9e", + "osa": "\u30aa\u30bb\u30fc\u30b8\u8a9e", + "os": "\u30aa\u30bb\u30c3\u30c8\u8a9e", + "oc": "\u30aa\u30c3\u30af\u8a9e", + "nl": "\u30aa\u30e9\u30f3\u30c0\u8a9e", + "or": "\u30aa\u30ea\u30e4\u30fc\u8a9e", + "om": "\u30aa\u30ed\u30e2\u8a9e", + "kea": "\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7\u30fb\u30af\u30ec\u30aa\u30fc\u30eb\u8a9e", + "kgp": "\u30ab\u30a4\u30f3\u30ac\u30f3\u30b0\u8a9e", + "kaw": "\u30ab\u30a6\u30a3\u8a9e", + "gag": "\u30ac\u30ac\u30a6\u30ba\u8a9e", + "kkj": "\u30ab\u30b3\u8a9e", + "kk": "\u30ab\u30b6\u30d5\u8a9e", + "kaj": "\u30ab\u30b8\u30a7\u8a9e", + "ks": "\u30ab\u30b7\u30df\u30fc\u30eb\u8a9e", + "csb": "\u30ab\u30b7\u30e5\u30fc\u30d6\u8a9e", + "kha": "\u30ab\u30b7\u8a9e", + "kcg": "\u30ab\u30bf\u30d6\u8a9e", + "ca": "\u30ab\u30bf\u30ed\u30cb\u30a2\u8a9e", + "kac": "\u30ab\u30c1\u30f3\u8a9e", + "cad": "\u30ab\u30c9\u30fc\u8a9e", + "en_CA": "\u30ab\u30ca\u30c0\u82f1\u8a9e", + "kr": "\u30ab\u30cc\u30ea\u8a9e", + "kbl": "\u30ab\u30cd\u30f3\u30d6\u8a9e", + "kbd": "\u30ab\u30d0\u30eb\u30c9\u8a9e", + "cps": "\u30ab\u30d4\u30b9\u8a9e", + "kab": "\u30ab\u30d3\u30eb\u8a9e", + "cay": "\u30ab\u30e6\u30fc\u30ac\u8a9e", + "gay": "\u30ac\u30e8\u8a9e", + "kaa": "\u30ab\u30e9\u30ab\u30eb\u30d1\u30af\u8a9e", + "krc": "\u30ab\u30e9\u30c1\u30e3\u30a4\u8a9e", + "gl": "\u30ac\u30ea\u30b7\u30a2\u8a9e", + "car": "\u30ab\u30ea\u30d6\u8a9e", + "xal": "\u30ab\u30eb\u30e0\u30a4\u30af\u8a9e", + "krl": "\u30ab\u30ec\u30ea\u30a2\u8a9e", + "kln": "\u30ab\u30ec\u30f3\u30b8\u30f3\u8a9e", + "lg": "\u30ac\u30f3\u30c0\u8a9e", + "kn": "\u30ab\u30f3\u30ca\u30c0\u8a9e", + "kam": "\u30ab\u30f3\u30d0\u8a9e", + "gaa": "\u30ac\u8a9e", + "ki": "\u30ad\u30af\u30e6\u8a9e", + "quc": "\u30ad\u30c1\u30a7\u8a9e", + "krj": "\u30ad\u30ca\u30e9\u30a4\u30a2\u8a9e", + "glk": "\u30ae\u30e9\u30ad\u8a9e", + "el": "\u30ae\u30ea\u30b7\u30e3\u8a9e", + "gil": "\u30ad\u30ea\u30d0\u30b9\u8a9e", + "ky": "\u30ad\u30eb\u30ae\u30b9\u8a9e", + "kiu": "\u30ad\u30eb\u30de\u30f3\u30b8\u30e5\u30ad\u8a9e", + "kmb": "\u30ad\u30f3\u30d6\u30f3\u30c9\u8a9e", + "gn": "\u30b0\u30a2\u30e9\u30cb\u30fc\u8a9e", + "gwi": "\u30b0\u30a6\u30a3\u30c3\u30c1\u30f3\u8a9e", + "guz": "\u30b0\u30b7\u30a4\u8a9e", + "gu": "\u30b0\u30b8\u30e3\u30e9\u30fc\u30c8\u8a9e", + "kut": "\u30af\u30c6\u30ca\u30a4\u8a9e", + "kpe": "\u30af\u30da\u30ec\u8a9e", + "kum": "\u30af\u30e0\u30af\u8a9e", + "km": "\u30af\u30e1\u30fc\u30eb\u8a9e", + "mus": "\u30af\u30ea\u30fc\u30af\u8a9e", + "kl": "\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9\u8a9e", + "cr": "\u30af\u30ea\u30fc\u8a9e", + "kri": "\u30af\u30ea\u30aa\u8a9e", + "crh": "\u30af\u30ea\u30df\u30a2\u30fb\u30bf\u30bf\u30fc\u30eb\u8a9e", + "tlh": "\u30af\u30ea\u30f3\u30b4\u30f3\u8a9e", + "kru": "\u30af\u30eb\u30af\u8a9e", + "ka": "\u30b0\u30eb\u30b8\u30a2\u8a9e", + "ku": "\u30af\u30eb\u30c9\u8a9e", + "ckb": "\u30af\u30eb\u30c9\u8a9e(\u30bd\u30e9\u30cb\u30fc)", + "grb": "\u30b0\u30ec\u30dc\u8a9e", + "hr": "\u30af\u30ed\u30a2\u30c1\u30a2\u8a9e", + "nmg": "\u30af\u30ef\u30b7\u30aa\u8a9e", + "kj": "\u30af\u30ef\u30cb\u30e3\u30de\u8a9e", + "frc": "\u30b1\u30a4\u30b8\u30e3\u30f3\u30fb\u30d5\u30e9\u30f3\u30b9\u8a9e", + "gez": "\u30b2\u30a8\u30ba\u8a9e", + "aln": "\u30b2\u30b0\u30fb\u30a2\u30eb\u30d0\u30cb\u30a2\u8a9e", + "qu": "\u30b1\u30c1\u30e5\u30a2\u8a9e", + "ksh": "\u30b1\u30eb\u30f3\u8a9e", + "gom": "\u30b4\u30a2\u30fb\u30b3\u30f3\u30ab\u30cb\u8a9e", + "khq": "\u30b3\u30a4\u30e9\u30fb\u30c1\u30fc\u30cb\u8a9e", + "ses": "\u30b3\u30a4\u30e9\u30dc\u30ed\u30fb\u30bb\u30f3\u30cb\u8a9e", + "kho": "\u30b3\u30fc\u30bf\u30f3\u8a9e", + "got": "\u30b4\u30fc\u30c8\u8a9e", + "bbj": "\u30b4\u30fc\u30de\u30e9\u8a9e", + "kw": "\u30b3\u30fc\u30f3\u30a6\u30a9\u30fc\u30eb\u8a9e", + "gon": "\u30b4\u30fc\u30f3\u30c7\u30a3\u30fc\u8a9e", + "xh": "\u30b3\u30b5\u8a9e", + "kos": "\u30b3\u30b9\u30e9\u30a8\u8a9e", + "avk": "\u30b3\u30bf\u30f4\u30a1", + "cop": "\u30b3\u30d7\u30c8\u8a9e", + "koi": "\u30b3\u30df\u30fb\u30da\u30eb\u30df\u30e3\u30af\u8a9e", + "kv": "\u30b3\u30df\u8a9e", + "bkm": "\u30b3\u30e0\u8a9e", + "swb": "\u30b3\u30e2\u30ed\u8a9e", + "co": "\u30b3\u30eb\u30b7\u30ab\u8a9e", + "gor": "\u30b4\u30ed\u30f3\u30bf\u30ed\u8a9e", + "kfo": "\u30b3\u30ed\u8a9e", + "khw": "\u30b3\u30ef\u30fc\u30eb\u8a9e", + "kok": "\u30b3\u30f3\u30ab\u30cb\u8a9e", + "swc": "\u30b3\u30f3\u30b4\u30fb\u30b9\u30ef\u30d2\u30ea\u8a9e", + "kg": "\u30b3\u30f3\u30b4\u8a9e", + "stq": "\u30b6\u30fc\u30bf\u30fc\u30d5\u30ea\u30b8\u30a2\u8a9e", + "saz": "\u30b5\u30a6\u30e9\u30fc\u30b7\u30e5\u30c8\u30e9\u8a9e", + "sas": "\u30b5\u30b5\u30af\u8a9e", + "zza": "\u30b6\u30b6\u8a9e", + "sdc": "\u30b5\u30c3\u30b5\u30ea\u30fb\u30b5\u30eb\u30c7\u30fc\u30cb\u30e3\u8a9e", + "zap": "\u30b5\u30dd\u30c6\u30ab\u8a9e", + "ssy": "\u30b5\u30db\u8a9e", + "sam": "\u30b5\u30de\u30ea\u30a2\u30fb\u30a2\u30e9\u30e0\u8a9e", + "sm": "\u30b5\u30e2\u30a2\u8a9e", + "sgs": "\u30b5\u30e2\u30ae\u30c6\u30a3\u30a2\u8a9e)", + "sc": "\u30b5\u30eb\u30c7\u30fc\u30cb\u30e3\u8a9e", + "dje": "\u30b6\u30eb\u30de\u8a9e", + "sbp": "\u30b5\u30f3\u30b0\u8a9e", + "sg": "\u30b5\u30f3\u30b4\u8a9e", + "sa": "\u30b5\u30f3\u30b9\u30af\u30ea\u30c3\u30c8\u8a9e", + "sat": "\u30b5\u30f3\u30bf\u30fc\u30ea\u30fc\u8a9e", + "sad": "\u30b5\u30f3\u30c0\u30a6\u30a7\u8a9e", + "ksb": "\u30b5\u30f3\u30d0\u30fc\u8a9e", + "saq": "\u30b5\u30f3\u30d6\u30eb\u8a9e", + "bla": "\u30b7\u30af\u30b7\u30ab\u8a9e", + "sid": "\u30b7\u30c0\u30e2\u8a9e", + "scn": "\u30b7\u30c1\u30ea\u30a2\u8a9e", + "chy": "\u30b7\u30e3\u30a4\u30a2\u30f3\u8a9e", + "jam": "\u30b8\u30e3\u30de\u30a4\u30ab\u30fb\u30af\u30ec\u30aa\u30fc\u30eb\u8a9e", + "jv": "\u30b8\u30e3\u30ef\u8a9e", + "shn": "\u30b7\u30e3\u30f3\u8a9e", + "sux": "\u30b7\u30e5\u30e1\u30fc\u30eb\u8a9e", + "dyu": "\u30b8\u30e5\u30e9\u8a9e", + "sn": "\u30b7\u30e7\u30ca\u8a9e", + "dyo": "\u30b8\u30e7\u30e9\uff1d\u30d5\u30a9\u30cb\u30a3\u8a9e", + "syr": "\u30b7\u30ea\u30a2\u8a9e", + "szl": "\u30b7\u30ec\u30b8\u30a2\u8a9e", + "sd": "\u30b7\u30f3\u30c9\u8a9e", + "si": "\u30b7\u30f3\u30cf\u30e9\u8a9e", + "gsw": "\u30b9\u30a4\u30b9\u30c9\u30a4\u30c4\u8a9e", + "sv": "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u8a9e", + "zu": "\u30ba\u30fc\u30eb\u30fc\u8a9e", + "suk": "\u30b9\u30af\u30de\u8a9e", + "gd": "\u30b9\u30b3\u30c3\u30c8\u30e9\u30f3\u30c9\u30fb\u30b2\u30fc\u30eb\u8a9e", + "sco": "\u30b9\u30b3\u30c3\u30c8\u30e9\u30f3\u30c9\u8a9e", + "sms": "\u30b9\u30b3\u30eb\u30c8\u30fb\u30b5\u30fc\u30df\u8a9e", + "sus": "\u30b9\u30b9\u8a9e", + "zun": "\u30ba\u30cb\u8a9e", + "es": "\u30b9\u30da\u30a4\u30f3\u8a9e", + "es_ES": "\u30b9\u30da\u30a4\u30f3\u8a9e(\u30a4\u30d9\u30ea\u30a2\u534a\u5cf6)", + "sly": "\u30b9\u30e9\u30e4\u30fc\u30eb\u8a9e", + "srn": "\u30b9\u30ea\u30ca\u30e0\u8a9e", + "den": "\u30b9\u30ec\u30a4\u30d3\u30fc\u8a9e", + "sk": "\u30b9\u30ed\u30d0\u30ad\u30a2\u8a9e", + "sl": "\u30b9\u30ed\u30d9\u30cb\u30a2\u8a9e", + "ss": "\u30b9\u30ef\u30b8\u8a9e", + "sw": "\u30b9\u30ef\u30d2\u30ea\u8a9e", + "su": "\u30b9\u30f3\u30c0\u8a9e", + "zea": "\u30bc\u30fc\u30e9\u30f3\u30c8\u8a9e", + "zen": "\u30bc\u30ca\u30ac\u8a9e", + "seh": "\u30bb\u30ca\u8a9e", + "see": "\u30bb\u30cd\u30ab\u8a9e", + "ceb": "\u30bb\u30d6\u30a2\u30ce\u8a9e", + "sel": "\u30bb\u30ea\u30af\u30d7\u8a9e", + "sei": "\u30bb\u30ea\u8a9e", + "sr": "\u30bb\u30eb\u30d3\u30a2\u8a9e", + "sh": "\u30bb\u30eb\u30dc\u30fb\u30af\u30ed\u30a2\u30c1\u30a2\u8a9e", + "srr": "\u30bb\u30ec\u30eb\u8a9e", + "xog": "\u30bd\u30ac\u8a9e", + "sog": "\u30bd\u30b0\u30c9\u8a9e", + "snk": "\u30bd\u30cb\u30f3\u30b1\u8a9e", + "so": "\u30bd\u30de\u30ea\u8a9e", + "dz": "\u30be\u30f3\u30ab\u8a9e", + "dav": "\u30bf\u30a4\u30bf\u8a9e", + "th": "\u30bf\u30a4\u8a9e", + "tl": "\u30bf\u30ac\u30ed\u30b0\u8a9e", + "dak": "\u30c0\u30b3\u30bf\u8a9e", + "dzg": "\u30c0\u30b6\u30ac\u8a9e", + "twq": "\u30bf\u30b5\u30ef\u30af\u8a9e", + "tg": "\u30bf\u30b8\u30af\u8a9e", + "shi": "\u30bf\u30b7\u30eb\u30cf\u30a4\u30c8\u8a9e", + "tt": "\u30bf\u30bf\u30fc\u30eb\u8a9e", + "ty": "\u30bf\u30d2\u30c1\u8a9e", + "zgh": "\u30bf\u30de\u30fc\u30b8\u30af\u8a9e(\u30e2\u30ed\u30c3\u30b3\u516c\u7528\u8a9e)", + "tmh": "\u30bf\u30de\u30b7\u30a7\u30af\u8a9e", + "ta": "\u30bf\u30df\u30eb\u8a9e", + "gbz": "\u30c0\u30ea\u30fc\u8a9e(\u30be\u30ed\u30a2\u30b9\u30bf\u30fc\u6559)", + "tly": "\u30bf\u30ea\u30b7\u30e5\u8a9e", + "dar": "\u30c0\u30eb\u30ac\u30f3\u8a9e", + "trv": "\u30bf\u30ed\u30b3\u8a9e", + "cs": "\u30c1\u30a7\u30b3\u8a9e", + "ce": "\u30c1\u30a7\u30c1\u30a7\u30f3\u8a9e", + "chr": "\u30c1\u30a7\u30ed\u30ad\u30fc\u8a9e", + "cgg": "\u30c1\u30ac\u8a9e", + "chn": "\u30c1\u30cc\u30fc\u30af\u6df7\u6210\u8a9e", + "chb": "\u30c1\u30d6\u30c1\u30e3\u8a9e", + "bo": "\u30c1\u30d9\u30c3\u30c8\u8a9e", + "chp": "\u30c1\u30da\u30ef\u30a4\u30a2\u30f3\u8a9e", + "tsi": "\u30c1\u30e0\u30b7\u30e5\u8a9e", + "chg": "\u30c1\u30e3\u30ac\u30bf\u30a4\u8a9e", + "shu": "\u30c1\u30e3\u30c9\u30fb\u30a2\u30e9\u30d3\u30a2\u8a9e", + "ch": "\u30c1\u30e3\u30e2\u30ed\u8a9e", + "cch": "\u30c1\u30e3\u30ef\u30a4\u8a9e", + "cv": "\u30c1\u30e5\u30f4\u30a1\u30b7\u8a9e", + "chk": "\u30c1\u30e5\u30fc\u30af\u8a9e", + "aeb": "\u30c1\u30e5\u30cb\u30b8\u30a2\u30fb\u30a2\u30e9\u30d3\u30a2\u8a9e", + "cho": "\u30c1\u30e7\u30af\u30c8\u30fc\u8a9e", + "za": "\u30c1\u30ef\u30f3\u8a9e", + "qug": "\u30c1\u30f3\u30dc\u30e9\u30bd\u9ad8\u5730\u30b1\u30c1\u30e5\u30a2\u8a9e", + "tsd": "\u30c4\u30a1\u30b3\u30f3\u8a9e", + "tkr": "\u30c4\u30a1\u30d5\u30eb\u8a9e", + "ts": "\u30c4\u30a9\u30f3\u30ac\u8a9e", + "tvl": "\u30c4\u30d0\u30eb\u8a9e", + "tn": "\u30c4\u30ef\u30ca\u8a9e", + "ti": "\u30c6\u30a3\u30b0\u30ea\u30cb\u30a2\u8a9e", + "tig": "\u30c6\u30a3\u30b0\u30ec\u8a9e", + "tiv": "\u30c6\u30a3\u30d6\u8a9e", + "dv": "\u30c7\u30a3\u30d9\u30d2\u8a9e", + "din": "\u30c7\u30a3\u30f3\u30ab\u8a9e", + "teo": "\u30c6\u30bd\u8a9e", + "tet": "\u30c6\u30c8\u30a5\u30f3\u8a9e", + "tem": "\u30c6\u30e0\u30cd\u8a9e", + "del": "\u30c7\u30e9\u30a6\u30a7\u30a2\u8a9e", + "te": "\u30c6\u30eb\u30b0\u8a9e", + "ter": "\u30c6\u30ec\u30fc\u30ce\u8a9e", + "da": "\u30c7\u30f3\u30de\u30fc\u30af\u8a9e", + "de": "\u30c9\u30a4\u30c4\u8a9e", + "dua": "\u30c9\u30a5\u30a2\u30e9\u8a9e", + "tw": "\u30c8\u30a6\u30a3\u8a9e", + "tyv": "\u30c8\u30a5\u30f4\u30a1\u8a9e", + "tcy": "\u30c8\u30a5\u30eb\u8a9e", + "tru": "\u30c8\u30a5\u30ed\u30e8\u8a9e", + "tum": "\u30c8\u30a5\u30f3\u30d6\u30ab\u8a9e", + "doi": "\u30c9\u30fc\u30b0\u30ea\u30fc\u8a9e", + "tpi": "\u30c8\u30af\u30fb\u30d4\u30b7\u30f3\u8a9e", + "dgr": "\u30c9\u30b0\u30ea\u30d6\u8a9e", + "tkl": "\u30c8\u30b1\u30e9\u30a6\u8a9e", + "bbc": "\u30c8\u30d0\u30fb\u30d0\u30bf\u30af\u8a9e", + "tli": "\u30c8\u30ea\u30f3\u30ae\u30c3\u30c8\u8a9e", + "tk": "\u30c8\u30eb\u30af\u30e1\u30f3\u8a9e", + "tr": "\u30c8\u30eb\u30b3\u8a9e", + "fit": "\u30c8\u30eb\u30cd\u30c0\u30fc\u30eb\u30fb\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9\u8a9e", + "to": "\u30c8\u30f3\u30ac\u8a9e", + "tog": "\u30c8\u30f3\u30ac\u8a9e(\u30cb\u30a2\u30b5)", + "na": "\u30ca\u30a6\u30eb\u8a9e", + "nv": "\u30ca\u30d0\u30db\u8a9e", + "nap": "\u30ca\u30dd\u30ea\u8a9e", + "naq": "\u30ca\u30de\u8a9e", + "nia": "\u30cb\u30a2\u30b9\u8a9e", + "niu": "\u30cb\u30a6\u30fc\u30a8\u30a4\u8a9e", + "yrl": "\u30cb\u30a7\u30a8\u30f3\u30ac\u30c8\u30a5\u8a9e", + "nym": "\u30cb\u30e3\u30e0\u30a6\u30a7\u30b8\u8a9e", + "nyn": "\u30cb\u30e3\u30f3\u30b3\u30ec\u8a9e", + "ny": "\u30cb\u30e3\u30f3\u30b8\u30e3\u8a9e", + "ken": "\u30cb\u30e3\u30f3\u8a9e", + "nyo": "\u30cb\u30e7\u30ed\u8a9e", + "nus": "\u30cc\u30a8\u30eb\u8a9e", + "ne": "\u30cd\u30d1\u30fc\u30eb\u8a9e", + "new": "\u30cd\u30ef\u30fc\u30eb\u8a9e", + "nog": "\u30ce\u30ac\u30a4\u8a9e", + "no": "\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e", + "nn": "\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e(\u30cb\u30fc\u30ce\u30b7\u30e5\u30af)", + "nb": "\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e(\u30d6\u30fc\u30af\u30e2\u30fc\u30eb)", + "pi": "\u30d1\u30fc\u30ea\u8a9e", + "hai": "\u30cf\u30a4\u30c0\u8a9e", + "ht": "\u30cf\u30a4\u30c1\u8a9e", + "ha": "\u30cf\u30a6\u30b5\u8a9e", + "bas": "\u30d0\u30b5\u8a9e", + "ba": "\u30d0\u30b7\u30ad\u30fc\u30eb\u8a9e", + "ps": "\u30d1\u30b7\u30e5\u30c8\u30a5\u30fc\u8a9e", + "eu": "\u30d0\u30b9\u30af\u8a9e", + "bfq": "\u30d0\u30c0\u30ac\u8a9e", + "pap": "\u30d1\u30d4\u30a2\u30e1\u30f3\u30c8\u8a9e", + "ksf": "\u30d0\u30d5\u30a3\u30a2\u8a9e", + "bfd": "\u30d0\u30d5\u30c3\u30c8\u8a9e", + "bqi": "\u30d0\u30d5\u30c6\u30a3\u30e4\u30fc\u30ea\u30fc\u8a9e", + "pal": "\u30d1\u30d5\u30e9\u30f4\u30a3\u30fc\u8a9e", + "bax": "\u30d0\u30e0\u30f3\u8a9e", + "gba": "\u30d0\u30e4\u8a9e", + "pau": "\u30d1\u30e9\u30aa\u8a9e", + "ban": "\u30d0\u30ea\u8a9e", + "bal": "\u30d0\u30eb\u30fc\u30c1\u30fc\u8a9e", + "haw": "\u30cf\u30ef\u30a4\u8a9e", + "pag": "\u30d1\u30f3\u30ac\u30b7\u30ca\u30f3\u8a9e", + "hu": "\u30cf\u30f3\u30ac\u30ea\u30fc\u8a9e", + "pa": "\u30d1\u30f3\u30b8\u30e3\u30d6\u8a9e", + "bjn": "\u30d0\u30f3\u30b8\u30e3\u30eb\u8a9e", + "bm": "\u30d0\u30f3\u30d0\u30e9\u8a9e", + "pam": "\u30d1\u30f3\u30d1\u30f3\u30ac\u8a9e", + "pms": "\u30d4\u30a8\u30e2\u30f3\u30c6\u8a9e", + "pcd": "\u30d4\u30ab\u30eb\u30c7\u30a3\u8a9e", + "bik": "\u30d3\u30b3\u30eb\u8a9e", + "bpy": "\u30d3\u30b7\u30e5\u30cc\u30d7\u30ea\u30e4\u30fb\u30de\u30cb\u30d7\u30ea\u8a9e", + "bi": "\u30d3\u30b9\u30e9\u30de\u8a9e", + "hit": "\u30d2\u30c3\u30bf\u30a4\u30c8\u8a9e", + "bin": "\u30d3\u30cb\u8a9e", + "hil": "\u30d2\u30ea\u30ac\u30a4\u30ce\u30f3\u8a9e", + "ho": "\u30d2\u30ea\u30e2\u30c4\u8a9e", + "byn": "\u30d3\u30ea\u30f3\u8a9e", + "my": "\u30d3\u30eb\u30de\u8a9e", + "hi": "\u30d2\u30f3\u30c7\u30a3\u30fc\u8a9e", + "fan": "\u30d5\u30a1\u30f3\u30b0\u8a9e", + "fat": "\u30d5\u30a1\u30f3\u30c6\u30a3\u30fc\u8a9e", + "hif": "\u30d5\u30a3\u30b8\u30fc\u30fb\u30d2\u30f3\u30c7\u30a3\u30fc\u8a9e", + "fj": "\u30d5\u30a3\u30b8\u30fc\u8a9e", + "fil": "\u30d5\u30a3\u30ea\u30d4\u30ce\u8a9e", + "fi": "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9\u8a9e", + "phn": "\u30d5\u30a7\u30cb\u30ad\u30a2\u8a9e", + "fo": "\u30d5\u30a7\u30ed\u30fc\u8a9e", + "fon": "\u30d5\u30a9\u30f3\u8a9e", + "bug": "\u30d6\u30ae\u8a9e", + "pfl": "\u30d7\u30d5\u30a1\u30eb\u30c4\u8a9e", + "hmn": "\u30d5\u30e2\u30f3\u8a9e", + "bra": "\u30d6\u30e9\u30b8\u8a9e", + "ff": "\u30d5\u30e9\u30cb\u8a9e", + "brh": "\u30d6\u30e9\u30d5\u30a4\u8a9e", + "gur": "\u30d5\u30e9\u30d5\u30e9\u8a9e", + "fr": "\u30d5\u30e9\u30f3\u30b9\u8a9e", + "fur": "\u30d5\u30ea\u30a6\u30ea\u8a9e", + "zbl": "\u30d6\u30ea\u30b9\u30b7\u30f3\u30dc\u30eb", + "bua": "\u30d6\u30ea\u30e4\u30fc\u30c8\u8a9e", + "bg": "\u30d6\u30eb\u30ac\u30ea\u30a2\u8a9e", + "br": "\u30d6\u30eb\u30c8\u30f3\u8a9e", + "bum": "\u30d6\u30eb\u8a9e", + "nl_BE": "\u30d5\u30ec\u30df\u30c3\u30b7\u30e5\u8a9e", + "prg": "\u30d7\u30ed\u30b7\u30a2\u8a9e", + "bej": "\u30d9\u30b8\u30e3\u8a9e", + "bew": "\u30d9\u30bf\u30a6\u30a3\u8a9e", + "vi": "\u30d9\u30c8\u30ca\u30e0\u8a9e", + "bez": "\u30d9\u30ca\u8a9e", + "he": "\u30d8\u30d6\u30e9\u30a4\u8a9e", + "be": "\u30d9\u30e9\u30eb\u30fc\u30b7\u8a9e", + "fa": "\u30da\u30eb\u30b7\u30a2\u8a9e", + "hz": "\u30d8\u30ec\u30ed\u8a9e", + "bn": "\u30d9\u30f3\u30ac\u30eb\u8a9e", + "pdc": "\u30da\u30f3\u30b7\u30eb\u30d9\u30cb\u30a2\u30fb\u30c9\u30a4\u30c4\u8a9e", + "ve": "\u30d9\u30f3\u30c0\u8a9e", + "bem": "\u30d9\u30f3\u30d0\u8a9e", + "bho": "\u30dc\u30fc\u30b8\u30e5\u30d7\u30ea\u30fc\u8a9e", + "pl": "\u30dd\u30fc\u30e9\u30f3\u30c9\u8a9e", + "bs": "\u30dc\u30b9\u30cb\u30a2\u8a9e", + "brx": "\u30dc\u30c9\u8a9e", + "pt": "\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e", + "pt_PT": "\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e(\u30a4\u30d9\u30ea\u30a2\u534a\u5cf6)", + "pnt": "\u30dd\u30f3\u30c8\u30b9\u30fb\u30ae\u30ea\u30b7\u30e3\u8a9e", + "pon": "\u30dd\u30f3\u30da\u30a4\u8a9e", + "mzn": "\u30de\u30fc\u30b6\u30f3\u30c0\u30e9\u30fc\u30f3\u8a9e", + "mh": "\u30de\u30fc\u30b7\u30e3\u30eb\u8a9e", + "mwr": "\u30de\u30fc\u30eb\u30ef\u30fc\u30ea\u30fc\u8a9e", + "mai": "\u30de\u30a4\u30c6\u30a3\u30ea\u30fc\u8a9e", + "vmf": "\u30de\u30a4\u30f3\u30d5\u30e9\u30f3\u30af\u8a9e", + "mi": "\u30de\u30aa\u30ea\u8a9e", + "mak": "\u30de\u30ab\u30c3\u30b5\u30eb\u8a9e", + "mag": "\u30de\u30ac\u30d2\u30fc\u8a9e", + "mgh": "\u30de\u30af\u30a2\u30fb\u30df\u30fc\u30c8\u8a9e", + "mk": "\u30de\u30b1\u30c9\u30cb\u30a2\u8a9e", + "kde": "\u30de\u30b3\u30f3\u30c7\u8a9e", + "mas": "\u30de\u30b5\u30a4\u8a9e", + "mg": "\u30de\u30c0\u30ac\u30b9\u30ab\u30eb\u8a9e", + "jmc": "\u30de\u30c1\u30e3\u30e1\u8a9e", + "mad": "\u30de\u30c9\u30a5\u30e9\u8a9e", + "mni": "\u30de\u30cb\u30d7\u30ea\u8a9e", + "mde": "\u30de\u30d0\u8a9e", + "maf": "\u30de\u30d5\u30a1\u8a9e", + "mr": "\u30de\u30e9\u30fc\u30c6\u30a3\u30fc\u8a9e", + "ml": "\u30de\u30e9\u30e4\u30fc\u30e9\u30e0\u8a9e", + "chm": "\u30de\u30ea\u8a9e", + "mt": "\u30de\u30eb\u30bf\u8a9e", + "ms": "\u30de\u30ec\u30fc\u8a9e", + "mdr": "\u30de\u30f3\u30c0\u30eb\u8a9e", + "man": "\u30de\u30f3\u30c7\u30a3\u30f3\u30b4\u8a9e", + "gv": "\u30de\u30f3\u5cf6\u8a9e", + "mye": "\u30df\u30a8\u30cd\u8a9e", + "mic": "\u30df\u30af\u30de\u30af\u8a9e", + "min": "\u30df\u30ca\u30f3\u30ab\u30d0\u30a6\u8a9e", + "mwl": "\u30df\u30e9\u30f3\u30c0\u8a9e", + "ttt": "\u30e0\u30b9\u30ea\u30e0\u30fb\u30bf\u30bf\u30fc\u30eb\u8a9e", + "umb": "\u30e0\u30d6\u30f3\u30c9\u30a5\u8a9e", + "mua": "\u30e0\u30f3\u30c0\u30f3\u8a9e", + "xmf": "\u30e1\u30b0\u30ec\u30eb\u8a9e", + "mgo": "\u30e1\u30bf\u8a9e", + "byv": "\u30e1\u30c9\u30a5\u30f3\u30d0\u8a9e", + "pdt": "\u30e1\u30ce\u30ca\u30a4\u30c8\u4f4e\u5730\u30c9\u30a4\u30c4\u8a9e", + "mer": "\u30e1\u30eb\u8a9e", + "mwv": "\u30e1\u30f3\u30bf\u30ef\u30a4\u8a9e", + "men": "\u30e1\u30f3\u30c7\u8a9e", + "moh": "\u30e2\u30fc\u30db\u30fc\u30af\u8a9e", + "mfe": "\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9\u30fb\u30af\u30ec\u30aa\u30fc\u30eb\u8a9e", + "mdf": "\u30e2\u30af\u30b7\u30e3\u8a9e", + "mos": "\u30e2\u30b7\u8a9e", + "ro_MD": "\u30e2\u30eb\u30c0\u30d3\u30a2\u8a9e", + "ary": "\u30e2\u30ed\u30c3\u30b3\u30fb\u30a2\u30e9\u30d3\u30a2\u8a9e", + "mn": "\u30e2\u30f3\u30b4\u30eb\u8a9e", + "lol": "\u30e2\u30f3\u30b4\u8a9e", + "yao": "\u30e4\u30aa\u8a9e", + "sah": "\u30e4\u30af\u30fc\u30c8\u8a9e", + "yap": "\u30e4\u30c3\u30d7\u8a9e", + "yav": "\u30e4\u30f3\u30d9\u30f3\u8a9e", + "jrb": "\u30e6\u30c0\u30e4\u30fb\u30a2\u30e9\u30d3\u30a2\u8a9e", + "jpr": "\u30e6\u30c0\u30e4\u30fb\u30da\u30eb\u30b7\u30a2\u8a9e", + "jut": "\u30e6\u30c8\u30e9\u30f3\u30c9\u8a9e", + "yo": "\u30e8\u30eb\u30d0\u8a9e", + "raj": "\u30e9\u30fc\u30b8\u30e3\u30b9\u30bf\u30fc\u30f3\u8a9e", + "lo": "\u30e9\u30aa\u8a9e", + "lkt": "\u30e9\u30b3\u30bf\u8a9e", + "lzz": "\u30e9\u30ba\u8a9e", + "lad": "\u30e9\u30c7\u30a3\u30ce\u8a9e", + "la": "\u30e9\u30c6\u30f3\u8a9e", + "ltg": "\u30e9\u30c8\u30ac\u30ea\u30a2\u8a9e", + "lv": "\u30e9\u30c8\u30d3\u30a2\u8a9e", + "rap": "\u30e9\u30d1\u30cc\u30a4\u8a9e", + "lah": "\u30e9\u30d5\u30f3\u30c0\u30fc\u8a9e", + "rar": "\u30e9\u30ed\u30c8\u30f3\u30ac\u8a9e", + "lag": "\u30e9\u30f3\u30ae\u8a9e", + "lam": "\u30e9\u30f3\u30d0\u8a9e", + "rif": "\u30ea\u30fc\u30d5\u8a9e", + "liv": "\u30ea\u30f4\u30a9\u30cb\u30a2\u8a9e", + "lij": "\u30ea\u30b0\u30ea\u30a2\u8a9e", + "lt": "\u30ea\u30c8\u30a2\u30cb\u30a2\u8a9e", + "ln": "\u30ea\u30f3\u30ac\u30e9\u8a9e", + "lfn": "\u30ea\u30f3\u30b0\u30a2\u30fb\u30d5\u30e9\u30f3\u30ab\u30fb\u30ce\u30d0", + "li": "\u30ea\u30f3\u30d6\u30eb\u30d5\u8a9e", + "lui": "\u30eb\u30a4\u30bb\u30fc\u30cb\u30e7\u8a9e", + "root": "\u30eb\u30fc\u30c8", + "ro": "\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e", + "luo": "\u30eb\u30aa\u8a9e", + "lb": "\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af\u8a9e", + "lus": "\u30eb\u30b7\u30e3\u30a4\u8a9e", + "rue": "\u30eb\u30b7\u30f3\u8a9e", + "lu": "\u30eb\u30d0\u30fb\u30ab\u30bf\u30f3\u30ac\u8a9e", + "lua": "\u30eb\u30d0\u30fb\u30eb\u30eb\u30a2\u8a9e", + "luy": "\u30eb\u30d2\u30e4\u8a9e", + "smj": "\u30eb\u30ec\u30fb\u30b5\u30fc\u30df\u8a9e", + "rw": "\u30eb\u30ef\u30f3\u30c0\u8a9e", + "rwk": "\u30eb\u30ef\u8a9e", + "lun": "\u30eb\u30f3\u30c0\u8a9e", + "rn": "\u30eb\u30f3\u30c7\u30a3\u8a9e", + "lez": "\u30ec\u30ba\u30ae\u8a9e", + "rug": "\u30ed\u30f4\u30a3\u30a2\u30ca\u8a9e", + "ru": "\u30ed\u30b7\u30a2\u8a9e", + "jbo": "\u30ed\u30b8\u30d0\u30f3\u8a9e", + "loz": "\u30ed\u30b8\u8a9e", + "rtm": "\u30ed\u30c4\u30de\u8a9e", + "rom": "\u30ed\u30de\u30fc\u30cb\u30fc\u8a9e", + "rgn": "\u30ed\u30de\u30fc\u30cb\u30e3\u8a9e", + "rm": "\u30ed\u30de\u30f3\u30b7\u30e5\u8a9e", + "lmo": "\u30ed\u30f3\u30d0\u30eb\u30c9\u8a9e", + "rof": "\u30ed\u30f3\u30dc\u8a9e", + "was": "\u30ef\u30b7\u30e7\u8a9e", + "guc": "\u30ef\u30e6\u8a9e", + "war": "\u30ef\u30e9\u30a4\u8a9e", + "wa": "\u30ef\u30ed\u30f3\u8a9e", + "sba": "\u30f3\u30ac\u30e0\u30d0\u30a4\u8a9e", + "jgo": "\u30f3\u30b4\u30f3\u30d0\u8a9e", + "nqo": "\u30f3\u30b3\u8a9e", + "nnh": "\u30f3\u30b8\u30a8\u30e0\u30d6\u30fc\u30f3\u8a9e", + "nzi": "\u30f3\u30bc\u30de\u8a9e", + "ng": "\u30f3\u30c9\u30f3\u30ac\u8a9e", + "en": "\u82f1\u8a9e", + "lzh": "\u6f22\u6587", + "zh_Hans": "\u7c21\u4f53\u4e2d\u56fd\u8a9e", + "ko": "\u97d3\u56fd\u8a9e", + "hak": "\u5ba2\u5bb6\u8a9e", + "cu": "\u6559\u4f1a\u30b9\u30e9\u30d6\u8a9e", + "ar_001": "\u73fe\u4ee3\u6a19\u6e96\u30a2\u30e9\u30d3\u30a2\u8a9e", + "zxx": "\u8a00\u8a9e\u7684\u5185\u5bb9\u306a\u3057", + "und": "\u8a00\u8a9e\u4e0d\u660e", + "non": "\u53e4\u30ce\u30eb\u30c9\u8a9e", + "fro": "\u53e4\u30d5\u30e9\u30f3\u30b9\u8a9e", + "ang": "\u53e4\u82f1\u8a9e", + "sga": "\u53e4\u671f\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u8a9e", + "pro": "\u53e4\u671f\u30d7\u30ed\u30d0\u30f3\u30b9\u8a9e", + "goh": "\u53e4\u9ad8\u30c9\u30a4\u30c4\u8a9e", + "egy": "\u53e4\u4ee3\u30a8\u30b8\u30d7\u30c8\u8a9e", + "grc": "\u53e4\u4ee3\u30ae\u30ea\u30b7\u30e3\u8a9e", + "peo": "\u53e4\u4ee3\u30da\u30eb\u30b7\u30a2\u8a9e", + "syc": "\u53e4\u5178\u30b7\u30ea\u30a2\u8a9e", + "nwc": "\u53e4\u5178\u30cd\u30ef\u30fc\u30eb\u8a9e", + "wuu": "\u5449\u8a9e", + "yue": "\u5e83\u6771\u8a9e", + "mrj": "\u5c71\u5730\u30de\u30ea\u8a9e", + "ii": "\u56db\u5ddd\u30a4\u8a9e", + "hsn": "\u6e58\u8a9e", + "hsb": "\u4e0a\u30bd\u30eb\u30d3\u30a2\u8a9e", + "vls": "\u897f\u30d5\u30e9\u30de\u30f3\u8a9e", + "fy": "\u897f\u30d5\u30ea\u30b8\u30a2\u8a9e", + "enm": "\u4e2d\u82f1\u8a9e", + "tzm": "\u4e2d\u592e\u30a2\u30c8\u30e9\u30b9\u30fb\u30bf\u30de\u30b8\u30af\u30c8\u8a9e", + "esu": "\u4e2d\u592e\u30a2\u30e9\u30b9\u30ab\u30fb\u30e6\u30d4\u30c3\u30af\u8a9e", + "dtp": "\u4e2d\u592e\u30c9\u30a5\u30b9\u30f3\u8a9e", + "mga": "\u4e2d\u671f\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u8a9e", + "frm": "\u4e2d\u671f\u30d5\u30e9\u30f3\u30b9\u8a9e", + "gmh": "\u4e2d\u9ad8\u30c9\u30a4\u30c4\u8a9e", + "zh": "\u4e2d\u56fd\u8a9e", + "dum": "\u4e2d\u4e16\u30aa\u30e9\u30f3\u30c0\u8a9e", + "sli": "\u4f4e\u30b7\u30ec\u30b8\u30a2\u8a9e", + "dsb": "\u4f4e\u30bd\u30eb\u30d3\u30a2\u8a9e", + "nds": "\u4f4e\u5730\u30c9\u30a4\u30c4\u8a9e", + "frs": "\u6771\u30d5\u30ea\u30b8\u30a2\u8a9e", + "azb": "\u5357\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3\u8a9e", + "alt": "\u5357\u30a2\u30eb\u30bf\u30a4\u8a9e", + "sma": "\u5357\u30b5\u30fc\u30df\u8a9e", + "nr": "\u5357\u30f3\u30c7\u30d9\u30ec\u8a9e", + "st": "\u5357\u90e8\u30bd\u30c8\u8a9e", + "ja": "\u65e5\u672c\u8a9e", + "zh_Hant": "\u7e41\u4f53\u4e2d\u56fd\u8a9e", + "de_CH": "\u6a19\u6e96\u30c9\u30a4\u30c4\u8a9e(\u30b9\u30a4\u30b9)", + "mul": "\u8907\u6570\u8a00\u8a9e", + "se": "\u5317\u30b5\u30fc\u30df\u8a9e", + "frr": "\u5317\u30d5\u30ea\u30b8\u30a2\u8a9e", + "nd": "\u5317\u30f3\u30c7\u30d9\u30ec\u8a9e", + "nso": "\u5317\u90e8\u30bd\u30c8\u8a9e", + "mnc": "\u6e80\u5dde\u8a9e", + "gan": "\u8d1b\u8a9e", + "nan": "\u95a9\u5357\u8a9e" +} diff --git a/public/intl/language/km-KH.json b/public/intl/language/km-KH.json new file mode 100644 index 0000000..f9b0cdf --- /dev/null +++ b/public/intl/language/km-KH.json @@ -0,0 +1,611 @@ +{ + "kn": "\u1780\u1793\u17d2\u1793\u178a", + "ca": "\u1780\u17b6\u178f\u17b6\u17a1\u17b6\u1793", + "ks": "\u1780\u17b6\u179f\u17d2\u1798\u17c0\u179a", + "kk": "\u1780\u17b6\u17a0\u17d2\u179f\u17b6\u1780\u17cb\u179f\u17d2\u178f\u1784\u17cb\u17cb", + "ko": "\u1780\u17bc\u179a\u17c9\u17c1", + "qu": "\u1780\u17c1\u1791\u1787\u17bd\u17a2\u17b6", + "el": "\u1780\u17d2\u179a\u17b7\u1785", + "hr": "\u1780\u17d2\u179a\u17bc\u17a2\u17b6\u178f", + "km": "\u1781\u17d2\u1798\u17c2\u179a", + "ky": "\u1782\u17c0\u179a\u17a0\u17d2\u1782\u17b8\u179f\u17d2\u178f\u1784\u17cb", + "zxx": "\u1782\u17d2\u1798\u17b6\u1793\u200b\u1791\u17b7\u1793\u17d2\u1793\u1793\u17d0\u1799\u200b\u1797\u17b6\u179f\u17b6", + "xh": "\u1783\u179f\u17b6", + "ku": "\u1783\u17ba\u178a", + "zh": "\u1785\u17b7\u1793", + "zh_Hans": "\u1785\u17b7\u1793\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1780\u17b6\u178f\u17cb", + "zh_Hant": "\u1785\u17b7\u1793\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1796\u17c1\u1789", + "cs": "\u1786\u17c1\u1780", + "chr": "\u1786\u17c1\u179a\u17bc\u1782\u17b8", + "ja": "\u1787\u1794\u17c9\u17bb\u1793", + "jv": "\u1787\u17d2\u179c\u17b6", + "da": "\u178a\u17b6\u178e\u17ba\u1798\u17c9\u17b6\u1780", + "tg": "\u178f\u17b6\u178a\u17a0\u17d2\u179f\u17b8\u1782\u17b8\u179f\u17d2\u178f\u1784\u17cb", + "tt": "\u178f\u17b6\u178f\u17b6\u179a", + "ta": "\u178f\u17b6\u1798\u17b8\u179b", + "to": "\u178f\u17bb\u1784\u17a0\u17d2\u1782\u17c4", + "te": "\u178f\u17c1\u179b\u17bb\u1782\u17bb", + "th": "\u1790\u17c3", + "bo": "\u1791\u17b8\u1794\u17c1", + "ti": "\u1791\u17b8\u179a\u17b7\u1793\u1799\u17b6", + "tk": "\u1791\u17bd\u1782\u1798\u17c1\u1793\u17b8\u179f\u17d2\u178f\u1784\u17cb", + "tr": "\u1791\u17bd\u179a\u1782\u17b8", + "nn": "\u1793\u17d0\u179a\u179c\u17c2\u179f \u1793\u17b8\u1793\u17bc\u179f", + "nb": "\u1793\u17d0\u179a\u179c\u17c2\u179f \u1794\u17bb\u1780\u1798\u17c9\u17b6\u179b\u17cb", + "ne": "\u1793\u17c1\u1794\u17c9\u17b6\u179b\u17cb", + "bn": "\u1794\u1784\u17cb\u1780\u17d2\u179b\u17b6\u178a\u17c2\u179f", + "bm": "\u1794\u17b6\u1798\u17d2\u1794\u17b6\u179a\u17b6", + "fr": "\u1794\u17b6\u179a\u17b6\u17c6\u1784", + "eu": "\u1794\u17b6\u179f\u17d2\u1780\u17c1", + "ps": "\u1794\u17b6\u179f\u17d2\u178f\u17bc", + "pa": "\u1794\u17b9\u1793\u1787\u17b6\u1796\u17b7", + "bg": "\u1794\u17ca\u17bb\u179b\u17a0\u17d2\u1780\u17b6\u179a\u17b8", + "bs": "\u1794\u17bc\u179f\u17d2\u1793\u17b8", + "pl": "\u1794\u17c9\u17bc\u17a1\u17bc\u1789", + "be": "\u1794\u17c1\u17a1\u17b6\u179a\u17bb\u179f\u17d2\u179f", + "ba": "\u1794\u17c2\u179f\u17d2\u1780\u17ba", + "br": "\u1794\u17d2\u179a\u17b8\u179f\u17d2\u178f\u17bb\u1793", + "nl_BE": "\u1795\u17d2\u179b\u17b6\u1798\u17b8\u179f", + "pt": "\u1796\u17d0\u179a\u1791\u17bb\u1799\u17a0\u17d2\u1780\u17b6\u179b\u17cb", + "pt_BR": "\u1796\u17d0\u179a\u1791\u17bb\u1799\u17a0\u17d2\u1782\u17b6\u179b\u17cb \u1794\u17d2\u179a\u17c1\u179f\u17ca\u17b8\u179b", + "pt_PT": "\u1796\u17d0\u179a\u1791\u17bb\u1799\u17a0\u17d2\u1782\u17b6\u179b\u17cb \u17a2\u17ba\u179a\u17c9\u17bb\u1794", + "za": "\u1797\u17b6\u179f\u17b6\u1785\u17bd\u1784", + "no": "\u1797\u17b6\u179f\u17b6\u1793\u17d0\u179a\u179c\u17c2\u179f", + "dz": "\u1797\u17b6\u179f\u17b6\u1794\u17ca\u17bc\u178f\u17b6\u1793", + "ro_MD": "\u1797\u17b6\u179f\u17b6\u1798\u17c9\u17bb\u179b\u178a\u17b6\u179c\u17b8", + "yi": "\u1797\u17b6\u179f\u17b6\u1799\u17b8\u178c\u17b8\u17a0\u17d2\u179f", + "sm": "\u1797\u17b6\u179f\u17b6\u179f\u17b6\u1798\u17bc\u17a2\u17b6", + "gd": "\u1797\u17b6\u179f\u17b6\u17a0\u17d2\u1780\u17c2\u179b\u17b7\u1782 (gd)", + "an": "\u1797\u17b6\u179f\u17b6\u17a2\u17b6\u179a\u17c9\u17b6\u17a0\u17d2\u1782\u17c4\u1793", + "ae": "\u1797\u17b6\u179f\u17b6\u17a2\u17b6\u179c\u17c2\u179f\u17d2\u178f\u1784\u17cb", + "aa": "\u1797\u17b6\u179f\u17b6\u17a2\u17b6\u17a0\u17d2\u179c\u17b6\u179a", + "ay": "\u1797\u17b6\u179f\u17b6\u17a2\u17b8\u1798\u17c9\u17b6\u179a\u17c9\u17b6", + "fa": "\u1797\u17ba\u179f\u17c0\u1793", + "my": "\u1797\u17bc\u1798\u17b6", + "mr": "\u1798\u179a\u17b6\u1792\u17b7", + "ml": "\u1798\u179b\u1799\u17b6\u179b\u17d0\u1798", + "zgh": "\u1798\u17c9\u17b6\u179a\u17c9\u17bb\u1780", + "mt": "\u1798\u17c9\u17b6\u179b\u17cb\u178f\u17b6", + "mk": "\u1798\u17c9\u17b6\u179f\u17c1\u178a\u17bc\u1793\u17b8", + "mg": "\u1798\u17c9\u17b6\u17a1\u17b6\u17a0\u17d2\u1782\u17b6\u179f\u17ca\u17b8", + "ms": "\u1798\u17c9\u17b6\u17a1\u17c1\u179f\u17ca\u17b8", + "und": "\u1798\u17b7\u1793\u200b\u179f\u17d2\u1782\u17b6\u179b\u17cb\u200b\u1797\u17b6\u179f\u17b6", + "mn": "\u1798\u17c9\u17bb\u1784\u17a0\u17d2\u1782\u17c4\u179b\u17b8", + "mi": "\u1798\u17c9\u17c4\u179a\u17b8", + "yo": "\u1799\u179a\u17bc\u1794\u17b6", + "ru": "\u179a\u17bb\u179f\u17d2\u179f\u17ca\u17b8", + "rn": "\u179a\u17bc\u1793\u17d2\u178c\u17b8", + "rm": "\u179a\u17c9\u17bc\u1798\u17c9\u1784\u17cb", + "ro": "\u179a\u17bc\u1798\u17c9\u17b6\u1793\u17b8", + "lt": "\u179b\u17b8\u1791\u17bb\u1799\u17a2\u17b6\u1793\u17b8", + "ln": "\u179b\u17b8\u1793\u1780\u17b6\u17a1\u17b6", + "lb": "\u179b\u17bb\u1785\u17a0\u17d2\u179f\u17c6\u1794\u17bd\u179a", + "wo": "\u179c\u17bc\u17a1\u17bb\u17a0\u17d2\u179c", + "vi": "\u179c\u17c0\u178f\u178e\u17b6\u1798", + "cy": "\u179c\u17c1\u179b", + "sd": "\u200b\u200b\u179f\u17ca\u17b8\u1793\u17d2\u178f\u17b8", + "sv": "\u179f\u17ca\u17bb\u1799\u17a2\u17c2\u178a", + "ckb": "\u179f\u17bb\u179a\u17c9\u17b6\u1793\u17b8", + "su": "\u179f\u17ca\u17bc\u178a\u1784\u17cb", + "so": "\u179f\u17bc\u1798\u17c9\u17b6\u179b\u17b8", + "zu": "\u179f\u17bc\u179b\u17bc", + "sr": "\u179f\u17be\u1794", + "sa": "\u179f\u17c6\u179f\u17d2\u1780\u17d2\u179a\u17b9\u178f", + "si": "\u179f\u17d2\u179a\u17b8\u179b\u1784\u17d2\u1780\u17b6", + "sk": "\u179f\u17d2\u179b\u17bc\u179c\u17c9\u17b6\u1782\u17b8", + "sl": "\u179f\u17d2\u179b\u17bc\u179c\u17c9\u17b6\u1793\u17b8", + "sw": "\u179f\u17d2\u179c\u17b6\u17a0\u17ca\u17b8\u179b\u17b8", + "haw": "\u17a0\u17b6\u179c\u17c3", + "hi": "\u17a0\u17b7\u178e\u17d2\u178c\u17bc", + "hu": "\u17a0\u17bb\u1784\u1782\u17d2\u179a\u17b8", + "nl": "\u17a0\u17bb\u179b\u17d2\u179b\u1784\u17cb", + "ha": "\u17a0\u17bc\u179f\u17b6", + "ht": "\u17a0\u17c3\u1791\u17b8", + "gu": "\u17a0\u17d2\u1780\u17bb\u1799\u17c9\u17b6\u179a\u17b6\u1791\u17b8", + "gl": "\u17a0\u17d2\u1782\u17b6\u179b\u17b8\u179f\u17d2\u1799\u17b6\u1793", + "gn": "\u17a0\u17d2\u1782\u17bc\u179a\u17c9\u17b6\u1793\u17b8", + "fo": "\u17a0\u17d2\u179c\u17b6\u179a\u17bc\u179f", + "fj": "\u17a0\u17ca\u17d2\u179c\u17b8\u1787\u17b8", + "fil": "\u17a0\u17d2\u179c\u17b8\u179b\u17b8\u1796\u17b8\u1793", + "fi": "\u17a0\u17d2\u179c\u17b6\u17c6\u1784\u17a1\u1784\u17cb", + "fy": "\u17a0\u17d2\u179c\u17d2\u179a\u17b8\u179f\u17ca\u17b6\u1793\u1781\u17b6\u1784\u179b\u17b7\u1785", + "ka": "\u17a0\u17d2\u179f\u1780\u200b\u17a0\u17d2\u179f\u17ca\u17b8", + "lv": "\u17a1\u17b6\u178f\u179c\u17b8\u1799\u17c9\u17b6", + "la": "\u17a1\u17b6\u178f\u17c6\u17b6\u1784", + "lo": "\u17a1\u17b6\u179c", + "en": "\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f", + "en_CA": "\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f \u1780\u17b6\u178e\u17b6\u178a\u17b6", + "en_GB": "\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f \u1785\u1780\u17d2\u179a\u1797\u1796\u200b\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f", + "en_US": "\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f \u17a2\u17b6\u1798\u17c1\u179a\u17b7\u1780", + "en_AU": "\u17a2\u1784\u17cb\u1782\u17d2\u179b\u17c1\u179f \u17a2\u17bc\u179f\u17d2\u178f\u17d2\u179a\u17b6\u179b\u17b8", + "ab": "\u17a2\u17b6\u1794\u17cb\u1781\u17b6\u17a0\u17ca\u17d2\u179f\u17b6\u1793", + "am": "\u17a2\u17b6\u1798\u17a0\u17b6\u179a\u17b8\u1785", + "hy": "\u17a2\u17b6\u179a\u1798\u17c1\u1793\u17b8", + "ar": "\u17a2\u17b6\u179a\u17c9\u17b6\u1794\u17cb", + "ar_001": "\u17a2\u17b6\u179a\u17c9\u17b6\u1794\u17cb\u200b\u179f\u17d2\u178f\u1784\u17cb\u178a\u17b6\u179a\u200b\u1791\u17c6\u1793\u17be\u1794", + "sq": "\u17a2\u17b6\u179b\u17cb\u1794\u17b6\u1793\u17b8", + "de": "\u17a2\u17b6\u179b\u17d2\u179b\u17ba\u1798\u17c9\u1784\u17cb", + "gsw": "\u17a2\u17b6\u179b\u17d2\u179b\u17ba\u1798\u17c9\u1784 \u179f\u17d2\u179c\u17b8\u179f", + "de_CH": "\u17a2\u17b6\u179b\u17d2\u179b\u17ba\u1798\u17c9\u1784\u17cb \u179f\u17d2\u179c\u17b8\u179f", + "de_AT": "\u17a2\u17b6\u179b\u17d2\u179b\u17ba\u1798\u17c9\u1784\u17cb \u17a2\u17bc\u1791\u17d2\u179a\u17b8\u179f", + "as": "\u17a2\u17b6\u179f\u17b6\u1798\u17b8\u179f", + "af": "\u17a2\u17b6\u17a0\u17d2\u179c\u17d2\u179a\u17b8\u1780\u17b6\u17a2\u17b6\u1793", + "az": "\u17a2\u17b6\u17a0\u17ca\u17d2\u179f\u17c2\u179a\u1794\u17c2\u17a0\u17d2\u179f\u1784\u17cb", + "id": "\u17a5\u178e\u17d2\u178c\u17bc\u178e\u17c1\u179f\u17ca\u17b8", + "ig": "\u17a2\u17ca\u17b8\u1780\u1794\u17bc", + "it": "\u17a2\u17ca\u17b8\u178f\u17b6\u179b\u17b8", + "he": "\u17a2\u17ca\u17b8\u179f\u17d2\u179a\u17b6\u17a2\u17c2\u179b", + "is": "\u17a2\u17ca\u17b8\u179f\u17d2\u179b\u1784\u17cb", + "uk": "\u17a2\u17ca\u17bb\u1799\u1780\u17d2\u179a\u17c2\u1793", + "ug": "\u17a2\u17ca\u17bb\u1799\u17a0\u17d2\u1782\u17ba\u179a", + "ur": "\u17a2\u17ca\u17bc\u179a\u178c\u17bc", + "or": "\u17a2\u17bc\u179a\u17b8\u1799\u17c9\u17b6", + "uz": "\u17a2\u17ca\u17bc\u17a0\u17d2\u179f\u1794\u17c1\u1782\u17b8\u179f\u17d2\u178f\u1784\u17cb", + "ga": "\u17a2\u17c0\u179a\u17a1\u1784\u17cb", + "et": "\u17a2\u17c1\u179f\u17d2\u178f\u17bc\u1793\u17b8", + "es": "\u17a2\u17c1\u179f\u17d2\u1794\u17c9\u17b6\u1789", + "es_419": "\u17a2\u17c1\u179f\u17d2\u1794\u17c9\u17b6\u1789 \u17a2\u17b6\u1798\u17c1\u179a\u17b8\u1780\u17a1\u17b6\u178f\u17b6\u17c6\u1784", + "es_ES": "\u17a2\u17c1\u179f\u17d2\u1794\u17c9\u17b6\u1789 \u17a2\u17ba\u179a\u17c9\u17bb\u1794", + "eo": "\u17a2\u17c1\u179f\u17d2\u1796\u17c1\u179a\u17c9\u17b6\u1793\u17cb\u178f\u17bc", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "afh": "Afrihili", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "ale": "Aleut", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "asa": "Asu", + "tzm": "Atlas Tamazight \u1780\u178e\u17d2\u178a\u17b6\u179b", + "cch": "Atsam", + "av": "Avaric", + "awa": "Awadhi", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bem": "Bemba", + "bez": "Bena", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brx": "Bodo", + "brh": "Brahui", + "bra": "Braj", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "fr_CA": "Canadian French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "Chiga", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "swc": "Congo Swahili", + "cop": "Coptic", + "kw": "Cornish", + "co": "Corsican", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula", + "frs": "Eastern Frisian", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "ebu": "Embu", + "egl": "Emilian", + "myv": "Erzya", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gag": "Gagauz", + "gan": "Gan Chinese", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "guz": "Gusii", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "smn": "Inari Sami", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiaq", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kea": "Kabuverdianu", + "kab": "Kabyle", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "Kalaallisut", + "kln": "Kalenjin", + "xal": "Kalmyk", + "kam": "Kamba", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "ki": "Kikuyu", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "kg": "Kongo", + "kok": "Konkani", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "nmg": "Kwasio", + "quc": "K\u02bciche\u02bc", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "dsb": "Lower Sorbian", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "luy": "Luyia", + "mde": "Maba", + "jmc": "Machame", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manx", + "arn": "Mapuche", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mas": "Masai", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta", + "es_MX": "Mexican Spanish", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "moh": "Mohawk", + "mdf": "Moksha", + "lol": "Mongo", + "mfe": "Morisyen", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "mua": "Mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "nqo": "N\u2019Ko", + "naq": "Nama", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "nd": "North Ndebele", + "frr": "Northern Frisian", + "nso": "Northern Sotho", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitan", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "om": "Oromo", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romany", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "rwk": "Rwa", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "saq": "Samburu", + "se": "Sami \u1797\u17b6\u1782\u200b\u1781\u17b6\u1784\u200b\u1787\u17be\u1784", + "sma": "Sami \u1797\u17b6\u1782\u200b\u1781\u17b6\u1784\u200b\u178f\u17d2\u1794\u17bc\u1784", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "Sango", + "sbp": "Sangu", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "ksb": "Shambala", + "shn": "Shan", + "sn": "Shona", + "ii": "Sichuan Yi", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "sms": "Skolt Sami", + "den": "Slave", + "xog": "Soga", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "st": "Southern Sotho", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "ss": "Swati", + "fr_CH": "Swiss French", + "syr": "Syriac", + "shi": "Tachelhit", + "tl": "Tagalog", + "ty": "Tahitian", + "dav": "Taita", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "twq": "Tasawaq", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetum", + "tig": "Tigre", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "hsb": "Upper Sorbian", + "vai": "Vai", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "Vunjo", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "zap": "Zapotec", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/ko-KR.json b/public/intl/language/ko-KR.json new file mode 100644 index 0000000..2962069 --- /dev/null +++ b/public/intl/language/ko-KR.json @@ -0,0 +1,611 @@ +{ + "gag": "\uac00\uac00\uc6b0\uc2a4\uc5b4", + "gaa": "\uac00\uc5b4", + "gay": "\uac00\uc694\uc5b4", + "lg": "\uac04\ub2e4\uc5b4", + "gl": "\uac08\ub9ac\uc2dc\uc544\uc5b4", + "grb": "\uac8c\ub974\ubcf4\uc5b4", + "gez": "\uac8c\uc774\uc988\uc5b4", + "goh": "\uace0\ub300 \uace0\uc9c0 \ub3c5\uc77c\uc5b4", + "ang": "\uace0\ub300 \uc601\uc5b4", + "peo": "\uace0\ub300 \ud398\ub974\uc2dc\uc544\uc5b4", + "fro": "\uace0\ub300 \ud504\ub791\uc2a4\uc5b4", + "pro": "\uace0\ub300 \ud504\ub85c\ubc29\uc2a4\uc5b4", + "gor": "\uace0\ub860\ud0c8\ub85c\uc5b4", + "bbj": "\uace0\ub9d0\ub77c\uc5b4", + "gom": "\uace0\uc544 \ucf58\uce78\uc5b4", + "de_CH": "\uace0\uc9c0 \ub3c5\uc77c\uc5b4 (\uc2a4\uc704\uc2a4)", + "hsb": "\uace0\uc9c0 \uc18c\ub974\ube44\uc544\uc5b4", + "got": "\uace0\ud2b8\uc5b4", + "gon": "\uace4\ub514\uc5b4", + "gn": "\uacfc\ub77c\ub2c8\uc5b4", + "cu": "\uad50\ud68c \uc2ac\ub77c\ube0c\uc5b4", + "guz": "\uad6c\uc2dc\uc5b4", + "gu": "\uad6c\uc790\ub77c\ud2b8\uc5b4", + "el": "\uadf8\ub9ac\uc2a4\uc5b4", + "grc": "\uadf8\ub9ac\uc2a4\uc5b4, \uace0\ub300", + "kl": "\uadf8\ub9b0\ub780\ub4dc\uc5b4", + "gba": "\uadf8\ubc14\uc57c\uc5b4", + "gwi": "\uadf8\uc704\uce5c\uc5b4", + "glk": "\uae38\ub77c\ud0a4\uc5b4", + "kaj": "\uae4c\uaf2c\ud1a0\ub044\uc5b4", + "naq": "\ub098\ub9c8\uc5b4", + "nv": "\ub098\ubc14\ud638\uc5b4", + "na": "\ub098\uc6b0\ub8e8\uc5b4", + "nap": "\ub098\ud3f4\ub9ac\uc5b4", + "sma": "\ub0a8\ubd80 \uc0ac\ubbf8\uc5b4", + "alt": "\ub0a8\ubd80 \uc54c\ud0c0\uc774\uc5b4", + "nr": "\ub0a8\ubd80 \uc740\ub370\ubca8\ub808\uc5b4", + "azb": "\ub0a8\uc544\uc81c\ub974\ubc14\uc774\uc794\uc5b4", + "nl": "\ub124\ub35c\ub780\ub4dc\uc5b4", + "new": "\ub124\uc640\ub974\uc5b4", + "nwc": "\ub124\uc640\ub974\uc5b4 (\uace0\uc804)", + "ne": "\ub124\ud314\uc5b4", + "nog": "\ub178\uac00\uc774\uc5b4", + "non": "\ub178\ub974\uc6e8\uc774, \uace0\ub300", + "no": "\ub178\ub974\uc6e8\uc774\uc5b4", + "nn": "\ub178\ub974\uc6e8\uc774\uc5b4(\ub2c8\ub178\ub974\uc2a4\ud06c)", + "nb": "\ub178\ub974\uc6e8\uc774\uc5b4(\ubcf4\ud06c\ub9d0)", + "nus": "\ub204\uc5d0\ub974\uc5b4", + "nyo": "\ub274\ub85c\uc5b4", + "sba": "\ub290\uac10\ubc14\uc774\uc5b4", + "nnh": "\ub290\uae30\uc5e0\ubcf8\uc5b4", + "ng": "\ub290\ub3d9\uac00\uc5b4", + "nzi": "\ub290\uc9c0\ub9c8\uc5b4", + "nia": "\ub2c8\uc544\uc2a4\uc5b4", + "ny": "\ub2c8\uc548\uc790\uc5b4; \uce58\uce04\uc5b4; \uce04\uc5b4", + "nyn": "\ub2c8\uc548\ucf5c\uc5b4", + "nym": "\ub2c8\uc554\uc6e8\uc9c0\uc5b4", + "niu": "\ub2c8\uc6e8\uc5b8\uc5b4", + "dar": "\ub2e4\ub974\uadf8\uc640\uc5b4", + "dzg": "\ub2e4\uc7a5\uac00\uc5b4", + "mul": "\ub2e4\uc911 \uc5b8\uc5b4", + "dak": "\ub2e4\ucf54\ud0c0\uc5b4", + "da": "\ub374\ub9c8\ud06c\uc5b4", + "del": "\ub378\ub77c\uc6e8\uc5b4\uc5b4", + "dgr": "\ub3c4\uadf8\ub9ac\ube0c\uc5b4", + "doi": "\ub3c4\uadf8\ub9ac\uc5b4", + "de": "\ub3c5\uc77c\uc5b4", + "gsw": "\ub3c5\uc77c\uc5b4(\uc2a4\uc704\uc2a4)", + "frs": "\ub3d9\ubd80 \ud504\ub9ac\uc2ac\ub780\ub4dc\uc5b4", + "dua": "\ub4dc\uc640\ub77c\uc5b4", + "dyu": "\ub4dc\uc728\ub77c\uc5b4", + "dv": "\ub514\ubca0\ud788\uc5b4", + "din": "\ub529\uce74\uc5b4", + "lad": "\ub77c\ub514\ub178\uc5b4", + "rar": "\ub77c\ub85c\ud1b5\uac00\uc5b4", + "lo": "\ub77c\uc624\uc5b4", + "raj": "\ub77c\uc790\uc2a4\ud0c4\uc5b4", + "lkt": "\ub77c\ucf54\ud0c0\uc5b4", + "lv": "\ub77c\ud2b8\ube44\uc544\uc5b4", + "la": "\ub77c\ud2f4\uc5b4", + "rap": "\ub77c\ud30c\ub274\uc774", + "lah": "\ub77c\ud55c\ub2e4\uc5b4", + "lam": "\ub78c\ubc14\uc5b4", + "lag": "\ub791\uae30\uc5b4", + "ru": "\ub7ec\uc2dc\uc544\uc5b4", + "lez": "\ub808\uc988\uae30\uc548\uc5b4", + "rm": "\ub808\ud1a0\ub85c\ub9cc\uc5b4", + "jbo": "\ub85c\ubc18\uc5b4", + "loz": "\ub85c\uc9c0\uc5b4", + "rof": "\ub86c\ubcf4\uc5b4", + "ro": "\ub8e8\ub9c8\ub2c8\uc544\uc5b4", + "lua": "\ub8e8\ubc14-\ub8f0\ub8e8\uc544\uc5b4", + "lu": "\ub8e8\ubc14-\uce74\ud0c4\uac00\uc5b4", + "lus": "\ub8e8\uc0e4\uc774\uc5b4", + "rue": "\ub8e8\uc2e0\uc5b4", + "luy": "\ub8e8\uc57c\uc5b4", + "luo": "\ub8e8\uc624\uc5b4", + "lui": "\ub8e8\uc774\uc138\ub178\uc5b4", + "lb": "\ub8e9\uc148\ubd80\ub974\ud06c\uc5b4", + "lun": "\ub8ec\ub2e4\uc5b4", + "rn": "\ub8ec\ub514\uc5b4", + "smj": "\ub8f0\ub808 \uc0ac\ubbf8\uc5b4", + "rwk": "\ub974\uc640\uc5b4", + "rw": "\ub974\uc644\ub2e4\uc5b4", + "lt": "\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4", + "li": "\ub9bc\ubc84\uac70\uc5b4", + "ln": "\ub9c1\uac08\ub77c\uc5b4", + "lfn": "\ub9c1\uad6c\uc544 \ud504\ub791\uce74 \ub178\ubc14", + "mag": "\ub9c8\uac00\ud788", + "mni": "\ub9c8\ub2c8\ud478\ub9ac\uc5b4", + "mad": "\ub9c8\ub450\ub77c\uc5b4", + "mr": "\ub9c8\ub77c\ud2f0\uc5b4", + "mwr": "\ub9c8\ub974\uc640\ub9ac\uc5b4", + "chm": "\ub9c8\ub9ac\uc5b4", + "mde": "\ub9c8\ubc14\uc5b4", + "mas": "\ub9c8\uc0ac\uc774\uc5b4", + "mh": "\ub9c8\uc15c\uc81c\ub3c4\uc5b4", + "mi": "\ub9c8\uc624\ub9ac\uc5b4", + "mai": "\ub9c8\uc774\ud2f8\ub9ac", + "mzn": "\ub9c8\uc794\ub370\ub77c\ub2c8\uc5b4", + "jmc": "\ub9c8\ucc28\uba54\uc5b4", + "mak": "\ub9c8\uce74\uc0ac\uc5b4", + "mk": "\ub9c8\ucf00\ub3c4\ub2c8\uc544\uc5b4", + "kde": "\ub9c8\ucf58\ub370\uc5b4", + "mgh": "\ub9c8\ud06c\ud6c4\uc640-\uba54\ud1a0\uc5b4", + "maf": "\ub9c8\ud30c\uc5b4", + "mdr": "\ub9cc\ub2e4\ub974\uc5b4", + "man": "\ub9cc\ub529\uace0\uc5b4", + "mnc": "\ub9cc\uc8fc\uc5b4", + "mg": "\ub9d0\ub77c\uac00\uc2dc\uc5b4", + "ml": "\ub9d0\ub77c\uc584\ub78c\uc5b4", + "ms": "\ub9d0\ub808\uc774\uc5b4", + "gv": "\ub9f9\ud06c\uc2a4\uc5b4", + "byv": "\uba54\ub460\ubc14\uc5b4", + "mer": "\uba54\ub8e8\uc5b4", + "mgo": "\uba54\ud0c0\uc5b4", + "men": "\uba58\ub370\uc5b4", + "ary": "\ubaa8\ub85c\ucf54 \uc544\ub78d\uc5b4", + "mfe": "\ubaa8\ub9ac\uc2a4\uc580\uc5b4", + "mos": "\ubaa8\uc2dc\uc5b4", + "mdf": "\ubaa8\ud06c\uc0e4\uc5b4", + "moh": "\ubaa8\ud638\ud06c\uc5b4", + "ro_MD": "\ubab0\ub3c4\ubc14\uc5b4", + "mt": "\ubab0\ud0c0\uc5b4", + "mn": "\ubabd\uace0\uc5b4", + "lol": "\ubabd\uad6c\uc5b4", + "mua": "\ubb38\ub2f9\uc5b4", + "min": "\ubbf8\ub0ad\uce74\ubc14\uc6b0", + "mwl": "\ubbf8\ub780\ub370\uc5b4", + "mye": "\ubbf8\uc608\ub124\uc5b4", + "mic": "\ubbf8\ud06c\ub9e5\uc5b4", + "bax": "\ubc14\ubb38\uc5b4", + "bas": "\ubc14\uc0ac\uc5b4", + "ba": "\ubc14\uc288\ud0a4\ub974\uc5b4", + "eu": "\ubc14\uc2a4\ud06c\uc5b4", + "vai": "\ubc14\uc774\uc5b4", + "bfd": "\ubc14\ud478\ud2b8\uc5b4", + "ksf": "\ubc14\ud53c\uc544\uc5b4", + "bal": "\ubc1c\ub8e8\uce58\uc5b4", + "ban": "\ubc1c\ub9ac\uc5b4", + "bm": "\ubc24\ubc14\ub77c\uc5b4", + "my": "\ubc84\ub9c8\uc5b4", + "bez": "\ubca0\ub098\uc5b4", + "bej": "\ubca0\uc790\uc5b4", + "vi": "\ubca0\ud2b8\ub0a8\uc5b4", + "ve": "\ubca4\ub2e4\uc5b4", + "be": "\ubca8\ub77c\ub8e8\uc2a4\uc5b4", + "bem": "\ubcb0\ubc14\uc5b4", + "bn": "\ubcb5\uace8\uc5b4", + "brx": "\ubcf4\ub3c4\uc5b4", + "bs": "\ubcf4\uc2a4\ub2c8\uc544\uc5b4", + "vot": "\ubcf4\ud2f1\uc5b4", + "vo": "\ubcfc\ub77c\ud4cc\ud06c\uc5b4", + "bug": "\ubd80\uae30\uc5b4", + "bua": "\ubd80\ub9ac\uc544\ud0c0", + "se": "\ubd81\ubd80 \uc0ac\ubbf8\uc5b4", + "nd": "\ubd81\ubd80 \uc740\ub370\ubca8\ub808\uc5b4", + "frr": "\ubd81\ubd80 \ud504\ub9ac\uc2ac\ub780\ub4dc\uc5b4", + "vun": "\ubd84\uc870\uc5b4", + "bg": "\ubd88\uac00\ub9ac\uc544\uc5b4", + "bum": "\ubd88\ub8e8\uc5b4", + "bra": "\ube0c\ub77c\uc9c0\uc5b4", + "brh": "\ube0c\ub77c\ud6c4\uc774\uc5b4", + "br": "\ube0c\ub974\ud0c0\ub274\uc5b4", + "byn": "\ube0c\ub9b0\uc5b4", + "zbl": "\ube14\ub9ac\uc2a4 \uc2ec\ubcfc", + "bin": "\ube44\ub2c8\uc5b4", + "bi": "\ube44\uc2ac\ub77c\ub9c8\uc5b4", + "bik": "\ube44\ucf5c\uc5b4", + "sc": "\uc0ac\ub974\ub514\ub2c8\uc544\uc5b4", + "sam": "\uc0ac\ub9c8\ub9ac\uc544 \uc544\ub78d\uc5b4", + "sm": "\uc0ac\ubaa8\uc544\uc5b4", + "sas": "\uc0ac\uc0ac\ud06c\uc5b4", + "zap": "\uc0ac\ud3ec\ud14c\ud06c\uc5b4", + "ssy": "\uc0ac\ud638\uc5b4", + "sg": "\uc0b0\uace0\uc5b4", + "sad": "\uc0b0\ub2e4\uc6e8\uc5b4", + "sa": "\uc0b0\uc2a4\ud06c\ub9ac\ud2b8\uc5b4", + "sat": "\uc0b0\ud0c8\ub9ac\uc5b4", + "saq": "\uc0bc\ubd80\ub8e8\uc5b4", + "sbp": "\uc0c1\uad6c\uc5b4", + "chy": "\uc0e4\uc774\uc5d4\uc5b4", + "shn": "\uc0e8\uc5b4", + "ksb": "\uc0f4\ubc1c\ub77c\uc5b4", + "mrj": "\uc11c\ubd80 \ub9c8\ub9ac\uc5b4", + "seh": "\uc138\ub098\uc5b4", + "see": "\uc138\ub124\uce74\uc5b4", + "srr": "\uc138\ub808\ub974\uc5b4", + "sh": "\uc138\ub974\ube44\uc544-\ud06c\ub85c\uc544\ud2f0\uc544\uc5b4", + "sr": "\uc138\ub974\ube44\uc544\uc5b4", + "ceb": "\uc138\ubd80\uc544\ub178\uc5b4", + "tn": "\uc138\uce20\uc640\ub098\uc5b4", + "sel": "\uc140\ucfe0\ud504\uc5b4", + "xog": "\uc18c\uac00\uc5b4", + "sog": "\uc18c\uadf8\ub514\uc5d4\uc5b4", + "snk": "\uc18c\ub2cc\ucf00\uc5b4", + "ckb": "\uc18c\ub77c\ub2c8 \ucfe0\ub974\ub4dc\uc5b4", + "so": "\uc18c\ub9d0\ub9ac\uc544\uc5b4", + "st": "\uc18c\ud1a0\uc5b4 (\ub0a8\ubd80)", + "nso": "\uc18c\ud1a0\uc5b4 (\ubd81\ubd80)", + "sn": "\uc1fc\ub098\uc5b4", + "sux": "\uc218\uba54\ub974\uc5b4", + "sus": "\uc218\uc218\uc5b4", + "suk": "\uc218\ucfe0\ub9c8\uc871\uc5b4", + "su": "\uc21c\ub2e4\uc5b4", + "srn": "\uc2a4\ub77c\ub09c \ud1b5\uac00\uc5b4", + "si": "\uc2a4\ub9ac\ub791\uce74\uc5b4", + "sw": "\uc2a4\uc640\ud790\ub9ac\uc5b4", + "sv": "\uc2a4\uc6e8\ub374\uc5b4", + "gd": "\uc2a4\ucf54\ud2c0\ub79c\ub4dc \uac8c\uc77c\uc5b4", + "sco": "\uc2a4\ucf54\ud2c0\ub79c\ub4dc\uc5b4", + "sms": "\uc2a4\ucf5c\ud2b8 \uc0ac\ubbf8\uc5b4", + "es": "\uc2a4\ud398\uc778\uc5b4", + "den": "\uc2ac\ub77c\ube0c\uc5b4", + "sk": "\uc2ac\ub85c\ubc14\ud0a4\uc544\uc5b4", + "sl": "\uc2ac\ub85c\ubca0\ub2c8\uc544\uc5b4", + "sid": "\uc2dc\ub2e4\ubaa8\uc5b4", + "syr": "\uc2dc\ub9ac\uc544\uc5b4", + "syc": "\uc2dc\ub9ac\uc544\uc5b4 (\uace0\uc804)", + "ss": "\uc2dc\uc2a4\uc640\ud2f0\uc5b4", + "scn": "\uc2dc\uce60\ub9ac\uc544\uc5b4", + "bla": "\uc2dd\uc2dc\uce74\uc5b4", + "sd": "\uc2e0\ub514\uc5b4", + "ii": "\uc4f0\ucd28 \uc774\uc5b4", + "agq": "\uc544\uadf8\ud584\uc5b4", + "ady": "\uc544\ub2e5\ud5e4\uc5b4", + "ada": "\uc544\ub2f9\uba54\uc5b4", + "an": "\uc544\ub77c\uace4\uc5b4", + "arw": "\uc544\ub77c\uc640\ud06c\uc5b4", + "arn": "\uc544\ub77c\uc6b0\uce78\uc5b4", + "arp": "\uc544\ub77c\ud30c\ud638\uc5b4", + "arc": "\uc544\ub78c\uc5b4", + "ar": "\uc544\ub78d\uc5b4", + "rup": "\uc544\ub85c\ub9c8\ub2c8\uc544\uc5b4", + "hy": "\uc544\ub974\uba54\ub2c8\uc544\uc5b4", + "av": "\uc544\ubc14\ub9ad\uc5b4", + "ae": "\uc544\ubca0\uc2a4\ud0c0\uc5b4", + "cch": "\uc544\uc0bc\uc5b4", + "as": "\uc544\uc0d8\uc5b4", + "asa": "\uc544\uc218\uc5b4", + "ast": "\uc544\uc2a4\ud22c\ub9ac\uc544\uc5b4", + "awa": "\uc544\uc640\ud788\uc5b4", + "ain": "\uc544\uc774\ub204\uc5b4", + "ay": "\uc544\uc774\ub9c8\ub77c\uc5b4", + "is": "\uc544\uc774\uc2ac\ub780\ub4dc\uc5b4", + "ht": "\uc544\uc774\ud2f0\uc5b4", + "sga": "\uc544\uc77c\ub79c\ub4dc, \uace0\ub300", + "ga": "\uc544\uc77c\ub79c\ub4dc\uc5b4", + "mga": "\uc544\uc77c\ub79c\ub4dc\uc5b4, \uc911\uc138", + "az": "\uc544\uc81c\ub974\ubc14\uc774\uc794\uc5b4", + "ace": "\uc544\uccb4\uc5b4", + "akk": "\uc544\uce74\ub4dc\uc5b4", + "ak": "\uc544\uce78\uc5b4", + "ach": "\uc544\ucf5c\ub9ac\uc5b4", + "bss": "\uc544\ucfe0\uc988\uc5b4", + "aa": "\uc544\ud30c\ub974\uc5b4", + "af": "\uc544\ud504\ub9ac\uce78\uc2a4\uc5b4", + "afh": "\uc544\ud504\ub9ac\ud788\ub9ac\uc5b4", + "und": "\uc54c \uc218 \uc5c6\ub294 \uc5b8\uc5b4", + "ale": "\uc54c\ub958\ud2b8\uc5b4", + "sq": "\uc54c\ubc14\ub2c8\uc544\uc5b4", + "arq": "\uc54c\uc81c\ub9ac \uc544\ub78d\uc5b4", + "am": "\uc554\ud558\ub77c\uc5b4", + "ab": "\uc555\uce74\uc988\uc5b4", + "anp": "\uc559\uac00\uc5b4", + "yao": "\uc57c\uc624\uc871\uc5b4", + "sah": "\uc57c\ud050\ud2b8\uc5b4", + "yap": "\uc58d\ud398\uc138\uc5b4", + "yav": "\uc591\ubcf8\uc5b4", + "root": "\uc5b4\uadfc", + "zxx": "\uc5b8\uc5b4 \uad00\ub828 \ub0b4\uc6a9 \uc5c6\uc74c", + "et": "\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4", + "eo": "\uc5d0\uc2a4\ud398\ub780\ud1a0\uc5b4", + "ee": "\uc5d0\uc6e8\uc5b4", + "elx": "\uc5d8\ub78c\uc5b4", + "myv": "\uc5d8\uc988\uc57c\uc5b4", + "ebu": "\uc5e0\ubd80\uc5b4", + "en": "\uc601\uc5b4", + "en_GB": "\uc601\uc5b4 (\uc601\uad6d\uc2dd)", + "en_CA": "\uc601\uc5b4 (\uce90\ub098\ub2e4)", + "enm": "\uc601\uc5b4, \uc911\uc138", + "en_AU": "\uc601\uc5b4(\ud638\uc8fc)", + "ybb": "\uc618\ubc14\uc5b4", + "om": "\uc624\ub85c\ubaa8\uc5b4", + "or": "\uc624\ub9ac\uc57c\uc5b4", + "osa": "\uc624\uc138\uc774\uc9c0\uc5b4", + "os": "\uc624\uc138\ud2b8\uc5b4", + "oj": "\uc624\uc9c0\ube0c\uc6e8\uc774\uc5b4", + "oc": "\uc624\ud06c\uc5b4", + "wo": "\uc62c\ub85c\ud504\uc5b4", + "wal": "\uc640\ub77c\ubaa8\uc5b4", + "war": "\uc640\ub77c\uc774\uc5b4", + "was": "\uc640\uc1fc\uc5b4", + "wa": "\uc648\ub860\uc5b4", + "yo": "\uc694\ub8e8\ubc14\uc5b4", + "udm": "\uc6b0\ub4dc\ub9d0\ud2b8\uc5b4", + "ur": "\uc6b0\ub974\ub450\uc5b4", + "uz": "\uc6b0\uc988\ubca0\ud06c\uc5b4", + "uk": "\uc6b0\ud06c\ub77c\uc774\ub098\uc5b4", + "wae": "\uc6d4\uc800\uc5b4", + "cy": "\uc6e8\uc77c\uc2a4\uc5b4", + "ug": "\uc704\uad6c\ub974\uc5b4", + "uga": "\uc720\uac00\ub9ac\ud2f1\uc5b4", + "jrb": "\uc720\ub300-\uc544\ub77c\ube44\uc544\uc5b4", + "jpr": "\uc720\ub300-\ud398\ub974\uc2dc\uc544\uc5b4", + "es_ES": "\uc720\ub7fd\uc2dd \uc2a4\ud398\uc778\uc5b4", + "pt_PT": "\uc720\ub7fd\uc2dd \ud3ec\ub974\ud22c\uac08\uc5b4", + "umb": "\uc724\ubc88\ub450\uc5b4", + "jgo": "\uc751\uacf0\ubc14\uc5b4", + "nqo": "\uc751\ucf54\uc5b4", + "ig": "\uc774\uadf8\ubcf4\uc5b4", + "smn": "\uc774\ub098\ub9ac \uc0ac\ubbf8\uc5b4", + "ik": "\uc774\ub204\ud53c\uc544\ud06c\uc5b4", + "iu": "\uc774\ub205\ud2f0\ud22c\ud2b8\uc5b4", + "io": "\uc774\ub3c4\uc5b4", + "yi": "\uc774\ub514\uc2dc\uc5b4", + "ilo": "\uc774\ub85c\ucf54\uc5b4", + "iba": "\uc774\ubc18\uc5b4", + "ibb": "\uc774\ube44\ube44\uc624\uc5b4", + "ewo": "\uc774\uc6d0\ub3c4\uc5b4", + "arz": "\uc774\uc9d1\ud2b8 \uc544\ub78d\uc5b4", + "egy": "\uc774\uc9d1\ud2b8\uc5b4 (\uace0\ub300)", + "eka": "\uc774\uce74\uc8fd\uc5b4", + "it": "\uc774\ud0c8\ub9ac\uc544\uc5b4", + "efi": "\uc774\ud53d\uc5b4", + "inh": "\uc778\uadc0\uc2dc\uc5b4", + "id": "\uc778\ub3c4\ub124\uc2dc\uc544\uc5b4", + "ia": "\uc778\ud14c\ub974\ub9c1\uad6c\uc544 (\uad6d\uc81c\ubcf4\uc870\uc5b4\ud611\ud68c)", + "ie": "\uc778\ud14c\ub974\ub9c1\uad6c\uc5d0", + "ja": "\uc77c\ubcf8\uc5b4", + "dje": "\uc790\ub974\ub9c8\uc5b4", + "jv": "\uc790\ubc14\uc5b4", + "zza": "\uc790\uc790\uc5b4", + "nds": "\uc800\uc9c0 \ub3c5\uc77c\uc5b4", + "dsb": "\uc800\uc9c0 \uc18c\ub974\ube44\uc544\uc5b4", + "zen": "\uc81c\ub098\uac00\uc5b4", + "gbz": "\uc870\ub85c\uc544\uc2a4\ud130 \ub2e4\ub9ac\uc5b4", + "ka": "\uc870\uc9c0\uc544\uc5b4", + "dyo": "\uc878\ub77c \ud3ec\ub2c8\uc5b4", + "dz": "\uc885\uce74\uc5b4", + "zun": "\uc8fc\ub2c8\uc5b4", + "za": "\uc8fc\uc559\uc5b4", + "zu": "\uc904\ub8e8\uc5b4", + "zh": "\uc911\uad6d\uc5b4", + "zh_Hans": "\uc911\uad6d\uc5b4(\uac04\uccb4)", + "zh_Hant": "\uc911\uad6d\uc5b4(\ubc88\uccb4)", + "es_419": "\uc911\ub0a8\ubbf8 \uc2a4\ud398\uc778\uc5b4", + "gmh": "\uc911\uc138 \uace0\uc9c0 \ub3c5\uc77c\uc5b4", + "dum": "\uc911\uc138 \ub124\ub35c\ub780\ub4dc\uc5b4", + "frm": "\uc911\uc138 \ud504\ub791\uc2a4\uc5b4", + "tzm": "\uc911\uc559\ubaa8\ub85c\ucf54 \ud0c0\ub9c8\uc9c0\ud2b8\uc5b4", + "rom": "\uc9d1\uc2dc\uc5b4", + "chg": "\ucc28\uac00\ud0c0\uc774\uc5b4", + "shu": "\ucc28\ub514\uc5b8 \uc544\ub77c\ube44\uc544\uc5b4", + "ch": "\ucc28\ubaa8\ub85c\uc5b4", + "tkr": "\ucc28\ud6c4\ub974\uc5b4", + "chr": "\uccb4\ub85c\ud0a4\uc5b4", + "ce": "\uccb4\uccb8\uc5b4", + "cs": "\uccb4\ucf54\uc5b4", + "cho": "\ucd09\ud1a0\uc5b4", + "ts": "\ucd1d\uac00\uc5b4", + "cv": "\ucd94\ubc14\uc2dc\uc5b4", + "chk": "\ucd94\ud06c\uc5b4", + "cgg": "\uce58\uac00\uc5b4", + "chn": "\uce58\ub204\ud06c\uc5b4\uc640 \uc601\uc5b4 \ud504\ub791\uc2a4\uc5b4\uc758 \ud63c\uc131\uc5b4", + "chb": "\uce58\ube0c\ucc28\uc5b4", + "chp": "\uce58\ud398\uc6b0\uc580", + "kbl": "\uce74\ub134\ubd80\uc5b4", + "cad": "\uce74\ub3c4\uc5b4", + "krc": "\uce74\ub77c\ucc60\uc774-\ubc1c\uce74\ub974\uc5b4", + "kaa": "\uce74\ub77c\uce7c\ud30c\ud06c\uc5b4", + "krl": "\uce74\ub810\ub9ac\uc57c\uc5b4", + "car": "\uce74\ub9ac\ube0c\uc5b4", + "kbd": "\uce74\ubc14\ub974\ub514\uc5b4", + "ks": "\uce74\uc288\ubbf8\ub974\uc5b4", + "csb": "\uce74\uc288\ube44\uc544\uc5b4", + "kha": "\uce74\uc2dc\uc5b4", + "kaw": "\uce74\uc704\uc5b4", + "cay": "\uce74\uc720\uac00\uc5b4", + "kk": "\uce74\uc790\ud750\uc5b4", + "kac": "\uce74\uce5c\uc5b4", + "kkj": "\uce74\ucf54\uc5b4", + "ca": "\uce74\ud0c8\ub85c\ub2c8\uc544\uc5b4", + "kn": "\uce78\ub098\ub2e4\uc5b4", + "kr": "\uce78\ub204\ub9ac\uc5b4", + "kln": "\uce7c\ub80c\uc9c4\uc5b4", + "xal": "\uce7c\ubbf8\ud06c\uc5b4", + "kam": "\uce84\ubc14\uc5b4", + "km": "\uce84\ubcf4\ub514\uc544\uc5b4", + "kab": "\ucee4\ubc14\uc77c\uc5b4", + "qu": "\ucf00\ucd94\uc544\uc5b4", + "kfo": "\ucf54\ub85c\uc5b4", + "co": "\ucf54\ub974\uc2dc\uce74\uc5b4", + "swb": "\ucf54\ubaa8\ub85c\uc5b4", + "kv": "\ucf54\ubbf8\uc5b4", + "koi": "\ucf54\ubbf8\ud398\ub974\uba00\ud06c\uc5b4", + "xh": "\ucf54\uc0ac\uc5b4", + "kos": "\ucf54\uc2a4\ub77c\uc774\uc5d4\uc5b4", + "khw": "\ucf54\uc640\ub974\uc5b4", + "khq": "\ucf54\uc774\ub77c \uce5c\ub2c8\uc5b4", + "ses": "\ucf54\uc774\uc57c\ubcf4\ub85c \uc138\ub2c8\uc5b4", + "kok": "\ucf54\uce74\ub2c8\uc5b4", + "kw": "\ucf58\uc6d4\uc5b4", + "ksh": "\ucf5c\ub85c\uadf8\ub2c8\uc548\uc5b4", + "bkm": "\ucf64\uc5b4", + "cop": "\ucf65\ud2b8\uc5b4", + "swc": "\ucf69\uace0 \uc2a4\uc640\ud790\ub9ac\uc5b4", + "kg": "\ucf69\uace0\uc5b4", + "ku": "\ucfe0\ub974\ub4dc\uc5b4", + "kru": "\ucfe0\ub974\ud06c\uc5b4", + "kum": "\ucfe0\ubbf9\uc5b4", + "kj": "\ucfe0\uc548\uc57c\ub9c8\uc5b4", + "kut": "\ucfe0\ud14c\ub124\uc5b4", + "hr": "\ud06c\ub85c\uc544\ud2f0\uc544\uc5b4", + "crh": "\ud06c\ub9ac\ubbfc \ud130\ud0a4\uc5b4; \ud06c\ub9ac\ubbfc \ud0c0\ud0c0\ub974\uc5b4", + "cr": "\ud06c\ub9ac\uc5b4", + "kea": "\ud06c\ub9ac\uc62c\uc5b4", + "mus": "\ud06c\ub9ac\ud06c\uc5b4", + "nmg": "\ud06c\uc640\uc2dc\uc624\uc5b4", + "kpe": "\ud06c\ud3a0\ub808\uc5b4", + "tlh": "\ud074\ub9c1\uc628\uc5b4", + "ky": "\ud0a4\ub974\uae30\uc2a4\uc5b4", + "gil": "\ud0a4\ub9ac\ubc14\uc2dc\uc5b4", + "quc": "\ud0a4\uccb4\uc5b4", + "ki": "\ud0a4\ucfe0\uc720\uc5b4", + "kmb": "\ud0b4\ubd84\ub450\uc5b4", + "tl": "\ud0c0\uac08\ub85c\uadf8\uc5b4", + "trv": "\ud0c0\ub85c\ucf54\uc5b4", + "tmh": "\ud0c0\ub9c8\uc139\uc5b4", + "ta": "\ud0c0\ubc00\uc5b4", + "twq": "\ud0c0\uc0ac\uc640\ud06c\uc5b4", + "shi": "\ud0c0\uc178\ud788\ud2b8\uc5b4", + "dav": "\ud0c0\uc774\ud0c0\uc5b4", + "tg": "\ud0c0\uc9c0\ud06c\uc5b4", + "tt": "\ud0c0\ud0c0\ub974\uc5b4", + "ty": "\ud0c0\ud788\ud2f0\uc5b4", + "tly": "\ud0c8\ub9ac\uc26c\uc5b4", + "th": "\ud0dc\uad6d\uc5b4", + "tr": "\ud130\ud0a4\uc5b4", + "ota": "\ud130\ud0a4\uc5b4, \uc624\uc2a4\ub9cc", + "ter": "\ud14c\ub808\ub178\uc5b4", + "teo": "\ud14c\uc870\uc5b4", + "tet": "\ud14c\ud23c\uc5b4", + "te": "\ud154\ub8e8\uad6c\uc5b4", + "tkl": "\ud1a0\ucf08\ub77c\uc6b0\uc81c\ub3c4\uc5b4", + "tpi": "\ud1a0\ud06c \ud53c\uc2e0\uc5b4", + "to": "\ud1b5\uac00\uc5b4", + "tog": "\ud1b5\uac00\uc5b4 (\ub2c8\uc544\uc0b4\ub79c\ub4dc)", + "tk": "\ud22c\ub974\ud06c\uba58\uc5b4", + "tvl": "\ud22c\ubc1c\ub8e8\uc5b4", + "tyv": "\ud22c\ube44\ub2c8\uc548\uc5b4", + "tum": "\ud23c\ubd80\uce74\uc5b4", + "aeb": "\ud280\ub2c8\uc9c0 \uc544\ub78d\uc5b4", + "tsi": "\ud2b8\uc2ec\uc2dc\uc548\uc5b4", + "tw": "\ud2b8\uc704\uc5b4", + "tli": "\ud2c0\ub9c1\uae43\uc871\uc5b4", + "tig": "\ud2f0\uadf8\ub808\uc5b4", + "ti": "\ud2f0\uadf8\ub9ac\ub0d0\uc5b4", + "bo": "\ud2f0\ubca0\ud2b8\uc5b4", + "tiv": "\ud2f0\ube44\uc5b4", + "kcg": "\ud2f0\uc58d\uc5b4", + "tem": "\ud300\ub2c8\uc5b4", + "pau": "\ud30c\ub77c\uc6b0\uc548\uc5b4", + "ps": "\ud30c\uc288\ud1a0\uc5b4", + "pap": "\ud30c\ud53c\uc544\uba3c\ud1a0\uc5b4", + "pag": "\ud310\uac00\uc2dc\ub09c\uc5b4", + "fat": "\ud310\ud2f0\uc5b4", + "pal": "\ud314\ub808\ube44\uc5b4", + "pi": "\ud314\ub9ac\uc5b4", + "pam": "\ud31c\ud321\uac00\uc5b4", + "fan": "\ud321\uadf8\uc5b4", + "pa": "\ud380\uc7a1\uc5b4", + "phn": "\ud398\ub2c8\ud0a4\uc544\uc5b4", + "fo": "\ud398\ub85c\uc5b4", + "fa": "\ud398\ub974\uc2dc\uc544\uc5b4", + "pt": "\ud3ec\ub974\ud22c\uac08\uc5b4", + "pt_BR": "\ud3ec\ub974\ud22c\uac08\uc5b4 (\ube0c\ub77c\uc9c8)", + "fon": "\ud3f0\uc5b4", + "pnt": "\ud3f0\ud2f1\uc5b4", + "pl": "\ud3f4\ub780\ub4dc\uc5b4", + "pon": "\ud3fc\ud398\uc774\uc5b4", + "zgh": "\ud45c\uc900 \ubaa8\ub85c\ucf54 \ud0c0\ub9c8\uc81c\ud06c\uc5b4", + "ff": "\ud480\ub77c\uc5b4", + "fr": "\ud504\ub791\uc2a4\uc5b4", + "fr_CH": "\ud504\ub791\uc2a4\uc5b4 (\uc2a4\uc704\uc2a4)", + "fr_CA": "\ud504\ub791\uc2a4\uc5b4 (\uce90\ub098\ub2e4)", + "fur": "\ud504\ub9ac\uc6b0\ub9ac\uc548\uc5b4", + "fy": "\ud504\ub9ac\uc9c0\uc544\uc5b4", + "nl_BE": "\ud50c\ub77c\ub9dd\uc5b4", + "hif": "\ud53c\uc9c0 \ud78c\ub514\uc5b4", + "fj": "\ud53c\uc9c0\uc5b4", + "fi": "\ud540\ub780\ub4dc\uc5b4", + "fil": "\ud544\ub9ac\ud540\uc5b4", + "haw": "\ud558\uc640\uc774\uc5b4", + "ha": "\ud558\uc6b0\uc0ac\uc5b4", + "hai": "\ud558\uc774\ub2e4\uc5b4", + "hit": "\ud558\ud0c0\uc774\ud2b8\uc5b4", + "ko": "\ud55c\uad6d\uc5b4", + "hu": "\ud5dd\uac00\ub9ac\uc5b4", + "hz": "\ud5e4\ub808\ub85c\uc5b4", + "hil": "\ud5e4\ub9ac\uac00\ub1ec\uc5b4", + "ar_001": "\ud604\ub300 \ud45c\uc900 \uc544\ub78d\uc5b4", + "bho": "\ud638\uc988\ud478\ub9ac\uc5b4", + "kho": "\ud638\ud0c4\uc5b4", + "hup": "\ud6c4\ud30c\uc5b4", + "ho": "\ud788\ub9ac \ubaa8\ud22c\uc5b4", + "hmn": "\ud788\ubab8\uc5b4", + "he": "\ud788\ube0c\ub9ac\uc5b4", + "hi": "\ud78c\ub514\uc5b4", + "akz": "Alabama", + "en_US": "American English", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "de_AT": "Austrian German", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "egl": "Emilian", + "ext": "Extremaduran", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mwv": "Mentawai", + "es_MX": "Mexican Spanish", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "fit": "Tornedalen Finnish", + "tsd": "Tsakonian", + "tcy": "Tulu", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic" +} diff --git a/public/intl/language/lt-LT.json b/public/intl/language/lt-LT.json new file mode 100644 index 0000000..0748e26 --- /dev/null +++ b/public/intl/language/lt-LT.json @@ -0,0 +1,611 @@ +{ + "zbl": "\u201eBliss\u201c simboli\u0173", + "ab": "abchaz\u0173", + "ace": "a\u010dinez\u0173", + "ada": "adangm\u0173", + "ady": "adyg\u0117j\u0173", + "aa": "afar\u0173", + "afh": "afrihili", + "af": "afrikan\u0173", + "agq": "aghem\u0173", + "ay": "aimar\u0173", + "ain": "ain\u0173", + "ga": "airi\u0173", + "akk": "akadian\u0173", + "ak": "akan\u0173", + "ach": "akoli\u0173", + "bss": "ak\u016bs\u0173", + "akz": "alabamie\u010di\u0173", + "sq": "alban\u0173", + "aln": "alban\u0173 kalbos geg\u0173 tarm\u0117", + "ale": "aleut\u0173", + "arq": "Al\u017eyro arab\u0173", + "ase": "Amerikos \u017eenkl\u0173 kalba", + "am": "amhar\u0173", + "anp": "angik\u0173", + "en": "angl\u0173", + "njo": "ao naga", + "ar": "arab\u0173", + "an": "aragones\u0173", + "arc": "aramaik\u0173", + "aro": "araon\u0173", + "arp": "arapah\u0173", + "arw": "aravak\u0173", + "hy": "arm\u0117n\u0173", + "rup": "aromani\u0173", + "frp": "Arpitano", + "as": "asam\u0173", + "ast": "asturian\u0173", + "asa": "asu", + "cch": "atsam\u0173", + "hsb": "auk\u0161tutini\u0173 sorb\u0173", + "en_AU": "Australijos angl\u0173", + "de_AT": "Austrijos vokie\u010di\u0173", + "awa": "avadhi", + "av": "avarik\u0173", + "ae": "avest\u0173", + "az": "azerbaid\u017eanie\u010di\u0173", + "bfq": "badaga", + "ksf": "baf\u0173", + "bfd": "bafut\u0173", + "bqi": "bakhtiari", + "ban": "balinez\u0173", + "be": "baltarusi\u0173", + "bal": "balu\u010di", + "bm": "bambar\u0173", + "bax": "bamun\u0173", + "bjn": "band\u017ear\u0173", + "eu": "bask\u0173", + "bas": "bas\u0173", + "ba": "ba\u0161kir\u0173", + "bbc": "batak toba", + "bho": "bau\u010dpuri", + "bar": "bavar\u0173", + "cu": "ba\u017enytin\u0117 slav\u0173", + "bej": "b\u0117j\u0173", + "bem": "bemb\u0173", + "bn": "bengal\u0173", + "bez": "ben\u0173", + "bew": "betavi", + "bik": "bikol\u0173", + "bin": "bini", + "my": "birmie\u010di\u0173", + "bi": "bislama", + "bpy": "Bi\u0161nuprijos", + "byn": "blin", + "brx": "bodo", + "bs": "bosni\u0173", + "dz": "botij\u0173", + "brh": "brahuj\u0173", + "bra": "braj\u0173", + "pt_BR": "Brazilijos portugal\u0173", + "br": "breton\u0173", + "bug": "buginez\u0173", + "bg": "bulgar\u0173", + "bum": "bulu", + "bua": "buriat\u0173", + "cps": "capiznon", + "ceb": "cebuan\u0173", + "esu": "centrin\u0117s Aliaskos jupik\u0173", + "dtp": "centrinio Dusuno", + "tzm": "Centrinio Maroko tamazit\u0173", + "shu": "chadian arab\u0173", + "za": "chuang", + "chg": "\u010dagat\u0173", + "chy": "\u010dajen\u0173", + "ch": "\u010damor\u0173", + "ce": "\u010de\u010d\u0117n\u0173", + "cs": "\u010dek\u0173", + "chr": "\u010deroki\u0173", + "chb": "\u010dib\u010da", + "cgg": "\u010dig\u0173", + "qug": "\u010cimboraso auk\u0161tum\u0173 ke\u010duj\u0173", + "chn": "\u010dinuk \u017eargonas", + "chp": "\u010dipv\u0117j\u0173", + "cv": "\u010diuva\u0161\u0173", + "cho": "\u010doktau", + "chk": "\u010dukes\u0173", + "dak": "dakot\u0173", + "da": "dan\u0173", + "jut": "dan\u0173 kalbos jut\u0173 tarm\u0117", + "dar": "dargva", + "dzg": "dazag\u0173", + "del": "delavero", + "en_GB": "Did\u017eiosios Britanijos angl\u0173", + "din": "dink\u0173", + "dyu": "dyul\u0173", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib\u0173", + "dua": "dual\u0173", + "dyo": "d\u017eiola-foni", + "efi": "efik", + "arz": "Egipto arab\u0173", + "eka": "ekajuk", + "elx": "elamit\u0173", + "ebu": "embu", + "nqo": "enko", + "myv": "erzyj\u0173", + "eo": "esperanto", + "et": "est\u0173", + "es_ES": "Europos ispan\u0173", + "pt_PT": "Europos portugal\u0173", + "ee": "evi\u0173", + "ewo": "evondo", + "fan": "fang", + "fat": "fanti", + "fo": "farer\u0173", + "hif": "Fid\u017eio hindi", + "fj": "fid\u017ei\u0173", + "fil": "filipinie\u010di\u0173", + "phn": "finikie\u010di\u0173", + "nl_BE": "flamand\u0173", + "fon": "fon", + "gur": "frafra", + "fur": "frulan", + "ff": "fulah\u0173", + "gaa": "ga", + "gag": "gaga\u016bz\u0173", + "gay": "gajo", + "gl": "galis\u0173", + "lg": "ganda", + "gba": "gbaja", + "bbj": "ghomal\u0173", + "glk": "gilaki", + "gez": "gyz", + "gom": "Goa konkani\u0173", + "gon": "gondi", + "gor": "gorontalo", + "got": "got\u0173", + "el": "graik\u0173", + "grb": "grebo", + "ka": "gruzin\u0173", + "gu": "gud\u017earat\u0173", + "guz": "gusi", + "gn": "gvarani\u0173", + "gwi": "gvi\u010dino", + "ht": "Hai\u010dio", + "hai": "haido", + "ha": "haus\u0173", + "haw": "havajie\u010di\u0173", + "he": "hebraj\u0173", + "hz": "herero", + "hil": "hiligainon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitit\u0173", + "hmn": "hmong", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "io": "ido", + "ig": "igb\u0173", + "ilo": "iloko", + "smn": "Inario sami\u0173", + "id": "indonezie\u010di\u0173", + "izh": "ingr\u0173", + "inh": "ingu\u0161\u0173", + "ie": "interkalba", + "ia": "interlingva", + "iu": "inukitut", + "ik": "inupiak", + "is": "island\u0173", + "es": "ispan\u0173", + "ext": "ispan\u0173 kalbos Ekstremad\u016bros tarm\u0117", + "it": "ital\u0173", + "egl": "ital\u0173 kalbos Emilijos tarm\u0117", + "pms": "ital\u0173 kalbos Pjemonto tarm\u0117", + "rgn": "ital\u0173 kalbos Romanijos tarm\u0117", + "sah": "jakut\u0173", + "jam": "Jamaikos kreol\u0173 angl\u0173", + "yav": "jangben\u0173", + "yao": "jao", + "yap": "japez\u0173", + "ja": "japon\u0173", + "jv": "javie\u010di\u0173", + "ybb": "jemb\u0173", + "yi": "jidi\u0161", + "yo": "jorub\u0173", + "kaj": "ju", + "jrb": "jud\u0117j\u0173 arab\u0173", + "jpr": "jud\u0117j\u0173 pers\u0173", + "en_US": "Jungtini\u0173 Valstij\u0173 angl\u0173", + "kbd": "kabardin\u0173", + "kac": "ka\u010din", + "cad": "kado", + "frc": "kad\u017eun\u0173 pranc\u016bz\u0173", + "cay": "kaij\u016bg\u0173", + "kgp": "kaingang", + "kkj": "kako", + "kl": "kalalisut", + "kln": "kalenjin\u0173", + "xal": "kalmuk\u0173", + "en_CA": "Kanados angl\u0173", + "fr_CA": "Kanados pranc\u016bz\u0173", + "kn": "kanad\u0173", + "kbl": "kanemb\u0173", + "kr": "kanuri", + "krc": "kara\u010diaj\u0173 balkarijos", + "kaa": "karakalpak\u0173", + "krl": "karel\u0173", + "car": "karib\u0173", + "kha": "kasi", + "ks": "ka\u0161myr\u0173", + "csb": "ka\u0161ub\u0173", + "ca": "katalon\u0173", + "kaw": "kavi", + "kk": "kazach\u0173", + "kab": "kebail\u0173", + "qu": "ke\u010duj\u0173", + "mul": "kelios kalbos", + "kam": "kemb\u0173", + "ken": "kenyang", + "km": "khmer\u0173", + "khw": "khovar\u0173", + "quc": "ki\u010di\u0173", + "ki": "kikuj\u0173", + "kmb": "kimbundu", + "krj": "kinaray-a", + "rw": "kinjaruand\u0173", + "zh": "kin\u0173", + "gan": "kin\u0173 kalbos dziangsi tarm\u0117", + "hak": "kin\u0173 kalbos hak\u0173 tarm\u0117", + "hsn": "kin\u0173 kalbos hunano tarm\u0117", + "yue": "kin\u0173 kalbos Kantono tarm\u0117", + "nan": "kin\u0173 kalbos piet\u0173 min\u0173 tarm\u0117", + "wuu": "kin\u0173 kalbos vu tarm\u0117", + "ky": "kirgiz\u0173", + "gil": "kiribati", + "kiu": "kirmanjki", + "lzh": "klasikin\u0117 kin\u0173", + "nwc": "klasikin\u0117 nevari", + "syc": "klasikin\u0117 sirie\u010di\u0173", + "tlh": "klingon\u0173", + "khq": "kojra \u010dini", + "ses": "kojraboro seni", + "ksh": "kologn\u0173", + "kv": "komi", + "koi": "komi\u0173-permi\u0173", + "swb": "Komor\u0173", + "bkm": "kom\u0173", + "kg": "Kongo", + "swc": "Kongo suahili\u0173", + "kok": "konkani\u0173", + "cop": "kopt\u0173", + "ko": "kor\u0117jie\u010di\u0173", + "kw": "korn\u0173", + "kfo": "koro", + "co": "korsikie\u010di\u0173", + "kos": "kosrean\u0173", + "xh": "kos\u0173", + "kho": "kotanez\u0173", + "avk": "kotava", + "kpe": "kpele", + "cr": "kry", + "mus": "kryk\u0173", + "crh": "Krymo turk\u0173", + "kri": "krio", + "hr": "kroat\u0173", + "kj": "kuaniama", + "kum": "kumik\u0173", + "ku": "kurd\u0173", + "kru": "kuruk", + "kut": "kutenai", + "nmg": "kvasi\u0173", + "lad": "ladino", + "lkt": "lakot\u0173", + "lam": "lamba", + "lah": "landa", + "lag": "langi", + "lo": "laosie\u010di\u0173", + "ltg": "latgali\u0173", + "lv": "latvi\u0173", + "lzz": "laz", + "pl": "lenk\u0173", + "lez": "lezgin\u0173", + "lt": "lietuvi\u0173", + "lij": "lig\u016br\u0173", + "li": "limburgi\u0161", + "lb": "liuksemburgie\u010di\u0173", + "liv": "lyvi\u0173", + "jbo": "loiban", + "lmo": "lombard\u0173", + "la": "lotyn\u0173", + "es_419": "Lotyn\u0173 Amerikos ispan\u0173", + "loz": "lozi", + "lu": "luba katanga", + "lua": "luba lulua", + "lui": "luiseno", + "luy": "luja", + "smj": "Lul\u0117jo sami\u0173", + "lun": "lunda", + "luo": "luo", + "mde": "mab\u0173", + "jmc": "ma\u010dam\u0173", + "mad": "madurez\u0173", + "maf": "maf\u0173", + "mag": "magahi", + "mai": "maithili", + "mak": "makasaro", + "mk": "makedon\u0173", + "kde": "makond\u0173", + "mgh": "makua-maeto", + "mg": "malagas\u0173", + "ml": "malajali\u0173", + "ms": "malajie\u010di\u0173", + "mt": "maltie\u010di\u0173", + "mnc": "man\u010du", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuri", + "mi": "maori\u0173", + "arn": "mapudungun\u0173", + "mr": "marat\u0173", + "chm": "mari", + "ary": "Maroko arab\u0173", + "mh": "Mar\u0161alo Sal\u0173", + "mwr": "marvari", + "mas": "masaj\u0173", + "mzn": "mazenderani\u0173", + "byv": "medumb\u0173", + "xmf": "megrel\u0173", + "es_MX": "Meksikos ispan\u0173", + "men": "mende", + "gv": "menie\u010di\u0173", + "mwv": "mentavai", + "mer": "mer\u0173", + "mgo": "meta", + "mic": "mikmak", + "min": "minankabu", + "mwl": "mirandez\u0173", + "lus": "mizo", + "mye": "mjen\u0173", + "moh": "mohok", + "mdf": "mok\u0161a", + "ro_MD": "moldav\u0173", + "lol": "mongo", + "mn": "mongol\u0173", + "mfe": "morisij\u0173", + "mos": "mosi", + "mua": "mundang\u0173", + "ttt": "musulmon\u0173 tat\u0173", + "naq": "nama", + "lfn": "naujoji frank\u0173 kalba", + "nn": "naujoji norveg\u0173", + "na": "naur\u0173", + "nv": "navaj\u0173", + "ng": "ndong\u0173", + "nap": "neapolie\u010di\u0173", + "ne": "nepalie\u010di\u0173", + "zxx": "n\u0117ra kalbinio turinio", + "new": "nevari", + "und": "ne\u017einoma kalba", + "ln": "ngal\u0173", + "sba": "ngambaj\u0173", + "nnh": "ngiemb\u016bn\u0173", + "jgo": "ngomb\u0173", + "nym": "niamvezi", + "ny": "nianja", + "nyn": "niankol\u0173", + "nia": "nias", + "tog": "niasa tongos", + "nyo": "nioro", + "niu": "niuen\u0173", + "yrl": "njengatu", + "nog": "nog\u0173", + "non": "norsu", + "nb": "Norvegijos ra\u0161ytin\u0117 \u2013 b\u016bkmol\u0173", + "no": "norveg\u0173", + "nov": "novial", + "nus": "nuer\u0173", + "nzi": "nzima", + "oc": "o\u010ditar\u0173", + "oj": "ojibva", + "nl": "oland\u0173", + "or": "orij\u0173", + "om": "orom\u0173", + "osa": "osage", + "os": "osetin\u0173", + "ota": "osman\u0173 turk\u0173", + "vmf": "pagrindin\u0117 frankon\u0173", + "pal": "pahlavi", + "pau": "palau", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasinan", + "pap": "papiemento", + "pa": "pend\u017eab\u0173", + "pdc": "Pensilvanijos vokie\u010di\u0173", + "fa": "pers\u0173", + "alt": "piet\u0173 Altajaus", + "azb": "piet\u0173 Azerbaid\u017eano", + "nr": "piet\u0173 ndebele", + "sma": "piet\u0173 sami\u0173", + "st": "piet\u0173 sesuto", + "pcd": "pikard\u0173", + "pon": "Ponap\u0117s", + "pnt": "Ponto", + "pt": "portugal\u0173", + "fr": "pranc\u016bz\u0173", + "prg": "pr\u016bs\u0173", + "ps": "pu\u0161t\u016bn\u0173", + "raj": "rad\u017eastano", + "rap": "rapanui", + "rar": "rarotongan", + "rm": "retoroman\u0173", + "rif": "rif\u0173", + "frs": "ryt\u0173 fryz\u0173", + "rof": "rombo", + "rom": "rom\u0173", + "rtm": "rotuman\u0173", + "rug": "Rovianos", + "rwk": "rua", + "ro": "rumun\u0173", + "rn": "rundi", + "rue": "rusin\u0173", + "ru": "rus\u0173", + "root": "r\u016bt", + "ssy": "saho", + "sam": "samar\u0117j\u0173 arami\u0173", + "saq": "samb\u016br\u0173", + "sm": "samoa", + "sad": "sandavi", + "sg": "sango", + "sbp": "sang\u0173", + "sa": "sanskritas", + "sat": "santali", + "sc": "sardinie\u010di\u0173", + "sas": "sasak", + "sdc": "sasares\u0173 sardin\u0173", + "stq": "Saterlendo fryz\u0173", + "saz": "saura\u0161tr\u0173", + "sly": "selajar\u0173", + "sel": "selkup", + "see": "senec\u0173", + "sga": "senoji airi\u0173", + "ang": "senoji angl\u0173", + "goh": "Senoji Auk\u0161tosios Vokietijos", + "peo": "senoji pers\u0173", + "fro": "senoji pranc\u016bz\u0173", + "egy": "senov\u0117s egiptie\u010di\u0173", + "grc": "senov\u0117s graik\u0173", + "pro": "senov\u0117s provansal\u0173", + "seh": "sen\u0173", + "sr": "serb\u0173", + "sh": "serb\u0173-kroat\u0173", + "srr": "serer\u0173", + "sei": "seri", + "scn": "sicilie\u010di\u0173", + "ii": "si\u010duan ji", + "sid": "sidamo", + "bla": "siksika", + "szl": "silezie\u010di\u0173", + "sli": "silezie\u010di\u0173 \u017eemai\u010di\u0173", + "sd": "sind\u0173", + "si": "sinhal\u0173", + "syr": "sir\u0173", + "sms": "Skolto sami\u0173", + "den": "slave", + "sk": "slovak\u0173", + "sl": "slov\u0117n\u0173", + "sog": "sogdien", + "xog": "sog\u0173", + "so": "somalie\u010di\u0173", + "snk": "soninke", + "ckb": "sorani\u0173 kurd\u0173", + "srn": "sranan tongo", + "zgh": "standartin\u0117 Maroko tamazigt\u0173", + "sw": "suahili\u0173", + "suk": "sukuma", + "su": "sund\u0173", + "fi": "suomi\u0173", + "fit": "suomi\u0173 kalbos Tornedalio tarm\u0117", + "zh_Hans": "supaprastintoji kin\u0173", + "sus": "susu", + "ss": "svati", + "ksb": "\u0161ambal\u0173", + "shn": "\u0161an", + "nd": "\u0161iaur\u0117s ndebel\u0173", + "se": "\u0161iaur\u0117s sami\u0173", + "nso": "\u0161iaur\u0117s soth\u0173", + "frr": "\u0161iaurini\u0173 fryz\u0173", + "ar_001": "\u0161iuolaikin\u0117 standartin\u0117 arab\u0173", + "sco": "\u0161kot\u0173", + "gd": "\u0161kot\u0173 (g\u0117l\u0173)", + "sn": "\u0161on\u0173", + "sux": "\u0161umer\u0173", + "sv": "\u0161ved\u0173", + "de_CH": "\u0160veicarijos auk\u0161tutin\u0117 vokie\u010di\u0173", + "fr_CH": "\u0160veicarijos pranc\u016bz\u0173", + "gsw": "\u0160veicarijos vokie\u010di\u0173", + "shi": "tachelhit\u0173", + "tg": "tad\u017eik\u0173", + "tl": "tagalog\u0173", + "ty": "taitie\u010di\u0173", + "dav": "tait\u0173", + "th": "taj\u0173", + "tly": "taly\u0161\u0173", + "tmh": "tama\u0161ek", + "ta": "tamil\u0173", + "trv": "taroko", + "twq": "tasavak\u0173", + "te": "telug\u0173", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "kcg": "tyap", + "bo": "tibetie\u010di\u0173", + "ti": "tigraj\u0173", + "tig": "tigre", + "tem": "timne", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tongan\u0173", + "tt": "totori\u0173", + "zh_Hant": "tradicin\u0117 kin\u0173", + "tsd": "tsakon\u0173", + "tkr": "tsakur\u0173", + "tsi": "tsim\u0161ian", + "ts": "tsonga", + "tn": "tsvana", + "tcy": "tul\u0173", + "tum": "tumbuk\u0173", + "aeb": "Tuniso arab\u0173", + "tk": "turkm\u0117n\u0173", + "tr": "turk\u0173", + "tru": "turoyo", + "tvl": "tuvalu", + "tyv": "tuvi\u0173", + "tw": "tvi", + "udm": "udmurt\u0173", + "uga": "ugaritic", + "ug": "uig\u016br\u0173", + "uk": "ukrainie\u010di\u0173", + "umb": "umbundu", + "ur": "urd\u0173", + "uz": "uzbek\u0173", + "vai": "vai", + "guc": "vaj\u0173", + "vls": "vakar\u0173 flamand\u0173", + "fy": "vakar\u0173 fryz\u0173", + "mrj": "vakar\u0173 mari", + "wal": "valamo", + "wa": "valon\u0173", + "wae": "valser\u0173", + "cy": "val\u0173", + "war": "varai", + "was": "va\u0161o", + "ve": "venda", + "vec": "venet\u0173", + "hu": "vengr\u0173", + "vep": "veps\u0173", + "mga": "Vidurio Airijos", + "enm": "Vidurio Anglijos", + "gmh": "Vidurio Auk\u0161tosios Vokietijos", + "frm": "Vidurio Pranc\u016bzijos", + "dum": "Vidurio Vokietijos", + "vi": "vietnamie\u010di\u0173", + "de": "vokie\u010di\u0173", + "pfl": "vokie\u010di\u0173 kalbos Pfalco tarm\u0117", + "pdt": "vokie\u010di\u0173 kalbos \u017eemai\u010di\u0173 tarm\u0117", + "vo": "volapiuk", + "wo": "volof\u0173", + "vro": "v\u00f5ro", + "vot": "votik", + "vun": "vunjo", + "wbp": "Warlpiri", + "zap": "zapotek\u0173", + "dje": "zarm\u0173", + "zza": "zaza", + "zea": "zeland\u0173", + "zen": "zenaga", + "gbz": "zoroastr\u0173 dari", + "zu": "zul\u0173", + "zun": "zuni", + "kea": "\u017daliojo Ky\u0161ulio kreol\u0173", + "sgs": "\u017eemai\u010di\u0173", + "nds": "\u017demutin\u0117s Vokietijos", + "dsb": "\u017eemutini\u0173 sorb\u0173" +} diff --git a/public/intl/language/mn-MN.json b/public/intl/language/mn-MN.json new file mode 100644 index 0000000..a429594 --- /dev/null +++ b/public/intl/language/mn-MN.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0430\u0431\u0445\u0430\u0437", + "en_AU": "\u0430\u0432\u0441\u0442\u0440\u0430\u043b\u0438 \u0430\u043d\u0433\u043b\u0438", + "de_AT": "\u0430\u0432\u0441\u0442\u0440\u0438 \u0433\u0435\u0440\u043c\u0430\u043d", + "agq": "\u0430\u0433\u0435\u043c", + "az": "\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0436\u0430\u043d", + "ak": "\u0430\u043a\u0430\u043d", + "sq": "\u0430\u043b\u0431\u0430\u043d\u0438", + "en_US": "\u0430\u043c\u0435\u0440\u0438\u043a\u0438\u0439\u043d \u0430\u043d\u0433\u043b\u0438", + "am": "\u0430\u043c\u0445\u0430\u0440", + "en": "\u0430\u043d\u0433\u043b\u0438", + "ar": "\u0430\u0440\u0430\u0431", + "hy": "\u0430\u0440\u043c\u0435\u043d", + "as": "\u0430\u0441\u0441\u0430\u043c", + "asa": "\u0430\u0441\u0443", + "af": "\u0430\u0444\u0440\u0438\u043a", + "ne": "\u0431\u0430\u043b\u0431\u0430", + "bm": "\u0431\u0430\u043c\u0431\u0430\u0440\u0430", + "fy": "\u0431\u0430\u0440\u0443\u0443\u043d \u0444\u0440\u0438\u0437\u044b\u043d", + "eu": "\u0431\u0430\u0441\u043a", + "ksf": "\u0431\u0430\u0444\u0438\u0430", + "ba": "\u0431\u0430\u0448\u043a\u0438\u0440", + "be": "\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c", + "bem": "\u0431\u0435\u043c\u0431\u0430", + "bez": "\u0431\u0435\u043d\u0430", + "bn": "\u0431\u0435\u043d\u0433\u0430\u043b", + "my": "\u0431\u0438\u0440\u043c", + "brx": "\u0431\u043e\u0434\u043e", + "bg": "\u0431\u043e\u043b\u0433\u0430\u0440", + "bs": "\u0431\u043e\u0441\u043d\u0438", + "br": "\u0431\u0440\u0435\u0442\u043e\u043d", + "en_GB": "\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u0439\u043d \u0430\u043d\u0433\u043b\u0438", + "vai": "\u0432\u0430\u0439", + "wo": "\u0432\u043e\u043b\u043e\u0444", + "vun": "\u0432\u0443\u043d\u0436\u043e", + "vi": "\u0432\u044c\u0435\u0442\u043d\u0430\u043c", + "gag": "\u0433\u0430\u0433\u0443\u0437", + "ht": "\u0433\u0430\u0438\u0442\u0438", + "gl": "\u0433\u0430\u043b\u0438\u043a", + "lg": "\u0433\u0430\u043d\u0434\u0430", + "de": "\u0433\u0435\u0440\u043c\u0430\u043d", + "nl": "\u0433\u043e\u043b\u043b\u0430\u043d\u0434", + "el": "\u0433\u0440\u0435\u043a", + "gn": "\u0433\u0443\u0430\u0440\u0430\u043d\u0438", + "gu": "\u0433\u0443\u0436\u0430\u0440\u0430\u0442\u0438", + "guz": "\u0433\u0443\u0437\u044b", + "ka": "\u0433\u04af\u0440\u0436", + "da": "\u0434\u0430\u043d\u0438", + "dua": "\u0434\u0443\u0430\u043b\u0430", + "hsb": "\u0434\u044d\u044d\u0434 \u0441\u043e\u0440\u0431\u0438", + "he": "\u0435\u0432\u0440\u0435\u0439", + "es_ES": "\u0435\u0432\u0440\u043e\u043f\u044b\u043d \u0438\u0441\u043f\u0430\u043d\u0438", + "pt_PT": "\u0435\u0432\u0440\u043e\u043f\u044b\u043d \u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b", + "yo": "\u0451\u0440\u0443\u0431\u0430", + "dyo": "\u0436\u043e\u043b\u0430-\u0444\u043e\u043d\u0438", + "dz": "\u0436\u043e\u043d\u0445\u0430", + "dje": "\u0437\u0430\u0440\u043c\u0430", + "zu": "\u0437\u0443\u043b\u0443", + "ig": "\u0438\u0433\u0431\u043e", + "yi": "\u0438\u0434\u0434\u0438\u0448", + "smn": "\u0438\u043d\u0430\u0440\u0438 \u0441\u0430\u043c\u0438", + "id": "\u0438\u043d\u0434\u043e\u043d\u0435\u0437\u0438", + "ia": "\u0438\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u043e", + "iu": "\u0438\u043d\u0443\u043a\u0442\u0438\u0442\u0443\u0442", + "ga": "\u0438\u0440\u043b\u0430\u043d\u0434", + "is": "\u0438\u0441\u043b\u0430\u043d\u0434", + "es": "\u0438\u0441\u043f\u0430\u043d\u0438", + "it": "\u0438\u0442\u0430\u043b\u0438", + "kab": "\u043a\u0430\u0431\u0438\u043b\u0435", + "kea": "\u043a\u0430\u0431\u04af\u0432\u0435\u0440\u0434\u0438\u0430\u043d\u0443", + "kl": "\u043a\u0430\u043b\u0430\u043b\u0438\u0441\u0443\u0442", + "kln": "\u043a\u0430\u043b\u0435\u043d\u0436\u0438\u043d", + "kam": "\u043a\u0430\u043c\u0431\u0430", + "km": "\u043a\u0430\u043c\u0431\u043e\u0436", + "en_CA": "\u043a\u0430\u043d\u0430\u0434 \u0430\u043d\u0433\u043b\u0438", + "fr_CA": "\u043a\u0430\u043d\u0430\u0434 \u0444\u0440\u0430\u043d\u0446", + "kn": "\u043a\u0430\u043d\u043d\u0430\u0434\u0430", + "ca": "\u043a\u0430\u0442\u0430\u043b\u0430\u043d", + "ks": "\u043a\u0430\u0448\u043c\u0438\u0440", + "nmg": "\u043a\u0432\u0430\u0437\u0438\u043e", + "ses": "\u043a\u0451\u0440\u0430\u0431\u043e\u0440\u043e \u0441\u0435\u043d\u0438", + "qu": "\u043a\u0435\u0447\u0443\u0430", + "ki": "\u043a\u0438\u043a\u0443\u044e\u04af", + "rw": "\u043a\u0438\u043d\u044f\u0440\u0432\u0430\u043d\u0434\u0430", + "ky": "\u043a\u0438\u0440\u0433\u0438\u0437", + "quc": "\u043a\u0438\u0447\u0435", + "khq": "\u043a\u043e\u0439\u0440\u0430 \u0447\u0438\u043d\u0438", + "koi": "\u043a\u043e\u043c\u0438-\u043f\u0435\u0440\u043c\u044f\u043a", + "swc": "\u043a\u043e\u043d\u0433\u043e \u0441\u0432\u0430\u0445\u0438\u043b\u0438", + "kok": "\u043a\u043e\u043d\u043a\u0430\u043d\u0438", + "kw": "\u043a\u043e\u0440\u043d\u044b", + "co": "\u043a\u043e\u0440\u0441\u0438\u043a", + "ku": "\u043a\u04af\u0440\u0434", + "lkt": "\u043b\u0430\u043a\u043e\u0442\u0430", + "lag": "\u043b\u0430\u043d\u0433\u0438", + "lo": "\u043b\u0430\u043e\u0441", + "lv": "\u043b\u0430\u0442\u0432\u0438", + "la": "\u043b\u0430\u0442\u0438\u043d", + "es_419": "\u043b\u0430\u0442\u0438\u043d \u0430\u043c\u0435\u0440\u0438\u043a\u0438\u0439\u043d \u0438\u0441\u043f\u0430\u043d\u0438", + "ln": "\u043b\u0438\u043d\u0433\u0430\u043b\u0430", + "lt": "\u043b\u0438\u0442\u0432\u0430", + "dsb": "\u043b\u043e\u0432\u0435\u0440-\u0441\u043e\u0440\u0431\u0438", + "lu": "\u043b\u0443\u0431\u0430-\u043a\u0430\u0442\u0430\u043d\u0433\u0430", + "luo": "\u043b\u0443\u043e", + "luy": "\u043b\u0443\u044f\u0430", + "lb": "\u043b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433", + "smj": "\u043b\u044e\u043b\u0435 \u0441\u0430\u043c\u0438", + "mk": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d", + "kde": "\u043c\u0430\u043a\u043e\u043d\u0434\u0435", + "mgh": "\u043c\u0430\u043a\u0443\u0432\u0430-\u043c\u0438\u0442\u043e", + "mg": "\u043c\u0430\u043b\u0430\u0433\u0430\u0441\u0438", + "ms": "\u043c\u0430\u043b\u0430\u0439", + "ml": "\u043c\u0430\u043b\u0430\u0439\u043b\u0430\u043c", + "mt": "\u043c\u0430\u043b\u0442\u0438", + "gv": "\u043c\u0430\u043d\u043a\u0441", + "mi": "\u043c\u0430\u043e\u0440\u0438", + "arn": "\u043c\u0430\u043f\u04af\u0447\u0438", + "mr": "\u043c\u0430\u0440\u0430\u0442\u0438", + "mas": "\u043c\u0430\u0441\u0430\u0439", + "jmc": "\u043c\u0430\u0447\u0430\u043c\u044d", + "es_MX": "\u043c\u0435\u043a\u0441\u0438\u043a\u0438\u0439\u043d \u0438\u0441\u043f\u0430\u043d\u0438", + "mer": "\u043c\u0435\u0440\u0443", + "mgo": "\u043c\u0435\u0442\u0430", + "ro_MD": "\u043c\u043e\u043b\u0434\u0430\u0432", + "mn": "\u043c\u043e\u043d\u0433\u043e\u043b", + "mfe": "\u043c\u043e\u0440\u0438\u0441\u0435\u043d", + "moh": "\u043c\u043e\u0445\u0430\u0443\u043a", + "mua": "\u043c\u0443\u043d\u0434\u0430\u043d\u0433", + "naq": "\u043d\u0430\u043c\u0430", + "jgo": "\u043d\u0433\u043e\u043c\u0431\u0430", + "nqo": "\u043d\u043a\u043e", + "no": "\u043d\u043e\u0440\u0432\u0435\u0433\u0438", + "nb": "\u043d\u043e\u0440\u0432\u0435\u0433\u0438\u0439\u043d \u0431\u0443\u043a\u043c\u043e\u043b", + "nn": "\u043d\u043e\u0440\u0432\u0435\u0433\u0438\u0439\u043d \u043d\u0438\u043d\u043e\u0440\u0441\u043a", + "nus": "\u043d\u0443\u0435\u0440", + "ie": "\u043d\u044d\u0433\u0434\u043c\u044d\u043b \u0445\u044d\u043b", + "nyn": "\u043d\u044f\u043d\u043a\u043e\u043b\u0435", + "or": "\u043e\u0440\u0438\u044f", + "om": "\u043e\u0440\u043e\u043c\u043e", + "ru": "\u043e\u0440\u043e\u0441", + "sma": "\u04e9\u043c\u043d\u04e9\u0434 \u0441\u0430\u043c\u0438", + "pa": "\u043f\u0430\u043d\u0436\u0430\u0431", + "ps": "\u043f\u0430\u0448\u0442\u043e", + "fa": "\u043f\u0435\u0440\u0441", + "pl": "\u043f\u043e\u043b\u044c\u0448", + "pt": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b", + "pt_BR": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b (\u0431\u0440\u0430\u0437\u0438\u043b)", + "rwk": "\u0440\u0432\u0430", + "rm": "\u0440\u043e\u043c\u0430\u043d\u0448", + "rof": "\u0440\u043e\u043c\u0431\u043e", + "ro": "\u0440\u0443\u043c\u044b\u043d", + "rn": "\u0440\u0443\u043d\u0434\u0438", + "saq": "\u0441\u0430\u043c\u0431\u04af\u0440\u04af", + "sg": "\u0441\u0430\u043d\u0433\u043e", + "sbp": "\u0441\u0430\u043d\u0433\u04af", + "sa": "\u0441\u0430\u043d\u0441\u043a\u0440\u0438\u0442", + "sw": "\u0441\u0432\u0430\u0445\u0438\u043b\u0438", + "seh": "\u0441\u0435\u043d\u0430", + "sr": "\u0441\u0435\u0440\u0431", + "sd": "\u0441\u0438\u043d\u0434\u0445\u0438", + "si": "\u0441\u0438\u043d\u0445\u0430\u043b\u0430", + "sms": "\u0441\u043a\u043e\u043b\u0442 \u0441\u0430\u043c\u0438", + "sk": "\u0441\u043b\u043e\u0432\u0430\u043a", + "sl": "\u0441\u043b\u043e\u0432\u0435\u043d", + "xog": "\u0441\u043e\u0433\u0430", + "ko": "\u0441\u043e\u043b\u043e\u043d\u0433\u043e\u0441", + "so": "\u0441\u043e\u043c\u0430\u043b\u0438", + "ckb": "\u0441\u043e\u0440\u0430\u043d\u0438 \u043a\u04af\u0440\u0434", + "ar_001": "\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0430\u0440\u0430\u0431", + "su": "\u0441\u0443\u043d\u0434\u0430\u043d", + "tg": "\u0442\u0430\u0436\u0438\u043a", + "th": "\u0442\u0430\u0439", + "dav": "\u0442\u0430\u0439\u0442\u0430", + "zgh": "\u0442\u0430\u043c\u0430\u0437\u0438\u0442", + "ta": "\u0442\u0430\u043c\u0438\u043b", + "twq": "\u0442\u0430\u0441\u0430\u0432\u0430\u043a", + "tt": "\u0442\u0430\u0442\u0430\u0440", + "shi": "\u0442\u0430\u0447\u0435\u043b\u0445\u0438\u0442", + "tw": "\u0442\u0432\u0438", + "ti": "\u0442\u0438\u0433\u0440\u0438\u043d\u0430", + "und": "\u0442\u043e\u0434\u043e\u0440\u0445\u043e\u0439\u0433\u04af\u0439 \u0445\u044d\u043b", + "to": "\u0442\u043e\u043d\u0433\u0430", + "tzm": "\u0442\u04e9\u0432 \u0430\u0442\u043b\u0430\u0441\u044b\u043d \u0442\u0430\u043c\u0430\u0437\u0430\u0439\u0442", + "bo": "\u0442\u04e9\u0432\u0434", + "tr": "\u0442\u0443\u0440\u043a", + "tk": "\u0442\u0443\u0440\u043a\u043c\u0435\u043d", + "te": "\u0442\u044d\u043b\u04af\u0433\u04af", + "teo": "\u0442\u044d\u0441\u043e", + "uz": "\u0443\u0437\u0431\u0435\u043a", + "ug": "\u0443\u0439\u0433\u0430\u0440", + "uk": "\u0443\u043a\u0440\u0430\u0439\u043d", + "zh_Hant": "\u0443\u043b\u0430\u043c\u0436\u043b\u0430\u043b\u0442 \u0445\u044f\u0442\u0430\u0434", + "hu": "\u0443\u043d\u0433\u0430\u0440", + "ur": "\u0443\u0440\u0434\u0443", + "cy": "\u0443\u044d\u043b\u0441", + "fo": "\u0444\u0430\u0440\u0435\u0440", + "fj": "\u0444\u0438\u0436\u0438", + "fil": "\u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d", + "fi": "\u0444\u0438\u043d\u043b\u044f\u043d\u0434", + "nl_BE": "\u0444\u043b\u0430\u043c\u0430\u043d\u0434", + "fr": "\u0444\u0440\u0430\u043d\u0446", + "oc": "\u0444\u0440\u0430\u043d\u0446\u044b\u043d \u043e\u043a\u0441\u0438\u0442\u0430\u043d", + "haw": "\u0445\u0430\u0432\u0430\u0439", + "kk": "\u0445\u0430\u0441\u0430\u0433", + "ha": "\u0445\u0430\u0443\u0441\u0430", + "hi": "\u0445\u0438\u043d\u0434\u0438", + "nd": "\u0445\u043e\u0439\u0434 \u043d\u0434\u0435\u0431\u0435\u043b\u0435", + "se": "\u0445\u043e\u0439\u0434 \u0441\u0430\u043c\u0438", + "hr": "\u0445\u043e\u0440\u0432\u0430\u0442", + "xh": "\u0445\u043e\u0441\u0430", + "zxx": "\u0445\u044d\u043b \u0437\u04af\u0439\u043d \u0430\u0433\u0443\u0443\u043b\u0433\u0430 \u0431\u0430\u0439\u0445\u0433\u04af\u0439", + "zh_Hans": "\u0445\u044f\u043b\u0431\u0430\u0440\u0448\u0443\u0443\u043b\u0441\u0430\u043d \u0445\u044f\u0442\u0430\u0434", + "zh": "\u0445\u044f\u0442\u0430\u0434", + "cs": "\u0447\u0435\u0445", + "cgg": "\u0447\u0438\u0433\u0430", + "chr": "\u0447\u0438\u0440\u043e\u043a\u0438", + "ksb": "\u0448\u0430\u043c\u0431\u0430\u043b\u0430", + "sv": "\u0448\u0432\u0435\u0434", + "gsw": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0438 \u0433\u0435\u0440\u043c\u0430\u043d", + "de_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0438 \u0434\u044d\u044d\u0440 \u0433\u0435\u0440\u043c\u0430\u043d", + "fr_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0438 \u0444\u0440\u0430\u043d\u0446", + "ii": "\u0448\u0438\u0447\u0443\u0430\u043d \u0435\u0438", + "sn": "\u0448\u043e\u043d\u0430", + "gd": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434 \u043a\u0435\u043b\u0442", + "ee": "\u044d\u0432\u044d", + "ebu": "\u044d\u043c\u0431\u0443", + "eo": "\u044d\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e", + "et": "\u044d\u0441\u0442\u043e\u043d\u0438", + "jv": "\u044f\u0432\u0430", + "ja": "\u044f\u043f\u043e\u043d", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "ain": "Ainu", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "ale": "Aleut", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "ay": "Aymara", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brh": "Brahui", + "bra": "Braj", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chy": "Cheyenne", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "cop": "Coptic", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dyu": "Dyula", + "frs": "Eastern Frisian", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "egl": "Emilian", + "myv": "Erzya", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gan": "Gan Chinese", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "izh": "Ingrian", + "inh": "Ingush", + "ik": "Inupiaq", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "xal": "Kalmyk", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "kg": "Kongo", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lam": "Lamba", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "loz": "Lozi", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "lun": "Lunda", + "mde": "Maba", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "mdf": "Moksha", + "lol": "Mongo", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "ttt": "Muslim Tat", + "mye": "Myene", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "frr": "Northern Frisian", + "nso": "Northern Sotho", + "nov": "Novial", + "nym": "Nyamwezi", + "ny": "Nyanja", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romany", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "sm": "Samoan", + "sgs": "Samogitian", + "sad": "Sandawe", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "see": "Seneca", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "shn": "Shan", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "den": "Slave", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "st": "Southern Sotho", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "ss": "Swati", + "syr": "Syriac", + "tl": "Tagalog", + "ty": "Tahitian", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "ter": "Tereno", + "tet": "Tetum", + "tig": "Tigre", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "zap": "Zapotec", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/ms-MY.json b/public/intl/language/ms-MY.json new file mode 100644 index 0000000..0f0e838 --- /dev/null +++ b/public/intl/language/ms-MY.json @@ -0,0 +1,611 @@ +{ + "ab": "Abkhazia", + "ace": "Achinese", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaans", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "akk": "Akkadian", + "ach": "Akoli", + "bss": "Akoose", + "akz": "Alabama", + "sq": "Albania", + "ale": "Aleut", + "alt": "Altai Selatan", + "ase": "American Sign Language", + "am": "Amharic", + "egy": "Ancient Egyptian", + "anp": "Angika", + "njo": "Ao Naga", + "ar": "Arab", + "arq": "Arab Algeria", + "ary": "Arab Maghribi", + "arz": "Arab Mesir", + "ar_001": "Arab Standard Moden", + "aeb": "Arab Tunisia", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "hy": "Armenia", + "rup": "Aromanian", + "frp": "Arpitan", + "as": "Assam", + "ast": "Asturian", + "asa": "Asu", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "ay": "Aymara", + "az": "Azerbaijan", + "azb": "Azerbaijan Selatan", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "ms": "Bahasa Melayu", + "und": "Bahasa Tidak Diketahui", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bm": "Bambara", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "ba": "Bashkir", + "eu": "Basque", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "nl": "Belanda", + "be": "Belarus", + "bem": "Bemba", + "bez": "Bena", + "bn": "Benggala", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brx": "Bodo", + "nb": "Bokm\u00e5l Norway", + "bs": "Bosnia", + "brh": "Brahui", + "bra": "Braj", + "br": "Breton", + "bug": "Buginese", + "bg": "Bulgaria", + "bum": "Bulu", + "bua": "Buriat", + "my": "Burma", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "ca": "Catalonia", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arab", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "Chiga", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "chk": "Chuukese", + "cv": "Chuvash", + "zh": "Cina", + "zh_Hans": "Cina Ringkas", + "zh_Hant": "Cina Tradisional", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comoria", + "swc": "Congo Swahili", + "cop": "Coptic", + "kw": "Cornish", + "co": "Corsica", + "cr": "Cree", + "mus": "Creek", + "hr": "Croat", + "cs": "Czech", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "da": "Denmark", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "dyu": "Dyula", + "dz": "Dzongkha", + "frs": "Eastern Frisian", + "efi": "Efik", + "eka": "Ekajuk", + "elx": "Elamite", + "ebu": "Embu", + "egl": "Emilian", + "myv": "Erzya", + "eo": "Esperanto", + "et": "Estonia", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "fo": "Faroe", + "fj": "Fiji", + "hif": "Fiji Hindi", + "fil": "Filipina", + "fi": "Finland", + "nl_BE": "Flemish", + "fon": "Fon", + "gur": "Frafra", + "fy": "Frisian", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gag": "Gagauz", + "gl": "Galicia", + "gan": "Gan Chinese", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "ka": "Georgia", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "el": "Greek", + "grc": "Greek Purba", + "gn": "Guarani", + "gu": "Gujerat", + "guz": "Gusii", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "ht": "Haiti", + "hak": "Hakka Chinese", + "ha": "Hausa", + "haw": "Hawaii", + "hz": "Herero", + "hil": "Hiligaynon", + "hi": "Hindi", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hu": "Hungary", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "he": "Ibrani", + "is": "Iceland", + "io": "Ido", + "ig": "Igbo", + "ilo": "Iloko", + "smn": "Inari Sami", + "id": "Indonesia", + "en": "Inggeris", + "en_US": "Inggeris AS", + "en_AU": "Inggeris Australia", + "en_GB": "Inggeris British", + "en_CA": "Inggeris Kanada", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiaq", + "ga": "Ireland", + "it": "Itali", + "jam": "Jamaican Creole English", + "jv": "Jawa", + "ja": "Jepun", + "de": "Jerman", + "de_AT": "Jerman Austria", + "de_CH": "Jerman Halus Switzerland", + "gsw": "Jerman Switzerland", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kea": "Kabuverdianu", + "kab": "Kabyle", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "Kalaallisut", + "kln": "Kalenjin", + "xal": "Kalmyk", + "kam": "Kamba", + "kbl": "Kanembu", + "kn": "Kannada", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "ks": "Kashmir", + "csb": "Kashubian", + "kaw": "Kawi", + "kk": "Kazakhstan", + "ken": "Kenyang", + "kha": "Khasi", + "km": "Khmer", + "kho": "Khotanese", + "khw": "Khowar", + "ki": "Kikuya", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "ky": "Kirghiz", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "kg": "Kongo", + "kok": "Konkani", + "ko": "Korea", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "ckb": "Kurdi Sorani", + "ku": "Kurdish", + "kru": "Kurukh", + "kut": "Kutenai", + "nmg": "Kwasio", + "quc": "K\u02bciche\u02bc", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "lo": "Laos", + "ltg": "Latgalian", + "la": "Latin", + "lv": "Latvia", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "Lithuania", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "dsb": "Lower Sorbian", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "lb": "Luxembourg", + "luy": "Luyia", + "mde": "Maba", + "mk": "Macedonia", + "jmc": "Machame", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mg": "Malagasy", + "ml": "Malayalam", + "mt": "Malta", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manx", + "mi": "Maori", + "arn": "Mapuche", + "mr": "Marathi", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mas": "Masai", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u2019", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "moh": "Mohawk", + "mdf": "Moksha", + "ro_MD": "Moldavia", + "lol": "Mongo", + "mn": "Mongolia", + "mfe": "Morisyen", + "mos": "Mossi", + "mul": "Multiple Languages", + "mua": "Mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "nqo": "N\u2019ko", + "naq": "Nama", + "na": "Nauru", + "nv": "Navajo", + "nd": "Ndebele Utara", + "ng": "Ndonga", + "nap": "Neapolitan", + "ne": "Nepal", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "frr": "Northern Frisian", + "no": "Norway", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nn": "Nynorsk Norway", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitania", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "or": "Oriya", + "om": "Oromo", + "osa": "Osage", + "os": "Ossete", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "fa": "Parsi", + "ps": "Pashto", + "pdc": "Pennsylvania German", + "fr": "Perancis", + "fr_CA": "Perancis Kanada", + "fr_CH": "Perancis Switzerland", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pl": "Poland", + "pnt": "Pontic", + "pt": "Portugis", + "pt_BR": "Portugis Brazil", + "pt_PT": "Portugis Eropah", + "prg": "Prussian", + "pa": "Punjabi", + "qu": "Quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "ro": "Romania", + "rm": "Romansh", + "rom": "Romany", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rn": "Rundi", + "ru": "Rusia", + "rue": "Rusyn", + "rwk": "Rwa", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "saq": "Samburu", + "sma": "Sami Selatan", + "se": "Sami Utara", + "sm": "Samoa", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskrit", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "gd": "Scots Gaelic", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "es": "Sepanyol", + "es_419": "Sepanyol Amerika Latin", + "es_ES": "Sepanyol Eropah", + "es_MX": "Sepanyol Mexico", + "sr": "Serbia", + "sh": "SerboCroatia", + "srr": "Serer", + "sei": "Seri", + "ksb": "Shambala", + "shn": "Shan", + "sn": "Shona", + "ii": "Sichuan Yi", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "sd": "Sindhi", + "si": "Sinhala", + "sms": "Skolt Sami", + "den": "Slave", + "cu": "Slavik Gereja", + "sk": "Slovak", + "sl": "Slovenia", + "xog": "Soga", + "sog": "Sogdien", + "so": "Somali", + "snk": "Soninke", + "st": "Sotho Selatan", + "nso": "Sotho Utara", + "nr": "South Ndebele", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "su": "Sunda", + "sus": "Susu", + "sw": "Swahili", + "ss": "Swati", + "sv": "Sweden", + "syr": "Syriac", + "shi": "Tachelhit", + "tl": "Tagalog", + "ty": "Tahiti", + "dav": "Taita", + "tg": "Tajik", + "tly": "Talysh", + "tmh": "Tamashek", + "tzm": "Tamazight Atlas Tengah", + "zgh": "Tamazight Maghribi Standard", + "ta": "Tamil", + "trv": "Taroko", + "twq": "Tasawaq", + "tt": "Tatar", + "te": "Telugu", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetum", + "th": "Thai", + "zxx": "Tiada kandungan linguistik", + "bo": "Tibet", + "tig": "Tigre", + "ti": "Tigrinya", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "to": "Tonga", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "tr": "Turki", + "crh": "Turki Krimea", + "tk": "Turkmen", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "uk": "Ukraine", + "umb": "Umbundu", + "hsb": "Upper Sorbian", + "ur": "Urdu", + "ug": "Uyghur", + "uz": "Uzbekistan", + "vai": "Vai", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "Vietnam", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "Vunjo", + "cy": "Wales", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wo": "Wolof", + "wuu": "Wu Chinese", + "xh": "Xhosa", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "yi": "Yiddish", + "yo": "Yoruba", + "zap": "Zapotec", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zu": "Zulu", + "zun": "Zuni" +} diff --git a/public/intl/language/my-MM.json b/public/intl/language/my-MM.json new file mode 100644 index 0000000..e853cde --- /dev/null +++ b/public/intl/language/my-MM.json @@ -0,0 +1,611 @@ +{ + "kac": "\u1000\u1001\u103b\u1004\u103a", + "fr_CA": "\u1000\u1014\u1031\u1012\u102b \u1015\u103c\u1004\u103a\u101e\u1005\u103a", + "en_CA": "\u1000\u1014\u1031\u1012\u102b \u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a", + "ca": "\u1000\u102c\u1010\u102c\u101c\u1014\u103a", + "koi": "\u1000\u102d\u102f\u1019\u102e-\u1015\u102b\u1019\u103c\u1000\u103a", + "ko": "\u1000\u102d\u102f\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "ks": "\u1000\u1000\u103a\u101b\u103e\u103a\u1019\u102e\u101b\u102e", + "rw": "\u1000\u1004\u103a\u101b\u102c\u101d\u1014\u103a\u1012\u102b", + "ku": "\u1000\u1012\u103a", + "kn": "\u1000\u1014\u1039\u1014\u102c\u1012\u102b", + "kok": "\u1000\u103d\u1014\u103a\u1000\u1014\u102e", + "kg": "\u1000\u103d\u1014\u103a\u1002\u102d\u102f", + "kea": "\u1001\u1018\u1030\u1017\u102c\u1012\u102e\u1021\u102c\u1014\u1030", + "kab": "\u1001\u1018\u102d\u102f\u1004\u103a\u101c\u103a", + "km": "\u1001\u1019\u102c", + "cr": "\u1001\u101b\u102e\u1038", + "ky": "\u1001\u101b\u1030\u1002\u1005\u103a", + "hr": "\u1001\u101b\u102d\u102f\u1021\u1031\u101b\u103e\u1014\u103a", + "kl": "\u1001\u101c\u102c\u1021\u103a\u101c\u102e\u1006\u1015\u103a", + "kha": "\u1001\u102b\u1005\u102e", + "kk": "\u1001\u102b\u1007\u102b\u1001\u103a", + "kln": "\u1001\u102b\u101c\u102d\u1019\u103a\u1002\u103b\u1004\u103a", + "ki": "\u1001\u102e\u1001\u1030\u101a\u1030", + "quc": "\u1001\u102e\u1001\u103a\u1021\u102e\u1001\u103b\u102e", + "co": "\u1001\u102d\u102f\u1005\u102e\u1000\u1014\u103a", + "kw": "\u1001\u102d\u102f\u1014\u102e\u101b\u103e\u103a", + "khq": "\u1001\u102d\u102f\u101b\u102c \u1001\u103b\u102e\u1021\u102e\u1014\u102e", + "ses": "\u1001\u102d\u102f\u101b\u102c\u1018\u102d\u102f\u101b\u102d\u102f \u1006\u1019\u103a\u1014\u102e", + "qu": "\u1001\u1000\u103a\u1001\u103b\u103a\u101d\u102b", + "kam": "\u1001\u1019\u103a\u1018\u102c", + "sms": "\u1001\u102d\u102f\u101c\u103a \u1006\u102c\u1019\u102d", + "chr": "\u1001\u103b\u102c\u101b\u102d\u102f\u1000\u102e", + "cgg": "\u1001\u103b\u102e\u1002\u102b", + "ce": "\u1001\u103b\u1031\u1001\u103b\u1004\u103a\u1038", + "cs": "\u1001\u103b\u1000\u103a", + "swc": "\u1001\u103d\u1014\u103a\u1002\u102d\u102f \u1005\u103d\u102c\u101f\u102e\u101c\u102e", + "el": "\u1002\u101b\u102d", + "gag": "\u1002\u102b\u1002\u102b\u1007\u103a", + "gl": "\u1002\u102b\u101c\u102c\u1005\u102e\u101a\u1036", + "gu": "\u1002\u1030\u1002\u103b\u102c\u101b\u101e\u102e", + "guz": "\u1002\u1030\u1005\u102e\u1038", + "gn": "\u1002\u1030\u1021\u102c\u101b\u102c\u1014\u102e", + "lg": "\u1002\u1014\u103a\u1012\u102e", + "ja": "\u1002\u103b\u1015\u1014\u103a", + "jv": "\u1002\u103b\u102c\u1017\u102c\u1038\u1014\u102e\u1038\u1005\u103a", + "de": "\u1002\u103b\u102c\u1019\u1014\u103a", + "jpr": "\u1002\u103b\u1030\u1012\u102e\u101a\u102d\u102f-\u1015\u102b\u101b\u103e\u1014\u103a", + "jrb": "\u1002\u103b\u1030\u1012\u102e\u101a\u102d\u102f-\u1021\u102c\u101b\u1031\u1017\u103b", + "ka": "\u1002\u103b\u1031\u102c\u103a\u1002\u103b\u102e\u101a\u1014\u103a", + "dyo": "\u1002\u103b\u102d\u102f\u101c\u102c-\u1016\u103d\u1014\u103a\u101b\u102e", + "jgo": "\u1002\u103d\u1019\u103a\u1018\u102c", + "sco": "\u1005\u1000\u1031\u102c\u1037", + "es": "\u1005\u1015\u102d\u1014\u103a", + "es_ES": "\u1005\u1015\u102d\u1014\u103a(\u1025\u101b\u1031\u102c\u1015)", + "sl": "\u1005\u101c\u102d\u102f\u1017\u1031\u1038\u1014\u102e\u1038\u101a\u1019\u103a\u1038", + "sk": "\u1005\u101c\u102d\u102f\u1017\u1000\u103a", + "ii": "\u1005\u102e\u1001\u103b\u103d\u1019\u103a \u101b\u102e", + "seh": "\u1005\u102e\u1014\u102c", + "sd": "\u1005\u1004\u103a\u1012\u102e", + "sr": "\u1006\u102c\u1038\u1017\u102e\u1038\u101a\u1014\u103a\u1038", + "su": "\u1006\u1030\u1012\u1014\u103a", + "xog": "\u1006\u102d\u102f\u1002\u102b", + "so": "\u1006\u102d\u102f\u1019\u102c\u101c\u102e", + "ckb": "\u1006\u102d\u102f\u101b\u102c\u1014\u102e \u1000\u1030\u1012\u1005\u103a\u101b\u103e\u103a", + "si": "\u1006\u1004\u103a\u101f\u102c\u101c", + "sbp": "\u1006\u1014\u103a\u1002\u102f", + "saq": "\u1006\u1014\u103a\u1018\u1030\u101b\u102f", + "sg": "\u1006\u1019\u103a\u1002\u102d\u102f", + "sw": "\u1006\u103c\u102c\u101f\u102e\u101c\u102e", + "sv": "\u1006\u103d\u102e\u1012\u1004\u103a", + "gsw": "\u1006\u103d\u1005\u103a \u1002\u103b\u102c\u1019\u1014\u103a", + "fr_CH": "\u1006\u103d\u1005\u103a \u1015\u103c\u1004\u103a\u101e\u1005\u103a", + "de_CH": "\u1006\u103d\u1005\u103a \u1021\u1019\u103c\u1004\u1037\u103a \u1002\u103b\u102c\u1019\u1014\u103a", + "dje": "\u1007\u102c\u1019\u102c", + "zu": "\u1007\u1030\u101c\u1030", + "xh": "\u1007\u102d\u102f\u1005\u102c", + "tt": "\u1010\u1010\u102c", + "ta": "\u1010\u1019\u102e\u1038\u101c\u103a", + "zh": "\u1010\u101b\u102f\u1010\u103a", + "tr": "\u1010\u102c\u1000\u1005\u103a", + "shi": "\u1010\u102c\u1001\u103b\u101a\u103a\u101c\u103a\u101f\u1005\u103a", + "tg": "\u1010\u102c\u1002\u103d\u102e\u1001\u103a", + "twq": "\u1010\u102c\u1006\u102c\u101d\u102b\u1001\u103a", + "bo": "\u1010\u102d\u1018\u1000\u103a", + "teo": "\u1010\u102e\u1006\u102d\u102f", + "te": "\u1010\u102e\u101c\u102e\u1002\u102f", + "ti": "\u1010\u102e\u1002\u103a\u101b\u1004\u103a\u101b\u102c", + "tk": "\u1010\u1001\u1039\u1019\u1004\u103a", + "se": "\u1010\u1031\u102c\u1004\u103a\u1006\u102c\u1019\u102d", + "nd": "\u1010\u1031\u102c\u1004\u103a\u1012\u102e\u1018\u102e\u101c\u102e", + "sma": "\u1010\u1031\u102c\u1004\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1006\u102c\u1019\u102d", + "dav": "\u1010\u102d\u102f\u1004\u103a\u1010\u102c", + "to": "\u1010\u103d\u1014\u103a\u1002\u102b", + "th": "\u1011\u102d\u102f\u1004\u103a\u1038", + "dak": "\u1012\u102b\u1000\u102d\u102f\u1010\u102c", + "del": "\u1012\u102e\u101c\u102c\u101d\u1032", + "dua": "\u1012\u1030\u1021\u101c\u102c", + "nl": "\u1012\u1010\u103a\u1001\u103b\u103a", + "da": "\u1012\u102d\u1014\u103a\u1038\u1019\u1010\u103a", + "dz": "\u1012\u103d\u1014\u103a\u1000\u102c", + "nqo": "\u1014\u1000\u102d\u102f", + "naq": "\u1014\u102c\u1019\u102c", + "ne": "\u1014\u102e\u1015\u102b\u101c\u102e", + "nus": "\u1014\u1030\u1021\u102c", + "no": "\u1014\u1031\u102c\u103a\u101d\u1031\u1038", + "nn": "\u1014\u1031\u102c\u103a\u101d\u1031\u1038 \u1014\u102e\u1038\u1014\u1031\u102c\u103a\u1005\u103a\u1001\u103a", + "fa": "\u1015\u102b\u101b\u103e\u1014\u103a", + "peo": "\u1015\u102b\u101b\u103e\u1014\u103a \u1021\u101f\u1031\u102c\u1004\u103a\u1038", + "ps": "\u1015\u102b\u101b\u103e\u103a\u1010\u102d\u102f", + "pi": "\u1015\u102b\u1020\u102d", + "pt": "\u1015\u1031\u102b\u103a\u1010\u1030\u1002\u102e", + "pl": "\u1015\u102d\u102f\u101c\u1014\u103a", + "pa": "\u1015\u1014\u103a\u1001\u103b\u102c\u1015\u102e", + "fr": "\u1015\u103c\u1004\u103a\u101e\u1005\u103a", + "fro": "\u1015\u103c\u1004\u103a\u101e\u1005\u103a\u101f\u1031\u102c\u1004\u103a\u1038", + "nl_BE": "\u1016\u101c\u102e\u1019\u1005\u103a\u101b\u103e\u103a", + "fo": "\u1016\u102c\u101b\u102d\u102f\u1021\u102d\u1005\u103a", + "fil": "\u1016\u102d\u101c\u1005\u103a\u1015\u102e\u1014\u102d\u102f", + "fj": "\u1016\u102e\u1002\u103b\u102e", + "fi": "\u1016\u1004\u103a\u1014\u1005\u103a\u101b\u103e\u103a", + "my": "\u1017\u1019\u102c", + "vi": "\u1017\u102e\u101a\u1000\u103a\u1014\u1019\u103a", + "brx": "\u1017\u102d\u102f\u1012\u102d\u102f", + "vai": "\u1017\u102d\u102f\u1004\u103a", + "vun": "\u1017\u1014\u103a\u1002\u103b\u102d\u102f", + "en_GB": "\u1017\u103c\u102d\u1010\u102d\u101e\u103b\u103e \u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a", + "pt_BR": "\u1018\u101b\u102c\u1007\u102e\u1038 \u1015\u1031\u102b\u103a\u1010\u1030\u1002\u102e", + "br": "\u1018\u101b\u102e\u1010\u103d\u1014\u103a", + "bas": "\u1018\u102c\u1006\u102c", + "ksf": "\u1018\u102c\u1016\u102e\u1021\u102c", + "ban": "\u1018\u102c\u101c\u102e", + "zxx": "\u1018\u102c\u101e\u102c\u1005\u1000\u102c\u1038 \u1014\u103e\u1004\u1037\u103a \u1015\u1010\u103a\u101e\u1000\u103a \u101e\u1031\u102c\u1021\u101b\u102c\u1019\u101b\u103e\u102d", + "bez": "\u1018\u102e\u1014\u102c", + "be": "\u1018\u102e\u101c\u102c\u101b\u102f", + "bg": "\u1018\u1030\u1002\u1031\u1038\u101b\u102e\u1038\u101a\u102c\u1038", + "bs": "\u1018\u1031\u102c\u1037\u1005\u103a\u1014\u102e\u1038\u101a\u102c\u1038", + "ba": "\u1018\u1000\u103a\u101b\u103e\u103a\u1000\u102e\u1021\u102c", + "bn": "\u1018\u1004\u103a\u1039\u1002\u102b\u101c\u102e", + "eu": "\u1018\u1005\u103a\u1000\u1039\u1000\u102e", + "bm": "\u1018\u1014\u103a\u1018\u102c\u101b\u102c", + "bem": "\u1018\u102d\u1014\u103a\u1018\u102c", + "nb": "\u1018\u103d\u1010\u103a\u1019\u1031\u102c\u103a\u101c\u103a", + "jmc": "\u1019\u1001\u103b\u102c\u1019\u102e", + "ms": "\u1019\u101c\u1031\u1038", + "ml": "\u1019\u101c\u1031\u1038\u101b\u102c\u101c\u1019\u103a", + "und": "\u1019\u101e\u102d \u101e\u102d\u102f\u1037\u1019\u101f\u102f\u1010\u103a \u1019\u101b\u103e\u102d \u101e\u1031\u102c \u1018\u102c\u101e\u102c\u1005\u1000\u102c\u1038", + "mgh": "\u1019\u102c\u1001\u1030\u101d\u102b-\u1019\u102e\u1021\u102e\u1010\u102d\u102f", + "kde": "\u1019\u102c\u1001\u103d\u1014\u103a\u1012\u102e", + "mk": "\u1019\u102c\u1005\u102e\u1012\u102d\u102f\u1014\u102e\u101a\u1036", + "mas": "\u1019\u102c\u1006\u102d\u102f\u1004\u103a", + "arn": "\u1019\u102c\u1015\u102f\u1001\u103b\u102e", + "mr": "\u1019\u102c\u101b\u101e\u102e", + "mgo": "\u1019\u102e\u1010\u102c", + "mer": "\u1019\u102e\u101b\u102f", + "root": "\u1019\u1030\u101c\u101b\u1004\u103a\u1038\u1019\u103c\u1005\u103a", + "zgh": "\u1019\u102d\u102f\u101b\u102d\u102f\u1000\u1014\u103a \u1010\u103d\u1019\u103a\u1019\u1007\u102d\u102f\u1010\u103a \u1005\u1036", + "mfe": "\u1019\u102d\u102f\u101b\u103e\u102e\u1005\u103a\u101a\u1014\u103a\u1038", + "moh": "\u1019\u102d\u102f\u101f\u1031\u102c\u1037\u1001\u103a", + "mi": "\u1019\u1031\u102c\u1004\u103a\u1038\u101b\u102e (\u1014\u101a\u1030\u1038\u1007\u102e\u101c\u1014\u103a\u1000\u103b\u103d\u1014\u103a\u1038\u101b\u103e\u102d \u1015\u1004\u103a\u101b\u1004\u103a\u1038\u1010\u102d\u102f\u1004\u103a\u1038\u101b\u1004\u103a\u1038\u101e\u102c\u1038\u101c\u1030\u1019\u103b\u102d\u102f\u1038)", + "mnc": "\u1019\u1014\u103a\u1001\u103b\u1030\u1038", + "mua": "\u1019\u1014\u103a\u1012\u1014\u103a\u1038", + "gv": "\u1019\u1014\u103a\u1038\u1007\u103a", + "mt": "\u1019\u1031\u102c\u101c\u1039\u1010\u102e\u1005\u103a", + "frr": "\u1019\u103c\u1031\u102c\u1000\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1016\u101b\u102e\u1005\u102e\u101b\u1014\u103a", + "mn": "\u1019\u103d\u1014\u103a\u1002\u102d\u102f\u101c\u102e\u1038\u101a\u1014\u103a\u1038", + "uk": "\u101a\u1030\u1000\u101b\u102d\u1014\u103a\u1038", + "nyn": "\u101a\u1014\u103a\u1000\u102d\u102f\u101c\u102e", + "ru": "\u101b\u102f\u101b\u103e", + "rm": "\u101b\u1031\u102c\u1019", + "ro": "\u101b\u102d\u102f\u1019\u1031\u1014\u102e\u101a\u102c\u1038", + "yo": "\u101b\u102d\u102f\u101b\u102f\u1018\u102c", + "zh_Hans": "\u101b\u102d\u102f\u1038\u101b\u103e\u1004\u103a\u1038\u101e\u1031\u102c \u1010\u101b\u102f\u1010\u103a", + "rn": "\u101b\u103d\u1014\u103a\u1012\u102e", + "rof": "\u101b\u103d\u1019\u103a\u1018\u102d\u102f", + "sn": "\u101b\u103e\u102d\u1014\u102c", + "zh_Hant": "\u101b\u103e\u1031\u1038\u101b\u102d\u102f\u1038\u1005\u1009\u103a\u101c\u102c \u1010\u101b\u102f\u1010\u103a", + "grc": "\u101b\u103e\u1031\u1038\u101f\u1031\u102c\u1004\u103a\u1038 \u1002\u101b\u102d", + "egy": "\u101b\u103e\u1031\u1038\u101f\u1031\u102c\u1004\u103a\u1038 \u1021\u102e\u1002\u103b\u1005\u103a", + "ksb": "\u101b\u103e\u1014\u103a\u1018\u102c\u101c\u102c", + "shn": "\u101b\u103e\u1019\u103a\u1038", + "lkt": "\u101c\u102c\u1000\u102d\u102f\u1010\u102c", + "lo": "\u101c\u102c\u1021\u102d\u102f", + "lb": "\u101c\u1030\u1007\u1004\u103a\u1018\u1010\u103a\u1000\u103a", + "lu": "\u101c\u1030\u1018\u102c-\u1001\u102b\u1010\u1014\u103a\u1002\u102b", + "luy": "\u101c\u1030\u101b\u102e\u1021\u102c", + "smj": "\u101c\u1030\u101c\u102e \u1006\u102c\u1019\u102d", + "luo": "\u101c\u1030\u1021\u102d\u102f", + "la": "\u101c\u1000\u103a\u1010\u1004\u103a", + "es_419": "\u101c\u1000\u103a\u1010\u1004\u103a\u1021\u1019\u1031\u101b\u102d\u1000 \u1005\u1015\u102d\u1014\u103a", + "lv": "\u101c\u1000\u1039\u1018\u102e\u1021\u1036", + "ln": "\u101c\u1004\u103a\u1002\u102b\u101c\u102c", + "lt": "\u101c\u1005\u1039\u101e\u1030\u1021\u102c\u1014\u102e\u101a\u1036", + "lag": "\u101c\u1014\u103a\u1002\u102e", + "rwk": "\u101d\u102b", + "nmg": "\u101d\u102b\u1006\u102e\u1021\u102d\u102f", + "ee": "\u101d\u102e", + "ug": "\u101d\u102e\u1002\u102b", + "wo": "\u101d\u1030\u101c\u102d\u102f\u1016\u103a", + "cy": "\u101d\u1031\u101c", + "sa": "\u101e\u1004\u103a\u1039\u101e\u1000\u101b\u102d\u102f\u1000\u103a", + "haw": "\u101f\u102c\u101d\u1031\u101a\u1036", + "ht": "\u101f\u102c\u1021\u102e\u1010\u102e\u1021\u1014\u103a", + "ha": "\u101f\u102c\u1025\u1005\u102c", + "he": "\u101f\u102e\u1038\u1018\u101b\u1030\u1038", + "hu": "\u101f\u1014\u103a\u1002\u1031\u101b\u102e", + "hi": "\u101f\u102d\u1014\u1039\u1012\u102e", + "mul": "\u1021\u1000\u103c\u102d\u1019\u103a\u1019\u103b\u102c\u1038\u1005\u103d\u102c \u1018\u102c\u101e\u102c\u1005\u1000\u102c\u1038\u1019\u103b\u102c\u1038", + "fy": "\u1021\u1014\u1031\u102c\u1000\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1016\u101b\u102e\u1005\u102e\u101b\u1014\u103a", + "nds": "\u1021\u1014\u102d\u1019\u1037\u103a \u1002\u103b\u102c\u1019\u1014\u103a", + "hsb": "\u1021\u1015\u1031\u102b\u103a\u1006\u102d\u102f\u1018\u102e\u1021\u1019\u103a", + "en_US": "\u1021\u1019\u1031\u101b\u102d\u1000\u1014\u103a \u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a", + "ar_001": "\u1021\u101b\u1031\u1017\u102e(\u1015\u102f\u1036\u1019\u103e\u1014\u103a)", + "frs": "\u1021\u101b\u103e\u1031\u1037\u1015\u102d\u102f\u1004\u103a\u1038 \u1016\u101b\u102e\u1005\u102e\u101b\u1014\u103a", + "dum": "\u1021\u101c\u101a\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1012\u1010\u103a\u1001\u103b\u103a", + "enm": "\u1021\u101c\u101a\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a", + "mga": "\u1021\u101c\u101a\u103a\u1015\u102d\u102f\u1004\u103a\u1038 \u1021\u102d\u102f\u1004\u103a\u1038\u101b\u1005\u103a", + "frm": "\u1021\u101c\u101a\u103a\u1015\u102d\u102f\u1004\u103a\u1038\u1015\u103c\u1004\u103a\u101e\u1005\u103a", + "gmh": "\u1021\u101c\u101a\u103a\u1015\u102d\u102f\u1004\u103a\u1038\u1021\u1019\u103c\u1004\u1037\u103a\u1002\u103b\u102c\u1019\u1014\u103a", + "tzm": "\u1021\u101c\u101a\u103a\u1021\u1000\u103a\u1010\u103a\u101c\u1000\u103a\u1005\u103a \u1010\u102c\u1019\u102c\u1007\u102d\u102f\u1000\u103a", + "ak": "\u1021\u102c\u1000\u102d\u1014\u103a", + "asa": "\u1021\u102c\u1005\u102f", + "af": "\u1021\u102c\u1016\u101b\u102d\u1000\u1014\u103a\u1038\u1005\u103a", + "hy": "\u1021\u102c\u1019\u1031\u1014\u102e\u1021\u1014\u103a", + "ar": "\u1021\u102c\u101b\u1031\u1017\u102e", + "mg": "\u1021\u102c\u101c\u102c\u1002\u102b\u1005\u102e", + "it": "\u1021\u102e\u1010\u101c\u102e", + "smn": "\u1021\u102e\u1014\u102c\u101b\u102e \u1006\u102c\u1019\u102d", + "iu": "\u1021\u102e\u1014\u102f\u1001\u103a\u1010\u102e\u1010\u102f", + "pt_PT": "\u1025\u101b\u1031\u102c\u1015 \u1015\u1031\u102b\u103a\u1010\u1030\u1002\u102e", + "uz": "\u1026\u1038\u1007\u103a\u1018\u1000\u103a", + "de_AT": "\u1029\u1005\u1010\u103c\u102e\u1038\u101a \u1002\u103b\u102c\u1019\u1014\u103a", + "en_AU": "\u1029\u1005\u1010\u103c\u1031\u1038\u101c\u103b\u103e \u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a", + "az": "\u1021\u1031\u102c\u103a\u1007\u1031\u102c\u1018\u102d\u102f\u1004\u103a\u1002\u103b\u1031\u102c\u1014\u102e", + "ur": "\u1021\u1031\u102c\u103a\u1012\u1030", + "or": "\u1021\u102d\u102f\u101b\u102e\u101b\u102c", + "om": "\u1021\u102d\u102f\u101b\u102d\u102f\u1019\u102d\u102f", + "ab": "\u1021\u1000\u103a\u1001\u102b\u1007\u1030\u1021\u1014\u103b", + "eo": "\u1021\u1000\u1039\u1005\u1015\u101b\u1014\u1039\u1010\u102d\u102f", + "as": "\u1021\u1000\u1039\u1005\u1019\u102e\u1005\u103a", + "et": "\u1021\u1000\u103a\u1005\u103a\u1010\u102d\u102f\u1038\u1014\u102e\u1038\u101b\u1014\u103a\u1038", + "dsb": "\u1021\u1031\u102c\u1000\u103a\u1006\u102d\u102f\u1018\u102e\u1021\u1019\u103a", + "agq": "\u1021\u102c\u1002\u103a\u101f\u102d\u1014\u103a\u1038", + "en": "\u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a", + "ang": "\u1021\u1004\u103a\u1039\u1002\u101c\u102d\u1015\u103a\u1005\u102c\u101f\u1031\u102c\u1004\u103a\u1038", + "id": "\u1021\u1004\u103a\u1012\u102d\u102f\u1014\u102e\u1038\u101b\u103e\u102c\u1038", + "is": "\u1021\u102d\u102f\u1004\u103a\u1005\u103a\u101c\u1014\u1039\u1012\u102e", + "ga": "\u1021\u102d\u102f\u1004\u103a\u1038\u101b\u1005\u103a", + "sga": "\u1021\u102d\u102f\u1004\u103a\u1038\u101b\u1005\u103a \u101f\u1031\u102c\u1004\u103a\u1038", + "ig": "\u1021\u1005\u1039\u1002\u1018\u102d\u102f", + "am": "\u1021\u1014\u103a\u101f\u102c\u101b\u1005\u103b\u1001\u103b", + "ebu": "\u1021\u1019\u103a\u1018\u1030", + "sq": "\u1021\u101a\u103a\u101c\u103a\u1018\u1031\u1038\u1014\u102e\u1038\u101a\u1014\u103a\u1038", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "ain": "Ainu", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "ale": "Aleut", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "anp": "Angika", + "njo": "Ao Naga", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "ay": "Aymara", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bal": "Baluchi", + "bax": "Bamun", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brh": "Brahui", + "bra": "Braj", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "chy": "Cheyenne", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "cop": "Coptic", + "mus": "Creek", + "crh": "Crimean Turkish", + "dar": "Dargwa", + "dzg": "Dazaga", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dyu": "Dyula", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "egl": "Emilian", + "myv": "Erzya", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gan": "Gan Chinese", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "Interlingua", + "ie": "Interlingue", + "ik": "Inupiaq", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "jut": "Jutish", + "kbd": "Kabardian", + "kgp": "Kaingang", + "kkj": "Kako", + "xal": "Kalmyk", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kho": "Khotanese", + "khw": "Khowar", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lam": "Lamba", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "Lozi", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "lun": "Lunda", + "mde": "Maba", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "es_MX": "Mexican Spanish", + "mic": "Micmac", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "mdf": "Moksha", + "ro_MD": "Moldavian", + "lol": "Mongo", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "ttt": "Muslim Tat", + "mye": "Myene", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "nso": "Northern Sotho", + "nov": "Novial", + "nym": "Nyamwezi", + "ny": "Nyanja", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitan", + "oj": "Ojibwa", + "goh": "Old High German", + "non": "Old Norse", + "pro": "Old Proven\u00e7al", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romany", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "sm": "Samoan", + "sgs": "Samogitian", + "sad": "Sandawe", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "gd": "Scottish Gaelic", + "sly": "Selayar", + "sel": "Selkup", + "see": "Seneca", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "den": "Slave", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "st": "Southern Sotho", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "ss": "Swati", + "syr": "Syriac", + "tl": "Tagalog", + "ty": "Tahitian", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "ter": "Tereno", + "tet": "Tetum", + "tig": "Tigre", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "yi": "Yiddish", + "zap": "Zapotec", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/nb-NO.json b/public/intl/language/nb-NO.json new file mode 100644 index 0000000..b57ae3f --- /dev/null +++ b/public/intl/language/nb-NO.json @@ -0,0 +1,611 @@ +{ + "ab": "abkhasisk", + "ace": "achinesisk", + "ach": "acoli", + "ada": "adangme", + "ady": "adyghe", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "ainu", + "ak": "akan", + "akk": "akkadisk", + "bss": "akose", + "akz": "Alabama", + "sq": "albansk", + "ale": "aleutisk", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "en_US": "amerikansk engelsk", + "am": "amharisk", + "anp": "angika", + "njo": "Ao Naga", + "ar": "arabisk", + "an": "aragonsk", + "arc": "arameisk", + "aro": "Araona", + "arp": "arapaho", + "arn": "araukansk", + "arw": "arawak", + "hy": "armensk", + "rup": "aromansk", + "frp": "Arpitan", + "az": "aserbajdsjansk", + "as": "assamisk", + "ast": "asturisk", + "asa": "asu", + "cch": "atsam", + "en_AU": "australsk engelsk", + "av": "avarisk", + "ae": "avestisk", + "awa": "awadhi", + "ay": "aymara", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "ban": "balinesisk", + "bal": "baluchi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basa", + "ba": "basjkirsk", + "eu": "baskisk", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengali", + "bew": "Betawi", + "bho": "bhojpuri", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "zbl": "blissymboler", + "brx": "bodo", + "bs": "bosnisk", + "brh": "Brahui", + "bra": "braj", + "pt_BR": "brasiliansk portugisisk", + "br": "bretonsk", + "en_GB": "britisk engelsk", + "bug": "buginesisk", + "bg": "bulgarsk", + "bum": "bulu", + "bua": "buriat", + "my": "burmesisk", + "cad": "caddo", + "frc": "Cajun French", + "en_CA": "canadisk engelsk", + "fr_CA": "canadisk fransk", + "cps": "Capiznon", + "cay": "cayuga", + "ceb": "cebuansk", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagatai", + "ch": "chamorro", + "chr": "cherokesisk", + "chy": "cheyenne", + "chb": "chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "chinook", + "chp": "chipewiansk", + "cho": "choctaw", + "chk": "chuukesisk", + "cr": "cree", + "mus": "creek", + "dak": "dakota", + "da": "dansk", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dyu": "dyula", + "dz": "dzongkha", + "efi": "efik", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamittisk", + "egl": "Emilian", + "smn": "enaresamisk", + "en": "engelsk", + "myv": "erzya", + "eo": "esperanto", + "et": "estisk", + "pt_PT": "europeisk portugisisk", + "es_ES": "europeisk spansk", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "hif": "Fiji Hindi", + "fj": "fijiansk", + "fil": "filippinsk", + "fi": "finsk", + "nl_BE": "flamsk", + "mul": "flere spr\u00e5k", + "fon": "fon", + "zh_Hans": "forenklet kinesisk", + "gur": "Frafra", + "fr": "fransk", + "fur": "friuliansk", + "ff": "fulani", + "fo": "f\u00e6r\u00f8ysk", + "phn": "f\u00f8nikisk", + "gaa": "ga", + "gag": "gagausisk", + "gl": "galisisk", + "egy": "gammelegyptisk", + "ang": "gammelengelsk", + "fro": "gammelfransk", + "grc": "gammelgresk", + "goh": "gammelh\u00f8ytysk", + "sga": "gammelirsk", + "non": "gammelnorsk", + "peo": "gammelpersisk", + "pro": "gammelproven\u00e7alsk", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "ka": "georgisk", + "gez": "ges", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "gotisk", + "grb": "grebo", + "el": "gresk", + "kl": "gr\u00f8nlandsk", + "gn": "guarani", + "gu": "gujarati", + "guz": "gusii", + "gwi": "gwichin", + "hai": "haida", + "ht": "haitisk", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "hawaiisk", + "he": "hebraisk", + "hz": "herero", + "hit": "hettittisk", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hiri motu", + "hmn": "hmong", + "hup": "hupa", + "be": "hviterussisk", + "hsb": "h\u00f8ysorbisk", + "iba": "iban", + "ibb": "ibibio", + "ig": "ibo", + "io": "ido", + "ilo": "iloko", + "id": "indonesisk", + "izh": "Ingrian", + "inh": "ingusjisk", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "irsk", + "is": "islandsk", + "it": "italiensk", + "sah": "jakutsk", + "jam": "Jamaican Creole English", + "ja": "japansk", + "jv": "javanesisk", + "yi": "jiddisk", + "kaj": "jju", + "dyo": "jola-fonyi", + "yo": "joruba", + "jut": "Jutish", + "jrb": "j\u00f8dearabisk", + "jpr": "j\u00f8depersisk", + "kbd": "kabardisk", + "kab": "kabylsk", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kn": "kannada", + "yue": "kantonesisk", + "kr": "kanuri", + "kea": "kappverdisk", + "krc": "karachay-balkar", + "kaa": "karakalpakisk", + "krl": "karelsk", + "car": "karibisk", + "kk": "kasakhisk", + "ks": "kasjmiri", + "csb": "kasjubisk", + "ca": "katalansk", + "kaw": "kawi", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotanesisk", + "khw": "Khowar", + "ebu": "kiembu", + "cgg": "kiga", + "kg": "kikongo", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "zh": "kinesisk", + "rw": "kinyarwanda", + "ky": "kirgisisk", + "gil": "kiribatisk", + "cu": "kirkeslavisk", + "kiu": "Kirmanjki", + "nwc": "klassisk newari", + "syc": "klassisk syrisk", + "tlh": "klingon", + "bkm": "kom", + "kv": "komi", + "koi": "komipermjakisk", + "swb": "komorisk", + "swc": "kongolesisk swahili", + "kok": "konkani", + "cop": "koptisk", + "ko": "koreansk", + "kw": "kornisk", + "kfo": "koro", + "co": "korsikansk", + "kos": "kosraeansk", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "crh": "krimtatarisk", + "kri": "Krio", + "hr": "kroatisk", + "kj": "kuanyama", + "kum": "kumyk", + "ku": "kurdisk", + "ckb": "kurdisk (sorani)", + "kru": "kurukh", + "kut": "kutenai", + "nmg": "kwasio", + "ksh": "k\u00f8lnsk", + "lad": "ladinsk", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laotisk", + "ltg": "Latgalian", + "la": "latin", + "es_419": "latinamerikansk spansk", + "lv": "latvisk", + "dsb": "lavsorbisk", + "nds": "lavtysk", + "lzz": "Laz", + "lez": "lezghian", + "lij": "Ligurian", + "li": "limburgisk", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lt": "litauisk", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "luy": "luhya", + "lui": "luiseno", + "smj": "lulesamisk", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxemburgsk", + "mde": "maba", + "jmc": "machame", + "mg": "madagassisk", + "mad": "maduresisk", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "mk": "makedonsk", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ml": "malayalam", + "ms": "malayisk", + "mt": "maltesisk", + "mdr": "mandar", + "man": "mandingo", + "mnc": "mandsju", + "mni": "manipuri", + "gv": "mansk", + "mi": "maori", + "mr": "marathi", + "chm": "mari", + "mh": "marshallesisk", + "mwr": "marwari", + "mas": "masai", + "mfe": "mauritisk-kreolsk", + "mzn": "Mazanderani", + "byv": "medumba", + "es_MX": "meksikansk spansk", + "enm": "mellomengelsk", + "frm": "mellomfransk", + "gmh": "mellomh\u00f8ytysk", + "mga": "mellomirsk", + "dum": "mellomnederlandsk", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirandesisk", + "ar_001": "moderne standard arabisk", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldovsk", + "lol": "mongo", + "mn": "mongolsk", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "naq": "nama", + "nap": "napolitansk", + "na": "nauru", + "nv": "navajo", + "ng": "ndonga", + "nl": "nederlandsk", + "ne": "nepali", + "new": "newari", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niueansk", + "nqo": "nk\u00e5", + "nog": "nogai", + "nd": "nord-ndebele", + "nso": "nord-sotho", + "frr": "nordfrisisk", + "se": "nordsamisk", + "no": "norsk", + "nb": "norsk bokm\u00e5l", + "nn": "norsk nynorsk", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "tog": "nyasa-tongansk", + "nyo": "nyoro", + "nzi": "nzima", + "oj": "ojibwa", + "oc": "oksitansk", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "ossetisk", + "ota": "ottomansk tyrkisk", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauisk", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasinan", + "pap": "papiamento", + "ps": "pashto", + "pdc": "Pennsylvania German", + "fa": "persisk", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pl": "polsk", + "pon": "ponapisk", + "pnt": "Pontic", + "pt": "portugisisk", + "prg": "Prussian", + "pa": "punjabi", + "qu": "quechua", + "quc": "quich\u00e9", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotongansk", + "rm": "retoromansk", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "romani", + "rof": "rombo", + "root": "rot", + "rtm": "Rotuman", + "rug": "Roviana", + "ro": "rumensk", + "rn": "rundi", + "ru": "russisk", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "sam": "samaritansk arameisk", + "saq": "samburu", + "sm": "samoansk", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santali", + "sc": "sardinsk", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkupisk", + "seh": "sena", + "see": "seneca", + "tzm": "sentralmarokkansk tamazight", + "sr": "serbisk", + "sh": "serbokroatisk", + "srr": "serer", + "sei": "Seri", + "tn": "setswana", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "ii": "sichuan-yi", + "scn": "siciliansk", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindhi", + "si": "singalesisk", + "sms": "skoltesamisk", + "sco": "skotsk", + "gd": "skotsk g\u00e6lisk", + "den": "slavisk", + "sk": "slovakisk", + "sl": "slovensk", + "xog": "soga", + "sog": "sogdisk", + "so": "somali", + "snk": "soninke", + "azb": "South Azerbaijani", + "es": "spansk", + "srn": "sranan tongo", + "zgh": "standard marrokansk tamazight", + "suk": "sukuma", + "sux": "sumerisk", + "su": "sundanesisk", + "sus": "susu", + "gsw": "sveitsertysk", + "fr_CH": "sveitsisk fransk", + "de_CH": "sveitsisk h\u00f8ytysk", + "sv": "svensk", + "sw": "swahili", + "ss": "swati", + "syr": "syrisk", + "nr": "s\u00f8r-ndebele", + "st": "s\u00f8r-sotho", + "alt": "s\u00f8raltaisk", + "sma": "s\u00f8rsamisk", + "shi": "tachelhit", + "tg": "tadsjikisk", + "tl": "tagalog", + "ty": "tahitisk", + "dav": "taita", + "tly": "Talysh", + "tmh": "tamasjek", + "ta": "tamilsk", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatarisk", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thai", + "bo": "tibetansk", + "tig": "tigr\u00e9", + "ti": "tigrinja", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tongansk", + "fit": "Tornedalen Finnish", + "zh_Hant": "tradisjonell kinesisk", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshian", + "shu": "Tsjad-arabisk", + "cs": "tsjekkisk", + "ce": "tsjetsjensk", + "cv": "tsjuvansk", + "ts": "tsonga", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tk": "turkmensk", + "tru": "Turoyo", + "tvl": "tuvalu", + "tyv": "tuvinisk", + "tw": "twi", + "kcg": "tyap", + "tr": "tyrkisk", + "de": "tysk", + "udm": "udmurt", + "uga": "ugaritisk", + "ug": "uigurisk", + "und": "ukjent spr\u00e5k", + "uk": "ukrainsk", + "umb": "umbundu", + "hu": "ungarsk", + "ur": "urdu", + "uz": "usbekisk", + "zxx": "uten spr\u00e5klig innhold", + "vai": "vai", + "wa": "vallonsk", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "fy": "vestfrisisk", + "vi": "vietnamesisk", + "vo": "volapyk", + "vro": "V\u00f5ro", + "vot": "votisk", + "vun": "vunjo", + "wal": "walamo", + "cy": "walisisk", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "yangben", + "yao": "yao", + "yap": "yapesisk", + "ybb": "yemba", + "zap": "zapotec", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zuni", + "de_AT": "\u00f8sterriksk tysk", + "frs": "\u00f8stfrisisk" +} diff --git a/public/intl/language/nl-NL.json b/public/intl/language/nl-NL.json new file mode 100644 index 0000000..33b4682 --- /dev/null +++ b/public/intl/language/nl-NL.json @@ -0,0 +1,611 @@ +{ + "ab": "Abchazisch", + "ada": "Adangme", + "ady": "Adygees", + "om": "Afaan Oromo", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaans", + "agq": "Aghem", + "ain": "Ainu", + "ak": "Akan", + "akk": "Akkadisch", + "ach": "Akoli", + "bss": "Akoose", + "akz": "Alabama", + "sq": "Albanees", + "ale": "Aleoetisch", + "arq": "Algerijns Arabisch", + "en_US": "Amerikaans Engels", + "ase": "Amerikaanse Gebarentaal", + "am": "Amhaars", + "anp": "Angika", + "njo": "Ao Naga", + "ar": "Arabisch", + "an": "Aragonees", + "arc": "Aramees", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "hy": "Armeens", + "rup": "Aroemeens", + "frp": "Arpitaans", + "as": "Assamees", + "ast": "Asturisch", + "asa": "Asu", + "ace": "Atjehs", + "cch": "Atsam", + "en_AU": "Australisch Engels", + "av": "Avarisch", + "ae": "Avestisch", + "awa": "Awadhi", + "ay": "Aymara", + "az": "Azerbeidzjaans", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinees", + "bm": "Bambara", + "bax": "Bamoun", + "bjn": "Banjar", + "bas": "Basa", + "ba": "Basjkiers", + "eu": "Baskisch", + "bbc": "Batak Toba", + "bar": "Beiers", + "bej": "Beja", + "bal": "Beloetsji", + "bem": "Bemba", + "bez": "Bena", + "bn": "Bengaals", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "my": "Birmaans", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbolen", + "brx": "Bodo", + "bua": "Boerjatisch", + "bs": "Bosnisch", + "brh": "Brahui", + "bra": "Braj", + "pt_BR": "Braziliaans Portugees", + "br": "Bretons", + "en_GB": "Brits Engels", + "bug": "Buginees", + "bg": "Bulgaars", + "bum": "Bulu", + "cad": "Caddo", + "frc": "Cajun-Frans", + "en_CA": "Canadees Engels", + "fr_CA": "Canadees Frans", + "cps": "Capiznon", + "car": "Caribisch", + "ca": "Catalaans", + "cay": "Cayuga", + "ceb": "Cebuano", + "chg": "Chagatai", + "ch": "Chamorro", + "chr": "Cherokee", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "Chiga", + "zh": "Chinees", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "chk": "Chuukees", + "swc": "Congo Swahili", + "kw": "Cornish", + "co": "Corsicaans", + "cr": "Cree", + "mus": "Creek", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "da": "Deens", + "del": "Delaware", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "Duala", + "de": "Duits", + "dtp": "Dusun", + "dyu": "Dyula", + "dz": "Dzongkha", + "efi": "Efik", + "arz": "Egyptisch Arabisch", + "eka": "Ekajuk", + "elx": "Elamitisch", + "ebu": "Embu", + "egl": "Emiliano", + "en": "Engels", + "myv": "Erzja", + "eo": "Esperanto", + "et": "Estisch", + "pt_PT": "Europees Portugees", + "es_ES": "Europees Spaans", + "ee": "Ewe", + "ewo": "Ewondo", + "ext": "Extremeens", + "fo": "Faer\u00f6ers", + "fan": "Fang", + "fat": "Fanti", + "fj": "Fijisch", + "hif": "Fijisch Hindi", + "fil": "Filipijns", + "fi": "Fins", + "phn": "Foenicisch", + "fon": "Fon", + "fr": "Frans", + "fy": "Fries", + "fur": "Friulisch", + "ff": "Fulah", + "gaa": "Ga", + "gag": "Gagaoezisch", + "gl": "Galicisch", + "gan": "Gan Chinese", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Ge\u2019ez", + "zxx": "geen lingu\u00efstische inhoud", + "aln": "Gegisch", + "ka": "Georgisch", + "bbj": "Ghomala\u2019", + "ki": "Gikuyu", + "glk": "Gilaki", + "gil": "Gilbertees", + "gom": "Goa Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothisch", + "grb": "Grebo", + "el": "Grieks", + "kl": "Groenlands", + "gn": "Guaran\u00ed", + "gu": "Gujarati", + "gur": "Gurune", + "guz": "Gusii", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "ht": "Ha\u00eftiaans Creools", + "hak": "Hakka", + "ha": "Hausa", + "haw": "Hawa\u00efaans", + "he": "Hebreeuws", + "hz": "Herero", + "hit": "Hettitisch", + "hil": "Hiligaynon", + "hi": "Hindi", + "ho": "Hiri Motu", + "hmn": "Hmong", + "hu": "Hongaars", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ga": "Iers", + "ig": "Igbo", + "is": "IJslands", + "ilo": "Iloko", + "smn": "Inari-Samisch", + "id": "Indonesisch", + "inh": "Ingoesjetisch", + "izh": "Ingrisch", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiaq", + "it": "Italiaans", + "sah": "Jakoets", + "jam": "Jamaicaans Creools", + "ja": "Japans", + "jv": "Javaans", + "yi": "Jiddisch", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "jrb": "Judeo-Arabisch", + "jpr": "Judeo-Perzisch", + "jut": "Jutlands", + "quc": "K\u2019iche\u2019", + "kea": "Kaapverdisch Creools", + "kbd": "Kabardisch", + "kab": "Kabylisch", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kln": "Kalenjin", + "xal": "Kalmuks", + "kam": "Kamba", + "kbl": "Kanembu", + "kn": "Kannada", + "yue": "Kantonees", + "kr": "Kanuri", + "kaa": "Karakalpaks", + "krc": "Karatsjaj-Balkarisch", + "krl": "Karelisch", + "ks": "Kasjmiri", + "csb": "Kasjoebisch", + "kaw": "Kawi", + "kk": "Kazachs", + "ken": "Kenyang", + "cu": "Kerkslavisch", + "kha": "Khasi", + "km": "Khmer", + "kho": "Khotanees", + "khw": "Khowar", + "qug": "Kichwa", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "ky": "Kirgizisch", + "kiu": "Kirmanck\u00ee", + "rn": "Kirundi", + "lzh": "Klassiek Chinees", + "nwc": "Klassiek Nepalbhasa", + "syc": "Klassiek Syrisch", + "tlh": "Klingon", + "kum": "Koemuks", + "ku": "Koerdisch", + "ksh": "K\u00f6lsch", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permjaaks", + "kg": "Kongo", + "kok": "Konkani", + "cop": "Koptisch", + "ko": "Koreaans", + "kfo": "Koro", + "kos": "Kosraeaans", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "kpe": "Kpelle", + "crh": "Krim-Tataars", + "kri": "Krio", + "hr": "Kroatisch", + "kj": "Kuanyama", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakota", + "lam": "Lamba", + "lag": "Langi", + "lo": "Laotiaans", + "la": "Latijn", + "es_419": "Latijns-Amerikaans Spaans", + "lzz": "Lazisch", + "ltg": "Letgaals", + "lv": "Lets", + "lez": "Lezgisch", + "lij": "Ligurisch", + "liv": "Lijfs", + "li": "Limburgs", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lt": "Litouws", + "jbo": "Lojban", + "lmo": "Lombardisch", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lg": "Luganda", + "lui": "Luiseno", + "smj": "Lule-Samisch", + "lun": "Lunda", + "luo": "Luo", + "lb": "Luxemburgs", + "luy": "Luyia", + "mas": "Maa", + "mde": "Maba", + "mk": "Macedonisch", + "jmc": "Machame", + "mad": "Madoerees", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makassaars", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "mg": "Malagassisch", + "ml": "Malayalam", + "ms": "Maleis", + "mt": "Maltees", + "mdr": "Mandar", + "man": "Mandingo", + "mnc": "Mantsjoe", + "gv": "Manx", + "mi": "Maori", + "arn": "Mapudungun", + "mr": "Marathi", + "chm": "Mari", + "ary": "Marokkaans Arabisch", + "mh": "Marshallees", + "mwr": "Marwari", + "mzn": "Mazanderani", + "byv": "Medumba", + "mul": "Meerdere talen", + "mni": "Meitei", + "men": "Mende", + "mwv": "Mentawai", + "mer": "Meru", + "mgo": "Meta\u2019", + "es_MX": "Mexicaans Spaans", + "mic": "Mi\u2019kmaq", + "enm": "Middelengels", + "frm": "Middelfrans", + "gmh": "Middelhoogduits", + "mga": "Middeliers", + "dum": "Middelnederlands", + "min": "Minangkabau", + "xmf": "Mingreels", + "nan": "Minnanyu", + "mwl": "Mirandees", + "lus": "Mizo", + "ar_001": "modern standaard Arabisch", + "moh": "Mohawk", + "mdf": "Moksja", + "ro_MD": "Moldavian", + "lol": "Mongo", + "mn": "Mongools", + "mfe": "Morisyen", + "ttt": "Moslim Tat", + "mos": "Mossi", + "mua": "Mundang", + "mye": "Myene", + "nqo": "N\u2019Ko", + "naq": "Nama", + "nap": "Napolitaans", + "na": "Nauruaans", + "nv": "Navajo", + "ng": "Ndonga", + "nl": "Nederlands", + "nds": "Nedersaksisch", + "dsb": "Nedersorbisch", + "ne": "Nepalees", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "nmg": "Ngumba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niueaans", + "nog": "Nogai", + "frr": "Noord-Fries", + "nd": "Noord-Ndebele", + "se": "Noord-Samisch", + "nso": "Noord-Sotho", + "no": "Noors", + "nb": "Noors - Bokm\u00e5l", + "nn": "Noors - Nynorsk", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitaans", + "or": "Odia", + "udm": "Oedmoerts", + "uga": "Oegaritisch", + "ug": "Oeigoers", + "uk": "Oekra\u00efens", + "uz": "Oezbeeks", + "oj": "Ojibwa", + "und": "onbekende taal", + "frs": "Oost-Fries", + "de_AT": "Oostenrijks Duits", + "hsb": "Oppersorbisch", + "osa": "Osage", + "os": "Ossetisch", + "ota": "Ottomaans-Turks", + "egy": "Oudegyptisch", + "ang": "Oudengels", + "fro": "Oudfrans", + "grc": "Oudgrieks", + "goh": "Oudhoogduits", + "sga": "Oudiers", + "non": "Oudnoors", + "peo": "Oudperzisch", + "pro": "Oudproven\u00e7aals", + "prg": "Oudpruisisch", + "pal": "Pahlavi", + "pau": "Palaus", + "pi": "Pali", + "pfl": "Paltsisch", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiaments", + "ps": "Pasjtoe", + "pdc": "Pennsylvania-Duits", + "fa": "Perzisch", + "pcd": "Picardisch", + "pms": "Pi\u00ebmontees", + "pdt": "Plautdietsch", + "pon": "Pohnpeiaans", + "pnt": "Pontisch", + "pl": "Pools", + "pt": "Portugees", + "pa": "Punjabi", + "qu": "Quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rm": "Reto-Romaans", + "rif": "Riffijns", + "ro": "Roemeens", + "rue": "Roetheens", + "rgn": "Romagnol", + "rom": "Romani", + "rof": "Rombo", + "root": "Root", + "rtm": "Rotumaans", + "rug": "Roviana", + "ru": "Russisch", + "rwk": "Rwa", + "ssy": "Saho", + "sam": "Samaritaans-Aramees", + "saq": "Samburu", + "sm": "Samoaans", + "sgs": "Samogitisch", + "sad": "Sandawe", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskriet", + "sat": "Santali", + "sc": "Sardijns", + "sas": "Sasak", + "sdc": "Sassarees", + "stq": "Saterfries", + "saz": "Saurashtra", + "sco": "Schots", + "gd": "Schots-Gaelisch", + "sly": "Selayar", + "sel": "Selkoeps", + "seh": "Sena", + "see": "Seneca", + "srr": "Serer", + "sei": "Seri", + "sr": "Servisch", + "sh": "Servo-Kroatisch", + "ksb": "Shambala", + "shn": "Shan", + "swb": "Shimaore", + "sn": "Shona", + "scn": "Siciliaans", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silezisch", + "sli": "Silezisch Duits", + "sd": "Sindhi", + "si": "Singalees", + "sms": "Skolt-Samisch", + "den": "Slavey", + "sl": "Sloveens", + "sk": "Slowaaks", + "sux": "Soemerisch", + "su": "Soendanees", + "sus": "Soesoe", + "xog": "Soga", + "sog": "Sogdisch", + "so": "Somalisch", + "snk": "Soninke", + "ckb": "Soran\u00ee", + "es": "Spaans", + "srn": "Sranantongo", + "zgh": "Standaard Marokkaanse Tamazight", + "suk": "Sukuma", + "sw": "Swahili", + "ss": "Swazi", + "syr": "Syrisch", + "tg": "Tadzjieks", + "tl": "Tagalog", + "ty": "Tahitiaans", + "dav": "Taita", + "tly": "Talysh", + "tmh": "Tamashek", + "tzm": "Tamazight (Centraal-Marokko)", + "ta": "Tamil", + "trv": "Taroko", + "twq": "Tasawaq", + "shi": "Tashelhiyt", + "tt": "Tataars", + "te": "Telugu", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetun", + "th": "Thais", + "bo": "Tibetaans", + "tig": "Tigre", + "ti": "Tigrinya", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tum": "Toemboeka", + "tyv": "Toevaans", + "tpi": "Tok Pisin", + "tkl": "Tokelaus", + "to": "Tongaans", + "fit": "Tornedal-Fins", + "zh_Hant": "traditioneel Chinees", + "tkr": "Tsakhur", + "tsd": "Tsakonisch", + "tsi": "Tsimshian", + "shu": "Tsjadisch Arabisch", + "cs": "Tsjechisch", + "ce": "Tsjetsjeens", + "cv": "Tsjoevasjisch", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "aeb": "Tunesisch Arabisch", + "tk": "Turkmeens", + "tr": "Turks", + "tru": "Turoyo", + "tvl": "Tuvaluaans", + "tw": "Twi", + "kcg": "Tyap", + "umb": "Umbundu", + "ur": "Urdu", + "vai": "Vai", + "ve": "Venda", + "vec": "Venetiaans", + "zh_Hans": "vereenvoudigd Chinees", + "vi": "Vietnamees", + "nl_BE": "Vlaams", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votisch", + "vun": "Vunjo", + "wa": "Waals", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "cy": "Welsh", + "vep": "Wepsisch", + "mrj": "West-Mari", + "vls": "West-Vlaams", + "be": "Wit-Russisch", + "wal": "Wolaytta", + "wo": "Wolof", + "wuu": "Wuyu", + "xh": "Xhosa", + "hsn": "Xiangyu", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapees", + "ybb": "Yemba", + "ii": "Yi", + "yo": "Yoruba", + "esu": "Yupik", + "zap": "Zapotec", + "dje": "Zarma", + "zza": "Zaza", + "zea": "Zeeuws", + "zen": "Zenaga", + "za": "Zhuang", + "zu": "Zoeloe", + "gbz": "Zoroastrisch Dari", + "alt": "Zuid-Alta\u00efsch", + "azb": "Zuid-Azerbeidzjaans Arabisch", + "nr": "Zuid-Ndbele", + "sma": "Zuid-Samisch", + "st": "Zuid-Sotho", + "zun": "Zuni", + "sv": "Zweeds", + "gsw": "Zwitserduits", + "fr_CH": "Zwitsers Frans", + "de_CH": "Zwitsers Hoogduits" +} diff --git a/public/intl/language/pl-PL.json b/public/intl/language/pl-PL.json new file mode 100644 index 0000000..d6daa9b --- /dev/null +++ b/public/intl/language/pl-PL.json @@ -0,0 +1,611 @@ +{ + "ab": "abchaski", + "ace": "aceh", + "ach": "aczoli", + "ada": "adangme", + "ady": "adygejski", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ay": "ajmara", + "ain": "ajnu", + "akk": "akadyjski", + "ak": "akan", + "bss": "akose", + "akz": "alabama", + "sq": "alba\u0144ski", + "aln": "alba\u0144ski gegijski", + "ale": "aleucki", + "arq": "algierski arabski", + "en_US": "ameryka\u0144ski angielski", + "es_419": "ameryka\u0144ski hiszpa\u0144ski", + "ase": "ameryka\u0144ski j\u0119zyk migowy", + "am": "amharski", + "en": "angielski", + "anp": "angika", + "njo": "ao", + "ar": "arabski", + "shu": "arabski (Czad)", + "an": "arago\u0144ski", + "arc": "aramejski", + "aro": "araona", + "arp": "arapaho", + "arn": "arauka\u0144ski", + "arw": "arawak", + "rup": "arumu\u0144ski", + "as": "asamski", + "ast": "asturyjski", + "asa": "asu", + "teo": "ateso", + "cch": "atsam", + "en_AU": "australijski angielski", + "de_AT": "austriacki niemiecki", + "awa": "awadhi", + "av": "awarski", + "ae": "awestyjski", + "az": "azerski", + "bqi": "bachtiarski", + "bfq": "badaga", + "ksf": "bafia", + "bfd": "bafut", + "ban": "balijski", + "bm": "bambara", + "bax": "bamum", + "bjn": "banjar", + "bas": "basa", + "eu": "baskijski", + "ba": "baszkirski", + "bbc": "batak toba", + "bar": "bawarski", + "bej": "bed\u017ca", + "bal": "belud\u017ci", + "bem": "bemba", + "bez": "bena", + "bn": "bengalski", + "bew": "betawi", + "bho": "bhod\u017apuri", + "be": "bia\u0142oruski", + "bik": "bikol", + "bin": "bini", + "my": "birma\u0144ski", + "bi": "bislama", + "bpy": "bisznuprija-manipuri", + "byn": "blin", + "zbl": "bliss", + "brx": "bodo", + "bs": "bo\u015bniacki", + "bra": "brad\u017a", + "brh": "brahui", + "zxx": "brak tre\u015bci o charakterze j\u0119zykowym", + "pt_BR": "brazylijski portugalski", + "br": "breto\u0144ski", + "en_GB": "brytyjski angielski", + "bug": "bugi\u0144ski", + "bum": "bulu", + "bg": "bu\u0142garski", + "bua": "buriacki", + "tkr": "cachurski", + "frc": "cajun", + "tsd": "cako\u0144ski", + "cps": "capiznon", + "ceb": "cebuano", + "tzm": "centralnomaroka\u0144ski tamazight", + "ch": "chamorro", + "cgg": "chiga", + "qug": "chimborazo g\u00f3rski keczua", + "zh": "chi\u0144ski", + "zh_Hant": "chi\u0144ski (tradycyjny)", + "zh_Hans": "chi\u0144ski (uproszczony)", + "lzh": "chi\u0144ski klasyczny", + "chp": "chipewyan", + "cho": "choctaw", + "hr": "chorwacki", + "kho": "chota\u0144ski", + "mus": "creek", + "rom": "cyga\u0144ski", + "chg": "czagatajski", + "ce": "czecze\u0144ski", + "cs": "czeski", + "chb": "czibcza", + "chr": "czirokeski", + "za": "czuang", + "cv": "czuwaski", + "dak": "dakota", + "dar": "dargwijski", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dyo": "diola", + "doi": "dogri", + "dgr": "dogrib", + "dsb": "dolno\u0142u\u017cycki", + "nds": "dolnosakso\u0144ski", + "sli": "dolno\u015bl\u0105ski", + "dua": "duala", + "da": "du\u0144ski", + "dtp": "dusun centralny", + "dyu": "dyula", + "dz": "dzongkha", + "dje": "d\u017cerma", + "efi": "efik", + "arz": "egipski arabski", + "eka": "ekajuk", + "elx": "elamicki", + "ebu": "embu", + "egl": "emilijski", + "myv": "erzya", + "eo": "esperanto", + "et": "esto\u0144ski", + "ext": "estremadurski", + "es_ES": "europejski hiszpa\u0144ski", + "pt_PT": "europejski portugalski", + "ee": "ewe", + "ewo": "ewondo", + "fan": "fang", + "fat": "fanti", + "fo": "farerski", + "phn": "fenicki", + "fj": "fid\u017cijski", + "fil": "filipino", + "fi": "fi\u0144ski", + "nl_BE": "flamandzki (Belgia)", + "fon": "fon", + "gur": "frafra", + "fr": "francuski", + "frp": "franko-prowansalski", + "fur": "friulijski", + "stq": "fryzyjski saterlandzki", + "frs": "fryzyjski wschodni", + "ff": "fulani", + "gaa": "ga", + "gag": "gagauski", + "gl": "galicyjski", + "gan": "gan", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaya", + "bbj": "ghomala", + "gil": "gilberta\u0144ski", + "glk": "gilia\u0144ski", + "got": "gocki", + "gon": "gondi", + "gor": "gorontalo", + "hsb": "g\u00f3rno\u0142u\u017cycki", + "grb": "grebo", + "el": "grecki", + "kl": "grenlandzki", + "ka": "gruzi\u0144ski", + "gn": "guarani", + "gu": "gud\u017aaracki", + "guz": "gusii", + "ksh": "gwara kolo\u0144ska", + "gwi": "gwich\u02bcin", + "gez": "gyyz", + "hai": "haida", + "ht": "haita\u0144ski", + "hak": "hakka", + "ha": "hausa", + "haw": "hawajski", + "he": "hebrajski", + "hz": "herero", + "hit": "hetycki", + "hil": "hiligajnon", + "hi": "hindi", + "hif": "hindi fid\u017cyjskie", + "ho": "hiri motu", + "es": "hiszpa\u0144ski", + "hmn": "hmongijski", + "hup": "hupa", + "iba": "ibanag", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "ilokano", + "id": "indonezyjski", + "izh": "ingryjski", + "inh": "inguski", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "irlandzki", + "is": "islandzki", + "sah": "jakucki", + "jam": "jamajski", + "ja": "japo\u0144ski", + "yap": "japski", + "jv": "jawajski", + "chy": "j\u0119zyk Czejen\u00f3w", + "root": "j\u0119zyk rdzenny", + "yi": "jidysz", + "kaj": "jju", + "yo": "joruba", + "jrb": "judeoarabski", + "jpr": "judeoperski", + "jut": "jutlandzki", + "kbd": "kabardyjski", + "kab": "kabylski", + "kac": "kaczin", + "cad": "kaddo", + "kgp": "kaingang", + "cay": "kajuga", + "kkj": "kako", + "kln": "kalenjin", + "xal": "ka\u0142mucki", + "kam": "kamba", + "en_CA": "kanadyjski angielski", + "fr_CA": "kanadyjski francuski", + "kbl": "kanembu", + "kn": "kannada", + "yue": "kanto\u0144ski", + "kr": "kanuri", + "krc": "karaczajsko-ba\u0142karski", + "kaa": "karaka\u0142packi", + "krl": "karelski", + "car": "karibi", + "ks": "kaszmirski", + "csb": "kaszubski", + "ca": "katalo\u0144ski", + "kaw": "kawi", + "kk": "kazachski", + "qu": "keczua", + "ken": "kenyang", + "kha": "khasi", + "km": "khmerski", + "xh": "khosa", + "khw": "khowar", + "quc": "kicze", + "ki": "kikuju", + "kmb": "kimbundu", + "krj": "kinaraya", + "rw": "kinya-ruanda", + "ky": "kirgiski", + "kiu": "kirmand\u017cki", + "tlh": "klingo\u0144ski", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permiacki", + "swb": "komoryjski", + "swc": "kongijski suahili", + "kg": "kongo", + "kok": "konkani", + "gom": "konkani (Goa)", + "cop": "koptyjski", + "ko": "korea\u0144ski", + "kw": "kornijski", + "kfo": "koro", + "co": "korsyka\u0144ski", + "kos": "kosrae", + "avk": "kotava", + "khq": "koyra chini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "mfe": "kreolski Mauritiusa", + "kea": "kreolski Wysp Zielonego Przyl\u0105dka", + "cr": "kri", + "kri": "krio", + "crh": "krymski turecki", + "kum": "kumycki", + "ku": "kurdyjski", + "kru": "kurukh", + "kut": "kutenai", + "kj": "kwanyama", + "lad": "lady\u0144ski", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laota\u0144ski", + "smn": "lapo\u0144ski Inari", + "smj": "lapo\u0144ski Lule", + "sma": "lapo\u0144ski po\u0142udniowy", + "se": "lapo\u0144ski p\u00f3\u0142nocny", + "sms": "lapo\u0144ski Skolt", + "lzz": "lazyjski", + "lez": "lezgijski", + "lij": "liguryjski", + "li": "limburgijski", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lt": "litewski", + "liv": "liwski", + "jbo": "lojban", + "lmo": "lombardzki", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "luy": "luhya", + "lui": "luiseno", + "lb": "luksemburski", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "la": "\u0142aci\u0144ski", + "ltg": "\u0142atgalski", + "lv": "\u0142otewski", + "mde": "maba", + "mk": "macedo\u0144ski", + "jmc": "machame", + "mad": "madurajski", + "maf": "mafa", + "mag": "magahi", + "mai": "maithili", + "mak": "makasar", + "kde": "makonde", + "mgh": "makua", + "ml": "malajalam", + "ms": "malajski", + "dv": "malediwski", + "mg": "malgaski", + "mt": "malta\u0144ski", + "mnc": "manchu", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuryjski", + "gv": "manx", + "mi": "maoryjski", + "mr": "marathi", + "ary": "maroka\u0144ski arabski", + "mh": "marshall", + "mwr": "marwari", + "chm": "maryjski", + "mas": "masajski", + "mzn": "mazandera\u0144ski", + "fit": "me\u00e4nkieli", + "byv": "medumba", + "xmf": "megrelski", + "es_MX": "meksyka\u0144ski hiszpa\u0144ski", + "men": "mende", + "mwv": "mentawai", + "vmf": "me\u0144ski franko\u0144ski", + "mer": "meru", + "mgo": "meta", + "mic": "micmac", + "min": "minangkabu", + "nan": "minna\u0144ski", + "mwl": "mirandese", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "mo\u0142dawski", + "lol": "mongo", + "mn": "mongolski", + "mos": "mossi", + "mua": "mundang", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "na": "nauru", + "nv": "nawaho", + "nr": "ndebele po\u0142udniowy", + "nd": "ndebele p\u00f3\u0142nocny", + "ng": "ndonga", + "nap": "neapolita\u0144ski", + "ne": "nepalski", + "new": "newarski", + "nwc": "newarski klasyczny", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngombe", + "nmg": "ngumba", + "yrl": "nhengatu", + "nym": "niamwezi", + "nia": "nias", + "nl": "niderlandzki", + "de": "niemiecki", + "und": "nieznany j\u0119zyk", + "niu": "niue", + "ny": "njand\u017ca", + "nog": "nogajski", + "no": "norweski", + "nb": "norweski (bokm\u00e5l)", + "nn": "norweski (nynorsk)", + "nov": "novial", + "nus": "nuer", + "nyn": "nyankole", + "nyo": "nyoro", + "nzi": "nzema", + "oj": "od\u017cibwa", + "or": "orija", + "hy": "ormia\u0144ski", + "om": "oromski", + "osa": "osage", + "os": "osetyjski", + "ota": "osma\u0144sko-turecki", + "pal": "pahlavi", + "pfl": "palatynacki", + "pau": "palau", + "pi": "palijski", + "pam": "pampango", + "pag": "pangasino", + "pap": "papiamento", + "ps": "paszto", + "pa": "pend\u017cabski", + "pdc": "pensylwa\u0144ski", + "fa": "perski", + "pms": "piemoncki", + "pcd": "pikardyjski", + "pdt": "plautdietsch", + "pl": "polski", + "alt": "po\u0142udniowoa\u0142tajski", + "azb": "po\u0142udniowoazerski", + "pon": "ponpejski", + "pnt": "pontyjski", + "pt": "portugalski", + "frr": "p\u00f3\u0142nocnofryzyjski", + "oc": "prowansalski", + "prg": "pruski", + "raj": "rad\u017aasthani", + "rap": "rapanui", + "rar": "rarotonga", + "rm": "retoroma\u0144ski", + "rgn": "romagnol", + "rof": "rombo", + "ru": "rosyjski", + "rtm": "rotuma\u0144ski", + "rug": "roviana", + "ro": "rumu\u0144ski", + "rn": "rundi", + "rue": "rusi\u0144ski", + "rwk": "rwa", + "ssy": "saho", + "sam": "samaryta\u0144ski aramejski", + "ksb": "sambala", + "saq": "samburu", + "sm": "samoa\u0144ski", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskryt", + "sat": "santali", + "sc": "sardy\u0144ski", + "sas": "sasak", + "sdc": "sassarski", + "saz": "saurasztryjski", + "sly": "selayar", + "sel": "selkupski", + "seh": "sena", + "see": "seneka", + "sr": "serbski", + "sh": "serbsko-chorwacki", + "srr": "serer", + "sei": "seri", + "tn": "setswana", + "shn": "shan", + "sid": "sidamo", + "bla": "siksika", + "sd": "sindhi", + "ss": "siswati", + "den": "slave", + "sk": "s\u0142owacki", + "sl": "s\u0142owe\u0144ski", + "xog": "soga", + "sog": "sogdyjski", + "so": "somalijski", + "snk": "soninke", + "ckb": "sorani", + "st": "sotho po\u0142udniowy", + "nso": "sotho p\u00f3\u0142nocny", + "srn": "sranan tongo", + "cu": "staro-cerkiewno-s\u0142owia\u0144ski", + "goh": "staro-wysoko-niemiecki", + "ang": "staroangielski", + "fro": "starofrancuski", + "grc": "starogrecki", + "sga": "staroirlandzki", + "non": "staronordyjski", + "peo": "staroperski", + "pro": "staroprowansalski", + "egy": "staro\u017cytny egipski", + "sw": "suahili", + "suk": "sukuma", + "sux": "sumeryjski", + "su": "sundajski", + "sus": "susu", + "scn": "sycylijski", + "ii": "syczua\u0144ski", + "si": "syngaleski", + "syc": "syriacki", + "syr": "syryjski", + "sco": "szkocki", + "gd": "szkocki gaelicki", + "sn": "szona", + "fr_CH": "szwajcarski francuski", + "gsw": "szwajcarski niemiecki", + "sv": "szwedzki", + "szl": "\u015bl\u0105ski", + "gmh": "\u015brednio-wysoko-niemiecki", + "enm": "\u015brednioangielski", + "frm": "\u015bredniofrancuski", + "mga": "\u015brednioirlandzki", + "dum": "\u015bredniowieczny niderlandzki", + "ttt": "tacki", + "tg": "tad\u017cycki", + "tl": "tagalski", + "ty": "tahita\u0144ski", + "dav": "taita", + "th": "tajski", + "tly": "ta\u0142yski", + "tmh": "tamaszek", + "ta": "tamilski", + "rif": "tarifit", + "trv": "taroko", + "twq": "tasawaq", + "shi": "tashelhiyt", + "tt": "tatarski", + "te": "telugu", + "tem": "temne", + "ter": "tereno", + "tet": "tetum", + "tig": "tigre", + "ti": "tigrinia", + "tiv": "tiw", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tonga", + "tog": "tonga (Niasa)", + "chk": "truk", + "tsi": "tsimshian", + "ts": "tsonga", + "tcy": "tulu", + "tum": "tumbuka", + "aeb": "tunezyjski arabski", + "tr": "turecki", + "tk": "turkme\u0144ski", + "tru": "turoyo", + "tvl": "tuvalu", + "tyv": "tuwi\u0144ski", + "tw": "twi", + "kcg": "tyap", + "bo": "tybeta\u0144ski", + "udm": "udmurcki", + "uga": "ugarycki", + "ug": "ujgurski", + "uk": "ukrai\u0144ski", + "umb": "umbundu", + "ur": "urdu", + "uz": "uzbecki", + "ve": "venda", + "vo": "volapuk", + "vro": "v\u00f5ro", + "vun": "vunjo", + "vai": "wai", + "wal": "walamo", + "cy": "walijski", + "wa": "walo\u0144ski", + "wae": "walser", + "war": "waraj", + "wbp": "Warlpiri", + "was": "washo", + "guc": "way\u00fau", + "vec": "wenecki", + "vep": "wepski", + "hu": "w\u0119gierski", + "mul": "wiele j\u0119zyk\u00f3w", + "vi": "wietnamski", + "it": "w\u0142oski", + "wo": "wolof", + "vot": "wotiacki", + "ar_001": "wsp\u00f3\u0142czesny arabski", + "wuu": "wu", + "de_CH": "wysokoniemiecki (Szwajcaria)", + "hsn": "xiang", + "yav": "yangben", + "yao": "yao", + "ybb": "yemba", + "esu": "yupik \u015brodkowosyberyjski", + "vls": "zachodnioflamandzki", + "fy": "zachodniofryzyjski", + "mrj": "zachodniomaryjski", + "zap": "zapotecki", + "gbz": "zaratusztria\u0144ski dari", + "zza": "zazaki", + "zea": "zelandzki", + "zen": "zenaga", + "zgh": "zgh", + "zu": "zulu", + "zun": "zuni", + "chn": "\u017cargon Chinook", + "sgs": "\u017cmudzki" +} diff --git a/public/intl/language/pt-BR.json b/public/intl/language/pt-BR.json new file mode 100644 index 0000000..81bcc37 --- /dev/null +++ b/public/intl/language/pt-BR.json @@ -0,0 +1,611 @@ +{ + "ab": "abc\u00e1zio", + "akk": "acadiano", + "ace": "ach\u00e9m", + "ach": "acoli", + "ada": "adangme", + "ady": "adigue", + "aa": "afar", + "af": "afric\u00e2ner", + "afh": "afrihili", + "agq": "aghem", + "ay": "aimara", + "ain": "ainu", + "ak": "akan", + "bss": "akoose", + "akz": "Alabama", + "sq": "alban\u00eas", + "de": "alem\u00e3o", + "goh": "alem\u00e3o arcaico alto", + "de_AT": "alem\u00e3o austr\u00edaco", + "gmh": "alem\u00e3o m\u00e9dio-alto", + "gsw": "alem\u00e3o su\u00ed\u00e7o", + "ale": "ale\u00fate", + "arq": "Algerian Arabic", + "alt": "altai do sul", + "de_CH": "alto alem\u00e3o su\u00ed\u00e7o", + "am": "am\u00e1rico", + "ase": "American Sign Language", + "anp": "angika", + "njo": "Ao Naga", + "ar": "\u00e1rabe", + "shu": "\u00e1rabe chadiano", + "ar_001": "\u00e1rabe moderno", + "an": "aragon\u00eas", + "arc": "aramaico", + "sam": "aramaico samaritano", + "aro": "Araona", + "arp": "arapaho", + "arw": "arauaqui", + "arn": "araucano", + "hy": "arm\u00eanio", + "rup": "aromeno", + "frp": "Arpitan", + "as": "assam\u00eas", + "ast": "asturiano", + "asa": "asu", + "cch": "atsam", + "av": "avaric", + "ae": "av\u00e9stico", + "awa": "awadhi", + "az": "azerbaijano", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "nds": "baixo alem\u00e3o", + "bqi": "Bakhtiari", + "ban": "balin\u00eas", + "bal": "bal\u00fachi", + "bm": "bambara", + "bax": "bamum", + "bjn": "Banjar", + "bas": "basa", + "eu": "basco", + "ba": "bashkir", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengali", + "bew": "Betawi", + "bho": "bhojpuri", + "be": "bielorrusso", + "bik": "bikol", + "bin": "bini", + "my": "birman\u00eas", + "bpy": "Bishnupriya", + "bi": "bislam\u00e1", + "byn": "blin", + "brx": "bodo", + "nb": "bokm\u00e5l noruegu\u00eas", + "bs": "b\u00f3snio", + "brh": "Brahui", + "bra": "braj", + "br": "bret\u00e3o", + "bug": "bugin\u00eas", + "bg": "b\u00falgaro", + "bum": "bulu", + "bua": "buriat", + "cad": "caddo", + "frc": "Cajun French", + "kn": "canar\u00eas", + "yue": "canton\u00eas", + "kr": "can\u00fari", + "cps": "Capiznon", + "car": "caribe", + "ca": "catal\u00e3o", + "ks": "caxemira", + "cay": "cayuga", + "kk": "cazaque", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagatai", + "ch": "chamorro", + "ce": "checheno", + "chy": "cheiene", + "chr": "cherokee", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "zh": "chin\u00eas", + "zh_Hans": "chin\u00eas simplificado", + "zh_Hant": "chin\u00eas tradicional", + "chn": "chinook jargon", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuukese", + "cv": "chuvash", + "si": "cingal\u00eas", + "swb": "comoriano", + "kok": "concani", + "kg": "congol\u00eas", + "cop": "copta", + "ko": "coreano", + "kw": "c\u00f3rnico", + "co": "c\u00f3rsico", + "cr": "cree", + "mus": "creek", + "hr": "croata", + "ku": "curdo", + "dak": "dacota", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delaware", + "da": "dinamarqu\u00eas", + "din": "dinka", + "dyu": "di\u00fala", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "ng": "dongo", + "dua": "duala", + "dz": "dzonga", + "efi": "efique", + "egy": "eg\u00edpcio arcaico", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamite", + "ebu": "embu", + "egl": "Emilian", + "myv": "erzya", + "sco": "escoc\u00eas", + "cu": "eslavo eclesi\u00e1stico", + "sk": "eslovaco", + "sl": "esloveno", + "es": "espanhol", + "es_ES": "espanhol europeu", + "es_419": "espanhol latino-americano", + "es_MX": "espanhol mexicano", + "eo": "esperanto", + "et": "estoniano", + "ee": "eve", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fangue", + "fat": "fanti", + "phn": "fen\u00edcio", + "fo": "fero\u00eas", + "hif": "Fiji Hindi", + "fj": "fijiano", + "fil": "filipino", + "fi": "finland\u00eas", + "nl_BE": "flamengo", + "fon": "fom", + "gur": "Frafra", + "fr": "franc\u00eas", + "fro": "franc\u00eas arcaico", + "fr_CA": "franc\u00eas canadense", + "frm": "franc\u00eas m\u00e9dio", + "fr_CH": "franc\u00eas su\u00ed\u00e7o", + "frs": "fris\u00e3o oriental", + "fy": "fr\u00edsio ocidental", + "frr": "fr\u00edsio setentrional", + "fur": "friulano", + "ff": "fula", + "gaa": "ga", + "gd": "ga\u00e9lico escoc\u00eas", + "gag": "gagauz", + "gl": "galego", + "cy": "gal\u00eas", + "gan": "Gan Chinese", + "gay": "gayo", + "gba": "gbaia", + "gez": "geez", + "ka": "georgiano", + "aln": "Gheg Albanian", + "bbj": "ghomala\u2019", + "glk": "Gilaki", + "gil": "gilbert\u00eas", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "g\u00f3tico", + "grb": "grebo", + "el": "grego", + "grc": "grego arcaico", + "kl": "groenland\u00eas", + "gn": "guarani", + "guz": "gusii", + "gu": "guzerate", + "gwi": "gwich\u02bcin", + "hai": "haida", + "ht": "haitiano", + "hak": "Hakka Chinese", + "ha": "hau\u00e7\u00e1", + "haw": "havaiano", + "he": "hebraico", + "hz": "herero", + "hil": "hiligaynon", + "hi": "h\u00edndi", + "ho": "hiri motu", + "hit": "hitita", + "hmn": "hmong", + "nl": "holand\u00eas", + "dum": "holand\u00eas m\u00e9dio", + "hu": "h\u00fangaro", + "hup": "hupa", + "sah": "iacuto", + "iba": "iban", + "ibb": "ibibio", + "ig": "ibo", + "krl": "idioma car\u00e9lio", + "und": "idioma desconhecido", + "srn": "idioma surinam\u00eas", + "mul": "idiomas m\u00faltiplos", + "io": "ido", + "yi": "i\u00eddiche", + "ilo": "ilocano", + "smn": "inari sami", + "id": "indon\u00e9sio", + "en": "ingl\u00eas", + "en_US": "ingl\u00eas americano", + "ang": "ingl\u00eas arcaico", + "en_AU": "ingl\u00eas australiano", + "en_GB": "ingl\u00eas brit\u00e2nico", + "en_CA": "ingl\u00eas canadense", + "enm": "ingl\u00eas m\u00e9dio", + "izh": "Ingrian", + "inh": "inguche", + "ia": "interl\u00edngua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaque", + "yo": "ioruba", + "ga": "irland\u00eas", + "sga": "irland\u00eas arcaico", + "mga": "irland\u00eas m\u00e9dio", + "is": "island\u00eas", + "it": "italiano", + "jam": "Jamaican Creole English", + "ja": "japon\u00eas", + "jv": "javan\u00eas", + "kaj": "jju", + "dyo": "jola-fonyi", + "jrb": "judaico-ar\u00e1bico", + "jpr": "judaico-persa", + "jut": "Jutish", + "kbd": "kabardiano", + "kea": "kabuverdianu", + "kab": "kabyle", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kaa": "kara-kalpak", + "krc": "karachay-balkar", + "csb": "kashubian", + "kaw": "kawi", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotan\u00eas", + "khw": "Khowar", + "krj": "Kinaray-a", + "rw": "kinyarwanda", + "kiu": "Kirmanjki", + "tlh": "klingon", + "ksh": "k\u00f6lsch", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permyak", + "kfo": "koro", + "kos": "kosraean", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "kru": "kurukh", + "kut": "kutenai", + "nmg": "kwasio", + "lkt": "lacota", + "lad": "ladino", + "lah": "lahnda", + "lam": "lamba", + "lag": "langi", + "lo": "laosiano", + "ltg": "Latgalian", + "la": "latim", + "lzz": "Laz", + "lv": "let\u00e3o", + "lez": "lezghian", + "lij": "Ligurian", + "li": "limburgu\u00eas", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "lituano", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-catanga", + "lua": "luba-lulua", + "lg": "luganda", + "lui": "luiseno", + "smj": "lule sami", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "xog": "lusoga", + "lb": "luxemburgu\u00eas", + "luy": "luyia", + "mde": "maba", + "mk": "maced\u00f4nio", + "jmc": "machame", + "kde": "maconde", + "mgh": "macua", + "mad": "madur\u00eas", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "ml": "malaiala", + "ms": "malaio", + "mg": "malgaxe", + "mt": "malt\u00eas", + "mnc": "manchu", + "mdr": "mandar", + "man": "mandinga", + "mni": "manipuri", + "gv": "manx", + "mi": "maori", + "mr": "marata", + "chm": "mari", + "mh": "marshal\u00eas", + "mwr": "marwari", + "mas": "massai", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mic": "miquemaque", + "mwl": "mirand\u00eas", + "mdf": "mocsa", + "moh": "moicano", + "ro_MD": "mold\u00e1vio", + "lol": "mongo", + "mn": "mongol", + "mfe": "morisyen", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitano", + "na": "nauruano", + "nv": "navajo", + "nd": "ndebele do norte", + "nr": "ndebele do sul", + "ne": "nepali", + "new": "newari", + "nwc": "newari cl\u00e1ssico", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "nguemba", + "yrl": "Nheengatu", + "ny": "nianja", + "nia": "nias", + "niu": "niueano", + "nog": "nogai", + "non": "n\u00f3rdico arcaico", + "no": "noruegu\u00eas", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "nyn": "nyankole", + "nn": "nynorsk noruegu\u00eas", + "nyo": "nyoro", + "nzi": "nzima", + "oc": "occit\u00e2nico", + "oj": "ojibwa", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "ossetic", + "pfl": "Palatine German", + "pau": "palauano", + "pal": "p\u00e1lavi", + "pi": "p\u00e1li", + "pam": "pampanga", + "pag": "pangasin\u00e3", + "pa": "panjabi", + "pap": "papiamento", + "ps": "pashto", + "pdc": "Pennsylvania German", + "fa": "persa", + "peo": "persa arcaico", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpeian", + "pl": "polon\u00eas", + "pnt": "Pontic", + "pt": "portugu\u00eas", + "pt_BR": "portugu\u00eas do Brasil", + "pt_PT": "portugu\u00eas europeu", + "pro": "proven\u00e7al arcaico", + "prg": "Prussian", + "quc": "quich\u00e9", + "qu": "qu\u00edchua", + "ki": "quicuio", + "kmb": "quimbundo", + "ky": "quirguiz", + "raj": "rajastani", + "rap": "rapanui", + "rar": "rarotongano", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "romanche", + "rom": "romani", + "rof": "rombo", + "ro": "romeno", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rn": "rundi", + "ru": "russo", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "saq": "samburu", + "se": "sami do norte", + "sma": "sami do sul", + "sm": "samoano", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "s\u00e2nscrito", + "sat": "santali", + "sc": "sardo", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkup", + "zxx": "sem conte\u00fado lingu\u00edstico", + "seh": "sena", + "see": "seneca", + "srr": "serere", + "sei": "Seri", + "sr": "s\u00e9rvio", + "sh": "servo-croata", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "ii": "sichuan yi", + "scn": "siciliano", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "zbl": "s\u00edmbolos blis", + "sd": "sindi", + "syr": "sir\u00edaco", + "syc": "sir\u00edaco cl\u00e1ssico", + "sms": "skolt sami", + "den": "slave", + "sog": "sogdiano", + "so": "somali", + "snk": "soninqu\u00ea", + "hsb": "sor\u00e1bio alto", + "dsb": "sor\u00e1bio baixo", + "ckb": "sor\u00e2ni curdo", + "sus": "sosso", + "st": "soto do sul", + "nso": "soto setentrional", + "azb": "South Azerbaijani", + "sw": "sua\u00edli", + "swc": "sua\u00edli do Congo", + "sv": "sueco", + "suk": "sukuma", + "sux": "sum\u00e9rio", + "su": "sundan\u00eas", + "ss": "swati", + "shi": "tachelhit", + "tl": "tagalo", + "th": "tailand\u00eas", + "dav": "taita", + "ty": "taitiano", + "tg": "tajique", + "tly": "Talysh", + "tmh": "tamaxeque", + "tzm": "tamazight do Atlas Central", + "zgh": "tamazight marroquino padr\u00e3o", + "ta": "t\u00e2mil", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatar", + "cs": "tcheco", + "te": "telugu", + "ter": "tereno", + "teo": "teso", + "tet": "t\u00e9tum", + "bo": "tibetano", + "tig": "tigr\u00e9", + "ti": "tigr\u00ednia", + "tem": "timne", + "tiv": "tiv", + "tli": "tlinguite", + "tpi": "tok pisin", + "to": "tongan\u00eas", + "tog": "tongan\u00eas de Nyasa", + "tkl": "toquelauano", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshian", + "ts": "tsonga", + "tn": "tswana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turco", + "crh": "turco da Crimeia", + "ota": "turco otomano", + "tk": "turcomeno", + "tru": "Turoyo", + "tvl": "tuvaluano", + "tyv": "tuviniano", + "tw": "twi", + "kcg": "tyap", + "uk": "ucraniano", + "udm": "udmurt", + "uga": "ugar\u00edtico", + "ug": "uigur", + "umb": "umbundu", + "wo": "u\u00f3lofe", + "ur": "urdu", + "uz": "usbeque", + "vai": "vai", + "wa": "val\u00e3o", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamita", + "vo": "volapuque", + "vro": "V\u00f5ro", + "vot": "votic", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "xh": "xosa", + "yav": "yangben", + "yao": "yao", + "yap": "yapese", + "ybb": "yemba", + "zap": "zapoteca", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zunhi" +} diff --git a/public/intl/language/pt-PT.json b/public/intl/language/pt-PT.json new file mode 100644 index 0000000..e9fc693 --- /dev/null +++ b/public/intl/language/pt-PT.json @@ -0,0 +1,611 @@ +{ + "ab": "abc\u00e1zio", + "akk": "acadiano", + "ace": "ach\u00e9m", + "ach": "acoli", + "ada": "adangme", + "ady": "adigue", + "aa": "afar", + "af": "afric\u00e2nder", + "afh": "afrihili", + "agq": "aghem", + "ay": "aimara", + "ain": "ainu", + "ak": "akan", + "bss": "akoose", + "akz": "Alabama", + "sq": "alban\u00eas", + "de": "alem\u00e3o", + "goh": "alem\u00e3o arcaico alto", + "de_AT": "alem\u00e3o austr\u00edaco", + "gmh": "alem\u00e3o medieval alto", + "gsw": "alem\u00e3o su\u00ed\u00e7o", + "ale": "ale\u00fate", + "arq": "Algerian Arabic", + "alt": "altai do sul", + "de_CH": "alto alem\u00e3o su\u00ed\u00e7o", + "hsb": "alto s\u00f3rabio", + "am": "am\u00e1rico", + "ase": "American Sign Language", + "anp": "angika", + "njo": "Ao Naga", + "ar": "\u00e1rabe", + "shu": "\u00e1rabe do Chade", + "ar_001": "\u00e1rabe moderno", + "an": "aragon\u00eas", + "arc": "aramaico", + "sam": "aramaico samaritano", + "aro": "Araona", + "arp": "arapaho", + "arw": "arauaqui", + "hy": "arm\u00e9nio", + "rup": "aromeno", + "frp": "Arpitan", + "as": "assam\u00eas", + "ast": "asturiano", + "asa": "asu", + "cch": "atsam", + "av": "avaric", + "ae": "av\u00e9stico", + "awa": "awadhi", + "az": "azerbaijano", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "nds": "baixo alem\u00e3o", + "dsb": "baixo s\u00f3rabio", + "bqi": "Bakhtiari", + "ban": "balin\u00eas", + "bal": "bal\u00fachi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basa", + "eu": "basco", + "ba": "bashkir", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengali", + "bew": "Betawi", + "bho": "bhojpuri", + "be": "bielorrusso", + "bik": "bikol", + "bin": "bini", + "my": "birman\u00eas", + "bpy": "Bishnupriya", + "bi": "bislam\u00e1", + "byn": "blin", + "brx": "bodo", + "bs": "b\u00f3snio", + "brh": "Brahui", + "bra": "braj", + "br": "bret\u00e3o", + "bug": "bugin\u00eas", + "bg": "b\u00falgaro", + "bum": "bulu", + "bua": "buriat", + "kea": "cabo-verdiano", + "cad": "caddo", + "frc": "Cajun French", + "kn": "canarim", + "yue": "canton\u00eas", + "kr": "can\u00fari", + "cps": "Capiznon", + "car": "caribe", + "ca": "catal\u00e3o", + "ks": "caxemira", + "cay": "cayuga", + "kk": "cazaque", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagatai", + "ch": "chamorro", + "ce": "checheno", + "cs": "checo", + "chy": "cheiene", + "chr": "cherokee", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "zh": "chin\u00eas", + "zh_Hans": "chin\u00eas simplificado", + "zh_Hant": "chin\u00eas tradicional", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuukese", + "cv": "chuvash", + "si": "cingal\u00eas", + "swb": "comoriano", + "kok": "concani", + "kg": "congu\u00eas", + "cop": "copta", + "ko": "coreano", + "kw": "c\u00f3rnico", + "co": "c\u00f3rsico", + "cr": "cree", + "mus": "creek", + "hr": "croata", + "ku": "curdo", + "dak": "dacota", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delaware", + "da": "dinamarqu\u00eas", + "din": "dinka", + "dyu": "di\u00fala", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "ng": "dongo", + "dua": "duala", + "dz": "dzonga", + "efi": "efique", + "egy": "eg\u00edpcio cl\u00e1ssico", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamite", + "ebu": "embu", + "egl": "Emilian", + "myv": "erzya", + "sco": "escoc\u00eas", + "cu": "eslavo eclesi\u00e1stico", + "sk": "eslovaco", + "sl": "esloveno", + "es": "espanhol", + "es_ES": "espanhol europeu", + "es_419": "espanhol latino-americano", + "es_MX": "espanhol mexicano", + "eo": "esperanto", + "et": "est\u00f3nio", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fangue", + "fat": "fanti", + "phn": "fen\u00edcio", + "fo": "fero\u00eas", + "hif": "Fiji Hindi", + "fj": "fijiano", + "fil": "filipino", + "fi": "finland\u00eas", + "nl_BE": "flamengo", + "fon": "fom", + "gur": "Frafra", + "fr": "franc\u00eas", + "fro": "franc\u00eas arcaico", + "fr_CA": "franc\u00eas canadiano", + "frm": "franc\u00eas medieval", + "fr_CH": "franc\u00eas su\u00ed\u00e7o", + "fy": "fr\u00edsico ocidental", + "frs": "fr\u00edsio oriental", + "frr": "fr\u00edsio setentrional", + "fur": "friulano", + "ff": "fula", + "gaa": "ga", + "gd": "ga\u00e9lico escoc\u00eas", + "gag": "gagauz", + "gl": "galego", + "cy": "gal\u00eas", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gba": "gbaia", + "gez": "geez", + "ka": "georgiano", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbert\u00eas", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "g\u00f3tico", + "grb": "grebo", + "el": "grego", + "grc": "grego cl\u00e1ssico", + "kl": "groenland\u00eas", + "gn": "guarani", + "guz": "gusii", + "gu": "guzerate", + "gwi": "gwich\u02bcin", + "hai": "haida", + "ht": "haitiano", + "hak": "Hakka Chinese", + "ha": "ha\u00fa\u00e7a", + "haw": "havaiano", + "he": "hebraico", + "hz": "herero", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitita", + "hmn": "hmong", + "nl": "holand\u00eas", + "dum": "holand\u00eas m\u00e9dio", + "hu": "h\u00fangaro", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "krl": "idioma car\u00e9lio", + "und": "idioma desconhecido", + "srn": "idioma surinam\u00eas", + "mul": "idiomas m\u00faltiplos", + "io": "ido", + "ig": "igbo", + "yi": "i\u00eddiche", + "ilo": "ilocano", + "smn": "inari sami", + "id": "indon\u00e9sio", + "en": "ingl\u00eas", + "en_US": "ingl\u00eas americano", + "ang": "ingl\u00eas arcaico", + "en_AU": "ingl\u00eas australiano", + "en_GB": "ingl\u00eas brit\u00e2nico", + "en_CA": "ingl\u00eas canadiano", + "enm": "ingl\u00eas medieval", + "izh": "Ingrian", + "inh": "inguche", + "ia": "interl\u00edngua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaque", + "yo": "ioruba", + "ga": "irland\u00eas", + "sga": "irland\u00eas arcaico", + "mga": "irland\u00eas, medieval", + "is": "island\u00eas", + "it": "italiano", + "jam": "Jamaican Creole English", + "ja": "japon\u00eas", + "chn": "jarg\u00e3o chinook", + "jv": "javan\u00eas", + "kaj": "jju", + "dyo": "jola-fonyi", + "jrb": "judaico-ar\u00e1bico", + "jpr": "judaico-persa", + "jut": "Jutish", + "kbd": "kabardiano", + "kab": "kabyle", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kln": "kalenjin", + "xal": "kalmyk", + "kam": "kamba", + "kbl": "kanembu", + "kaa": "kara-kalpak", + "krc": "karachay-balkar", + "csb": "kashubian", + "kaw": "kawi", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer", + "kho": "khotan\u00eas", + "khw": "Khowar", + "krj": "Kinaray-a", + "rw": "kinyarwanda", + "kiu": "Kirmanjki", + "tlh": "klingon", + "ksh": "k\u00f6lsch", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permyak", + "kfo": "koro", + "kos": "kosraean", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "kru": "kurukh", + "kut": "kutenai", + "nmg": "kwasio", + "lkt": "lacota", + "lad": "ladino", + "lah": "lahnda", + "lam": "lamba", + "lag": "langi", + "lo": "laosiano", + "ltg": "Latgalian", + "la": "latim", + "lzz": "Laz", + "lv": "let\u00e3o", + "lez": "lezghiano", + "lij": "Ligurian", + "li": "limburgu\u00eas", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "lituano", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-catanga", + "lua": "luba-lulua", + "lui": "luiseno", + "smj": "lule sami", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "lb": "luxemburgu\u00eas", + "luy": "luyia", + "mde": "maba", + "mk": "maced\u00f3nio", + "jmc": "machame", + "kde": "maconde", + "mgh": "macua", + "mad": "madur\u00eas", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "ml": "malaiala", + "ms": "malaio", + "mg": "malgaxe", + "mt": "malt\u00eas", + "mnc": "manchu", + "mdr": "mandar", + "man": "mandinga", + "mni": "manipuri", + "gv": "manx", + "mi": "maori", + "arn": "mapuche", + "mr": "marata", + "chm": "mari", + "mh": "marshal\u00eas", + "mwr": "marwari", + "mas": "massai", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mic": "miquemaque", + "mwl": "mirand\u00eas", + "mdf": "mocsa", + "moh": "moicano", + "ro_MD": "mold\u00e1vio", + "lol": "mongo", + "mn": "mongol", + "mfe": "morisyen", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitano", + "na": "nauruano", + "nv": "navajo", + "nd": "ndebele do norte", + "nr": "ndebele do sul", + "ne": "nepali", + "new": "newari", + "nwc": "newari cl\u00e1ssico", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "nguemba", + "yrl": "Nheengatu", + "ny": "nianja", + "nia": "nias", + "niu": "niueano", + "nog": "nogai", + "non": "n\u00f3rdico arcaico", + "no": "noruegu\u00eas", + "nb": "noruegu\u00eas bokm\u00e5l", + "nn": "noruegu\u00eas nynorsk", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "nyn": "nyankole", + "nyo": "nyoro", + "nzi": "nzima", + "oj": "ojibwa", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "oss\u00e9tico", + "pfl": "Palatine German", + "pau": "palauano", + "pal": "p\u00e1lavi", + "pi": "p\u00e1li", + "pam": "pampanga", + "pag": "pangasin\u00e3", + "pa": "panjabi", + "pap": "papiamento", + "ps": "past\u00f3", + "pdc": "Pennsylvania German", + "fa": "persa", + "peo": "persa arcaico", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpeian", + "pl": "polaco", + "pnt": "Pontic", + "pt": "portugu\u00eas", + "pt_BR": "portugu\u00eas do Brasil", + "pt_PT": "portugu\u00eas europeu", + "oc": "proven\u00e7al", + "pro": "proven\u00e7al arcaico", + "prg": "Prussian", + "quc": "quich\u00e9", + "qu": "qu\u00edchua", + "ki": "quicuio", + "kmb": "quimbundo", + "ky": "quirguiz", + "raj": "rajastani", + "rap": "rapanui", + "rar": "rarotongano", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "romanche", + "rom": "roman\u00eas", + "rof": "rombo", + "ro": "romeno", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rn": "rundi", + "ru": "russo", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "sah": "sakha", + "saq": "samburu", + "se": "sami do norte", + "sma": "sami do sul", + "sm": "samoano", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "s\u00e2nscrito", + "sat": "santali", + "sc": "sardo", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkup", + "zxx": "sem conte\u00fado lingu\u00edstico", + "seh": "sena", + "see": "seneca", + "srr": "serere", + "sei": "Seri", + "sr": "s\u00e9rvio", + "sh": "servo-croata", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "ii": "sichuan yi", + "scn": "siciliano", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "zbl": "s\u00edmbolos blis", + "sd": "sindi", + "syr": "sir\u00edaco", + "syc": "sir\u00edaco cl\u00e1ssico", + "sms": "skolt sami", + "den": "slave", + "xog": "soga", + "sog": "sogdiano", + "so": "somali", + "snk": "soninqu\u00ea", + "ckb": "sorani curdo", + "sus": "sosso", + "st": "soto do sul", + "nso": "soto setentrional", + "azb": "South Azerbaijani", + "sw": "sua\u00edli", + "swc": "sua\u00edli do Congo", + "sv": "sueco", + "suk": "sukuma", + "sux": "sum\u00e9rio", + "su": "sundan\u00eas", + "ss": "swati", + "shi": "tachelhit", + "tl": "tagalo", + "th": "tailand\u00eas", + "dav": "taita", + "ty": "taitiano", + "tg": "tajique", + "tly": "Talysh", + "tmh": "tamaxeque", + "tzm": "tamazight do Atlas Central", + "zgh": "tamazight marroquino padr\u00e3o", + "ta": "t\u00e2mil", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatar", + "te": "telugu", + "ter": "tereno", + "teo": "teso", + "tet": "t\u00e9tum", + "bo": "tibetano", + "tig": "tigr\u00e9", + "ti": "tigr\u00ednia", + "tem": "timne", + "tiv": "tiv", + "tli": "tlinguite", + "tpi": "tok pisin", + "to": "tonga", + "tog": "tongan\u00eas de Nyasa", + "tkl": "toquelauano", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshian", + "ts": "tsonga", + "tn": "tswana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turco", + "crh": "turco da Crimeia", + "ota": "turco otomano", + "tk": "turcomano", + "tru": "Turoyo", + "tvl": "tuvaluano", + "tyv": "tuviniano", + "tw": "twi", + "kcg": "tyap", + "uk": "ucraniano", + "udm": "udmurt", + "uga": "ugar\u00edtico", + "ug": "uigur", + "umb": "umbundu", + "wo": "u\u00f3lofe", + "ur": "urdu", + "uz": "usbeque", + "vai": "vai", + "wa": "val\u00e3o", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamita", + "vo": "volapuque", + "vro": "V\u00f5ro", + "vot": "votic", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "xh": "xosa", + "yav": "yangben", + "yao": "yao", + "yap": "yapese", + "ybb": "yemba", + "zap": "zapoteca", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zunhi" +} diff --git a/public/intl/language/ro-RO.json b/public/intl/language/ro-RO.json new file mode 100644 index 0000000..f9a5f53 --- /dev/null +++ b/public/intl/language/ro-RO.json @@ -0,0 +1,611 @@ +{ + "ab": "abhaz\u0103", + "ace": "aceh", + "ach": "acoli", + "ada": "adangme", + "ady": "adyghe", + "aa": "afar", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "ainu", + "ak": "akan", + "akk": "akkadian\u0103", + "bss": "akoose", + "akz": "Alabama", + "sq": "albanez\u0103", + "ale": "aleut\u0103", + "arq": "Algerian Arabic", + "alt": "altaic\u0103 meridional\u0103", + "ase": "American Sign Language", + "am": "amharic\u0103", + "anp": "angika", + "njo": "Ao Naga", + "ar": "arab\u0103", + "shu": "arab\u0103 ciadian\u0103", + "ar_001": "arab\u0103 standard modern\u0103", + "an": "aragonez\u0103", + "arc": "aramaic\u0103", + "sam": "aramaic\u0103 samaritean\u0103", + "aro": "Araona", + "arp": "arapaho", + "arn": "araucanian\u0103", + "arw": "arawak", + "hy": "armean\u0103", + "rup": "arom\u00e2n\u0103", + "frp": "Arpitan", + "as": "asamez\u0103", + "ast": "asturian\u0103", + "asa": "asu", + "cch": "atsam", + "av": "avar\u0103", + "ae": "avestan\u0103", + "awa": "awadhi", + "ay": "aymara", + "az": "azer\u0103", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "ban": "balinez\u0103", + "bal": "baluchi", + "bm": "bambara", + "bax": "bamun", + "bjn": "Banjar", + "bas": "basaa", + "eu": "basc\u0103", + "ba": "ba\u0219kir\u0103", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengalez\u0103", + "bew": "Betawi", + "bho": "bhojpuri", + "be": "bielorus\u0103", + "bik": "bikol", + "bin": "bini", + "my": "birmanez\u0103", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "brx": "bodo", + "bs": "bosniac\u0103", + "brh": "Brahui", + "bra": "braj", + "br": "breton\u0103", + "bug": "buginez\u0103", + "bg": "bulgar\u0103", + "bum": "bulu", + "bua": "buriat", + "cad": "caddo", + "frc": "Cajun French", + "xal": "calmuc\u0103", + "yue": "cantonez\u0103", + "cps": "Capiznon", + "car": "carib", + "ks": "ca\u0219mir\u0103", + "csb": "ca\u0219ubian\u0103", + "ca": "catalan\u0103", + "cay": "cayuga", + "ceb": "cebuano", + "ce": "cecen\u0103", + "cs": "ceh\u0103", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "chg": "chagatai", + "ch": "chamorro", + "chr": "cherokee", + "chy": "cheyenne", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo Highland Quichua", + "zh": "chinez\u0103", + "zh_Hans": "chinez\u0103 simplificat\u0103", + "zh_Hant": "chinez\u0103 tradi\u021bional\u0103", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuukese", + "cv": "ciuva\u0219\u0103", + "swb": "comorez\u0103", + "kg": "congolez\u0103", + "cop": "copt\u0103", + "ko": "coreean\u0103", + "kw": "cornic\u0103", + "co": "corsican\u0103", + "cr": "cree", + "mus": "creek", + "hr": "croat\u0103", + "dak": "dakota", + "da": "danez\u0103", + "dar": "dargwa", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dyu": "dyula", + "dz": "dzongkha", + "he": "ebraic\u0103", + "efi": "efik", + "egy": "egiptean\u0103 veche", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamit\u0103", + "ebu": "embu", + "egl": "Emilian", + "en": "englez\u0103", + "en_US": "englez\u0103 american\u0103", + "en_AU": "englez\u0103 australian\u0103", + "en_GB": "englez\u0103 britanic\u0103", + "en_CA": "englez\u0103 canadian\u0103", + "enm": "englez\u0103 mijlocie", + "ang": "englez\u0103 veche", + "myv": "erzya", + "eo": "esperanto", + "et": "estonian\u0103", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "zxx": "far\u0103 con\u021binut lingvistic", + "fo": "faroez\u0103", + "phn": "fenician\u0103", + "hif": "Fiji Hindi", + "fj": "fijian\u0103", + "fil": "filipinez\u0103", + "fi": "finlandez\u0103", + "nl_BE": "flamand\u0103", + "fon": "fon", + "gur": "Frafra", + "fr": "francez\u0103", + "fr_CA": "francez\u0103 canadian\u0103", + "fr_CH": "francez\u0103 elve\u021bian\u0103", + "frm": "francez\u0103 mijlocie", + "fro": "francez\u0103 veche", + "fur": "friulan\u0103", + "frr": "frizon\u0103 nordic\u0103", + "fy": "frizon\u0103 occidental\u0103", + "frs": "frizon\u0103 oriental\u0103", + "ff": "fulah", + "gaa": "ga", + "gd": "gaelic\u0103 sco\u021bian\u0103", + "cy": "galez\u0103", + "gl": "galician\u0103", + "gan": "Gan Chinese", + "lg": "ganda", + "gay": "gayo", + "gag": "g\u0103g\u0103uz\u0103", + "gba": "gbaya", + "gez": "geez", + "ka": "georgian\u0103", + "nds": "germana de jos", + "de": "german\u0103", + "de_AT": "german\u0103 austriac\u0103", + "gsw": "german\u0103 elve\u021bian\u0103", + "gmh": "german\u0103 mijlocie \u00eenalt\u0103", + "de_CH": "german\u0103 standard elve\u021bian\u0103", + "goh": "german\u0103 veche \u00eenalt\u0103", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gil": "gilbertin\u0103", + "gom": "Goan Konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "gotic\u0103", + "el": "greac\u0103", + "grc": "greac\u0103 veche", + "grb": "grebo", + "gn": "guarani", + "gu": "gujarati", + "guz": "gusii", + "gwi": "gwich\u02bcin", + "hai": "haida", + "ht": "haitian\u0103", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "hawaiian\u0103", + "hz": "herero", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitit\u0103", + "hmn": "hmong", + "hup": "hupa", + "iba": "iban", + "ibb": "ibibio", + "yi": "idi\u0219", + "io": "ido", + "ig": "igbo", + "ilo": "iloko", + "smn": "inari sami", + "id": "indonezian\u0103", + "izh": "Ingrian", + "inh": "ingu\u0219\u0103", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "irlandez\u0103", + "mga": "irlandez\u0103 mijlocie", + "sga": "irlandez\u0103 veche", + "is": "islandez\u0103", + "it": "italian\u0103", + "jrb": "iudeo-arab\u0103", + "jpr": "iudeo-persan\u0103", + "jam": "Jamaican Creole English", + "ja": "japonez\u0103", + "chn": "jargon chinook", + "jv": "javanez\u0103", + "kaj": "jju", + "dyo": "jola-fonyi", + "jut": "Jutish", + "kbd": "kabardian", + "kea": "kabuverdianu", + "kab": "kabyle", + "kac": "kachin", + "kgp": "Kaingang", + "kkj": "kako", + "kl": "kalaallisut", + "kln": "kalenjin", + "kam": "kamba", + "kbl": "kanembu", + "kn": "kannada", + "kr": "kanuri", + "krc": "karaceai-balkar", + "kaa": "karakalpak", + "krl": "karelian\u0103", + "kaw": "kawi", + "kk": "kazah\u0103", + "ky": "k\u00e2rg\u00e2z\u0103", + "ken": "Kenyang", + "kha": "khasi", + "km": "khmer\u0103", + "khw": "Khowar", + "ki": "kikuyu", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "rw": "kinyarwanda", + "kiu": "Kirmanjki", + "rn": "kirundi", + "tlh": "klingonian\u0103", + "ksh": "k\u00f6lsch", + "bkm": "kom", + "kv": "komi", + "koi": "komi-permiak", + "kok": "konkani", + "kfo": "koro", + "kos": "kosrae", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro Senni", + "kpe": "kpelle", + "kri": "Krio", + "kj": "kuanyama", + "kum": "kumyk", + "ku": "kurd\u0103", + "ckb": "kurd\u0103 sorani", + "kru": "kurukh", + "kut": "kutenai", + "nmg": "kwasio", + "quc": "k\u02bciche\u02bc", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "lao\u021bian\u0103", + "ltg": "Latgalian", + "la": "latin\u0103", + "lzz": "Laz", + "lv": "leton\u0103", + "lez": "lezghian", + "lij": "Ligurian", + "und": "limb\u0103 necunoscut\u0103", + "mul": "limbi multiple", + "kho": "limbp khotanez\u0103", + "li": "limburghez\u0103", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "lituanian\u0103", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "smj": "lule sami", + "lun": "lunda", + "luo": "luo", + "lus": "lusahi", + "lb": "luxemburghez\u0103", + "luy": "luyia", + "mde": "maba", + "mk": "macedonean\u0103", + "jmc": "machame", + "mad": "madurez\u0103", + "maf": "mafa", + "mag": "magahi", + "hu": "maghiar\u0103", + "vmf": "Main-Franconian", + "mai": "maithili", + "mak": "makasar", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "ms": "malaez\u0103", + "ml": "malayalam", + "mg": "malga\u0219\u0103", + "mt": "maltez\u0103", + "mnc": "manciurian\u0103", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipur", + "gv": "manx", + "mi": "maori", + "mr": "marathi", + "chm": "mari", + "mh": "marshallez\u0103", + "mwr": "marwari", + "mas": "masai", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "micmac", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirandez\u0103", + "moh": "mohawk", + "mdf": "moksha", + "ro_MD": "moldoveneasc\u0103", + "lol": "mongo", + "mn": "mongol\u0103", + "mfe": "morisyen", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nap": "napolitan\u0103", + "na": "nauru", + "nv": "navajo", + "nd": "ndebele de nord", + "nr": "ndebele de sud", + "ng": "ndonga", + "ne": "nepalez\u0103", + "new": "newari", + "nwc": "newari clasic\u0103", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niuean\u0103", + "nog": "nogai", + "non": "nordic\u0103 veche", + "no": "norvegian\u0103", + "nb": "norvegian\u0103 bokm\u00e5l", + "nn": "norvegian\u0103 nynorsk", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "tog": "nyasa tonga", + "nyo": "nyoro", + "nzi": "nzima", + "oc": "occitan\u0103", + "oj": "ojibwa", + "nl": "olandez\u0103", + "dum": "olandez\u0103 mijlocie", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "oset\u0103", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauan\u0103", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasinan", + "pap": "papiamento", + "ps": "pa\u0219tun\u0103", + "pdc": "Pennsylvania German", + "fa": "persan\u0103", + "peo": "persan\u0103 veche", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpeian\u0103", + "pl": "polonez\u0103", + "pnt": "Pontic", + "pt": "portughez\u0103", + "pt_BR": "portughez\u0103 brazilian\u0103", + "pt_PT": "portughez\u0103 european\u0103", + "pro": "provensal\u0103 veche", + "prg": "Prussian", + "pa": "punjabi", + "qu": "quechua", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "romani", + "rm": "roman\u0219\u0103", + "ro": "rom\u00e2n\u0103", + "rof": "rombo", + "root": "root", + "rtm": "Rotuman", + "rug": "Roviana", + "ru": "rus\u0103", + "rue": "Rusyn", + "rwk": "rwa", + "ssy": "saho", + "sah": "sakha", + "saq": "samburu", + "se": "sami de nord", + "sma": "sami de sud", + "sm": "samoan\u0103", + "sgs": "Samogitian", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanscrit\u0103", + "sat": "santali", + "sc": "sardinian\u0103", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sr": "s\u00e2rb\u0103", + "sh": "s\u00e2rbo-croat\u0103", + "sco": "scots", + "sly": "Selayar", + "sel": "selkup", + "seh": "sena", + "see": "seneca", + "srr": "serer", + "sei": "Seri", + "st": "sesotho", + "tn": "setswana", + "ksb": "shambala", + "shn": "shan", + "sn": "shona", + "ii": "sichuan yi", + "scn": "sicilian\u0103", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "zbl": "simboluri Bilss", + "sd": "sindhi", + "si": "singhalez\u0103", + "syr": "siriac\u0103", + "syc": "siriac\u0103 clasic\u0103", + "sms": "skolt sami", + "den": "slave", + "cu": "slavon\u0103", + "sk": "slovac\u0103", + "sl": "sloven\u0103", + "xog": "soga", + "sog": "sogdien", + "so": "somalez\u0103", + "snk": "soninke", + "dsb": "sorab\u0103 de jos", + "hsb": "sorab\u0103 de sus", + "nso": "sotho de nord", + "azb": "South Azerbaijani", + "es": "spaniol\u0103", + "es_ES": "spaniol\u0103 european\u0103", + "es_419": "spaniol\u0103 latino-american\u0103", + "es_MX": "spaniol\u0103 mexican\u0103", + "srn": "sranan tongo", + "sv": "suedez\u0103", + "suk": "sukuma", + "sux": "sumerian\u0103", + "su": "sundanez\u0103", + "sus": "susu", + "sw": "swahili", + "swc": "swahili Congo", + "ss": "swati", + "shi": "tachelhit", + "tg": "tadjic\u0103", + "tl": "tagalog", + "ty": "tahitian\u0103", + "dav": "taita", + "tly": "Talysh", + "tmh": "tamashek", + "tzm": "tamazight central marocan\u0103", + "zgh": "tamazight standard marocan\u0103", + "ta": "tamil\u0103", + "trv": "taroko", + "twq": "tasawaq", + "tt": "t\u0103tar\u0103", + "te": "telugu", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thailandez\u0103", + "bo": "tibetan\u0103", + "tig": "tigre", + "ti": "tigrin\u0103", + "tem": "timne", + "tiv": "tiv", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tonga", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshian", + "ts": "tsonga", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turc\u0103", + "crh": "turc\u0103 crimeean\u0103", + "ota": "turc\u0103 otoman\u0103", + "tk": "turkmen\u0103", + "tru": "Turoyo", + "tvl": "tuvalu", + "tyv": "tuvan\u0103", + "tw": "twi", + "kcg": "tyap", + "uk": "ucrainean\u0103", + "udm": "udmurt", + "uga": "ugaritic\u0103", + "ug": "uigur\u0103", + "umb": "umbundu", + "ur": "urdu", + "uz": "uzbec\u0103", + "vai": "vai", + "wa": "valon\u0103", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnamez\u0103", + "vo": "volapuk", + "vro": "V\u00f5ro", + "vot": "votic", + "vun": "vunjo", + "wal": "walamo", + "wae": "walser", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "yangben", + "yao": "yao", + "yap": "yapez\u0103", + "ybb": "yemba", + "yo": "yoruba", + "zap": "zapotec\u0103", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "zen": "zenaga", + "za": "zhuang", + "gbz": "Zoroastrian Dari", + "zu": "zulu", + "zun": "zuni" +} diff --git a/public/intl/language/ru-RU.json b/public/intl/language/ru-RU.json new file mode 100644 index 0000000..7abfe6a --- /dev/null +++ b/public/intl/language/ru-RU.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0430\u0431\u0445\u0430\u0437\u0441\u043a\u0438\u0439", + "awa": "\u0430\u0432\u0430\u0434\u0445\u0438", + "av": "\u0430\u0432\u0430\u0440\u0441\u043a\u0438\u0439", + "ae": "\u0430\u0432\u0435\u0441\u0442\u0438\u0439\u0441\u043a\u0438\u0439", + "en_AU": "\u0430\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0439\u0441\u043a\u0438\u0439 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "de_AT": "\u0430\u0432\u0441\u0442\u0440\u0438\u0439\u0441\u043a\u0438\u0439 \u043d\u0435\u043c\u0435\u0446\u043a\u0438\u0439", + "agq": "\u0430\u0433\u0445\u0435\u043c", + "ada": "\u0430\u0434\u0430\u043d\u0433\u043c\u0435", + "ady": "\u0430\u0434\u044b\u0433\u0435\u0439\u0441\u043a\u0438\u0439", + "az": "\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0438\u0439", + "ay": "\u0430\u0439\u043c\u0430\u0440\u0430", + "ain": "\u0430\u0439\u043d\u0443", + "ak": "\u0430\u043a\u0430\u043d", + "akk": "\u0430\u043a\u043a\u0430\u0434\u0441\u043a\u0438\u0439", + "bss": "\u0430\u043a\u043e\u043e\u0441\u0435", + "sq": "\u0430\u043b\u0431\u0430\u043d\u0441\u043a\u0438\u0439", + "ale": "\u0430\u043b\u0435\u0443\u0442\u0441\u043a\u0438\u0439", + "en_US": "\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "am": "\u0430\u043c\u0445\u0430\u0440\u0441\u043a\u0438\u0439", + "anp": "\u0430\u043d\u0433\u0438\u043a\u0430", + "en": "\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "ar": "\u0430\u0440\u0430\u0431\u0441\u043a\u0438\u0439", + "ar_001": "\u0430\u0440\u0430\u0431\u0441\u043a\u0438\u0439 \u043b\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u043d\u044b\u0439", + "arw": "\u0430\u0440\u0430\u0432\u0430\u043a\u0441\u043a\u0438\u0439", + "an": "\u0430\u0440\u0430\u0433\u043e\u043d\u0441\u043a\u0438\u0439", + "arc": "\u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0438\u0439", + "arp": "\u0430\u0440\u0430\u043f\u0430\u0445\u043e", + "arn": "\u0430\u0440\u0430\u0443\u043a\u0430\u043d\u0441\u043a\u0438\u0439", + "hy": "\u0430\u0440\u043c\u044f\u043d\u0441\u043a\u0438\u0439", + "rup": "\u0430\u0440\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439", + "asa": "\u0430\u0441\u0430", + "as": "\u0430\u0441\u0441\u0430\u043c\u0441\u043a\u0438\u0439", + "ast": "\u0430\u0441\u0442\u0443\u0440\u0438\u0439\u0441\u043a\u0438\u0439", + "cch": "\u0430\u0442\u0441\u0430\u043c", + "aa": "\u0430\u0444\u0430\u0440", + "af": "\u0430\u0444\u0440\u0438\u043a\u0430\u0430\u043d\u0441", + "afh": "\u0430\u0444\u0440\u0438\u0445\u0438\u043b\u0438", + "ace": "\u0430\u0447\u0435\u0445\u0441\u043a\u0438\u0439", + "ach": "\u0430\u0447\u043e\u043b\u0438", + "ban": "\u0431\u0430\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "bm": "\u0431\u0430\u043c\u0431\u0430\u0440\u0438\u0439\u0441\u043a\u0438\u0439", + "bax": "\u0431\u0430\u043c\u0443\u043c", + "bas": "\u0431\u0430\u0441\u0430", + "eu": "\u0431\u0430\u0441\u043a\u0441\u043a\u0438\u0439", + "ksf": "\u0431\u0430\u0444\u0438\u044f", + "bfd": "\u0431\u0430\u0444\u0443\u0442", + "ba": "\u0431\u0430\u0448\u043a\u0438\u0440\u0441\u043a\u0438\u0439", + "bej": "\u0431\u0435\u0434\u0436\u0430", + "zxx": "\u0431\u0435\u0437 \u044f\u0437\u044b\u043a\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", + "be": "\u0431\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u043a\u0438\u0439", + "bal": "\u0431\u0435\u043b\u0443\u0434\u0436\u0441\u043a\u0438\u0439", + "bem": "\u0431\u0435\u043c\u0431\u0430", + "bez": "\u0431\u0435\u043d\u0430", + "bn": "\u0431\u0435\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "bik": "\u0431\u0438\u043a\u043e\u043b\u044c\u0441\u043a\u0438\u0439", + "byn": "\u0431\u0438\u043b\u0438\u043d (\u0431\u043b\u0438\u043d)", + "bin": "\u0431\u0438\u043d\u0438", + "my": "\u0431\u0438\u0440\u043c\u0430\u043d\u0441\u043a\u0438\u0439", + "bi": "\u0431\u0438\u0441\u043b\u0430\u043c\u0430", + "zbl": "\u0431\u043b\u0438\u0441\u0441\u0438\u043c\u0432\u043e\u043b\u0438\u043a\u0430", + "brx": "\u0431\u043e\u0434\u043e", + "bg": "\u0431\u043e\u043b\u0433\u0430\u0440\u0441\u043a\u0438\u0439", + "bs": "\u0431\u043e\u0441\u043d\u0438\u0439\u0441\u043a\u0438\u0439", + "pt_BR": "\u0431\u0440\u0430\u0437\u0438\u043b\u044c\u0441\u043a\u0438\u0439 \u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "bra": "\u0431\u0440\u0430\u0443\u0438", + "br": "\u0431\u0440\u0435\u0442\u043e\u043d\u0441\u043a\u0438\u0439", + "en_GB": "\u0431\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0439 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "bug": "\u0431\u0443\u0433\u0438\u0439\u0441\u043a\u0438\u0439", + "bum": "\u0431\u0443\u043b\u0443", + "bua": "\u0431\u0443\u0440\u044f\u0442\u0441\u043a\u0438\u0439", + "bho": "\u0431\u0445\u043e\u0434\u0436\u043f\u0443\u0440\u0438", + "vai": "\u0432\u0430\u0438", + "wae": "\u0432\u0430\u043b\u0438\u0441\u0441\u043a\u0438\u0439", + "cy": "\u0432\u0430\u043b\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "wa": "\u0432\u0430\u043b\u043b\u043e\u043d\u0441\u043a\u0438\u0439", + "war": "\u0432\u0430\u0440\u0430\u0439", + "was": "\u0432\u0430\u0448\u043e", + "hu": "\u0432\u0435\u043d\u0433\u0435\u0440\u0441\u043a\u0438\u0439", + "ve": "\u0432\u0435\u043d\u0434\u0430", + "hsb": "\u0432\u0435\u0440\u0445\u043d\u0435\u043b\u0443\u0436\u0438\u0446\u043a\u0438\u0439", + "vot": "\u0432\u043e\u0434\u0441\u043a\u0438\u0439", + "wal": "\u0432\u043e\u043b\u0430\u043c\u043e", + "vo": "\u0432\u043e\u043b\u0430\u043f\u044e\u043a", + "wo": "\u0432\u043e\u043b\u043e\u0444", + "frs": "\u0432\u043e\u0441\u0442\u043e\u0447\u043d\u044b\u0439 \u0444\u0440\u0438\u0437\u0441\u043a\u0438\u0439", + "vun": "\u0432\u0443\u043d\u0434\u0436\u043e", + "vi": "\u0432\u044c\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438\u0439", + "gaa": "\u0433\u0430", + "haw": "\u0433\u0430\u0432\u0430\u0439\u0441\u043a\u0438\u0439", + "gag": "\u0433\u0430\u0433\u0430\u0443\u0437\u0441\u043a\u0438\u0439", + "ht": "\u0433\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438\u0439", + "gay": "\u0433\u0430\u0439\u043e", + "gl": "\u0433\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438\u0439", + "lg": "\u0433\u0430\u043d\u0434\u0430", + "gba": "\u0433\u0431\u0430\u044f", + "gwi": "\u0433\u0432\u0438\u0447\u0438\u043d", + "hz": "\u0433\u0435\u0440\u0435\u0440\u043e", + "gez": "\u0433\u0435\u044d\u0437", + "gil": "\u0433\u0438\u043b\u044c\u0431\u0435\u0440\u0442\u0441\u043a\u0438\u0439", + "nl": "\u0433\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "gon": "\u0433\u043e\u043d\u0434\u0438", + "gor": "\u0433\u043e\u0440\u043e\u043d\u0442\u0430\u043b\u043e", + "got": "\u0433\u043e\u0442\u0441\u043a\u0438\u0439", + "grb": "\u0433\u0440\u0435\u0431\u043e", + "kl": "\u0433\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "el": "\u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0439", + "ka": "\u0433\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0438\u0439", + "gn": "\u0433\u0443\u0430\u0440\u0430\u043d\u0438", + "gu": "\u0433\u0443\u0434\u0436\u0430\u0440\u0430\u0442\u0438", + "guz": "\u0433\u0443\u0441\u0438\u0438", + "bbj": "\u0433\u0445\u043e\u043c\u0430\u043b\u0430", + "gd": "\u0433\u044d\u043b\u044c\u0441\u043a\u0438\u0439", + "dzg": "\u0434\u0430\u0437\u0430\u0433\u0441\u043a\u0438\u0439", + "dak": "\u0434\u0430\u043a\u043e\u0442\u0430", + "dar": "\u0434\u0430\u0440\u0433\u0432\u0430", + "da": "\u0434\u0430\u0442\u0441\u043a\u0438\u0439", + "del": "\u0434\u0435\u043b\u0430\u0432\u0430\u0440\u0441\u043a\u0438\u0439", + "dz": "\u0434\u0437\u043e\u043d\u0433-\u043a\u044d", + "din": "\u0434\u0438\u043d\u043a\u0430", + "dyu": "\u0434\u0438\u0443\u043b\u0430 (\u0434\u044c\u044e\u043b\u0430)", + "doi": "\u0434\u043e\u0433\u0440\u0438", + "dgr": "\u0434\u043e\u0433\u0440\u0438\u0431", + "goh": "\u0434\u0440\u0435\u0432\u043d\u0435\u0432\u0435\u0440\u0445\u043d\u0435\u043d\u0435\u043c\u0435\u0446\u043a\u0438\u0439", + "grc": "\u0434\u0440\u0435\u0432\u043d\u0435\u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0439", + "egy": "\u0434\u0440\u0435\u0432\u043d\u0435\u0435\u0433\u0438\u043f\u0435\u0442\u0441\u043a\u0438\u0439", + "dua": "\u0434\u0443\u0430\u043b\u0430", + "dyo": "\u0434\u044c\u043e\u043b\u0430-\u0444\u043e\u043d\u044c\u0438", + "jrb": "\u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e-\u0430\u0440\u0430\u0431\u0441\u043a\u0438\u0439", + "jpr": "\u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e-\u043f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439", + "es_ES": "\u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439", + "pt_PT": "\u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u0438\u0439 \u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "zza": "\u0437\u0430\u0437\u0430", + "fy": "\u0437\u0430\u043f\u0430\u0434\u043d\u043e-\u0444\u0440\u0438\u0437\u0441\u043a\u0438\u0439", + "dje": "\u0437\u0430\u0440\u043c\u0430", + "zen": "\u0437\u0435\u043d\u0430\u0433\u0441\u043a\u0438\u0439", + "zu": "\u0437\u0443\u043b\u0443", + "zun": "\u0437\u0443\u043d\u044c\u0438", + "iba": "\u0438\u0431\u0430\u043d\u0441\u043a\u0438\u0439", + "ibb": "\u0438\u0431\u0438\u0431\u0438\u043e", + "he": "\u0438\u0432\u0440\u0438\u0442", + "ig": "\u0438\u0433\u0431\u043e", + "yi": "\u0438\u0434\u0438\u0448", + "io": "\u0438\u0434\u043e", + "ilo": "\u0438\u043b\u043e\u043a\u043e", + "smn": "\u0438\u043d\u0430\u0440\u0438-\u0441\u0430\u0430\u043c\u0441\u043a\u0438\u0439", + "inh": "\u0438\u043d\u0433\u0443\u0448\u0441\u043a\u0438\u0439", + "id": "\u0438\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0438\u0439", + "ia": "\u0438\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u0430", + "ie": "\u0438\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u0435", + "iu": "\u0438\u043d\u0443\u043a\u0442\u0438\u0442\u0443\u0442", + "ik": "\u0438\u043d\u0443\u043f\u0438\u0430\u043a", + "ga": "\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "is": "\u0438\u0441\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "es": "\u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439", + "it": "\u0438\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439", + "ybb": "\u0439\u0435\u043c\u0431\u0430", + "yo": "\u0439\u043e\u0440\u0443\u0431\u0430", + "kbd": "\u043a\u0430\u0431\u0430\u0440\u0434\u0438\u043d\u0441\u043a\u0438\u0439", + "kab": "\u043a\u0430\u0431\u0438\u043b\u044c\u0441\u043a\u0438\u0439", + "kea": "\u043a\u0430\u0431\u0443\u0432\u0435\u0440\u0434\u044c\u044f\u043d\u0443", + "kaw": "\u043a\u0430\u0432\u0438", + "cad": "\u043a\u0430\u0434\u0434\u043e", + "kaj": "\u043a\u0430\u0434\u0436\u0438", + "kk": "\u043a\u0430\u0437\u0430\u0445\u0441\u043a\u0438\u0439", + "cay": "\u043a\u0430\u0439\u044e\u0433\u0430", + "kkj": "\u043a\u0430\u043a\u043e", + "kln": "\u043a\u0430\u043b\u0435\u043d\u0434\u0436\u0438\u043d", + "xal": "\u043a\u0430\u043b\u043c\u044b\u0446\u043a\u0438\u0439", + "kam": "\u043a\u0430\u043c\u0431\u0430", + "en_CA": "\u043a\u0430\u043d\u0430\u0434\u0441\u043a\u0438\u0439 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "fr_CA": "\u043a\u0430\u043d\u0430\u0434\u0441\u043a\u0438\u0439 \u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439", + "kbl": "\u043a\u0430\u043d\u0435\u043c\u0431\u0443", + "kn": "\u043a\u0430\u043d\u043d\u0430\u0434\u0430", + "yue": "\u043a\u0430\u043d\u0442\u043e\u043d\u0441\u043a\u0438\u0439", + "kr": "\u043a\u0430\u043d\u0443\u0440\u0438", + "kaa": "\u043a\u0430\u0440\u0430\u043a\u0430\u043b\u043f\u0430\u043a\u0441\u043a\u0438\u0439", + "krc": "\u043a\u0430\u0440\u0430\u0447\u0430\u0435\u0432\u043e-\u0431\u0430\u043b\u043a\u0430\u0440\u0441\u043a\u0438\u0439", + "krl": "\u043a\u0430\u0440\u0435\u043b\u044c\u0441\u043a\u0438\u0439", + "car": "\u043a\u0430\u0440\u0438\u0431", + "ca": "\u043a\u0430\u0442\u0430\u043b\u0430\u043d\u0441\u043a\u0438\u0439", + "kac": "\u043a\u0430\u0447\u0438\u043d\u0441\u043a\u0438\u0439", + "ks": "\u043a\u0430\u0448\u043c\u0438\u0440\u0438", + "csb": "\u043a\u0430\u0448\u0443\u0431\u0438\u0430\u043d\u0441\u043a\u0438\u0439", + "nmg": "\u043a\u0432\u0430\u0441\u0438\u043e", + "ceb": "\u043a\u0435\u0431\u0443\u0430\u043d\u043e", + "ksh": "\u043a\u0451\u043b\u044c\u0448", + "qu": "\u043a\u0435\u0447\u0443\u0430", + "ki": "\u043a\u0438\u043a\u0443\u0439\u044e", + "kmb": "\u043a\u0438\u043c\u0431\u0443\u043d\u0434\u0438\u0439\u0441\u043a\u0438\u0439", + "rw": "\u043a\u0438\u043d\u044c\u044f\u0440\u0443\u0430\u043d\u0434\u0430", + "ky": "\u043a\u0438\u0440\u0433\u0438\u0437\u0441\u043a\u0438\u0439", + "zh": "\u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439", + "quc": "\u043a\u0438\u0447\u0435", + "syc": "\u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0438\u0440\u0438\u0439\u0441\u043a\u0438\u0439", + "tlh": "\u043a\u043b\u0438\u043d\u0433\u043e\u043d\u0441\u043a\u0438\u0439", + "khq": "\u043a\u043e\u0439\u0440\u0430 \u0447\u0438\u0438\u043d\u0438", + "ses": "\u043a\u043e\u0439\u0440\u0430\u0431\u043e\u0440\u043e \u0441\u0435\u043d\u043d\u0438", + "bkm": "\u043a\u043e\u043c", + "kv": "\u043a\u043e\u043c\u0438", + "koi": "\u043a\u043e\u043c\u0438-\u043f\u0435\u0440\u043c\u044f\u0446\u043a\u0438\u0439", + "swb": "\u043a\u043e\u043c\u043e\u0440\u0441\u043a\u0438\u0439", + "kg": "\u043a\u043e\u043d\u0433\u043e", + "swc": "\u043a\u043e\u043d\u0433\u043e\u043b\u0435\u0437\u0441\u043a\u0438\u0439 \u0441\u0443\u0430\u0445\u0438\u043b\u0438", + "kok": "\u043a\u043e\u043d\u043a\u0430\u043d\u0438", + "cop": "\u043a\u043e\u043f\u0442\u0441\u043a\u0438\u0439", + "ko": "\u043a\u043e\u0440\u0435\u0439\u0441\u043a\u0438\u0439", + "root": "\u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u044f\u0437\u044b\u043a", + "kw": "\u043a\u043e\u0440\u043d\u0438\u0439\u0441\u043a\u0438\u0439", + "kfo": "\u043a\u043e\u0440\u043e", + "co": "\u043a\u043e\u0440\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439", + "xh": "\u043a\u043e\u0441\u0430", + "kos": "\u043a\u043e\u0441\u0440\u0430\u0435\u043d\u0441\u043a\u0438\u0439", + "kpe": "\u043a\u043f\u0435\u043b\u043b\u0435", + "cr": "\u043a\u0440\u0438\u0438\u0439\u0441\u043a\u0438\u0439", + "mus": "\u043a\u0440\u0438\u043a", + "crh": "\u043a\u0440\u044b\u043c\u0441\u043a\u043e-\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0438\u0439", + "kum": "\u043a\u0443\u043c\u044b\u043a\u0441\u043a\u0438\u0439", + "kj": "\u043a\u0443\u043d\u0430\u043c\u0430", + "ku": "\u043a\u0443\u0440\u0434\u0441\u043a\u0438\u0439", + "kru": "\u043a\u0443\u0440\u0443\u0445", + "kut": "\u043a\u0443\u0442\u0435\u043d\u0430\u0438", + "kha": "\u043a\u0445\u0430\u0441\u0438", + "km": "\u043a\u0445\u043c\u0435\u0440\u0441\u043a\u0438\u0439", + "lad": "\u043b\u0430\u0434\u0438\u043d\u043e", + "lkt": "\u043b\u0430\u043a\u043e\u0442\u0430", + "lam": "\u043b\u0430\u043c\u0431\u0430", + "lag": "\u043b\u0430\u043d\u0433\u0438", + "lo": "\u043b\u0430\u043e\u0441\u0441\u043a\u0438\u0439", + "es_419": "\u043b\u0430\u0442\u0438\u043d\u043e\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439", + "la": "\u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0439", + "lv": "\u043b\u0430\u0442\u044b\u0448\u0441\u043a\u0438\u0439", + "lah": "\u043b\u0430\u0445\u043d\u0434\u0430", + "lez": "\u043b\u0435\u0437\u0433\u0438\u043d\u0441\u043a\u0438\u0439", + "li": "\u043b\u0438\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439", + "ln": "\u043b\u0438\u043d\u0433\u0430\u043b\u0430", + "lt": "\u043b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439", + "jbo": "\u043b\u043e\u0436\u0431\u0430\u043d", + "loz": "\u043b\u043e\u0437\u0438", + "lu": "\u043b\u0443\u0431\u0430-\u043a\u0430\u0442\u0430\u043d\u0433\u0430", + "lua": "\u043b\u0443\u0431\u0430-\u043b\u0443\u043b\u0443\u0430", + "lui": "\u043b\u0443\u0438\u0441\u0435\u043d\u044c\u043e", + "smj": "\u043b\u0443\u043b\u0435-\u0441\u0430\u0430\u043c\u0441\u043a\u0438\u0439", + "lun": "\u043b\u0443\u043d\u0434\u0430", + "luo": "\u043b\u0443\u043e (\u041a\u0435\u043d\u0438\u044f \u0438 \u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f)", + "luy": "\u043b\u0443\u0445\u044c\u044f", + "lus": "\u043b\u0443\u0448\u0430\u0439", + "lb": "\u043b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439", + "mde": "\u043c\u0430\u0431\u0430\u043d\u0441\u043a\u0438\u0439", + "mfe": "\u043c\u0430\u0432\u0440\u0438\u043a\u0438\u0439\u0441\u043a\u0438\u0439 \u043a\u0440\u0435\u043e\u043b\u044c\u0441\u043a\u0438\u0439", + "mag": "\u043c\u0430\u0433\u0430\u0445\u0438", + "mad": "\u043c\u0430\u0434\u0443\u0440\u0441\u043a\u0438\u0439", + "mai": "\u043c\u0430\u0439\u0442\u0445\u0438\u043b\u0438", + "mak": "\u043c\u0430\u043a\u0430\u0441\u0441\u0430\u0440\u0441\u043a\u0438\u0439", + "mk": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438\u0439", + "kde": "\u043c\u0430\u043a\u043e\u043d\u0434\u0435", + "mgh": "\u043c\u0430\u043a\u0443\u0430-\u043c\u0435\u0435\u0442\u0442\u043e", + "mg": "\u043c\u0430\u043b\u0430\u0433\u0430\u0441\u0438\u0439\u0441\u043a\u0438\u0439", + "ms": "\u043c\u0430\u043b\u0430\u0439\u0441\u043a\u0438\u0439", + "ml": "\u043c\u0430\u043b\u0430\u044f\u043b\u0430\u043c", + "dv": "\u043c\u0430\u043b\u044c\u0434\u0438\u0432\u0441\u043a\u0438\u0439", + "mt": "\u043c\u0430\u043b\u044c\u0442\u0438\u0439\u0441\u043a\u0438\u0439", + "mdr": "\u043c\u0430\u043d\u0434\u0430\u0440\u0441\u043a\u0438\u0439", + "man": "\u043c\u0430\u043d\u0434\u0438\u043d\u0433\u043e", + "mni": "\u043c\u0430\u043d\u0438\u043f\u0443\u0440\u0441\u043a\u0438\u0439", + "mnc": "\u043c\u0430\u043d\u044c\u0447\u0436\u0443\u0440\u0441\u043a\u0438\u0439", + "mi": "\u043c\u0430\u043e\u0440\u0438", + "mr": "\u043c\u0430\u0440\u0430\u0442\u0445\u0438", + "mwr": "\u043c\u0430\u0440\u0432\u0430\u0440\u0438", + "chm": "\u043c\u0430\u0440\u0438\u0439\u0441\u043a\u0438\u0439 (\u0447\u0435\u0440\u0435\u043c\u0438\u0441\u0441\u043a\u0438\u0439)", + "mh": "\u043c\u0430\u0440\u0448\u0430\u043b\u043b\u044c\u0441\u043a\u0438\u0439", + "mas": "\u043c\u0430\u0441\u0430\u0438", + "maf": "\u043c\u0430\u0444\u0430", + "jmc": "\u043c\u0430\u0447\u0430\u043c\u0435", + "byv": "\u043c\u0435\u0434\u0443\u043c\u0431\u0430", + "men": "\u043c\u0435\u043d\u0434\u0435", + "mer": "\u043c\u0435\u0440\u0443", + "mgo": "\u043c\u0435\u0442\u0430", + "mye": "\u043c\u0438\u0435\u043d\u0435", + "mic": "\u043c\u0438\u043a\u043c\u0430\u043a", + "min": "\u043c\u0438\u043d\u0430\u043d\u0433\u043a\u0430\u0431\u0430\u0443", + "mwl": "\u043c\u0438\u0440\u0430\u043d\u0434\u0438\u0439\u0441\u043a\u0438\u0439", + "mdf": "\u043c\u043e\u043a\u0448\u0430\u043d\u0441\u043a\u0438\u0439", + "ro_MD": "\u043c\u043e\u043b\u0434\u0430\u0432\u0441\u043a\u0438\u0439", + "lol": "\u043c\u043e\u043d\u0433\u043e", + "mn": "\u043c\u043e\u043d\u0433\u043e\u043b\u044c\u0441\u043a\u0438\u0439", + "mos": "\u043c\u043e\u0441\u0438", + "moh": "\u043c\u043e\u0445\u0430\u0443\u043a", + "mua": "\u043c\u0443\u043d\u0434\u0430\u043d\u0433", + "gv": "\u043c\u044d\u043d\u0441\u043a\u0438\u0439", + "nv": "\u043d\u0430\u0432\u0430\u0445\u043e", + "naq": "\u043d\u0430\u043c\u0430", + "na": "\u043d\u0430\u0443\u0440\u0443", + "sba": "\u043d\u0433\u0430\u043c\u0431\u0430\u0439\u0441\u043a\u0438\u0439", + "nnh": "\u043d\u0433\u0438\u0435\u043c\u0431\u0443\u043d\u0434", + "jgo": "\u043d\u0433\u043e\u043c\u0431\u0430", + "nr": "\u043d\u0434\u0435\u0431\u0435\u043b\u0438 \u044e\u0436\u043d\u044b\u0439", + "ng": "\u043d\u0434\u043e\u043d\u0433\u0430", + "nap": "\u043d\u0435\u0430\u043f\u043e\u043b\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0439", + "nwc": "\u043d\u0435\u0432\u0430\u0440\u0438 (\u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439)", + "new": "\u043d\u0435\u0432\u0430\u0440\u0441\u043a\u0438\u0439", + "und": "\u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u044f\u0437\u044b\u043a", + "de": "\u043d\u0435\u043c\u0435\u0446\u043a\u0438\u0439", + "ne": "\u043d\u0435\u043f\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "mul": "\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044f\u0437\u044b\u043a\u043e\u0432", + "nzi": "\u043d\u0437\u0438\u043c\u0430", + "nia": "\u043d\u0438\u0430\u0441", + "nds": "\u043d\u0438\u0436\u043d\u0435\u0433\u0435\u0440\u043c\u0430\u043d\u0441\u043a\u0438\u0439", + "dsb": "\u043d\u0438\u0436\u043d\u0435\u043b\u0443\u0436\u0438\u0446\u043a\u0438\u0439", + "niu": "\u043d\u0438\u0443\u044d", + "nqo": "\u043d\u043a\u043e", + "nog": "\u043d\u043e\u0433\u0430\u0439\u0441\u043a\u0438\u0439", + "no": "\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439", + "nb": "\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 \u0431\u0443\u043a\u043c\u043e\u043b", + "nn": "\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 \u043d\u044e\u043d\u043e\u0440\u0441\u043a", + "nus": "\u043d\u0443\u044d\u0440", + "nyo": "\u043d\u044c\u043e\u0440\u043e", + "nym": "\u043d\u044c\u044f\u043c\u0432\u0435\u0437\u0438", + "ny": "\u043d\u044c\u044f\u043d\u0434\u0436\u0430", + "nyn": "\u043d\u044c\u044f\u043d\u043a\u043e\u043b\u0435", + "tog": "\u043d\u044c\u044f\u0441\u0430 (\u0442\u043e\u043d\u0433\u0430)", + "oj": "\u043e\u0434\u0436\u0438\u0431\u0432\u0430", + "oc": "\u043e\u043a\u0441\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0439", + "or": "\u043e\u0440\u0438\u044f", + "om": "\u043e\u0440\u043e\u043c\u043e", + "osa": "\u043e\u0441\u0435\u0434\u0436\u0438", + "os": "\u043e\u0441\u0435\u0442\u0438\u043d\u0441\u043a\u0438\u0439", + "pau": "\u043f\u0430\u043b\u0430\u0443", + "pi": "\u043f\u0430\u043b\u0438", + "pam": "\u043f\u0430\u043c\u043f\u0430\u043d\u0433\u0430", + "pag": "\u043f\u0430\u043d\u0433\u0430\u0441\u0438\u043d\u0430\u043d", + "pa": "\u043f\u0430\u043d\u0434\u0436\u0430\u0431\u0438", + "pap": "\u043f\u0430\u043f\u044c\u044f\u043c\u0435\u043d\u0442\u043e", + "fa": "\u043f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439", + "pal": "\u043f\u0435\u0445\u043b\u0435\u0432\u0438\u0439\u0441\u043a\u0438\u0439", + "pl": "\u043f\u043e\u043b\u044c\u0441\u043a\u0438\u0439", + "pon": "\u043f\u043e\u043d\u0430\u043f\u0435", + "pt": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "ps": "\u043f\u0443\u0448\u0442\u0443", + "raj": "\u0440\u0430\u0434\u0436\u0430\u0441\u0442\u0445\u0430\u043d\u0438", + "rap": "\u0440\u0430\u043f\u0430\u043d\u0443\u0438", + "rar": "\u0440\u0430\u0440\u043e\u0442\u043e\u043d\u0433\u0430\u043d\u0441\u043a\u0438\u0439", + "rm": "\u0440\u043e\u043c\u0430\u043d\u0448\u0441\u043a\u0438\u0439", + "rof": "\u0440\u043e\u043c\u0431\u043e", + "rwk": "\u0440\u0443\u0430\u043d\u0434\u0430", + "ro": "\u0440\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439", + "rn": "\u0440\u0443\u043d\u0434\u0438", + "ru": "\u0440\u0443\u0441\u0441\u043a\u0438\u0439", + "sma": "\u0441\u0430\u0430\u043c\u0441\u043a\u0438\u0439 (\u044e\u0436\u043d\u044b\u0439)", + "sam": "\u0441\u0430\u043c\u0430\u0440\u0438\u0442\u044f\u043d\u0441\u043a\u0438\u0439 \u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0438\u0439", + "saq": "\u0441\u0430\u043c\u0431\u0443\u0440\u0443", + "sm": "\u0441\u0430\u043c\u043e\u0430\u043d\u0441\u043a\u0438\u0439", + "sg": "\u0441\u0430\u043d\u0433\u043e", + "sbp": "\u0441\u0430\u043d\u0433\u0443", + "sad": "\u0441\u0430\u043d\u0434\u0430\u0432\u0435", + "sa": "\u0441\u0430\u043d\u0441\u043a\u0440\u0438\u0442", + "sat": "\u0441\u0430\u043d\u0442\u0430\u043b\u0438", + "zap": "\u0441\u0430\u043f\u043e\u0442\u0435\u043a\u0441\u043a\u0438\u0439", + "sc": "\u0441\u0430\u0440\u0434\u0438\u043d\u0441\u043a\u0438\u0439", + "sas": "\u0441\u0430\u0441\u0430\u043a\u0438", + "ssy": "\u0441\u0430\u0445\u043e", + "ss": "\u0441\u0432\u0430\u0437\u0438", + "se": "\u0441\u0435\u0432\u0435\u0440\u043d\u043e\u0441\u0430\u0430\u043c\u0441\u043a\u0438\u0439", + "nd": "\u0441\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043d\u0434\u0435\u0431\u0435\u043b\u0438", + "sel": "\u0441\u0435\u043b\u044c\u043a\u0443\u043f\u0441\u043a\u0438\u0439", + "seh": "\u0441\u0435\u043d\u0430", + "see": "\u0441\u0435\u043d\u0435\u043a\u0430", + "sr": "\u0441\u0435\u0440\u0431\u0441\u043a\u0438\u0439", + "sh": "\u0441\u0435\u0440\u0431\u0441\u043a\u043e\u0445\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439", + "srr": "\u0441\u0435\u0440\u0435\u0440", + "sid": "\u0441\u0438\u0434\u0430\u043c\u0430", + "bla": "\u0441\u0438\u043a\u0441\u0438\u043a\u0430", + "si": "\u0441\u0438\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "sd": "\u0441\u0438\u043d\u0434\u0445\u0438", + "syr": "\u0441\u0438\u0440\u0438\u0439\u0441\u043a\u0438\u0439", + "scn": "\u0441\u0438\u0446\u0438\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "sms": "\u0441\u043a\u043e\u043b\u044c\u0442-\u0441\u0430\u0430\u043c\u0441\u043a\u0438\u0439", + "den": "\u0441\u043b\u0435\u0439\u0432\u0438", + "sk": "\u0441\u043b\u043e\u0432\u0430\u0446\u043a\u0438\u0439", + "sl": "\u0441\u043b\u043e\u0432\u0435\u043d\u0441\u043a\u0438\u0439", + "xog": "\u0441\u043e\u0433\u0430", + "sog": "\u0441\u043e\u0433\u0434\u0438\u0439\u0441\u043a\u0438\u0439", + "so": "\u0441\u043e\u043c\u0430\u043b\u0438", + "snk": "\u0441\u043e\u043d\u0438\u043d\u043a\u0435", + "ckb": "\u0441\u043e\u0440\u0430\u043d\u0438 \u043a\u0443\u0440\u0434\u0441\u043a\u0438\u0439", + "nso": "\u0441\u043e\u0442\u043e \u0441\u0435\u0432\u0435\u0440\u043d\u044b\u0439", + "st": "\u0441\u043e\u0442\u043e \u044e\u0436\u043d\u044b\u0439", + "srn": "\u0441\u0440\u0430\u043d\u0430\u043d \u0442\u043e\u043d\u0433\u043e", + "enm": "\u0441\u0440\u0435\u0434\u043d\u0435\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "tzm": "\u0441\u0440\u0435\u0434\u043d\u0435\u0430\u0442\u043b\u0430\u0441\u0441\u043a\u0438\u0439 \u0442\u0430\u043c\u0430\u0437\u0438\u0433\u0445\u0442\u0441\u043a\u0438\u0439", + "gmh": "\u0441\u0440\u0435\u0434\u043d\u0435\u0432\u0435\u0440\u0445\u043d\u0435\u043d\u0435\u043c\u0435\u0446\u043a\u0438\u0439", + "mga": "\u0441\u0440\u0435\u0434\u043d\u0435\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "dum": "\u0441\u0440\u0435\u0434\u043d\u0435\u043d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "frm": "\u0441\u0440\u0435\u0434\u043d\u0435\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439", + "ang": "\u0441\u0442\u0430\u0440\u043e\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439", + "sga": "\u0441\u0442\u0430\u0440\u043e\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "non": "\u0441\u0442\u0430\u0440\u043e\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439", + "peo": "\u0441\u0442\u0430\u0440\u043e\u043f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439", + "pro": "\u0441\u0442\u0430\u0440\u043e\u043f\u0440\u043e\u0432\u0430\u043d\u0441\u0430\u043b\u044c\u0441\u043a\u0438\u0439", + "ota": "\u0441\u0442\u0430\u0440\u043e\u0442\u0443\u0440\u0435\u0446\u043a\u0438\u0439", + "fro": "\u0441\u0442\u0430\u0440\u043e\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439", + "sw": "\u0441\u0443\u0430\u0445\u0438\u043b\u0438", + "suk": "\u0441\u0443\u043a\u0443\u043c\u0430", + "su": "\u0441\u0443\u043d\u0434\u0430\u043d\u0441\u043a\u0438\u0439", + "sus": "\u0441\u0443\u0441\u0443", + "ii": "\u0441\u044b\u0447\u0443\u0430\u043d\u044c", + "tl": "\u0442\u0430\u0433\u0430\u043b\u043e\u0433", + "tg": "\u0442\u0430\u0434\u0436\u0438\u043a\u0441\u043a\u0438\u0439", + "dav": "\u0442\u0430\u0438\u0442\u0430", + "ty": "\u0442\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438\u0439", + "th": "\u0442\u0430\u0439\u0441\u043a\u0438\u0439", + "zgh": "\u0442\u0430\u043c\u0430\u0437\u0438\u0433\u0445\u0442\u0441\u043a\u0438\u0439", + "tmh": "\u0442\u0430\u043c\u0430\u0448\u0435\u043a", + "ta": "\u0442\u0430\u043c\u0438\u043b\u044c\u0441\u043a\u0438\u0439", + "trv": "\u0442\u0430\u0440\u043e\u043a\u043e", + "twq": "\u0442\u0430\u0441\u0430\u0432\u0430\u043a", + "tt": "\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0438\u0439", + "shi": "\u0442\u0430\u0445\u0435\u043b\u0445\u0438\u0442", + "tw": "\u0442\u0432\u0438", + "te": "\u0442\u0435\u043b\u0443\u0433\u0443", + "tem": "\u0442\u0435\u043c\u043d\u0435", + "ter": "\u0442\u0435\u0440\u0435\u043d\u043e", + "teo": "\u0442\u0435\u0441\u043e", + "tet": "\u0442\u0435\u0442\u0443\u043c", + "bo": "\u0442\u0438\u0431\u0435\u0442\u0441\u043a\u0438\u0439", + "tiv": "\u0442\u0438\u0432\u0438", + "tig": "\u0442\u0438\u0433\u0440\u0435", + "ti": "\u0442\u0438\u0433\u0440\u0438\u043d\u044c\u044f", + "tli": "\u0442\u043b\u0438\u043d\u0433\u0438\u0442", + "tpi": "\u0442\u043e\u043a-\u043f\u0438\u0441\u0438\u043d", + "tkl": "\u0442\u043e\u043a\u0435\u043b\u0430\u0439\u0441\u043a\u0438\u0439", + "to": "\u0442\u043e\u043d\u0433\u0430\u043d\u0441\u043a\u0438\u0439", + "zh_Hant": "\u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439", + "tn": "\u0442\u0441\u0432\u0430\u043d\u0430", + "ts": "\u0442\u0441\u043e\u043d\u0433\u0430", + "tvl": "\u0442\u0443\u0432\u0430\u043b\u0443", + "tyv": "\u0442\u0443\u0432\u0438\u043d\u0441\u043a\u0438\u0439", + "tum": "\u0442\u0443\u043c\u0431\u0443\u043a\u0430", + "tr": "\u0442\u0443\u0440\u0435\u0446\u043a\u0438\u0439", + "tk": "\u0442\u0443\u0440\u043a\u043c\u0435\u043d\u0441\u043a\u0438\u0439", + "tru": "\u0442\u0443\u0440\u043e\u0439\u043e", + "kcg": "\u0442\u044c\u044f\u043f", + "uga": "\u0443\u0433\u0430\u0440\u0438\u0442\u0441\u043a\u0438\u0439", + "udm": "\u0443\u0434\u043c\u0443\u0440\u0442\u0441\u043a\u0438\u0439", + "uz": "\u0443\u0437\u0431\u0435\u043a\u0441\u043a\u0438\u0439", + "ug": "\u0443\u0439\u0433\u0443\u0440\u0441\u043a\u0438\u0439", + "uk": "\u0443\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438\u0439", + "umb": "\u0443\u043c\u0431\u0443\u043d\u0434\u0443", + "zh_Hans": "\u0443\u043f\u0440\u043e\u0449\u0435\u043d\u043d\u044b\u0439 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439", + "ur": "\u0443\u0440\u0434\u0443", + "fan": "\u0444\u0430\u043d\u0433", + "fat": "\u0444\u0430\u043d\u0442\u0438", + "fo": "\u0444\u0430\u0440\u0435\u0440\u0441\u043a\u0438\u0439", + "fj": "\u0444\u0438\u0434\u0436\u0438", + "fil": "\u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u0438\u0439", + "phn": "\u0444\u0438\u043d\u0438\u043a\u0438\u0439\u0441\u043a\u0438\u0439", + "fi": "\u0444\u0438\u043d\u0441\u043a\u0438\u0439", + "nl_BE": "\u0444\u043b\u0430\u043c\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "fon": "\u0444\u043e\u043d", + "fr": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439", + "frr": "\u0444\u0440\u0438\u0437\u0441\u043a\u0438\u0439 \u0441\u0435\u0432\u0435\u0440\u043d\u044b\u0439", + "fur": "\u0444\u0440\u0438\u0443\u043b\u044c\u0441\u043a\u0438\u0439", + "ff": "\u0444\u0443\u043b\u0430\u0445", + "hai": "\u0445\u0430\u0439\u0434\u0430", + "ha": "\u0445\u0430\u0443\u0441\u0430", + "hit": "\u0445\u0435\u0442\u0442\u0441\u043a\u0438\u0439", + "hil": "\u0445\u0438\u043b\u0438\u0433\u0430\u0439\u043d\u043e\u043d", + "hi": "\u0445\u0438\u043d\u0434\u0438", + "ho": "\u0445\u0438\u0440\u0438\u043c\u043e\u0442\u0443", + "hmn": "\u0445\u043c\u043e\u043d\u0433", + "hr": "\u0445\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439", + "kho": "\u0445\u043e\u0442\u0430\u043d\u0441\u043a\u0438\u0439", + "hup": "\u0445\u0443\u043f\u0430", + "cu": "\u0446\u0435\u0440\u043a\u043e\u0432\u043d\u043e\u0441\u043b\u0430\u0432\u044f\u043d\u0441\u043a\u0438\u0439", + "tsi": "\u0446\u0438\u043c\u0448\u0438\u0430\u043d", + "rom": "\u0446\u044b\u0433\u0430\u043d\u0441\u043a\u0438\u0439", + "chg": "\u0447\u0430\u0433\u0430\u0442\u0430\u0439\u0441\u043a\u0438\u0439", + "shu": "\u0447\u0430\u0434\u0441\u043a\u0438\u0439 \u0430\u0440\u0430\u0431\u0441", + "ch": "\u0447\u0430\u043c\u043e\u0440\u0440\u043e", + "chy": "\u0447\u0435\u0439\u0435\u043d\u043d", + "chr": "\u0447\u0435\u0440\u043e\u043a\u0438", + "ce": "\u0447\u0435\u0447\u0435\u043d\u0441\u043a\u0438\u0439", + "cs": "\u0447\u0435\u0448\u0441\u043a\u0438\u0439", + "za": "\u0447\u0436\u0443\u0430\u043d\u044c", + "chb": "\u0447\u0438\u0431\u0447\u0430", + "cgg": "\u0447\u0438\u0433\u0430", + "chn": "\u0447\u0438\u043d\u0443\u043a \u0436\u0430\u0440\u0433\u043e\u043d", + "chp": "\u0447\u0438\u043f\u0435\u0432\u0430\u0439\u044f\u043d", + "cho": "\u0447\u043e\u043a\u0442\u0430\u0432", + "cv": "\u0447\u0443\u0432\u0430\u0448\u0441\u043a\u0438\u0439", + "chk": "\u0447\u0443\u043a\u043e\u0442\u0441\u043a\u0438\u0439", + "ksb": "\u0448\u0430\u043c\u0431\u0430\u043b\u0430", + "shn": "\u0448\u0430\u043d\u0441\u043a\u0438\u0439", + "sv": "\u0448\u0432\u0435\u0434\u0441\u043a\u0438\u0439", + "de_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438\u0439 \u0432\u0435\u0440\u0445\u043d\u0435\u043d\u0435\u043c\u0435\u0446\u043a\u0438\u0439", + "gsw": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438\u0439 \u043d\u0435\u043c\u0435\u0446\u043a\u0438\u0439", + "fr_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438\u0439 \u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439", + "sn": "\u0448\u043e\u043d\u0430", + "sco": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439", + "sux": "\u0448\u0443\u043c\u0435\u0440\u0441\u043a\u0438\u0439", + "ee": "\u044d\u0432\u0435", + "ewo": "\u044d\u0432\u043e\u043d\u0434\u043e", + "eka": "\u044d\u043a\u0430\u0434\u0436\u0443\u043a", + "elx": "\u044d\u043b\u0430\u043c\u0441\u043a\u0438\u0439", + "ebu": "\u044d\u043c\u0431\u0443", + "myv": "\u044d\u0440\u0437\u044f", + "eo": "\u044d\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e", + "et": "\u044d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439", + "efi": "\u044d\u0444\u0438\u043a", + "alt": "\u044e\u0436\u043d\u043e\u0430\u043b\u0442\u0430\u0439\u0441\u043a\u0438\u0439", + "jv": "\u044f\u0432\u0430\u043d\u0441\u043a\u0438\u0439", + "sah": "\u044f\u043a\u0443\u0442\u0441\u043a\u0438\u0439", + "yav": "\u044f\u043d\u0431\u0430\u043d", + "yao": "\u044f\u043e", + "yap": "\u044f\u043f", + "ja": "\u044f\u043f\u043e\u043d\u0441\u043a\u0438\u0439", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "es_MX": "Mexican Spanish", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/si-LK.json b/public/intl/language/si-LK.json new file mode 100644 index 0000000..d2b9bd8 --- /dev/null +++ b/public/intl/language/si-LK.json @@ -0,0 +1,611 @@ +{ + "ak": "\u0d85\u0d9a\u0dcf\u0db1\u0dca", + "af": "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dd2\u0d9a\u0dcf\u0db1\u0dd4", + "ga": "\u0d85\u0dba\u0dbb\u0dca\u0dbd\u0db1\u0dca\u0dad", + "is": "\u0d85\u0dba\u0dd2\u0dc3\u0dca\u0dbd\u0db1\u0dca\u0dad", + "ar": "\u0d85\u0dbb\u0dcf\u0db6\u0dd2", + "az": "\u0d85\u0dc3\u0dbb\u0dca\u0db6\u0dba\u0dd2\u0da2\u0dcf\u0db1\u0dca", + "asa": "\u0d85\u0dc3\u0dd4", + "hy": "\u0d86\u0dbb\u0dca\u0db8\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "agq": "\u0d87\u0d9c\u0db8\u0dca", + "ab": "\u0d87\u0db6\u0dca\u0d9a\u0dcf\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "en_US": "\u0d87\u0db8\u0dd9\u0dbb\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0d89\u0d82\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2", + "am": "\u0d87\u0db8\u0dca\u0dc4\u0dcf\u0dbb\u0dd2\u0d9a\u0dca", + "sq": "\u0d87\u0dbd\u0dca\u0db6\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "as": "\u0d87\u0dc3\u0db8\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "en": "\u0d89\u0d82\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2", + "ig": "\u0d89\u0d9c\u0dca\u0db6\u0ddd", + "it": "\u0d89\u0dad\u0dcf\u0dbd\u0dd2", + "smn": "\u0d89\u0db1\u0dcf\u0dbb\u0dd2 \u0dc3\u0dcf\u0db8\u0dd2", + "iu": "\u0d89\u0db1\u0dd4\u0d9a\u0dca\u0da7\u0dd2\u0da7\u0dd4\u0da7\u0dca", + "id": "\u0d89\u0db1\u0dca\u0daf\u0dd4\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "ee": "\u0d89\u0dc0\u0dca", + "hsb": "\u0d89\u0dc4\u0dc5 \u0dc3\u0ddd\u0db6\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "nd": "\u0d8b\u0dad\u0dd4\u0dbb\u0dd4 \u0d91\u0db1\u0dca\u0da9\u0dd2\u0db6\u0dd9\u0dbd\u0dd9", + "se": "\u0d8b\u0dad\u0dd4\u0dbb\u0dd4 \u0dc3\u0dcf\u0db8\u0dd2", + "ug": "\u0d8b\u0dba\u0dd2\u0d9c\u0dbb\u0dca", + "ur": "\u0d8b\u0dbb\u0dca\u0daf\u0dd4", + "uz": "\u0d8b\u0dc3\u0dca\u0db6\u0dd9\u0d9a\u0dca", + "nqo": "\u0d91\u0db1\u0dca\u2018\u0d9a\u0ddd", + "ebu": "\u0d91\u0db8\u0dca\u0db6\u0dd4", + "et": "\u0d91\u0dc3\u0dca\u0dad\u0ddd\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "eo": "\u0d91\u0dc3\u0dca\u0db4\u0dd0\u0dbb\u0db1\u0dca\u0da7\u0ddd", + "or": "\u0d94\u0dbb\u0dd2\u0dba\u0dcf", + "om": "\u0d94\u0dbb\u0ddc\u0db8\u0ddd", + "de_AT": "\u0d94\u0dc3\u0dca\u0da7\u0dca\u200d\u0dbb\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0da2\u0dbb\u0dca\u0db8\u0db1\u0dca", + "en_AU": "\u0d95\u0dc3\u0dca\u0da7\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0d89\u0d82\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2", + "kn": "\u0d9a\u0dab\u0dca\u0dab\u0da9", + "kea": "\u0d9a\u0db6\u0dd4\u0dc0\u0dd9\u0dbb\u0dca\u0da9\u0dd2\u0dba\u0dcf\u0db1\u0ddd", + "km": "\u0d9a\u0db8\u0dbb\u0dca", + "kl": "\u0d9a\u0dbd\u0dcf\u0dbd\u0dd2\u0dc3\u0da7\u0dca", + "kln": "\u0d9a\u0dbd\u0dd9\u0db1\u0dca\u0da2\u0db1\u0dca", + "kk": "\u0d9a\u0dc3\u0dcf\u0d9b\u0dca", + "ks": "\u0d9a\u0dcf\u0dc2\u0dca\u0db8\u0dd3\u0dbb\u0dca", + "ca": "\u0d9a\u0dd0\u0da7\u0dbd\u0db1\u0dca", + "en_CA": "\u0d9a\u0dd0\u0db1\u0dda\u0da9\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0d89\u0d82\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2", + "fr_CA": "\u0d9a\u0dd0\u0db1\u0dda\u0da9\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1", + "kab": "\u0d9a\u0dd0\u0db6\u0dbd\u0dcf", + "kam": "\u0d9a\u0dd0\u0db8\u0dca\u0db6\u0dcf", + "ki": "\u0d9a\u0dd2\u0d9a\u0dd4\u0dba\u0dd4", + "rw": "\u0d9a\u0dd2\u0db1\u0dca\u0dba\u0dbb\u0dca\u0dc0\u0db1\u0dca\u0da9\u0dcf", + "quc": "\u0d9a\u0dd2\u0dba\u0dd2\u0da0\u0dda", + "ky": "\u0d9a\u0dd2\u0dbb\u0dca\u0d9c\u0dd2\u0dc3\u0dca", + "ku": "\u0d9a\u0dd4\u0dbb\u0dca\u0daf\u0dd2", + "nmg": "\u0d9a\u0dd4\u0dc0\u0dcf\u0dc3\u0dd2\u0d94", + "kok": "\u0d9a\u0ddc\u0db1\u0dca\u0d9a\u0db1\u0dd2", + "swc": "\u0d9a\u0ddc\u0db1\u0dca\u0d9c\u0ddd \u0dc3\u0dca\u0dc0\u0dcf\u0dc4\u0dd2\u0dbd\u0dd2", + "koi": "\u0d9a\u0ddc\u0db8\u0dd2-\u0db4\u0dbb\u0dca\u0db8\u0dd2\u0dba\u0dcf\u0d9a\u0dca", + "khq": "\u0d9a\u0ddc\u0dba\u0dd2\u0dbb\u0dcf \u0da0\u0dd2\u0db1\u0dd2", + "ko": "\u0d9a\u0ddc\u0dbb\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "kw": "\u0d9a\u0ddd\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "ses": "\u0d9a\u0ddd\u0dba\u0dd2\u0dbb\u0dcf\u0db6\u0ddc\u0dbb\u0ddc \u0dc3\u0dd9\u0db1\u0dca\u0db1\u0dd2", + "co": "\u0d9a\u0dca\u200d\u0dbb\u0ddc\u0d91\u0dc1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "hr": "\u0d9a\u0dca\u200d\u0dbb\u0ddd\u0dba\u0dda\u0dc1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "qu": "\u0d9a\u0dca\u0dc0\u0dd3\u0da0\u0dd4\u0dc0\u0dcf", + "gag": "\u0d9c\u0d9c\u0dcf\u0dc3\u0dca", + "lg": "\u0d9c\u0db1\u0dca\u0da9\u0dcf", + "gl": "\u0d9c\u0dd0\u0dbd\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "gu": "\u0d9c\u0dd4\u0da2\u0dbb\u0dcf\u0da7\u0dd2", + "gn": "\u0d9c\u0dd4\u0dc0\u0dcf\u0dbb\u0db1\u0dd2", + "guz": "\u0d9c\u0dd4\u0dc3\u0dd3", + "el": "\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0d9a", + "cgg": "\u0da0\u0dd2\u0d9c\u0dcf", + "zh": "\u0da0\u0dd3\u0db1", + "cs": "\u0da0\u0dd9\u0dad\u0dca", + "chr": "\u0da0\u0dd9\u0dbb\u0ddc\u0d9a\u0dd3", + "pa": "\u0da2\u0db1\u0dca\u0da2\u0dcf\u0db6\u0dd2", + "ja": "\u0da2\u0db4\u0db1\u0dca", + "de": "\u0da2\u0dbb\u0dca\u0db8\u0db1\u0dca", + "jv": "\u0da2\u0dcf\u0dc0\u0dcf", + "dyo": "\u0da2\u0ddc\u0dbd-\u0dc6\u0ddd\u0db1\u0dd2\u0dba\u0dd2", + "ka": "\u0da2\u0ddd\u0dbb\u0dca\u0da2\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "shi": "\u0da7\u0da0\u0dda\u0dbd\u0dca\u0dc4\u0dd2\u0da7\u0dca", + "tg": "\u0da7\u0da2\u0dd2\u0d9a\u0dca", + "dav": "\u0da7\u0dba\u0dd2\u0da7\u0dcf", + "tk": "\u0da7\u0dbb\u0dca\u0d9a\u0dca\u0db8\u0dd9\u0db1\u0dca", + "twq": "\u0da7\u0dc3\u0dc0\u0dcf\u0d9a\u0dca", + "tt": "\u0da7\u0dcf\u0da7\u0dbb\u0dca", + "ti": "\u0da7\u0dd2\u0d9c\u0dca\u200d\u0dbb\u0dd2\u0db1\u0dca\u0dba\u0dcf", + "bo": "\u0da7\u0dd2\u0db6\u0dd9\u0da7\u0dca", + "aeb": "\u0da7\u0dd2\u0dba\u0dd4\u0db1\u0dd2\u0dc3\u0dd2\u0dba\u0db1\u0dd4 \u0d85\u0dbb\u0dcf\u0db6\u0dd2", + "teo": "\u0da7\u0dd9\u0dc3\u0ddd", + "to": "\u0da7\u0ddc\u0d82\u0d9c\u0dcf", + "da": "\u0da9\u0dd0\u0db1\u0dd2\u0dc1\u0dca", + "dz": "\u0da9\u0dd2\u0dc3\u0ddc\u0db1\u0dca\u0d9a\u0dcf", + "dua": "\u0da9\u0dd4\u0d86\u0dbd\u0dcf", + "th": "\u0dad\u0dcf\u0dba\u0dd2", + "tr": "\u0dad\u0dd4\u0dbb\u0dca\u0d9a\u0dd2", + "te": "\u0dad\u0dd9\u0dc5\u0dd2\u0d9f\u0dd4", + "sma": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4 \u0dc3\u0dcf\u0db8\u0dd2", + "dv": "\u0daf\u0dd2\u0dc0\u0dd9\u0dc4\u0dd2", + "ta": "\u0daf\u0dd9\u0db8\u0dc5", + "nyn": "\u0db1\u0dba\u0db1\u0dca\u0d9a\u0ddc\u0dc5\u0dda", + "ar_001": "\u0db1\u0dc0\u0dd3\u0db1 \u0dc3\u0db8\u0dca\u0db8\u0dad \u0d85\u0dbb\u0dcf\u0db6\u0dd2", + "naq": "\u0db1\u0dcf\u0db8\u0dcf", + "ne": "\u0db1\u0dda\u0db4\u0dcf\u0dbd", + "und": "\u0db1\u0ddc\u0daf\u0db1\u0dca\u0db1\u0dcf \u0db7\u0dcf\u0dc2\u0dcf\u0dc0", + "jgo": "\u0db1\u0ddc\u0db8\u0dca\u0db6\u0dcf", + "nus": "\u0db1\u0ddc\u0dba\u0dbb\u0dca", + "nn": "\u0db1\u0ddc\u0dc0\u0dda\u0dbb\u0dca\u0da2\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0db1\u0dba\u0dd2\u0db1\u0ddd\u0dbb\u0dca\u0dc3\u0dca\u0d9a\u0dca", + "nb": "\u0db1\u0ddd\u0dc0\u0dda\u0da2\u0dd2\u0dba\u0dcf\u0db1\u0dd4 \u0db6\u0ddc\u0d9a\u0dca\u0db8\u0dcf\u0dbd\u0dca", + "fa": "\u0db4\u0dbb\u0dca\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "ps": "\u0db4\u0dc2\u0dca\u0da7\u0ddc", + "dsb": "\u0db4\u0dc4\u0dc5 \u0dc3\u0ddd\u0db6\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "fil": "\u0db4\u0dd2\u0dbd\u0dd2\u0db4\u0dd3\u0db1", + "pt": "\u0db4\u0dd8\u0dad\u0dd4\u0d9c\u0dd3\u0dc3\u0dd2", + "pl": "\u0db4\u0ddd\u0dbd\u0db1\u0dca\u0dad", + "fr": "\u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1", + "fy": "\u0db6\u0da7\u0dc4\u0dd2\u0dbb \u0dc6\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "bm": "\u0db6\u0db8\u0dca\u0db6\u0dbb\u0dcf", + "bg": "\u0db6\u0dbd\u0dca\u0d9c\u0dda\u0dbb\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "ba": "\u0db6\u0dcf\u0dc2\u0dca\u0d9a\u0dd2\u0dbb\u0dca", + "ksf": "\u0db6\u0dcf\u0dc6\u0dd2\u0dba\u0dcf", + "my": "\u0db6\u0dd4\u0dbb\u0dd4\u0db8", + "bn": "\u0db6\u0dd9\u0d82\u0d9c\u0dcf\u0dbd\u0dd2", + "bez": "\u0db6\u0dd9\u0db1\u0dcf", + "bem": "\u0db6\u0dd9\u0db8\u0dca\u0db6\u0dcf", + "be": "\u0db6\u0dd9\u0dbd\u0dbb\u0dd4\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "brx": "\u0db6\u0ddc\u0da9\u0ddc", + "eu": "\u0db6\u0ddc\u0dc3\u0dca\u0d9a\u0ddd", + "bs": "\u0db6\u0ddc\u0dc3\u0dca\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "pt_BR": "\u0db6\u0dca\u200d\u0dbb\u0dc3\u0dd3\u0dbd \u0db4\u0dd8\u0dad\u0dd4\u0d9c\u0dd3\u0dc3\u0dd2", + "en_GB": "\u0db6\u0dca\u200d\u0dbb\u0dd2\u0dad\u0dcf\u0db1\u0dca\u200d\u0dba \u0d89\u0d82\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2", + "br": "\u0db6\u0dca\u200d\u0dbb\u0dda\u0da7\u0ddc\u0db1\u0dca", + "mgh": "\u0db8\u0d9b\u0dd4\u0dc0\u0dcf-\u0db8\u0dd3\u0da7\u0ddd", + "tzm": "\u0db8\u0db0\u0dca\u200d\u0dba\u0db8 \u0d87\u0da7\u0dca\u0dbd\u0dc3\u0dca \u0da7\u0db8\u0dc3\u0dd2\u0da7\u0dca", + "arn": "\u0db8\u0db4\u0dd4\u0da0\u0dd9", + "mr": "\u0db8\u0dbb\u0dcf\u0dad\u0dd2", + "mg": "\u0db8\u0dbd\u0d9c\u0dcf\u0dc3\u0dd2", + "ml": "\u0db8\u0dbd\u0dba\u0dcf\u0dbd\u0db8\u0dca", + "mas": "\u0db8\u0dc3\u0dcf\u0dba\u0dd2", + "mi": "\u0db8\u0dcf\u0dc0\u0ddc\u0dbb\u0dd2", + "jmc": "\u0db8\u0dd0\u0d9a\u0dcf\u0db8\u0dd3", + "kde": "\u0db8\u0dd0\u0d9a\u0ddc\u0db1\u0dca\u0da9\u0dca", + "gv": "\u0db8\u0dd0\u0db1\u0dca\u0d9a\u0dca\u0dc3\u0dca", + "ms": "\u0db8\u0dd0\u0dbd\u0dda", + "mk": "\u0db8\u0dd0\u0dc3\u0dd2\u0da9\u0ddd\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "mua": "\u0db8\u0dd4\u0db1\u0dca\u0da9\u0db1\u0dca", + "es_MX": "\u0db8\u0dd9\u0d9a\u0dca\u0dc3\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0dc3\u0dca\u0db4\u0dcf\u0da4\u0dca\u0da4", + "mgo": "\u0db8\u0dd9\u0da7\u0dcf", + "mer": "\u0db8\u0dd9\u0dbb\u0dd4", + "mn": "\u0db8\u0ddc\u0d82\u0d9c\u0ddd\u0dbd\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "mfe": "\u0db8\u0ddc\u0dbb\u0dd2\u0dc3\u0dca\u0dba\u0dd9\u0db8\u0dca", + "mt": "\u0db8\u0ddc\u0dbd\u0dca\u0da7\u0dd2\u0dc3\u0dca", + "moh": "\u0db8\u0ddc\u0dc4\u0ddc\u0dc0\u0dca\u0d9a\u0dca", + "uk": "\u0dba\u0dd4\u0d9a\u0dca\u0dbb\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "pt_PT": "\u0dba\u0dd4\u0dbb\u0ddd\u0db4\u0dd3\u0dba \u0db4\u0dd8\u0dad\u0dd4\u0d9c\u0dd3\u0dc3\u0dd2", + "es_ES": "\u0dba\u0dd4\u0dbb\u0ddd\u0db4\u0dd3\u0dba \u0dc3\u0dca\u0db4\u0dcf\u0da4\u0dca\u0da4", + "yo": "\u0dba\u0ddc\u0dbb\u0dd6\u0db6\u0dcf", + "rn": "\u0dbb\u0dd4\u0db1\u0dca\u0da9\u0dd2", + "ru": "\u0dbb\u0dd4\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "rm": "\u0dbb\u0ddc\u0db8\u0dd1\u0db1\u0dca\u0dc1\u0dca", + "ro": "\u0dbb\u0ddc\u0db8\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "rof": "\u0dbb\u0ddd\u0db8\u0dca\u0db6\u0ddd", + "rwk": "\u0dbb\u0dca\u0dc0\u0dcf", + "lag": "\u0dbd\u0d82\u0d9c\u0dd2", + "lkt": "\u0dbd\u0d9a\u0ddc\u0da7", + "lb": "\u0dbd\u0d9a\u0dca\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca\u0d9c\u0dca", + "la": "\u0dbd\u0dad\u0dd2\u0db1\u0dca", + "es_419": "\u0dbd\u0dad\u0dd2\u0db1\u0dca \u0d87\u0db8\u0dbb\u0dd2\u0d9a\u0dcf\u0db1\u0dd4 \u0dc3\u0dca\u0db4\u0dcf\u0da4\u0dca\u0da4", + "nl": "\u0dbd\u0db1\u0dca\u0daf\u0dda\u0dc3\u0dd2", + "lo": "\u0dbd\u0dcf\u0d95", + "lv": "\u0dbd\u0dd0\u0da7\u0dca\u0dc0\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "lt": "\u0dbd\u0dd2\u0dad\u0dd4\u0dc0\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "ln": "\u0dbd\u0dd2\u0db1\u0dca\u0d9c\u0dbd\u0dcf", + "lu": "\u0dbd\u0dd4", + "luo": "\u0dbd\u0dd4\u0d94", + "luy": "\u0dbd\u0dd4\u0dba\u0dd2\u0dba\u0dcf", + "smj": "\u0dbd\u0dd4\u0dbd\u0dda \u0dc3\u0dcf\u0db8\u0dd2", + "vai": "\u0dc0\u0dba\u0dd2", + "zxx": "\u0dc0\u0dcf\u0d9c\u0dca \u0dc0\u0dd2\u0daf\u0dca\u200d\u0dba\u0dcf \u0d85\u0db1\u0dca\u0dad\u0dbb\u0dca\u0d9c\u0dad\u0dba\u0d9a\u0dca \u0db1\u0dd0\u0dad", + "vi": "\u0dc0\u0dd2\u0dba\u0da7\u0dca\u0db1\u0dcf\u0db8\u0dca", + "vun": "\u0dc0\u0dd4\u0db1\u0dca\u0da2\u0ddd", + "cy": "\u0dc0\u0dda\u0dbd\u0dca\u0dc3\u0dca", + "wo": "\u0dc0\u0ddc\u0dbd\u0ddc\u0dc6\u0dca", + "ksb": "\u0dc1\u0dcf\u0db8\u0dca\u0db6\u0dbd\u0dcf", + "sn": "\u0dc1\u0ddd\u0db1\u0dcf", + "xh": "\u0dc1\u0ddd\u0dc3\u0dcf", + "sbp": "\u0dc3\u0d82\u0d9c\u0dd4", + "sa": "\u0dc3\u0d82\u0dc3\u0dca\u0d9a\u0dd8\u0dad", + "sg": "\u0dc3\u0db1\u0dca\u0d9c\u0dca\u200d\u0dbb\u0ddd", + "su": "\u0dc3\u0db1\u0dca\u0da9\u0db1\u0dd3\u0dc3\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "saq": "\u0dc3\u0db8\u0dca\u0db6\u0dd4\u0dbb\u0dd4", + "zgh": "\u0dc3\u0db8\u0dca\u0db8\u0dad \u0db8\u0ddc\u0dbb\u0ddc\u0d9a\u0dca\u0d9a\u0ddd \u0da7\u0db8\u0dc3\u0dd2\u0d9c\u0dca\u0dad\u0dca", + "sr": "\u0dc3\u0dbb\u0dca\u0db6\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "zh_Hant": "\u0dc3\u0dcf\u0db8\u0dca\u0db4\u0dca\u200d\u0dbb\u0daf\u0dcf\u0dba\u0dd2\u0d9a \u0da0\u0dd3\u0db1", + "si": "\u0dc3\u0dd2\u0d82\u0dc4\u0dbd", + "ii": "\u0dc3\u0dd2\u0da0\u0dd4\u0d86\u0db1\u0dca \u0dba\u0dd3", + "sd": "\u0dc3\u0dd2\u0db1\u0dca\u0db0\u0dd2", + "zu": "\u0dc3\u0dd4\u0dbd\u0dd4", + "zh_Hans": "\u0dc3\u0dd4\u0dc5\u0dd4\u0d9a\u0dc5 \u0da0\u0dd3\u0db1", + "seh": "\u0dc3\u0dd9\u0db1\u0dcf", + "xog": "\u0dc3\u0ddc\u0d9c\u0dcf", + "ckb": "\u0dc3\u0ddc\u0dbb\u0dcf\u0db1\u0dd2 \u0d9a\u0dd4\u0dbb\u0dca\u0daf\u0dd2\u0dc2\u0dca", + "so": "\u0dc3\u0ddd\u0db8\u0dcf\u0dbd\u0dd2", + "sms": "\u0dc3\u0dca\u0d9a\u0ddc\u0dbd\u0dca\u0da7\u0dca \u0dc3\u0dcf\u0db8\u0dd2", + "es": "\u0dc3\u0dca\u0db4\u0dcf\u0da4\u0dca\u0da4", + "sk": "\u0dc3\u0dca\u0dbd\u0ddd\u0dc0\u0dd0\u0d9a\u0dca", + "sl": "\u0dc3\u0dca\u0dbd\u0ddd\u0dc0\u0dda\u0db1\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "sw": "\u0dc3\u0dca\u0dc0\u0dcf\u0dc4\u0dd2\u0dbd\u0dd2", + "de_CH": "\u0dc3\u0dca\u0dc0\u0dd2\u0dc3\u0dca \u0d8b\u0dc3\u0dc3\u0dca \u0da2\u0dbb\u0dca\u0db8\u0db1\u0dca", + "gsw": "\u0dc3\u0dca\u0dc0\u0dd2\u0dc3\u0dca \u0da2\u0dbb\u0dca\u0db8\u0db1\u0dd2", + "fr_CH": "\u0dc3\u0dca\u0dc0\u0dd2\u0dc3\u0dca \u0db4\u0dca\u200d\u0dbb\u0d82\u0dc1", + "sv": "\u0dc3\u0dca\u0dc0\u0dd3\u0da9\u0db1\u0dca", + "hu": "\u0dc4\u0db1\u0dca\u0d9c\u0dda\u0dbb\u0dd2\u0dba\u0dcf\u0db1\u0dd4", + "ht": "\u0dc4\u0dba\u0dd2\u0da7\u0dd2", + "haw": "\u0dc4\u0dc0\u0dcf\u0dba\u0dd2", + "hi": "\u0dc4\u0dd2\u0db1\u0dca\u0daf\u0dd2", + "he": "\u0dc4\u0dd3\u0db6\u0df2", + "ha": "\u0dc4\u0ddd\u0dc3\u0dcf", + "dje": "\u0dc6\u0dbb\u0dca\u0db8\u0dcf", + "fo": "\u0dc6\u0dcf\u0dbb\u0ddd\u0dc3\u0dca", + "fi": "\u0dc6\u0dd2\u0db1\u0dca\u0dbd\u0db1\u0dca\u0dad", + "fj": "\u0dc6\u0dd3\u0da2\u0dd2", + "nl_BE": "\u0dc6\u0dca\u0dbd\u0dd9\u0db8\u0dd2\u0dc1\u0dca", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "ain": "Ainu", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "ale": "Aleut", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "ay": "Aymara", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brh": "Brahui", + "bra": "Braj", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chy": "Cheyenne", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "cop": "Coptic", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "doi": "Dogri", + "dgr": "Dogrib", + "dyu": "Dyula", + "frs": "Eastern Frisian", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "egl": "Emilian", + "myv": "Erzya", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gan": "Gan Chinese", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "Interlingua", + "ie": "Interlingue", + "ik": "Inupiaq", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "xal": "Kalmyk", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "kg": "Kongo", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lam": "Lamba", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "loz": "Lozi", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "lun": "Lunda", + "mde": "Maba", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "mdf": "Moksha", + "ro_MD": "Moldavian", + "lol": "Mongo", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "ttt": "Muslim Tat", + "mye": "Myene", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "frr": "Northern Frisian", + "nso": "Northern Sotho", + "no": "Norwegian", + "nov": "Novial", + "nym": "Nyamwezi", + "ny": "Nyanja", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitan", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romany", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "sm": "Samoan", + "sgs": "Samogitian", + "sad": "Sandawe", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "gd": "Scottish Gaelic", + "sly": "Selayar", + "sel": "Selkup", + "see": "Seneca", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "shn": "Shan", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "den": "Slave", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "st": "Southern Sotho", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "ss": "Swati", + "syr": "Syriac", + "tl": "Tagalog", + "ty": "Tahitian", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "ter": "Tereno", + "tet": "Tetum", + "tig": "Tigre", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "ve": "Venda", + "vec": "Venetian", + "vep": "Veps", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "yi": "Yiddish", + "zap": "Zapotec", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/sk-SK.json b/public/intl/language/sk-SK.json new file mode 100644 index 0000000..07cdff2 --- /dev/null +++ b/public/intl/language/sk-SK.json @@ -0,0 +1,611 @@ +{ + "ab": "abch\u00e1z\u010dina", + "ace": "aceh\u010dina", + "ach": "a\u010doli", + "ada": "adangme", + "ady": "adyg\u010dina", + "aa": "afar\u010dina", + "afh": "afrihili", + "af": "afrik\u00e1n\u010dina", + "agq": "aghem", + "ain": "ain\u010dina", + "ak": "akan\u010dina", + "akk": "akkad\u010dina", + "bss": "akoose", + "akz": "Alabama", + "sq": "alb\u00e1n\u010dina", + "ale": "aleut\u010dina", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "am": "amhar\u010dina", + "anp": "angika", + "en": "angli\u010dtina", + "en_US": "angli\u010dtina (americk\u00e1)", + "en_AU": "angli\u010dtina (austr\u00e1lska)", + "en_GB": "angli\u010dtina (britsk\u00e1)", + "en_CA": "angli\u010dtina (kanadsk\u00e1)", + "njo": "Ao Naga", + "ar": "arab\u010dina", + "ar_001": "arab\u010dina (modern\u00e1 \u0161tandardn\u00e1)", + "an": "arag\u00f3n\u010dina", + "arc": "aramej\u010dina", + "aro": "Araona", + "arp": "arapaho", + "arn": "arauk\u00e1n\u010dina", + "arw": "arawa\u010dtina", + "hy": "arm\u00e9n\u010dina", + "frp": "Arpitan", + "rup": "arumun\u010dina", + "as": "\u00e1sam\u010dina", + "ast": "ast\u00far\u010dina", + "asa": "asu", + "cch": "atsam", + "awa": "avadh\u010dina", + "av": "avar\u010dina", + "ae": "avest\u010dina", + "ay": "aymar\u010dina", + "az": "azerbajd\u017ean\u010dina", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "bafut", + "bqi": "Bakhtiari", + "ban": "balij\u010dina", + "bal": "bal\u00fa\u010dtina", + "bm": "bambar\u010dina", + "bax": "bamun", + "bjn": "Banjar", + "my": "barm\u010dina", + "bas": "basa", + "eu": "baski\u010dtina", + "ba": "ba\u0161kir\u010dina", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "bed\u017ea", + "bem": "bemba", + "bez": "bena", + "bn": "beng\u00e1l\u010dina", + "bew": "Betawi", + "zxx": "bez jazykov\u00e9ho obsahu", + "bho": "bh\u00f3d\u017epur\u010dina", + "be": "bieloru\u0161tina", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "byn": "blin", + "brx": "bodo", + "bs": "bosnia\u010dtina", + "bra": "brad\u017e\u010dina", + "brh": "Brahui", + "br": "bret\u00f3n\u010dina", + "bug": "bugi\u0161tina", + "bg": "bulhar\u010dina", + "bum": "bulu", + "bua": "buriat\u010dina", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "cayuga", + "ceb": "cebu\u00e1n\u010dina", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "cu": "cirkevn\u00e1 slovan\u010dina", + "shu": "\u010dadsk\u00e1 arab\u010dina", + "chg": "\u010dagataj\u010dina", + "ch": "\u010damor\u010dina", + "ce": "\u010de\u010den\u010dina", + "chy": "\u010dejen\u010dina", + "chr": "\u010derok\u00ed", + "cs": "\u010de\u0161tina", + "ny": "\u010dewa", + "chb": "\u010dib\u010da", + "zh": "\u010d\u00edn\u0161tina", + "zh_Hant": "\u010d\u00edn\u0161tina (tradi\u010dn\u00e1)", + "zh_Hans": "\u010d\u00edn\u0161tina (zjednodu\u0161en\u00e1)", + "chn": "\u010dinuck\u00fd \u017earg\u00f3n", + "chp": "\u010dipevaj\u010dina", + "cho": "\u010doktav\u010dina", + "za": "\u010duang\u010dina", + "cv": "\u010duva\u0161tina", + "dak": "dakot\u010dina", + "da": "d\u00e1n\u010dina", + "dar": "dargin\u010dina", + "dzg": "dazaga", + "del": "delawar\u010dina", + "din": "dinka", + "dv": "divehi", + "doi": "d\u00f3gr\u00ed", + "dgr": "dogrib\u010dina", + "nds": "doln\u00e1 nem\u010dina", + "dsb": "dolnolu\u017eick\u00e1 srb\u010dina", + "dua": "duala", + "dyu": "\u010fula", + "dz": "dzongk\u00e4", + "efi": "efik", + "arz": "Egyptian Arabic", + "eka": "ekad\u017euk", + "elx": "elam\u010dina", + "ebu": "embu", + "egl": "Emilian", + "myv": "erzjan\u010dina", + "eo": "esperanto", + "et": "est\u00f3n\u010dina", + "gez": "eti\u00f3p\u010dina", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fo": "faer\u010dina", + "fan": "fang\u010dina", + "fat": "fanti", + "phn": "feni\u010dtina", + "fj": "fid\u017eij\u010dina", + "hif": "Fiji Hindi", + "fil": "filip\u00edn\u010dina", + "fi": "f\u00edn\u010dina", + "nl_BE": "fl\u00e1m\u010dina", + "fon": "fon\u010dina", + "gur": "Frafra", + "fr": "franc\u00faz\u0161tina", + "fr_CA": "franc\u00faz\u0161tina (kanadsk\u00e1)", + "fr_CH": "franc\u00faz\u0161tina (\u0161vaj\u010diarska)", + "fur": "friul\u010dina", + "ff": "fulb\u010dina", + "gaa": "ga", + "gag": "gagauz\u0161tina", + "gl": "gal\u00edcij\u010dina", + "gan": "Gan Chinese", + "lg": "gand\u010dina", + "gay": "gayo", + "gba": "gbaja", + "aln": "Gheg Albanian", + "bbj": "ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "gon": "g\u00f3nd\u010dina", + "gor": "gorontalo", + "got": "g\u00f3t\u010dina", + "grb": "grebo", + "el": "gr\u00e9\u010dtina", + "kl": "gr\u00f3n\u010dina", + "ka": "gruz\u00edn\u010dina", + "gn": "guaran\u00ed", + "gu": "gud\u017ear\u00e1t\u010dina", + "guz": "gusii", + "gwi": "gwich\u02bcin", + "hai": "haida", + "ht": "hait\u010dina", + "hak": "Hakka Chinese", + "ha": "hau\u0161tina", + "haw": "havaj\u010dina", + "he": "hebrej\u010dina", + "hz": "herero", + "hil": "hiligajnon\u010dina", + "hi": "hind\u010dina", + "ho": "hiri motu", + "hmn": "hmong", + "nl": "holand\u010dina", + "hsb": "hornolu\u017eick\u00e1 srb\u010dina", + "hup": "hup\u010dina", + "hit": "chetit\u010dina", + "qug": "Chimborazo Highland Quichua", + "hr": "chorv\u00e1t\u010dina", + "kho": "chotan\u010dina", + "iba": "iban\u010dina", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo\u0161tina", + "ilo": "ilok\u00e1n\u010dina", + "id": "indon\u00e9z\u0161tina", + "izh": "Ingrian", + "inh": "ingu\u0161tina", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiaq", + "ga": "\u00edr\u010dina", + "is": "island\u010dina", + "sah": "jakut\u010dina", + "jam": "Jamaican Creole English", + "yav": "jangben", + "yao": "jao", + "yap": "jap\u010dina", + "ja": "japon\u010dina", + "jv": "j\u00e1v\u010dina", + "yi": "jidi\u0161", + "kaj": "jju", + "dyo": "jola-fonyi", + "yo": "jorub\u010dina", + "jut": "Jutish", + "alt": "ju\u017en\u00e1 altaj\u010dina", + "nr": "ju\u017en\u00e1 ndebel\u010dina", + "st": "ju\u017en\u00e1 soth\u010dina", + "sma": "ju\u017en\u00e9 sami", + "kbd": "kabard\u010dina", + "kab": "kabyl\u010dina", + "kac": "ka\u010djin\u010dina", + "cad": "kaddo", + "kgp": "Kaingang", + "mh": "kajin-majol", + "kkj": "kako", + "kln": "kalend\u017ein", + "xal": "kalmy\u010dtina", + "kam": "kamba", + "kbl": "kanembu", + "kn": "kannad\u010dina", + "yue": "kanton\u010dina", + "kr": "kanurij\u010dina", + "kea": "kapverd\u010dina", + "krc": "kara\u010dajevsko-balkarsk\u00fd jazyk", + "kaa": "karakalpa\u010dtina", + "krl": "karel\u010dina", + "car": "karibsk\u00fd", + "ks": "ka\u0161m\u00edr\u010dina", + "csb": "ka\u0161ub\u010dina", + "ca": "katal\u00e1n\u010dina", + "kaw": "kawi", + "kk": "kaza\u0161tina", + "qu": "ke\u010du\u00e1n\u010dina", + "ken": "Kenyang", + "kha": "khasij\u010dina", + "km": "khm\u00e9r\u010dina", + "khw": "Khowar", + "cgg": "kiga", + "ki": "kikuj\u010dina", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "rw": "ki\u0148arwanda", + "ky": "kirgiz\u0161tina", + "gil": "kiribat\u010dina", + "kiu": "Kirmanjki", + "rn": "kirund\u010dina", + "nwc": "klasick\u00e1 nev\u00e1r\u010dina", + "syc": "klasick\u00e1 s\u00fdr\u010dina", + "tlh": "kling\u00f3n\u010dina", + "ksh": "kol\u00edn\u010dina", + "bkm": "kom", + "koi": "komi-permia\u010dtina", + "kv": "komij\u010dina", + "swb": "komor\u010dina", + "kg": "kong\u010dina", + "kok": "konk\u00e1n\u010dina", + "cop": "kopt\u010dina", + "ko": "k\u00f3rej\u010dina", + "root": "kore\u0148", + "kw": "korn\u010dina", + "kfo": "koro", + "co": "korzi\u010dtina", + "avk": "Kotava", + "ses": "koyraboro senni", + "kpe": "kpelle", + "cr": "kr\u00ed", + "mus": "kr\u00edk\u010dina", + "kri": "Krio", + "crh": "krymsk\u00e1 ture\u010dtina", + "kj": "kua\u0148ama", + "kum": "kumy\u010dtina", + "ku": "kurd\u010dina", + "ckb": "kurd\u010dina (sor\u00e1n\u00ed)", + "kru": "kurukh\u010dina", + "kos": "kusaie", + "kut": "kutenaj\u010dina", + "nmg": "kwasio", + "quc": "k\u02bciche\u02bc", + "lah": "lahand\u010dina", + "lkt": "lakot\u010dina", + "lam": "lamba", + "lag": "langi", + "lo": "lao\u0161tina", + "ltg": "Latgalian", + "la": "latin\u010dina", + "lzz": "Laz", + "lez": "lezgin\u010dina", + "lij": "Ligurian", + "li": "limbur\u010dina", + "ln": "lingal\u010dina", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litov\u010dina", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "lv": "loty\u0161tina", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulu\u00e1n\u010dina", + "luy": "luhja", + "lui": "luise\u0148o", + "lun": "lunda", + "luo": "luo", + "lb": "luxembur\u010dina", + "mde": "maba", + "mk": "maced\u00f3n\u010dina", + "hu": "ma\u010far\u010dina", + "mad": "madur\u010dina", + "maf": "mafa", + "mag": "magadh\u010dina", + "vmf": "Main-Franconian", + "mai": "maithil\u010dina", + "mak": "makasar\u010dina", + "kde": "makonde", + "mgh": "makua-meetto", + "ml": "malaj\u00e1lam\u010dina", + "ms": "malaj\u010dina", + "mg": "malga\u0161tina", + "mt": "malt\u010dina", + "gv": "man\u010dina", + "mdr": "mandar\u010dina", + "man": "mandingo", + "mnc": "mand\u017eu\u0161tina", + "mni": "man\u00edpur\u010dina", + "mi": "maorij\u010dina", + "mr": "mar\u00e1th\u010dina", + "mwr": "marawari", + "chm": "marij\u010dina", + "mas": "masaj\u010dina", + "jmc": "ma\u0161ame", + "mfe": "maur\u00edcijsk\u00e1 kreol\u010dina", + "mzn": "Mazanderani", + "byv": "medumba", + "men": "mendi", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "mikmak\u010dina", + "nan": "Min Nan Chinese", + "min": "minangkabau\u010dina", + "xmf": "Mingrelian", + "mwl": "mirand\u010dina", + "lus": "mizor\u00e1m\u010dina", + "moh": "mohawk\u010dina", + "mdf": "mok\u0161ian\u010dina", + "ro_MD": "moldav\u010dina", + "lol": "mongo", + "mn": "mongol\u010dina", + "ary": "Moroccan Arabic", + "mos": "mossi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n\u2019ko", + "naq": "nama", + "nym": "\u0148amwezi", + "nyn": "\u0148ankole", + "tog": "\u0148asa tonga", + "na": "nauru", + "nv": "navajo", + "ng": "ndonga", + "nap": "neapol\u010dina", + "de": "nem\u010dina", + "de_AT": "nem\u010dina (rak\u00faska)", + "de_CH": "nem\u010dina (\u0161vaj\u010diarska spisovn\u00e1)", + "gsw": "nem\u010dina (\u0161vaj\u010diarska)", + "ne": "nep\u00e1l\u010dina", + "new": "nev\u00e1r\u010dina", + "und": "nezn\u00e1my jazyk", + "sba": "ngambay", + "nnh": "ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias\u00e1n\u010dina", + "niu": "niue\u0161tina", + "nog": "nogaj\u010dina", + "no": "n\u00f3r\u010dina", + "nyo": "\u0148oro", + "nb": "n\u00f3rsky bokm\u00e5l", + "nn": "n\u00f3rsky nynorsk", + "nov": "Novial", + "nus": "nuer", + "nzi": "nzima", + "oj": "od\u017eibva", + "oc": "okcit\u00e1n\u010dina", + "om": "orom\u010dina", + "osa": "osag\u010dina", + "os": "oset\u010dina", + "ota": "osmansk\u00e1 ture\u010dtina", + "pal": "pahlav\u00ed", + "pfl": "Palatine German", + "pau": "palau\u010dina", + "pi": "p\u00e1l\u00ed", + "pam": "pampanga", + "pa": "pand\u017e\u00e1b\u010dina", + "pag": "pangasinan\u010dina", + "pap": "papiamento", + "ps": "pa\u0161t\u010dina", + "pdc": "Pennsylvania German", + "fa": "perz\u0161tina", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "pohnpei\u010dina", + "pl": "po\u013e\u0161tina", + "pnt": "Pontic", + "pt": "portugal\u010dina", + "pt_BR": "portugal\u010dina (braz\u00edlska)", + "pt_PT": "portugal\u010dina (eur\u00f3pska)", + "prg": "Prussian", + "raj": "rad\u017eastan\u010dina", + "rap": "rapanuj\u010dina", + "rar": "rarotongan", + "rm": "r\u00e9torom\u00e1n\u010dina", + "rif": "Riffian", + "rgn": "Romagnol", + "rof": "rombo", + "rom": "r\u00f3m\u010dina", + "rtm": "Rotuman", + "rug": "Roviana", + "ro": "rumun\u010dina", + "rue": "Rusyn", + "ru": "ru\u0161tina", + "rwk": "rwa", + "ii": "s\u2019\u010dchuansk\u00e1 io\u0161tina", + "ssy": "saho", + "sam": "samarit\u00e1nska aramej\u010dina", + "saq": "samburu", + "smn": "sami (inari)", + "smj": "sami (lule)", + "sms": "sami (skolt)", + "sgs": "Samogitian", + "sm": "samoj\u010dina", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santal\u010dina", + "sc": "sard\u00edn\u010dina", + "sas": "sasa\u010dtina", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkup\u010dina", + "seh": "sena", + "see": "seneca", + "srr": "serer", + "sei": "Seri", + "frr": "severn\u00e1 fr\u00edz\u0161tina", + "nso": "severn\u00e1 soth\u010dina", + "nd": "severn\u00e9 ndebele", + "se": "severn\u00e9 sami", + "scn": "sic\u00edl\u010dina", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindh\u010dina", + "si": "sinhal\u010dina", + "den": "slovan\u010dina", + "sk": "sloven\u010dina", + "sl": "slovin\u010dina", + "xog": "soga", + "sog": "sogdij\u010dina", + "so": "som\u00e1l\u010dina", + "snk": "soninke", + "azb": "South Azerbaijani", + "srn": "sranan", + "sr": "srb\u010dina", + "sh": "srbochorv\u00e1t\u010dina", + "ang": "star\u00e1 angli\u010dtina", + "fro": "star\u00e1 franc\u00faz\u0161tina", + "goh": "star\u00e1 horn\u00e1 nem\u010dina", + "sga": "star\u00e1 \u00edr\u010dina", + "non": "star\u00e1 n\u00f3r\u010dina", + "pro": "star\u00e1 okcit\u00e1n\u010dina", + "peo": "star\u00e1 perz\u0161tina", + "egy": "staroegyptsk\u00fd", + "grc": "starogr\u00e9\u010dtina", + "enm": "stredn\u00e1 angli\u010dtina", + "frm": "stredn\u00e1 franc\u00faz\u0161tina", + "dum": "stredn\u00e1 holand\u010dina", + "gmh": "stredn\u00e1 horn\u00e1 nem\u010dina", + "mga": "stredn\u00e1 \u00edr\u010dina", + "suk": "sukuma", + "sux": "sumer\u010dina", + "su": "sund\u010dina", + "sus": "susu", + "sw": "svahil\u010dina", + "swc": "svahil\u010dina (kon\u017esk\u00e1)", + "ss": "svazij\u010dina", + "syr": "s\u00fdr\u010dina", + "zbl": "syst\u00e9m Bliss", + "ksb": "\u0161ambala", + "shn": "\u0161an\u010dina", + "sco": "\u0161k\u00f3t\u010dina", + "gd": "\u0161k\u00f3tska gael\u010dina", + "sn": "\u0161on\u010dina", + "es": "\u0161paniel\u010dina", + "es_ES": "\u0161paniel\u010dina (eur\u00f3pska)", + "es_419": "\u0161paniel\u010dina (latinskoamerick\u00e1)", + "es_MX": "\u0161paniel\u010dina (mexick\u00e1)", + "sv": "\u0161v\u00e9d\u010dina", + "tg": "tad\u017ei\u010dtina", + "tl": "tagal\u010dina", + "ty": "tahit\u010dina", + "shi": "tachelhit", + "dav": "taita", + "it": "talian\u010dina", + "tly": "Talysh", + "tmh": "tama\u0161ek", + "tzm": "tama\u0161ek (stredomarock\u00fd)", + "zgh": "tama\u0161ek (\u0161tandardn\u00fd marock\u00fd)", + "ta": "tamil\u010dina", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tat\u00e1r\u010dina", + "te": "telug\u010dina", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thaj\u010dina", + "bo": "tibet\u010dina", + "tig": "tigrej\u010dina", + "ti": "tigri\u0148a", + "tiv": "tiv", + "tli": "tlingit\u010dina", + "tpi": "tok pisin", + "tkl": "tokelau\u010dina", + "to": "tong\u010dina", + "fit": "Tornedalen Finnish", + "chk": "truk", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsimshijsk\u00e9 jazyky", + "ts": "tsonga", + "tn": "tswan\u010dina", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tr": "ture\u010dtina", + "tk": "turkm\u00e9n\u010dina", + "tru": "Turoyo", + "tvl": "tuval\u010dina", + "tyv": "tuvian\u010dina", + "tw": "twi", + "kcg": "tyap", + "udm": "udmurt\u010dina", + "uga": "ugarit\u010dina", + "ug": "ujgur\u010dina", + "uk": "ukrajin\u010dina", + "umb": "umbundu", + "ur": "urd\u010dina", + "or": "ur\u00edj\u010dina", + "uz": "uzbe\u010dtina", + "vai": "vai", + "wa": "val\u00f3n\u010dina", + "ve": "vend\u010dina", + "vec": "Venetian", + "vep": "Veps", + "mul": "viacer\u00e9 jazyky", + "vi": "vietnam\u010dina", + "vot": "vod\u010dina", + "vo": "volap\u00fck", + "vro": "V\u00f5ro", + "vun": "vunjo", + "frs": "v\u00fdchodn\u00e1 fr\u00edz\u0161tina", + "wal": "walamo", + "cy": "wale\u0161tina", + "wae": "walser\u010dina", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wo": "wolof", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "ybb": "yemba", + "fy": "z\u00e1padn\u00e1 fr\u00edz\u0161tina", + "khq": "z\u00e1padn\u00e1 songhaj\u010dina", + "zap": "zapot\u00e9\u010dtina", + "dje": "zarma", + "zza": "z\u00e1z\u00e1", + "zea": "Zeelandic", + "zen": "zenaga", + "gbz": "Zoroastrian Dari", + "zu": "zulu\u0161tina", + "zun": "zuni\u0161tina", + "jrb": "\u017eidovsk\u00e1 arab\u010dina", + "jpr": "\u017eidovsk\u00e1 perz\u0161tina", + "lad": "\u017eidovsk\u00e1 \u0161paniel\u010dina" +} diff --git a/public/intl/language/sl-SI.json b/public/intl/language/sl-SI.json new file mode 100644 index 0000000..805242a --- /dev/null +++ b/public/intl/language/sl-SI.json @@ -0,0 +1,611 @@ +{ + "ab": "abha\u0161\u010dina", + "ace": "a\u010dej\u0161\u010dina", + "ach": "a\u010dolij\u0161\u010dina", + "ada": "adangmej\u0161\u010dina", + "ady": "adigej\u0161\u010dina", + "aa": "afar\u0161\u010dina", + "afh": "afrihili", + "af": "afrikan\u0161\u010dina", + "agq": "aghem\u0161\u010dina", + "ain": "ainuj\u0161\u010dina", + "ay": "ajmar\u0161\u010dina", + "akk": "akad\u0161\u010dina", + "ak": "akan\u0161\u010dina", + "bss": "Akoose", + "akz": "Alabama", + "sq": "alban\u0161\u010dina", + "ale": "aleut\u0161\u010dina", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "am": "amhar\u0161\u010dina", + "oj": "ana\u0161inab\u0161\u010dina", + "anp": "angika\u0161\u010dina", + "en": "angle\u0161\u010dina", + "en_GB": "angle\u0161\u010dina (VB)", + "en_US": "angle\u0161\u010dina (ZDA)", + "njo": "Ao Naga", + "ar": "arab\u0161\u010dina", + "an": "aragon\u0161\u010dina", + "arc": "aramej\u0161\u010dina", + "aro": "Araona", + "arp": "arapa\u0161\u010dina", + "arw": "arava\u0161\u010dina", + "arn": "aravkan\u0161\u010dina", + "hy": "armen\u0161\u010dina", + "rup": "aromun\u0161\u010dina", + "frp": "Arpitan", + "as": "asam\u0161\u010dina", + "ast": "asturij\u0161\u010dina", + "asa": "asuj\u0161\u010dina", + "cch": "Atsam", + "awa": "avad\u0161\u010dina", + "av": "avar\u0161\u010dina", + "ae": "avestij\u0161\u010dina", + "en_AU": "avstralska angle\u0161\u010dina", + "de_AT": "avstrijska nem\u0161\u010dina", + "az": "azerbajd\u017ean\u0161\u010dina", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "balij\u0161\u010dina", + "bm": "bambar\u0161\u010dina", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "basa", + "eu": "baskov\u0161\u010dina", + "ba": "ba\u0161kir\u0161\u010dina", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "bed\u017ea", + "be": "beloru\u0161\u010dina", + "bal": "belud\u017eij\u0161\u010dina", + "bem": "bemba", + "bez": "benaj\u0161\u010dina", + "bn": "bengal\u0161\u010dina", + "bew": "Betawi", + "bik": "bikolski jezik", + "bpy": "Bishnupriya", + "bi": "bislam\u0161\u010dina", + "byn": "blin\u0161\u010dina", + "brx": "bodoj\u0161\u010dina", + "bho": "bod\u017epuri", + "bg": "bolgar\u0161\u010dina", + "bs": "bosan\u0161\u010dina", + "bra": "brad\u017ebakan\u0161\u010dina", + "brh": "Brahui", + "pt_BR": "brazilska portugal\u0161\u010dina", + "br": "breton\u0161\u010dina", + "zxx": "brez jezikoslovne vsebine", + "bug": "bugin\u0161\u010dina", + "bum": "Bulu", + "bua": "burjat\u0161\u010dina", + "my": "burman\u0161\u010dina", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "mus": "Creek", + "tn": "cvan\u0161\u010dina", + "chg": "\u010dagataj\u0161\u010dina", + "ch": "\u010damor\u0161\u010dina", + "ce": "\u010de\u010den\u0161\u010dina", + "chy": "\u010dejen\u0161\u010dina", + "chr": "\u010deroke\u0161\u010dina", + "cs": "\u010de\u0161\u010dina", + "chb": "\u010dib\u010dev\u0161\u010dina", + "cgg": "\u010digaj\u0161\u010dina", + "chn": "\u010dinu\u0161ki \u017eargon", + "chp": "\u010dipev\u0161\u010dina", + "cho": "\u010doktav\u0161\u010dina", + "cv": "\u010duva\u0161\u010dina", + "dak": "dakot\u0161\u010dina", + "da": "dan\u0161\u010dina", + "dar": "dargin\u0161\u010dina", + "dzg": "Dazaga", + "del": "delavar\u0161\u010dina", + "din": "dinka", + "dyu": "diula", + "dv": "dive\u0161\u010dina", + "doi": "dogri", + "dgr": "dogrib", + "dsb": "dolnja lu\u017ei\u0161ka srb\u0161\u010dina", + "dua": "duala", + "dz": "dzonka", + "bin": "edo", + "efi": "efi\u0161\u010dina", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elam\u0161\u010dina", + "ebu": "embuj\u0161\u010dina", + "egl": "Emilian", + "myv": "erzjan\u0161\u010dina", + "eo": "esperanto", + "et": "eston\u0161\u010dina", + "gez": "etiop\u0161\u010dina", + "ee": "even\u0161\u010dina", + "ewo": "evondov\u0161\u010dina", + "ext": "Extremaduran", + "fan": "fangij\u0161\u010dina", + "fat": "fantij\u0161\u010dina", + "phn": "feni\u010dan\u0161\u010dina", + "fo": "fer\u0161\u010dina", + "fj": "fid\u017eij\u0161\u010dina", + "hif": "Fiji Hindi", + "fil": "filipin\u0161\u010dina", + "fi": "fin\u0161\u010dina", + "nl_BE": "flam\u0161\u010dina", + "fon": "fon\u0161\u010dina", + "gur": "Frafra", + "fr": "franco\u0161\u010dina", + "fy": "frizij\u0161\u010dina", + "ff": "ful\u0161\u010dina", + "fur": "furlan\u0161\u010dina", + "gaa": "ga", + "gag": "gagav\u0161\u010dina", + "gay": "gaj\u0161\u010dina", + "gl": "galicij\u0161\u010dina", + "gan": "Gan Chinese", + "lg": "ganda", + "gba": "gbaj\u0161\u010dina", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "gon": "gondi", + "hsb": "gornja lu\u017ei\u0161ka srb\u0161\u010dina", + "gor": "gorontal\u0161\u010dina", + "got": "got\u0161\u010dina", + "grb": "greb\u0161\u010dina", + "kl": "grenland\u0161\u010dina", + "el": "gr\u0161\u010dina", + "ka": "gruzin\u0161\u010dina", + "gu": "gud\u017earat\u0161\u010dina", + "guz": "gusij\u0161\u010dina", + "gn": "gvaranij\u0161\u010dina", + "gwi": "Gwich\u02bcin", + "hai": "haid\u0161\u010dina", + "ht": "haitijska kreol\u0161\u010dina", + "hak": "Hakka Chinese", + "haw": "havaj\u0161\u010dina", + "ha": "hav\u0161\u010dina", + "he": "hebrej\u0161\u010dina", + "hz": "herero", + "hit": "hetit\u0161\u010dina", + "hil": "hiligajnon\u0161\u010dina", + "hi": "hinduj\u0161\u010dina", + "ho": "hiri motu", + "hmn": "hmon\u0161\u010dina", + "hr": "hrva\u0161\u010dina", + "hup": "hupa", + "iba": "iban\u0161\u010dina", + "pt_PT": "iberska portugal\u0161\u010dina", + "es_ES": "iberska \u0161pan\u0161\u010dina", + "ibb": "Ibibio", + "io": "ido", + "ig": "igbo\u0161\u010dina", + "ilo": "ilokan\u0161\u010dina", + "smn": "inarska samij\u0161\u010dina", + "id": "indonezij\u0161\u010dina", + "izh": "Ingrian", + "inh": "ingu\u0161\u010dina", + "ia": "interlingva", + "ie": "interlingve", + "iu": "inuktitut\u0161\u010dina", + "ik": "inupia\u0161\u010dina", + "ga": "ir\u0161\u010dina", + "is": "island\u0161\u010dina", + "it": "italijan\u0161\u010dina", + "sah": "jakut\u0161\u010dina", + "jam": "Jamaican Creole English", + "yao": "jaoj\u0161\u010dina", + "ja": "japon\u0161\u010dina", + "yap": "jap\u0161\u010dina", + "jv": "javan\u0161\u010dina", + "yi": "jidi\u0161", + "kaj": "Jju", + "dyo": "jola-fonji\u0161\u010dina", + "yo": "jorub\u0161\u010dina", + "jrb": "judovska arab\u0161\u010dina", + "jpr": "judovska perzij\u0161\u010dina", + "jut": "Jutish", + "alt": "ju\u017ena altaj\u0161\u010dina", + "nr": "ju\u017ena ndebel\u0161\u010dina", + "sma": "ju\u017ena samij\u0161\u010dina", + "kbd": "kabardin\u0161\u010dina", + "kab": "kabil\u0161\u010dina", + "kac": "ka\u010din\u0161\u010dina", + "cad": "kado\u0161\u010dina", + "kgp": "Kaingang", + "kkj": "Kako", + "kln": "kalenjin\u0161\u010dina", + "xal": "kalmi\u0161\u010dina", + "kam": "kamba\u0161\u010dina", + "kn": "kanada", + "en_CA": "kanadska angle\u0161\u010dina", + "fr_CA": "kanadska franco\u0161\u010dina", + "kbl": "Kanembu", + "yue": "kanton\u0161\u010dina", + "kr": "kanur\u0161\u010dina", + "krc": "kara\u010daj-balkar\u0161\u010dina", + "kaa": "karakalpa\u0161\u010dina", + "krl": "karel\u0161\u010dina", + "car": "karibski jezik", + "kha": "kasi", + "ks": "ka\u0161mir\u0161\u010dina", + "csb": "ka\u0161ub\u0161\u010dina", + "ca": "katalon\u0161\u010dina", + "kaw": "kavi", + "kk": "kaza\u0161\u010dina", + "qu": "ke\u010duan\u0161\u010dina", + "ken": "Kenyang", + "naq": "khoekhoe", + "khw": "Khowar", + "ki": "kikuj\u0161\u010dina", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "ky": "kirgi\u0161\u010dina", + "gil": "kiribat\u0161\u010dina", + "kiu": "Kirmanjki", + "zh": "kitaj\u0161\u010dina", + "nwc": "klasi\u010dna nevar\u0161\u010dina", + "syc": "klasi\u010dna sir\u0161\u010dina", + "tlh": "klingon\u0161\u010dina", + "km": "kmer\u0161\u010dina", + "nb": "knji\u017ena norve\u0161\u010dina", + "bkm": "Kom", + "koi": "komi-permja\u0161\u010dina", + "kv": "komij\u0161\u010dina", + "kg": "kongov\u0161\u010dina", + "kok": "konkan\u0161\u010dina", + "cop": "kopt\u0161\u010dina", + "ko": "korej\u0161\u010dina", + "kw": "kornij\u0161\u010dina", + "kfo": "Koro", + "co": "korzi\u0161\u010dina", + "kos": "kosraj\u0161\u010dina", + "kho": "kotan\u0161\u010dina", + "avk": "Kotava", + "khq": "koyra chiini", + "ses": "koyraboro senni", + "kpe": "kpelej\u0161\u010dina", + "cr": "krij\u0161\u010dina", + "crh": "krimska tatar\u0161\u010dina", + "kri": "Krio", + "kum": "kumi\u0161\u010dina", + "ku": "kurd\u0161\u010dina", + "kru": "kuruk", + "kut": "kutenaj\u0161\u010dina", + "kj": "kvanjama", + "nmg": "kwasio", + "lad": "ladin\u0161\u010dina", + "lkt": "lakot\u0161\u010dina", + "lam": "lamba", + "lah": "landa", + "lag": "langij\u0161\u010dina", + "lo": "lao\u0161\u010dina", + "ltg": "Latgalian", + "es_419": "latinskoameri\u0161ka \u0161pan\u0161\u010dina", + "la": "latin\u0161\u010dina", + "lv": "latvij\u0161\u010dina", + "lzz": "Laz", + "lez": "lezgin\u0161\u010dina", + "lij": "Ligurian", + "li": "limbur\u0161\u010dina", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litov\u0161\u010dina", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "luy": "luhij\u0161\u010dina", + "lui": "luisen\u0161\u010dina", + "lb": "luksembur\u0161\u010dina", + "smj": "lule\u0161ka samij\u0161\u010dina", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "mde": "Maba", + "jmc": "ma\u010damej\u0161\u010dina", + "mad": "madur\u0161\u010dina", + "hu": "mad\u017ear\u0161\u010dina", + "maf": "Mafa", + "mag": "magad\u0161\u010dina", + "vmf": "Main-Franconian", + "mai": "maitili", + "mak": "makasar\u0161\u010dina", + "mk": "makedon\u0161\u010dina", + "kde": "makond\u0161\u010dina", + "mgh": "makuva-meto", + "mg": "malaga\u0161\u010dina", + "ml": "malajalam\u0161\u010dina", + "ms": "malaj\u0161\u010dina", + "tog": "malavijska tong\u0161\u010dina", + "mt": "malte\u0161\u010dina", + "mdr": "mandar\u0161\u010dina", + "man": "mandingo", + "mnc": "mand\u017eur\u0161\u010dina", + "mni": "manipur\u0161\u010dina", + "gv": "man\u0161\u010dina", + "mi": "maor\u0161\u010dina", + "mr": "marat\u0161\u010dina", + "chm": "marij\u0161\u010dina", + "mh": "marshallov\u0161\u010dina", + "mwr": "marvar\u0161\u010dina", + "mas": "masaj\u0161\u010dina", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta", + "es_MX": "Mexican Spanish", + "mic": "mikma\u0161\u010dina", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirande\u0161\u010dina", + "moh": "moho\u0161\u010dina", + "mdf": "mok\u0161av\u0161\u010dina", + "ro_MD": "moldav\u0161\u010dina", + "lol": "mongo", + "mn": "mongol\u0161\u010dina", + "mfe": "morisjen\u0161\u010dina", + "ary": "Moroccan Arabic", + "mos": "mosij\u0161\u010dina", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "nqo": "n\u2019ko", + "nap": "napolitan\u0161\u010dina", + "na": "nauruj\u0161\u010dina", + "nv": "navaj\u0161\u010dina", + "ng": "Ndonga", + "de": "nem\u0161\u010dina", + "gsw": "nem\u0161\u010dina (\u0160vica)", + "ne": "nepal\u0161\u010dina", + "new": "nevar\u0161\u010dina", + "und": "neznan ali neveljaven jezik", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nia\u0161\u010dina", + "niu": "niuej\u0161\u010dina", + "nds": "nizka nem\u0161\u010dina", + "nl": "nizozem\u0161\u010dina", + "nym": "njamve\u0161\u010dina", + "nyn": "njankole", + "ny": "njan\u0161\u010dina", + "nyo": "njoro", + "nog": "nogaj\u0161\u010dina", + "no": "norve\u0161\u010dina", + "nov": "Novial", + "nn": "novonorve\u0161\u010dina", + "nus": "nuer\u0161\u010dina", + "nzi": "nzima", + "oc": "okcitan\u0161\u010dina", + "or": "orij\u0161\u010dina", + "om": "oromo", + "osa": "osage", + "os": "osetin\u0161\u010dina", + "ota": "otomanska tur\u0161\u010dina", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "palavan\u0161\u010dina", + "pi": "palij\u0161\u010dina", + "pam": "pampan\u0161\u010dina", + "pa": "pand\u017eab\u0161\u010dina", + "pag": "pangasinan\u0161\u010dina", + "pap": "papiamentu", + "ps": "pa\u0161tun\u0161\u010dina", + "pdc": "Pennsylvania German", + "fa": "perzij\u0161\u010dina", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "zh_Hans": "poenostavljena kitaj\u0161\u010dina", + "pl": "polj\u0161\u010dina", + "pon": "ponpej\u0161\u010dina", + "pnt": "Pontic", + "pt": "portugal\u0161\u010dina", + "prg": "Prussian", + "quc": "quiche", + "raj": "rad\u017eastan\u0161\u010dina", + "rap": "rapanuj\u0161\u010dina", + "rar": "rarotong\u0161\u010dina", + "rm": "retoroman\u0161\u010dina", + "rif": "Riffian", + "rgn": "Romagnol", + "rof": "rombo", + "rom": "rom\u0161\u010dina", + "ro": "romun\u0161\u010dina", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rw": "ruand\u0161\u010dina", + "rn": "rund\u0161\u010dina", + "rue": "Rusyn", + "ru": "ru\u0161\u010dina", + "rwk": "rwa", + "ssy": "Saho", + "sam": "samaritanska aramej\u0161\u010dina", + "saq": "sambur\u0161\u010dina", + "sms": "samij\u0161\u010dina Skolt", + "sm": "samoan\u0161\u010dina", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "sango", + "sbp": "sanguj\u0161\u010dina", + "sa": "sanskrt", + "sat": "santal\u0161\u010dina", + "sc": "sardin\u0161\u010dina", + "sas": "sasa\u0161\u010dina", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "ceb": "sebuan\u0161\u010dina", + "ii": "se\u010duanska ji\u0161\u010dina", + "sly": "Selayar", + "sel": "selkup\u0161\u010dina", + "seh": "sena", + "see": "Seneca", + "srr": "serer\u0161\u010dina", + "sei": "Seri", + "st": "sesoto", + "frr": "severna frizij\u0161\u010dina", + "nd": "severna ndebel\u0161\u010dina", + "se": "severna samij\u0161\u010dina", + "nso": "severna sot\u0161\u010dina", + "ksb": "shambala", + "scn": "sicilijan\u0161\u010dina", + "sid": "sidam\u0161\u010dina", + "bla": "siksika", + "szl": "Silesian", + "sd": "sind\u0161\u010dina", + "si": "singal\u0161\u010dina", + "syr": "sir\u0161\u010dina", + "den": "slavej\u0161\u010dina", + "sk": "slova\u0161\u010dina", + "sl": "sloven\u0161\u010dina", + "ar_001": "sodobna standardna arab\u0161\u010dina", + "sog": "Sogdien", + "xog": "sog\u0161\u010dina", + "so": "somal\u0161\u010dina", + "snk": "Soninke", + "ckb": "soranska kurd\u0161\u010dina", + "azb": "South Azerbaijani", + "sh": "srbohrva\u0161\u010dina", + "sr": "srb\u0161\u010dina", + "enm": "srednja angle\u0161\u010dina", + "frm": "srednja franco\u0161\u010dina", + "mga": "srednja ir\u0161\u010dina", + "dum": "srednja nizozem\u0161\u010dina", + "gmh": "srednja visoka nem\u0161\u010dina", + "zgh": "standardni maro\u0161ki tamazig", + "ang": "stara angle\u0161\u010dina", + "cu": "stara cerkvena slovan\u0161\u010dina", + "egy": "stara egip\u010dan\u0161\u010dina", + "fro": "stara franco\u0161\u010dina", + "grc": "stara gr\u0161\u010dina", + "sga": "stara ir\u0161\u010dina", + "non": "stara nordij\u0161\u010dina", + "peo": "stara perzij\u0161\u010dina", + "pro": "stara provansal\u0161\u010dina", + "goh": "stara visoka nem\u0161\u010dina", + "suk": "sukuma", + "sux": "sumer\u0161\u010dina", + "su": "sundan\u0161\u010dina", + "srn": "surinamska kreol\u0161\u010dina", + "sus": "susuj\u0161\u010dina", + "sw": "svahili", + "swc": "svahili (Kongo)", + "ss": "svazij\u0161\u010dina", + "shn": "\u0161an\u0161\u010dina", + "swb": "\u0161ikomor", + "gd": "\u0161kotska gel\u0161\u010dina", + "sco": "\u0161kot\u0161\u010dina", + "sn": "\u0161on\u0161\u010dina", + "es": "\u0161pan\u0161\u010dina", + "sv": "\u0161ved\u0161\u010dina", + "fr_CH": "\u0161vicarska franco\u0161\u010dina", + "tg": "tad\u017ei\u0161\u010dina", + "tl": "tagalog\u0161\u010dina", + "shi": "tahelitska berber\u0161\u010dina", + "ty": "tahit\u0161\u010dina", + "dav": "taitaj\u0161\u010dina", + "th": "taj\u0161\u010dina", + "tly": "Talysh", + "tmh": "tamaja\u0161\u010dina", + "tzm": "tama\u0161ek (srednji atlas)", + "ta": "tamil\u0161\u010dina", + "trv": "Taroko", + "twq": "tasawaq", + "tt": "tatar\u0161\u010dina", + "te": "telugij\u0161\u010dina", + "tem": "temnej\u0161\u010dina", + "ter": "Tereno", + "teo": "teso", + "tet": "tetum\u0161\u010dina", + "bo": "tibetan\u0161\u010dina", + "ti": "tigraj\u0161\u010dina", + "tig": "tigrej\u0161\u010dina", + "tiv": "tiv\u0161\u010dina", + "kcg": "tjapska nigerij\u0161\u010dina", + "tli": "tlingit\u0161\u010dina", + "tpi": "tok pisin", + "tkl": "tokelav\u0161\u010dina", + "to": "tong\u0161\u010dina", + "fit": "Tornedalen Finnish", + "zh_Hant": "tradicionalna kitaj\u0161\u010dina", + "chk": "truke\u0161\u010dina", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsim\u0161\u010dina", + "ts": "tsonga", + "tcy": "Tulu", + "tum": "tumbuk\u0161\u010dina", + "aeb": "Tunisian Arabic", + "tk": "turkmen\u0161\u010dina", + "tru": "Turoyo", + "tr": "tur\u0161\u010dina", + "tvl": "tuvaluj\u0161\u010dina", + "tyv": "tuvin\u0161\u010dina", + "tw": "tvi", + "udm": "udmurt\u0161\u010dina", + "uga": "ugaritski jezik", + "ug": "ujgur\u0161\u010dina", + "uk": "ukrajin\u0161\u010dina", + "umb": "umbund\u0161\u010dina", + "ur": "urduj\u0161\u010dina", + "uz": "uzbe\u0161\u010dina", + "vai": "vaj\u0161\u010dina", + "wal": "valam\u0161\u010dina", + "cy": "vali\u017ean\u0161\u010dina", + "wa": "valon\u0161\u010dina", + "war": "varaj\u0161\u010dina", + "was": "va\u0161aj\u0161\u010dina", + "mul": "ve\u010d jezikov", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vietnam\u0161\u010dina", + "de_CH": "visoka nem\u0161\u010dina (\u0160vica)", + "vo": "volapuk", + "wo": "volof\u0161\u010dina", + "vro": "V\u00f5ro", + "vot": "votja\u0161\u010dina", + "vun": "vunjo", + "frs": "vzhodna frizij\u0161\u010dina", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "xh": "xhosa", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zap": "zapote\u0161\u010dina", + "dje": "zarmaj\u0161\u010dina", + "zza": "zazaj\u0161\u010dina", + "zea": "Zeelandic", + "kea": "zelenortskooto\u0161ka kreol\u0161\u010dina", + "zen": "zena\u0161\u010dina", + "za": "Zhuang", + "zbl": "znakovni jezik Bliss", + "gbz": "Zoroastrian Dari", + "zu": "zuluj\u0161\u010dina", + "zun": "zunij\u0161\u010dina" +} diff --git a/public/intl/language/sv-SE.json b/public/intl/language/sv-SE.json new file mode 100644 index 0000000..6f8aacf --- /dev/null +++ b/public/intl/language/sv-SE.json @@ -0,0 +1,611 @@ +{ + "ab": "abchaziska", + "ace": "acehnesiska", + "ach": "acholi", + "ada": "adangme", + "ady": "adygeiska", + "aa": "afar", + "ps": "afghanska", + "afh": "afrihili", + "af": "afrikaans", + "agq": "aghem", + "ain": "ainu", + "ak": "akan", + "akk": "akkadiska", + "akz": "Alabama", + "sq": "albanska", + "ale": "aleutiska", + "arq": "algerisk arabiska", + "en_US": "amerikansk engelska", + "ase": "amerikanskt teckenspr\u00e5k", + "am": "amhariska", + "anp": "angika", + "njo": "Ao Naga", + "ar": "arabiska", + "an": "aragonesiska", + "arc": "arameiska", + "aro": "araoniska", + "arp": "arapaho", + "arn": "araukanska", + "arw": "arawakiska", + "hy": "armeniska", + "rup": "arum\u00e4nska", + "as": "assamesiska", + "ast": "asturiska", + "asa": "asu", + "cch": "atsam", + "en_AU": "australisk engelska", + "av": "avariska", + "ae": "avestiska", + "awa": "awadhi", + "ay": "aymara", + "az": "azerbajdzjanska", + "ksf": "bafia", + "bfd": "bafut", + "bfq": "bagada", + "byv": "bagangte", + "bqi": "bakhtiari", + "bss": "bakossi", + "ban": "balinesiska", + "bal": "baluchiska", + "bm": "bambara", + "bkm": "bamekon", + "ybb": "bamilek\u00e9-jemba", + "nnh": "bamilek\u00e9-ngiemboon", + "bax": "bamunska", + "bjn": "banjariska", + "bas": "basa", + "ba": "basjkiriska", + "eu": "baskiska", + "bbc": "Batak Toba", + "bar": "bayerska", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengali", + "bew": "betawiska", + "bho": "bhojpuri", + "dz": "bhutanesiska", + "bik": "bikol", + "bin": "bini", + "bpy": "bishnupriya", + "bi": "bislama", + "byn": "blin", + "zbl": "blissymboler", + "brx": "bodo", + "bs": "bosniska", + "bum": "boulou", + "brh": "brahuiska", + "bra": "braj", + "pt_BR": "brasiliansk portugisiska", + "br": "bretonska", + "en_GB": "brittisk engelska", + "bug": "buginesiska", + "bg": "bulgariska", + "bua": "burj\u00e4tiska", + "my": "burmesiska", + "cad": "caddo", + "frc": "cajun-franska", + "cps": "Capiznon", + "cay": "cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "tzm": "centralmarockansk tamazight", + "shu": "Chad-arabiska", + "chg": "chagatai", + "ch": "chamorro", + "chr": "cherokesiska", + "chy": "cheyenne", + "chb": "chibcha", + "cgg": "chiga", + "qug": "Chimborazo-h\u00f6glandskichwa", + "chn": "chinook", + "chp": "chipewyan", + "cho": "choctaw", + "chk": "chuukesiska", + "cr": "cree", + "dak": "dakota", + "da": "danska", + "dar": "darginska", + "dzg": "dazaga", + "del": "delaware", + "din": "dinka", + "dv": "divehi", + "doi": "dogri", + "dgr": "dogrib", + "dua": "duala", + "dyu": "dyula", + "efi": "efik", + "arz": "egyptisk arabiska", + "eka": "ekajuk", + "elx": "elamitiska", + "ebu": "embu", + "egl": "emiliska", + "smn": "enaresamiska", + "en": "engelska", + "myv": "erjya", + "eo": "esperanto", + "et": "estniska", + "gez": "etiopiska", + "pt_PT": "europeisk portugisiska", + "es_ES": "europeisk spanska", + "ee": "ewe", + "ewo": "ewondo", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "phn": "feniciska", + "hif": "Fiji-hindi", + "fj": "fijianska", + "fil": "filippinska", + "fi": "finska", + "nl_BE": "flaml\u00e4ndska", + "mul": "flera spr\u00e5k", + "fon": "fonspr\u00e5ket", + "egy": "fornegyptiska", + "ang": "fornengelska", + "fro": "fornfranska", + "grc": "forngrekiska", + "goh": "fornh\u00f6gtyska", + "sga": "forniriska", + "non": "fornnordiska", + "peo": "fornpersiska", + "prg": "fornpreussiska", + "pro": "fornprovensalska", + "gur": "Frafra", + "frp": "frankoprovensalska", + "fr": "franska", + "fur": "friulianska", + "ff": "fulani", + "fo": "f\u00e4r\u00f6iska", + "zh_Hans": "f\u00f6renklad kinesiska", + "gaa": "g\u00e3", + "gag": "gagauziska", + "gl": "galiciska", + "gan": "gan", + "ses": "Gao-songhay", + "gay": "gayo", + "gba": "gbaya", + "aln": "gegiska", + "ka": "georgiska", + "bbj": "ghomala", + "glk": "gilaki", + "gil": "gilbertiska", + "gom": "Goa-konkani", + "gon": "gondi", + "gor": "gorontalo", + "got": "gotiska", + "grb": "grebo", + "el": "grekiska", + "kl": "gr\u00f6nl\u00e4ndska", + "gn": "guaran\u00ed", + "gu": "gujarati", + "guz": "gusii", + "gwi": "gwichin", + "hai": "haida", + "ht": "haitiska", + "hak": "hakka", + "ha": "hausa", + "haw": "hawaiiska", + "he": "hebreiska", + "hz": "herero", + "hit": "hettitiska", + "hil": "hiligaynon", + "hi": "hindi", + "ho": "hirimotu", + "hmn": "hmongspr\u00e5k", + "hup": "hupa", + "hsb": "h\u00f6gsorbiska", + "iba": "ibanska", + "ibb": "ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "iloko", + "id": "indonesiska", + "zxx": "inget spr\u00e5kligt inneh\u00e5ll", + "izh": "ingriska", + "inh": "ingusjiska", + "ia": "interlingua", + "ie": "interlingue", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "iriska", + "is": "isl\u00e4ndska", + "it": "italienska", + "sah": "jakutiska", + "jam": "jamaikansk engelsk kreol", + "ja": "japanska", + "yap": "japetiska", + "jv": "javanesiska", + "yi": "jiddisch", + "kaj": "jju", + "dyo": "jola-fonyi", + "jrb": "judisk arabiska", + "jpr": "judisk persiska", + "jut": "jyll\u00e4ndska", + "kbd": "kabardinska", + "kab": "kabyliska", + "kac": "kachin", + "kgp": "Kaingang", + "kln": "kalenjin", + "xal": "kalmuckiska", + "kam": "kamba", + "km": "kambodjanska", + "en_CA": "kanadensisk engelska", + "fr_CA": "kanadensisk franska", + "kbl": "kanembu", + "kn": "kannada", + "yue": "kantonesiska", + "kr": "kanuri", + "kea": "kapverdiska", + "krc": "karachay-balkar", + "kaa": "karakalpakiska", + "krl": "karelska", + "car": "karibiska", + "ks": "kashmiriska", + "csb": "kasjubiska", + "ca": "katalanska", + "kaw": "kawi", + "kk": "kazakiska", + "ken": "Kenyang", + "kha": "khasi", + "kho": "khotanesiska", + "khw": "khowar", + "kg": "kikongo", + "ki": "kikuyu", + "jmc": "kimashami", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "zh": "kinesiska", + "rw": "kinjarwanda", + "ky": "kirgisiska", + "kiu": "Kirmanjki", + "ksb": "kisambaa", + "yao": "kiyao", + "nwc": "klassisk newariska", + "syc": "klassisk syriska", + "tlh": "klingonska", + "kv": "kome", + "koi": "komi-permjakiska", + "swc": "Kongo-swahili", + "kok": "konkani", + "cop": "koptiska", + "ko": "koreanska", + "kw": "korniska", + "kfo": "koro", + "co": "korsikanska", + "kos": "kosreanska", + "avk": "kotava", + "kpe": "kpelle", + "crh": "krimtatariska", + "kri": "Krio", + "hr": "kroatiska", + "kj": "kuanyama", + "kum": "kumykiska", + "ku": "kurdiska", + "kru": "kurukh", + "kut": "kutenaj", + "nmg": "kwasio", + "cu": "kyrkslaviska", + "quc": "k\u02bciche\u02bc", + "ksh": "k\u00f6lniska", + "lad": "ladino", + "lah": "lahnda", + "lkt": "lakota", + "lam": "lamba", + "lag": "langi", + "lo": "laotiska", + "la": "latin", + "es_419": "latinamerikansk spanska", + "lzz": "Laz", + "ltg": "lettgalliska", + "lv": "lettiska", + "lez": "lezghien", + "lij": "liguriska", + "li": "limburgiska", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lt": "litauiska", + "lzh": "Literary Chinese", + "liv": "livoniska", + "jbo": "lojban", + "lmo": "lombardiska", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lg": "luganda", + "luy": "luhya", + "lui": "luise\u00f1o", + "smj": "lulesamiska", + "lun": "lunda", + "luo": "luo", + "lus": "lushai", + "xog": "lusoga", + "lb": "luxemburgiska", + "sli": "l\u00e5gsilesiska", + "dsb": "l\u00e5gsorbiska", + "nds": "l\u00e5gtyska", + "mde": "maba", + "mad": "maduresiska", + "maf": "mafa", + "mag": "magahi", + "vmf": "Main-frankiska", + "mai": "maithili", + "mak": "makasar", + "mk": "makedonska", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "mg": "malagassiska", + "ms": "malajiska", + "ml": "malayalam", + "mt": "maltesiska", + "mnc": "manchuriska", + "mdr": "mandar", + "man": "mande", + "mni": "manipuri", + "gv": "manx", + "mi": "maori", + "mr": "marathi", + "chm": "mariska", + "ary": "marockansk arabiska", + "zgh": "marockansk standard-tamazight", + "mh": "marshalliska", + "mwr": "marwari", + "mas": "massajiska", + "mfe": "mauritansk kreol", + "mzn": "mazanderani", + "enm": "medelengelska", + "frm": "medelfranska", + "gmh": "medelh\u00f6gtyska", + "mga": "medeliriska", + "dum": "medelnederl\u00e4ndska", + "pal": "medelpersiska", + "men": "mende", + "pdt": "mennonitisk l\u00e5gtyska", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "es_MX": "mexikansk spanska", + "fit": "me\u00e4nkieli", + "mic": "mi\u2019kmaq", + "nan": "min nan", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirandesiska", + "kkj": "mkako", + "ar_001": "modern standardarabiska", + "moh": "mohawk", + "mdf": "moksja", + "ro_MD": "moldaviska", + "lol": "mongo", + "mn": "mongoliska", + "mos": "mossi", + "mua": "mundang", + "mus": "muskogee", + "ttt": "Muslim Tat", + "mye": "myene", + "nqo": "n-k\u00e5", + "naq": "nama", + "nap": "napolitanska", + "na": "nauru", + "nv": "navaho", + "ng": "ndonga", + "nl": "nederl\u00e4ndska", + "ne": "nepalesiska", + "new": "newariska", + "sba": "ngambay", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "niu": "niueanska", + "nog": "nogai", + "frr": "nordfrisiska", + "nd": "nordndebele", + "se": "nordsamiska", + "nso": "nordsotho", + "no": "norska", + "nb": "norskt bokm\u00e5l", + "nov": "Novial", + "nus": "nuer", + "nym": "nyamwezi", + "ny": "nyanja", + "nyn": "nyankole", + "tog": "nyasatonganska", + "nn": "nynorska", + "nyo": "nyoro", + "nzi": "nzima", + "und": "obest\u00e4mt spr\u00e5k", + "oc": "occitanska", + "oj": "odjibwa", + "or": "oriya", + "om": "oromo", + "osa": "osage", + "os": "ossetiska", + "ota": "ottomanska", + "pau": "palau", + "pi": "pali", + "pam": "pampanga", + "pag": "pangasinan", + "pap": "papiamento", + "pdc": "Pennsylvaniatyska", + "fa": "persiska", + "pfl": "Pfalz-tyska", + "pms": "piemontesiska", + "pcd": "pikardiska", + "pl": "polska", + "pon": "ponape", + "pnt": "pontiska", + "pt": "portugisiska", + "pa": "punjabi", + "qu": "quechua", + "raj": "rajasthani", + "rap": "rapanui", + "rar": "rarotonganska", + "rif": "riffianska", + "rgn": "romagnol", + "rom": "romani", + "rof": "rombo", + "root": "rot", + "rtm": "rotum\u00e4nska", + "rug": "rovianska", + "ro": "rum\u00e4nska", + "rn": "rundi", + "rue": "rusyn", + "rwk": "rwa", + "ru": "ryska", + "rm": "r\u00e4toromanska", + "ssy": "saho", + "sam": "samaritanska", + "saq": "samburu", + "sm": "samoanska", + "sgs": "samogitiska", + "sad": "sandawe", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santali", + "sc": "sardiska", + "sas": "sasak", + "sdc": "sassaresisk sardiska", + "stq": "saterfrisiska", + "saz": "saurashtra", + "gsw": "schweizertyska", + "fr_CH": "schweizisk franska", + "de_CH": "schweizisk h\u00f6gtyska", + "sly": "Selayar", + "sel": "selkup", + "seh": "sena", + "see": "seneca", + "sr": "serbiska", + "sh": "serbokroatiska", + "srr": "serer", + "sei": "Seri", + "shn": "shan", + "swb": "shimaor\u00e9", + "sn": "shona", + "scn": "sicilianska", + "sid": "sidamo", + "bla": "siksika", + "szl": "silesiska", + "sd": "sindhi", + "si": "singalesiska", + "sms": "skoltsamiska", + "gd": "skotsk g\u00e4liska", + "sco": "skotska", + "den": "slavej", + "sk": "slovakiska", + "sl": "slovenska", + "sog": "sogdiska", + "so": "somaliska", + "snk": "soninke", + "ckb": "soranisk kurdiska", + "es": "spanska", + "srn": "sranan tongo", + "suk": "sukuma", + "sux": "sumeriska", + "su": "sundanesiska", + "sus": "susu", + "sv": "svenska", + "sw": "swahili", + "ss": "swati", + "alt": "sydaltaiska", + "azb": "sydazerbadjanska", + "nr": "sydndebele", + "sma": "sydsamiska", + "st": "sydsotho", + "syr": "syriska", + "ii": "szezuan i", + "shi": "tachelhit", + "tg": "tadzjikiska", + "tl": "tagalog", + "ty": "tahitiska", + "dav": "taita", + "tly": "talysh", + "tmh": "tamashek", + "ta": "tamil", + "trv": "taroko", + "twq": "tasawaq", + "tt": "tatariska", + "te": "telugiska", + "tem": "temne", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "th": "thail\u00e4ndska", + "bo": "tibetanska", + "tig": "tigr\u00e9", + "ti": "tigrinja", + "khq": "Timbuktu-songhoy", + "tiv": "tivi", + "cs": "tjeckiska", + "ce": "tjetjenska", + "cv": "tjuvasjiska", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelauiska", + "to": "tonganska", + "zh_Hant": "traditionell kinesiska", + "tkr": "Tsakhur", + "tsd": "tsakodiska", + "tsi": "tsimshian", + "ts": "tsonga", + "tn": "tswana", + "tcy": "tulu", + "tum": "tumbuka", + "aeb": "tunisisk arabiska", + "tr": "turkiska", + "tk": "turkmeniska", + "tru": "Turoyo", + "tvl": "tuvaluanska", + "tyv": "tuviniska", + "tw": "twi", + "kcg": "tyap", + "de": "tyska", + "udm": "udmurtiska", + "uga": "ugaritiska", + "ug": "uiguriska", + "uk": "ukrainska", + "umb": "umbundu", + "hu": "ungerska", + "ur": "urdu", + "uz": "uzbekiska", + "vai": "vaj", + "wa": "vallonska", + "ve": "venda", + "vec": "venetianska", + "vep": "veps", + "vi": "vietnamesiska", + "be": "vitryska", + "vo": "volap\u00fck", + "vro": "v\u00f5ru", + "vot": "votiska", + "vun": "vunjo", + "vls": "v\u00e4stflaml\u00e4ndska", + "fy": "v\u00e4stfrisiska", + "mrj": "v\u00e4stmariska", + "wal": "walamo", + "cy": "walesiska", + "wae": "walsertyska", + "war": "waray", + "wbp": "Warlpiri", + "was": "washo", + "guc": "Wayuu", + "wo": "wolof", + "wuu": "wu", + "xh": "xhosa", + "hsn": "xiang", + "yav": "yangben", + "yo": "yoruba", + "zap": "zapotek", + "dje": "zarma", + "zza": "zazaiska", + "zea": "zeel\u00e4ndska", + "zen": "zenaga", + "za": "zhuang", + "gbz": "zoroastrisk dari", + "zu": "zulu", + "zun": "zuni", + "de_AT": "\u00f6sterrikisk tyska", + "frs": "\u00f6stfrisiska" +} diff --git a/public/intl/language/ta-IN.json b/public/intl/language/ta-IN.json new file mode 100644 index 0000000..9bb6c2a --- /dev/null +++ b/public/intl/language/ta-IN.json @@ -0,0 +1,611 @@ +{ + "afh": "\u0b85\u0b83\u0baa\u0bcd\u0bb0\u0bbf\u0bb9\u0bbf\u0bb2\u0bbf", + "aa": "\u0b85\u0b83\u0baa\u0bbe\u0bb0\u0bcd", + "akk": "\u0b85\u0b95\u0bcd\u0b95\u0bc7\u0ba4\u0bbf\u0baf\u0ba9\u0bcd", + "ak": "\u0b85\u0b95\u0bbe\u0ba9\u0bcd", + "agq": "\u0b85\u0b95\u0bc6\u0bae\u0bcd", + "ach": "\u0b85\u0b95\u0bcb\u0bb2\u0bbf", + "anp": "\u0b85\u0b99\u0bcd\u0b95\u0bbf\u0b95\u0bbe", + "asa": "\u0b85\u0b9a\u0bc1", + "ady": "\u0b85\u0ba4\u0b95\u0bc7", + "ada": "\u0b85\u0ba4\u0bbe\u0b99\u0bcd\u0bae\u0bc7", + "ab": "\u0b85\u0baa\u0bcd\u0b95\u0bbe\u0b9c\u0bbf\u0baf\u0bbe\u0ba9\u0bcd", + "hsb": "\u0b85\u0baa\u0bcd\u0baa\u0bb0\u0bcd \u0b9a\u0bcb\u0bb0\u0bcd\u0baa\u0bbf\u0baf\u0bbe\u0ba9\u0bcd", + "umb": "\u0b85\u0bae\u0bcd\u0baa\u0bca\u0ba3\u0bcd\u0b9f\u0bc1", + "am": "\u0b85\u0bae\u0bcd\u0bb9\u0bbe\u0bb0\u0bbf\u0b95\u0bcd", + "en_US": "\u0b85\u0bae\u0bc6\u0bb0\u0bbf\u0b95\u0bcd\u0b95 \u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "ay": "\u0b85\u0baf\u0bcd\u0bae\u0bb0\u0bbe", + "arp": "\u0b85\u0bb0\u0baa\u0bb9\u0bcb", + "ar": "\u0b85\u0bb0\u0baa\u0bbf\u0b95\u0bcd", + "arc": "\u0b85\u0bb0\u0bbe\u0bae\u0bc8\u0b95\u0bcd", + "arw": "\u0b85\u0bb0\u0bbe\u0bb5\u0bbe\u0b95\u0bcd", + "rup": "\u0b85\u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "sq": "\u0b85\u0bb2\u0bcd\u0baa\u0bc7\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "ale": "\u0b85\u0bb2\u0bc2\u0b9f\u0bcd", + "awa": "\u0b85\u0bb5\u0ba4\u0bbf", + "ae": "\u0b85\u0bb5\u0bc6\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd", + "av": "\u0b85\u0bb5\u0bc7\u0bb0\u0bbf\u0b95\u0bcd", + "und": "\u0b85\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bca\u0bb4\u0bbf", + "ast": "\u0b85\u0bb8\u0bcd\u0ba4\u0bc1\u0bb0\u0bbf\u0baf\u0ba9\u0bcd", + "as": "\u0b85\u0bb8\u0bcd\u0bb8\u0bbe\u0bae\u0bbf", + "az": "\u0b85\u0bb8\u0bb0\u0bcd\u0baa\u0bc8\u0b9c\u0bbe\u0ba9\u0bbf", + "af": "\u0b86\u0b83\u0baa\u0bcd\u0bb0\u0bbf\u0b95\u0bbe\u0ba9\u0bcd\u0bb8\u0bcd", + "en": "\u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "ace": "\u0b86\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc0\u0bb8\u0bcd", + "cch": "\u0b86\u0b9f\u0bcd\u0b9a\u0bae\u0bcd", + "an": "\u0b86\u0bb0\u0bcd\u0b95\u0bcb\u0ba9\u0bc0\u0bb8\u0bcd", + "hy": "\u0b86\u0bb0\u0bcd\u0bae\u0bc7\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "de_AT": "\u0b86\u0bb8\u0bcd\u0ba4\u0bbf\u0bb0\u0bbf\u0baf \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "en_AU": "\u0b86\u0bb8\u0bcd\u0ba4\u0bbf\u0bb0\u0bc7\u0bb2\u0bbf\u0baf\u0ba9\u0bcd \u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "ig": "\u0b87\u0b95\u0bcd\u0baa\u0bcb", + "inh": "\u0b87\u0b99\u0bcd\u0b95\u0bc1\u0bb7\u0bcd", + "io": "\u0b87\u0b9f\u0bcb", + "ia": "\u0b87\u0ba3\u0bcd\u0b9f\u0bb0\u0bcd\u0bb2\u0bbf\u0b99\u0bcd\u0bb5\u0bbe", + "it": "\u0b87\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bbf\u0baf\u0ba9\u0bcd", + "yi": "\u0b87\u0ba4\u0bcd\u0ba4\u0bbf\u0bb7\u0bcd", + "hi": "\u0b87\u0ba8\u0bcd\u0ba4\u0bbf", + "id": "\u0b87\u0ba8\u0bcd\u0ba4\u0bcb\u0ba9\u0bc7\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "iba": "\u0b87\u0baa\u0bbe\u0ba9\u0bcd", + "ilo": "\u0b87\u0bb2\u0bcb\u0b95\u0bcb", + "ie": "\u0b87\u0ba9\u0bcd\u0b9f\u0bb0\u0bcd\u0bb2\u0bbf\u0b99\u0bcd", + "smn": "\u0b87\u0ba9\u0bbe\u0bb0\u0bbf \u0b9a\u0bae\u0bbf", + "iu": "\u0b87\u0ba9\u0bc1\u0b95\u0bbf\u0b9f\u0bc2\u0b9f\u0bcd", + "ik": "\u0b87\u0ba9\u0bc1\u0baa\u0bbf\u0baf\u0bbe\u0b95\u0bcd", + "eka": "\u0b88\u0b95\u0bbe\u0b9c\u0bc1\u0b95\u0bcd", + "ee": "\u0b88\u0bb5\u0bcd", + "uk": "\u0b89\u0b95\u0bcd\u0bb0\u0bc8\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "uga": "\u0b89\u0b95\u0bbe\u0bb0\u0bbf\u0b9f\u0bcd\u0b95\u0bcd", + "udm": "\u0b89\u0b9f\u0bcd\u0bae\u0bc1\u0bb0\u0bcd\u0b9f\u0bcd", + "ug": "\u0b89\u0baf\u0bcd\u0b95\u0bc1\u0bb0\u0bcd", + "ur": "\u0b89\u0bb0\u0bc1\u0ba4\u0bc1", + "uz": "\u0b89\u0bb8\u0bcd\u0baa\u0bc6\u0b95\u0bcd", + "efi": "\u0b8e\u0b83\u0baa\u0bbf\u0b95\u0bcd", + "ebu": "\u0b8e\u0bae\u0bcd\u0baa\u0bc1", + "elx": "\u0b8e\u0bb2\u0bae\u0bc8\u0b9f\u0bcd", + "ewo": "\u0b8e\u0bb5\u0bcb\u0ba9\u0bcd\u0b9f\u0bcb", + "zh_Hans": "\u0b8e\u0bb3\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0b9a\u0bc0\u0ba9\u0bae\u0bcd", + "nqo": "\u0b8e\u0ba9\u0bcd\u2018\u0b95\u0bcb", + "et": "\u0b8e\u0bb8\u0bcd\u0b9f\u0bcb\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "eo": "\u0b8e\u0bb8\u0bcd\u0baa\u0bb0\u0bc7\u0ba9\u0bcd\u0b9f\u0bcb", + "myv": "\u0b8f\u0bb0\u0bcd\u0b9c\u0bbf\u0baf\u0bbe", + "ga": "\u0b90\u0bb0\u0bbf\u0bb7\u0bcd", + "pt_PT": "\u0b90\u0bb0\u0bcb\u0baa\u0bcd\u0baa\u0bbf\u0baf \u0baa\u0bcb\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bc1\u0b95\u0bc0\u0bb8\u0bcd", + "es_ES": "\u0b90\u0bb0\u0bcb\u0baa\u0bcd\u0baa\u0bbf\u0baf \u0bb8\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0bb7\u0bcd", + "ain": "\u0b90\u0ba9\u0bc1", + "is": "\u0b90\u0bb8\u0bcd\u0bb2\u0bc6\u0ba9\u0bcd\u0b9f\u0bbf\u0b95\u0bcd", + "oc": "\u0b92\u0b95\u0bcd\u0b95\u0bbf\u0b9f\u0ba9\u0bcd", + "os": "\u0b92\u0b9a\u0bc6\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd", + "ota": "\u0b92\u0b9f\u0bcd\u0b9f\u0bcb\u0bae\u0ba9\u0bcd \u0ba4\u0bc1\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bbf", + "or": "\u0b92\u0bb0\u0bbf\u0baf\u0bbe", + "om": "\u0b92\u0bb0\u0bcb\u0bae\u0bcb", + "vo": "\u0b92\u0bb2\u0bbe\u0baa\u0bc2\u0b95\u0bcd", + "wo": "\u0b92\u0bb2\u0bc2\u0b83\u0baa\u0bcd", + "wa": "\u0b92\u0bb5\u0bbe\u0bb2\u0bc2\u0ba9\u0bcd", + "osa": "\u0b93\u0b9a\u0bc7\u0b9c\u0bcd", + "oj": "\u0b93\u0b9c\u0bbf\u0baa\u0bb5\u0bbe", + "fur": "\u0b83\u0baa\u0bcd\u0bb0\u0bbf\u0baf\u0bc2\u0bb2\u0bbf\u0baf\u0ba9\u0bcd", + "fan": "\u0b83\u0baa\u0b99\u0bcd\u0b95\u0bcd", + "fo": "\u0b83\u0baa\u0bb0\u0bcb\u0baf\u0bbf\u0bb8\u0bcd", + "fon": "\u0b83\u0baa\u0bbe\u0ba9\u0bcd", + "fat": "\u0b83\u0baa\u0bbe\u0ba9\u0bcd\u0b9f\u0bbf", + "fil": "\u0b83\u0baa\u0bbf\u0bb2\u0bbf\u0baa\u0bbf\u0ba9\u0bcb", + "fi": "\u0b83\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0bbf\u0bb7\u0bcd", + "fj": "\u0b83\u0baa\u0bbf\u0b9c\u0bbf\u0baf\u0ba9\u0bcd", + "ff": "\u0b83\u0baa\u0bc1\u0bb2\u0bbe", + "phn": "\u0b83\u0baa\u0bca\u0ba9\u0bbf\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "pon": "\u0b83\u0baa\u0bcb\u0ba9\u0bcd\u0baa\u0bc6\u0baf\u0bc6\u0ba9\u0bcd", + "kpe": "\u0b95\u0bcd\u0baa\u0bc6\u0bb2\u0bcd\u0bb2\u0bc7", + "cr": "\u0b95\u0bcd\u0bb0\u0bc0", + "mus": "\u0b95\u0bcd\u0bb0\u0bc0\u0b95\u0bcd", + "grb": "\u0b95\u0bcd\u0bb0\u0bc7\u0baa\u0bcb", + "nmg": "\u0b95\u0bcd\u0bb5\u0bbe\u0b9a\u0bbf\u0baf\u0bcb", + "tlh": "\u0b95\u0bcd\u0bb3\u0bbf\u0b99\u0bcd\u0b95\u0bcb\u0ba9\u0bcd", + "kk": "\u0b95\u0b9a\u0bbe\u0b95\u0bcd", + "kab": "\u0b95\u0baa\u0bbe\u0baf\u0bcd\u0bb2\u0bcd", + "kbd": "\u0b95\u0baa\u0bbe\u0bb0\u0bcd\u0b9f\u0bbf\u0baf\u0ba9\u0bcd", + "kea": "\u0b95\u0baa\u0bc1\u0bb5\u0bc6\u0bb0\u0bcd\u0ba4\u0bbf\u0baf\u0bbe\u0ba9\u0bc1", + "kam": "\u0b95\u0bae\u0bcd\u0baa\u0bbe", + "gay": "\u0b95\u0baf\u0bcb", + "krc": "\u0b95\u0bb0\u0bbe\u0b9a\u0bc7-\u0baa\u0bb2\u0bcd\u0b95\u0bbe\u0bb0\u0bcd", + "car": "\u0b95\u0bb0\u0bc0\u0baa\u0bcd", + "krl": "\u0b95\u0bb0\u0bc7\u0bb2\u0bbf\u0baf\u0ba9\u0bcd", + "xal": "\u0b95\u0bb2\u0bcd\u0bae\u0bbf\u0b95\u0bcd", + "kl": "\u0b95\u0bb2\u0bbe\u0bb2\u0bbf\u0b9a\u0bc2\u0b9f\u0bcd", + "kln": "\u0b95\u0bb2\u0bbf\u0ba9\u0bcd\u0b9c\u0bbf\u0ba9\u0bcd", + "kn": "\u0b95\u0ba9\u0bcd\u0ba9\u0b9f\u0bae\u0bcd", + "fr_CA": "\u0b95\u0ba9\u0b9f\u0bbf\u0baf \u0baa\u0bbf\u0bb0\u0bc6\u0b9e\u0bcd\u0b9a\u0bc1", + "en_CA": "\u0b95\u0ba9\u0b9f\u0bbf\u0baf\u0ba9\u0bcd \u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "kr": "\u0b95\u0ba9\u0bc1\u0bb0\u0bbf", + "csb": "\u0b95\u0bb7\u0bc1\u0baa\u0bbf\u0baf\u0ba9\u0bcd", + "gaa": "\u0b95\u0bbe", + "gag": "\u0b95\u0bbe\u0b95\u0bcc\u0bb8\u0bcd", + "kg": "\u0b95\u0bbe\u0b99\u0bcd\u0b95\u0bcb", + "swc": "\u0b95\u0bbe\u0b99\u0bcd\u0b95\u0bcb \u0b9a\u0bc1\u0bb5\u0bbe\u0bb9\u0bbf\u0bb2\u0bbf", + "kac": "\u0b95\u0bbe\u0b9a\u0bbf\u0ba9\u0bcd", + "yue": "\u0b95\u0bbe\u0ba3\u0bcd\u0b9f\u0bcb\u0ba9\u0bc0\u0bb8\u0bcd", + "cop": "\u0b95\u0bbe\u0baa\u0bcd\u0b9f\u0bbf\u0b95\u0bcd", + "kw": "\u0b95\u0bbe\u0bb0\u0bcd\u0ba9\u0bbf\u0bb7\u0bcd", + "kaa": "\u0b95\u0bbe\u0bb0\u0bbe-\u0b95\u0bb2\u0bcd\u0baa\u0bbe\u0b95\u0bcd", + "gl": "\u0b95\u0bbe\u0bb2\u0bbf\u0bb8\u0bbf\u0baf\u0ba9\u0bcd", + "kaw": "\u0b95\u0bbe\u0bb5\u0bbf", + "lg": "\u0b95\u0bbe\u0ba9\u0bcd\u0b9f\u0bbe", + "ks": "\u0b95\u0bbe\u0bb7\u0bcd\u0bae\u0bbf\u0bb0\u0bbf", + "kha": "\u0b95\u0bbe\u0bb8\u0bbf", + "ki": "\u0b95\u0bbf\u0b95\u0bc1\u0baf\u0bc2", + "kmb": "\u0b95\u0bbf\u0bae\u0bcd\u0baa\u0bc1\u0ba9\u0bcd\u0ba4\u0bc1", + "ky": "\u0b95\u0bbf\u0bb0\u0bcd\u0b95\u0bbf\u0bb8\u0bcd", + "crh": "\u0b95\u0bbf\u0bb0\u0bbf\u0bae\u0bbf\u0baf\u0ba9\u0bcd \u0ba4\u0bc1\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bbf", + "el": "\u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", + "gil": "\u0b95\u0bbf\u0bb2\u0bcd\u0baa\u0bc6\u0bb0\u0bcd\u0b9f\u0bc0\u0bb8\u0bcd", + "qu": "\u0b95\u0bbf\u0bb5\u0bc7\u0b9a\u0bc1\u0bb5\u0bbe", + "frs": "\u0b95\u0bbf\u0bb4\u0b95\u0bcd\u0b95\u0bc1 \u0b83\u0baa\u0bcd\u0bb0\u0bbf\u0bb8\u0bbf\u0baf\u0bbe\u0ba9\u0bcd", + "rw": "\u0b95\u0bbf\u0ba9\u0bcd\u0baf\u0bbe\u0bb0\u0bc1\u0bb5\u0bbe\u0ba9\u0bcd\u0b9f\u0bbe", + "quc": "\u0b95\u0bc0\u0b9a\u0bc0", + "gez": "\u0b95\u0bc0\u0b9c\u0bcd", + "kut": "\u0b95\u0bc1\u0b9f\u0bc7\u0ba9\u0bc8", + "kum": "\u0b95\u0bc1\u0bae\u0bcd\u0b87\u0b95\u0bcd", + "ku": "\u0b95\u0bc1\u0bb0\u0bcd\u0ba4\u0bbf\u0bb7\u0bcd", + "gn": "\u0b95\u0bc1\u0bb0\u0bbe\u0ba9\u0bbf", + "kru": "\u0b95\u0bc1\u0bb0\u0bc1\u0b95\u0bcd", + "hr": "\u0b95\u0bc1\u0bb0\u0bcb\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "kj": "\u0b95\u0bc1\u0bb5\u0bbe\u0ba9\u0bcd\u0baf\u0bbe\u0bae\u0bbe", + "gwi": "\u0b95\u0bc1\u0bb5\u0bbf\u0b9a\u0bbf\u0ba9\u0bcd", + "gu": "\u0b95\u0bc1\u0b9c\u0bb0\u0bbe\u0ba4\u0bcd\u0ba4\u0bbf", + "guz": "\u0b95\u0bc1\u0bb8\u0bbf", + "km": "\u0b95\u0bc6\u0bae\u0bc6\u0bb0\u0bcd", + "ca": "\u0b95\u0bc7\u0b9f\u0bcd\u0b9f\u0bb2\u0bbe\u0ba9\u0bcd", + "cad": "\u0b95\u0bc7\u0b9f\u0bcb", + "kok": "\u0b95\u0bca\u0b99\u0bcd\u0b95\u0ba3\u0bbf", + "koi": "\u0b95\u0bca\u0bae\u0bbf-\u0baa\u0bc6\u0bb0\u0bcd\u0bae\u0bcd\u0baf\u0bbe\u0b95\u0bcd", + "swb": "\u0b95\u0bca\u0bae\u0bcb\u0bb0\u0bbf\u0baf\u0ba9\u0bcd", + "khq": "\u0b95\u0bca\u0baf\u0bcd\u0bb0\u0bbe \u0b9a\u0bc0\u0ba9\u0bc0", + "ses": "\u0b95\u0bca\u0baf\u0bcd\u0bb0\u0bbe\u0baa\u0bcb\u0bb0\u0bcb \u0b9a\u0bc6\u0ba9\u0bcd\u0ba9\u0bbf", + "ko": "\u0b95\u0bca\u0bb0\u0bbf\u0baf\u0ba9\u0bcd", + "kho": "\u0b95\u0bcb\u0ba4\u0bbe\u0ba9\u0bc0\u0bb8\u0bcd", + "got": "\u0b95\u0bcb\u0ba4\u0bbf\u0b95\u0bcd", + "kv": "\u0b95\u0bcb\u0bae\u0bbf", + "co": "\u0b95\u0bcb\u0bb0\u0bcd\u0b9a\u0bbf\u0b95\u0ba9\u0bcd", + "kfo": "\u0b95\u0bcb\u0bb0\u0bcb", + "gor": "\u0b95\u0bcb\u0bb0\u0bcb\u0ba9\u0bcd\u0b9f\u0bb2\u0bcb", + "gon": "\u0b95\u0bcb\u0ba9\u0bcd\u0b9f\u0bbf", + "kos": "\u0b95\u0bcb\u0bb8\u0bcd\u0bb0\u0bc8\u0ba9\u0bcd", + "sbp": "\u0b9a\u0b99\u0bcd\u0b95\u0bc1", + "saq": "\u0b9a\u0bae\u0bcd\u0baa\u0bc1\u0bb0\u0bc1", + "sa": "\u0b9a\u0bae\u0bb8\u0bcd\u0b95\u0bbf\u0bb0\u0bc1\u0ba4\u0bae\u0bcd", + "sam": "\u0b9a\u0bae\u0bbe\u0bb0\u0bbf\u0b9f\u0ba9\u0bcd \u0b85\u0bb0\u0bbe\u0bae\u0bc8\u0b95\u0bcd", + "cu": "\u0b9a\u0bb0\u0bcd\u0b9a\u0bcd \u0bb8\u0bcd\u0bb2\u0bbe\u0bb5\u0bbf\u0b95\u0bcd", + "sg": "\u0b9a\u0bbe\u0b99\u0bcd\u0b95\u0bcb", + "sas": "\u0b9a\u0bbe\u0b9a\u0bbe\u0b95\u0bcd", + "sc": "\u0b9a\u0bbe\u0b9f\u0bbf\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "ch": "\u0b9a\u0bbe\u0bae\u0bcb\u0bb0\u0bcb", + "dje": "\u0b9a\u0bbe\u0bb0\u0bcd\u0bae\u0bbe", + "sat": "\u0b9a\u0bbe\u0ba9\u0bcd\u0b9f\u0bbe\u0bb2\u0bbf", + "sad": "\u0b9a\u0bbe\u0ba9\u0bcd\u0b9f\u0bbe\u0bb5\u0bc7", + "bla": "\u0b9a\u0bbf\u0b95\u0bcd\u0b9a\u0bbf\u0b95\u0bbe", + "cgg": "\u0b9a\u0bbf\u0b95\u0bbe", + "si": "\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bae\u0bcd", + "scn": "\u0b9a\u0bbf\u0b9a\u0bbf\u0bb2\u0bbf\u0baf\u0ba9\u0bcd", + "ii": "\u0b9a\u0bbf\u0b9a\u0bc1\u0bb5\u0bbe\u0ba9\u0bcd \u0b88", + "sid": "\u0b9a\u0bbf\u0b9f\u0bbe\u0bae\u0bcb", + "sd": "\u0b9a\u0bbf\u0ba8\u0bcd\u0ba4\u0bbf", + "chb": "\u0b9a\u0bbf\u0baa\u0bcd\u0b9a\u0bbe", + "chp": "\u0b9a\u0bbf\u0baa\u0bc6\u0bb5\u0bcd\u0baf\u0bbe\u0ba9\u0bcd", + "syr": "\u0b9a\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0b95\u0bcd", + "chn": "\u0b9a\u0bbf\u0ba9\u0bc2\u0b95\u0bcd \u0b9c\u0bbe\u0bb0\u0bcd\u0b95\u0bbe\u0ba9\u0bcd", + "zh": "\u0b9a\u0bc0\u0ba9\u0bae\u0bcd", + "suk": "\u0b9a\u0bc1\u0b95\u0bc1\u0bae\u0bbe", + "sus": "\u0b9a\u0bc1\u0b9a\u0bc1", + "su": "\u0b9a\u0bc1\u0ba3\u0bcd\u0b9f\u0bbe\u0ba9\u0bc0\u0bb8\u0bcd", + "sux": "\u0b9a\u0bc1\u0bae\u0bc7\u0bb0\u0bbf\u0baf\u0ba9\u0bcd", + "cv": "\u0b9a\u0bc1\u0bb5\u0bbe\u0bb7\u0bcd", + "sw": "\u0b9a\u0bc1\u0bb5\u0bbe\u0bb9\u0bbf\u0bb2\u0bbf", + "chk": "\u0b9a\u0bc2\u0b95\u0bbf\u0b9a\u0bc7", + "cs": "\u0b9a\u0bc6\u0b95\u0bcd", + "ce": "\u0b9a\u0bc6\u0b9a\u0bc6\u0ba9\u0bcd", + "ceb": "\u0b9a\u0bc6\u0baa\u0bc1\u0bb5\u0bbe\u0ba9\u0bcb", + "chy": "\u0b9a\u0bc6\u0baf\u0bc7\u0ba9\u0bbf", + "sr": "\u0b9a\u0bc6\u0bb0\u0bcd\u0baa\u0bbf\u0baf\u0ba9\u0bcd", + "sh": "\u0b9a\u0bc6\u0bb0\u0bcd\u0baa\u0bcb-\u0b95\u0bcd\u0bb0\u0bcb\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "srr": "\u0b9a\u0bc6\u0bb0\u0bc6\u0bb0\u0bcd", + "chr": "\u0b9a\u0bc6\u0bb0\u0bca\u0b95\u0bbf", + "sel": "\u0b9a\u0bc6\u0bb2\u0bcd\u0b95\u0bc1\u0baa\u0bcd", + "seh": "\u0b9a\u0bc6\u0ba9\u0bbe", + "ckb": "\u0b9a\u0bca\u0bb0\u0bbe\u0ba9\u0bbf \u0b95\u0bc1\u0bb0\u0bcd\u0ba4\u0bbf\u0bb7\u0bcd", + "sog": "\u0b9a\u0bcb\u0b95\u0bcd\u0ba4\u0bbf\u0baf\u0ba9\u0bcd", + "cho": "\u0b9a\u0bcb\u0b95\u0bcd\u0ba4\u0bcc", + "xog": "\u0b9a\u0bcb\u0b95\u0bbe", + "so": "\u0b9a\u0bcb\u0bae\u0bbe\u0bb2\u0bbf", + "snk": "\u0b9a\u0bcb\u0ba9\u0bbf\u0ba9\u0bcd\u0b95\u0bc7", + "saz": "\u0b9a\u0bcc\u0bb0\u0bbe\u0bb7\u0bcd\u0b9f\u0bbf\u0bb0\u0bae\u0bcd", + "dyu": "\u0b9f\u0bcd\u0baf\u0bc2\u0bb2\u0bbe", + "tw": "\u0b9f\u0bcd\u0bb5\u0bbf", + "tsi": "\u0b9f\u0bcd\u0bb8\u0bbf\u0bae\u0bcd\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "nl": "\u0b9f\u0b9a\u0bcd\u0b9a\u0bc1", + "twq": "\u0b9f\u0b9a\u0bb5\u0bbe\u0b95\u0bcd", + "tk": "\u0b9f\u0bb0\u0bcd\u0b95\u0bcd\u0bae\u0bc6\u0ba9\u0bcd", + "tr": "\u0b9f\u0bb0\u0bcd\u0b95\u0bbf\u0bb7\u0bcd", + "ty": "\u0b9f\u0bb9\u0bbf\u0ba4\u0bbf\u0baf\u0bbe\u0ba9\u0bcd", + "tl": "\u0b9f\u0bbe\u0b95\u0bbe\u0bb2\u0bcb\u0b95\u0bcd", + "tt": "\u0b9f\u0bbe\u0b9f\u0bb0\u0bcd", + "tmh": "\u0b9f\u0bbe\u0bae\u0bbe\u0bb7\u0bc7\u0b95\u0bcd", + "ti": "\u0b9f\u0bbf\u0b95\u0bcd\u0bb0\u0bbf\u0ba9\u0bcd\u0baf\u0bbe", + "tem": "\u0b9f\u0bbf\u0bae\u0bcd\u0ba9\u0bc7", + "tli": "\u0b9f\u0bbf\u0bb2\u0bbf\u0b99\u0bcd\u0b95\u0bbf\u0b9f\u0bcd", + "tiv": "\u0b9f\u0bbf\u0bb5\u0bcd", + "din": "\u0b9f\u0bbf\u0ba9\u0bcd\u0b95\u0bbe", + "dua": "\u0b9f\u0bc1\u0bb5\u0bbe\u0bb2\u0bbe", + "tvl": "\u0b9f\u0bc1\u0bb5\u0bbe\u0bb2\u0bc1", + "tyv": "\u0b9f\u0bc1\u0bb5\u0bbf\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "teo": "\u0b9f\u0bc6\u0b9a\u0bcb", + "tet": "\u0b9f\u0bc6\u0b9f\u0bc1\u0bae\u0bcd", + "ter": "\u0b9f\u0bc6\u0bb0\u0bc6\u0ba9\u0bcb", + "da": "\u0b9f\u0bc7\u0ba9\u0bbf\u0bb7\u0bcd", + "tig": "\u0b9f\u0bc8\u0b95\u0bcd\u0bb0\u0bc7", + "dav": "\u0b9f\u0bc8\u0b9f\u0bbe", + "tpi": "\u0b9f\u0bcb\u0b95\u0bcd \u0baa\u0bbf\u0bb8\u0bbf\u0ba9\u0bcd", + "doi": "\u0b9f\u0bcb\u0b95\u0bcd\u0bb0\u0bbf", + "dgr": "\u0b9f\u0bcb\u0b95\u0bcd\u0bb0\u0bbf\u0baa\u0bcd", + "tkl": "\u0b9f\u0bcb\u0b95\u0bc7\u0bb2\u0bcc", + "to": "\u0b9f\u0bcb\u0b99\u0bcd\u0b95\u0bbe\u0ba9\u0bcd", + "dak": "\u0ba4\u0b95\u0bcb\u0b9f\u0bbe", + "shi": "\u0ba4\u0b9a\u0bc7\u0bb9\u0bbf\u0ba4\u0bcd", + "ta": "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd", + "th": "\u0ba4\u0bbe\u0baf\u0bcd", + "dar": "\u0ba4\u0bbe\u0bb0\u0bcd\u0b95\u0bc1\u0bb5\u0bbe", + "tg": "\u0ba4\u0bbe\u0b9c\u0bbf\u0b95\u0bcd", + "bo": "\u0ba4\u0bbf\u0baa\u0bc6\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0ba9\u0bcd", + "dv": "\u0ba4\u0bbf\u0bb5\u0bc7\u0bb9\u0bbf", + "tum": "\u0ba4\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbe", + "aeb": "\u0ba4\u0bc1\u0ba9\u0bbf\u0b9a\u0bbf\u0baf \u0b85\u0bb0\u0baa\u0bc1", + "del": "\u0ba4\u0bc6\u0bb2\u0bbe\u0bb5\u0bc7\u0bb0\u0bcd", + "te": "\u0ba4\u0bc6\u0bb2\u0bc1\u0b99\u0bcd\u0b95\u0bc1", + "alt": "\u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0b85\u0bb2\u0bcd\u0ba4\u0bc8", + "sma": "\u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0b9a\u0bae\u0bbf", + "nr": "\u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0ba4\u0bc6\u0baa\u0bc6\u0bb2\u0bc7", + "st": "\u0ba4\u0bc6\u0bb1\u0bcd\u0b95\u0bc1 \u0bb8\u0bcb\u0ba4\u0bcb", + "kcg": "\u0ba4\u0bc8\u0baf\u0bbe\u0baa\u0bcd", + "ng": "\u0ba4\u0bcb\u0b99\u0bcd\u0b95\u0bbe", + "jgo": "\u0ba8\u0b95\u0bca\u0bae\u0bcd\u0baa\u0bbe", + "ny": "\u0ba8\u0baf\u0ba9\u0bcd\u0b9c\u0bbe", + "tog": "\u0ba8\u0baf\u0bbe\u0b9a\u0bbe \u0b9f\u0bcb\u0b99\u0bcd\u0b95\u0bbe", + "na": "\u0ba8\u0bb5\u0bcd\u0bb0\u0bc2", + "nv": "\u0ba8\u0bb5\u0bbe\u0b9c\u0bcb", + "naq": "\u0ba8\u0bbe\u0bae\u0bbe", + "no": "\u0ba8\u0bbe\u0bb0\u0bcd\u0bb5\u0bc7", + "nn": "\u0ba8\u0bbe\u0bb0\u0bcd\u0bb5\u0bc7\u0b9c\u0bbf\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0baf\u0bc2\u0ba8\u0bbe\u0bb0\u0bcd\u0bb8\u0bcd\u0b95\u0bcd", + "nb": "\u0ba8\u0bbe\u0bb0\u0bcd\u0bb5\u0bc7\u0b9c\u0bbf\u0baf\u0ba9\u0bcd \u0baa\u0bca\u0b95\u0bcd\u0bae\u0bbe\u0bb2\u0bcd", + "nym": "\u0ba8\u0bbf\u0baf\u0bbe\u0bae\u0bcd\u0bb5\u0bc7\u0b9c\u0bbf", + "nyn": "\u0ba8\u0bbf\u0baf\u0bbe\u0ba9\u0bcd\u0b95\u0bcb\u0bb2\u0bc7", + "nia": "\u0ba8\u0bbf\u0baf\u0bbe\u0bb8\u0bcd", + "nus": "\u0ba8\u0bbf\u0baf\u0bc2\u0bb0\u0bcd", + "niu": "\u0ba8\u0bbf\u0baf\u0bc2\u0bb5\u0bbe\u0ba9\u0bcd", + "nap": "\u0ba8\u0bbf\u0baf\u0bcb\u0baa\u0bcb\u0bb2\u0bbf\u0b9f\u0ba9\u0bcd", + "nyo": "\u0ba8\u0bbf\u0baf\u0bcb\u0bb0\u0bcb", + "nzi": "\u0ba8\u0bbf\u0b9c\u0bcd\u0bae\u0bbe", + "new": "\u0ba8\u0bc6\u0bb5\u0bbe\u0bb0\u0bbf", + "ne": "\u0ba8\u0bc7\u0baa\u0bbe\u0bb3\u0bbf", + "nog": "\u0ba8\u0bcb\u0b95\u0bc8", + "bra": "\u0baa\u0bcd\u0bb0\u0bbe\u0b9c\u0bcd", + "byn": "\u0baa\u0bcd\u0bb2\u0bbf\u0ba9\u0bcd", + "zbl": "\u0baa\u0bcd\u0bb2\u0bbf\u0bb8\u0bcd\u0bb8\u0bbf\u0bae\u0bcd\u0baa\u0bbe\u0bb2\u0bcd\u0bb8\u0bcd", + "pa": "\u0baa\u0b9e\u0bcd\u0b9a\u0bbe\u0baa\u0bbf", + "bfq": "\u0baa\u0b9f\u0b95\u0bbe", + "egy": "\u0baa\u0ba3\u0bcd\u0b9f\u0bc8\u0baf \u0b8e\u0b95\u0bbf\u0baa\u0bcd\u0ba4\u0bbf\u0baf\u0ba9\u0bcd", + "grc": "\u0baa\u0ba3\u0bcd\u0b9f\u0bc8\u0baf \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", + "pap": "\u0baa\u0baa\u0bbf\u0baf\u0bc7\u0bae\u0bc6\u0ba9\u0bcd\u0b9f\u0bcb", + "pam": "\u0baa\u0bae\u0bcd\u0baa\u0bbe\u0b99\u0bcd\u0b95\u0bbe", + "bm": "\u0baa\u0bae\u0bcd\u0baa\u0bbe\u0bb0\u0bbe", + "gba": "\u0baa\u0baf\u0bbe", + "my": "\u0baa\u0bb0\u0bcd\u0bae\u0bbf\u0bb8\u0bcd", + "bg": "\u0baa\u0bb2\u0bcd\u0b95\u0bc7\u0bb0\u0bbf\u0baf\u0ba9\u0bcd", + "mul": "\u0baa\u0bb2 \u0bae\u0bca\u0bb4\u0bbf\u0b95\u0bb3\u0bcd", + "ban": "\u0baa\u0bb2\u0bbf\u0ba9\u0bc0\u0bb8\u0bcd", + "pau": "\u0baa\u0bb2\u0bcc\u0bb5\u0bcd\u0ba9\u0bcd", + "ang": "\u0baa\u0bb4\u0bc8\u0baf \u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "sga": "\u0baa\u0bb4\u0bc8\u0baf \u0b90\u0bb0\u0bbf\u0bb7\u0bcd", + "fro": "\u0baa\u0bb4\u0bc8\u0baf \u0b83\u0baa\u0bcd\u0bb0\u0bc6\u0ba9\u0bcd\u0b9a\u0bcd", + "non": "\u0baa\u0bb4\u0bc8\u0baf \u0ba8\u0bcb\u0bb0\u0bcd\u0bb8\u0bcd", + "pro": "\u0baa\u0bb4\u0bc8\u0baf \u0baa\u0bcd\u0bb0\u0bcb\u0bb5\u0bc6\u0ba9\u0bcd\u0b9a\u0bbe\u0bb2\u0bcd", + "peo": "\u0baa\u0bb4\u0bc8\u0baf \u0baa\u0bc6\u0bb0\u0bcd\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "goh": "\u0baa\u0bb4\u0bc8\u0baf \u0bb9\u0bc8 \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "pag": "\u0baa\u0ba9\u0bcd\u0b95\u0bbe\u0b9a\u0bbf\u0ba9\u0ba9\u0bcd", + "ps": "\u0baa\u0bb7\u0bcd\u0ba4\u0bcb", + "eu": "\u0baa\u0bb8\u0bcd\u0b95\u0bcd", + "ksf": "\u0baa\u0bbe\u0b83\u0baa\u0bbf\u0baf\u0bbe", + "syc": "\u0baa\u0bbe\u0bb0\u0bae\u0bcd\u0baa\u0bb0\u0bbf\u0baf \u0b9a\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0b95\u0bcd", + "zh_Hant": "\u0baa\u0bbe\u0bb0\u0bae\u0bcd\u0baa\u0bb0\u0bbf\u0baf \u0b9a\u0bc0\u0ba9\u0bae\u0bcd", + "nwc": "\u0baa\u0bbe\u0bb0\u0bae\u0bcd\u0baa\u0bb0\u0bbf\u0baf \u0ba8\u0bc7\u0bb5\u0bbe\u0bb0\u0bbf", + "pi": "\u0baa\u0bbe\u0bb2\u0bbf", + "ba": "\u0baa\u0bbe\u0bb7\u0bcd\u0b95\u0bbf\u0bb0\u0bcd", + "bas": "\u0baa\u0bbe\u0bb8\u0bbe", + "pal": "\u0baa\u0bbe\u0bb9\u0bcd\u0bb2\u0bb5\u0bbf", + "bik": "\u0baa\u0bbf\u0b95\u0bcb\u0bb2\u0bcd", + "en_GB": "\u0baa\u0bbf\u0bb0\u0bbf\u0b9f\u0bcd\u0b9f\u0bbf\u0bb7\u0bcd \u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "fr": "\u0baa\u0bbf\u0bb0\u0bc6\u0b9e\u0bcd\u0b9a\u0bc1", + "br": "\u0baa\u0bbf\u0bb0\u0bc6\u0b9f\u0bcd\u0b9f\u0ba9\u0bcd", + "nl_BE": "\u0baa\u0bbf\u0bb2\u0bc6\u0bae\u0bbf\u0bb7\u0bcd", + "bin": "\u0baa\u0bbf\u0ba9\u0bbf", + "hif": "\u0baa\u0bbf\u0b9c\u0bbf \u0b87\u0ba8\u0bcd\u0ba4\u0bbf", + "bpy": "\u0baa\u0bbf\u0bb7\u0bcd\u0ba3\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe", + "bi": "\u0baa\u0bbf\u0bb8\u0bcd\u0bb2\u0bbe\u0bae\u0bbe", + "bug": "\u0baa\u0bc1\u0b95\u0bbf\u0ba9\u0bc0\u0bb8\u0bcd", + "bua": "\u0baa\u0bc1\u0bb0\u0bbf\u0baf\u0bbe\u0ba4\u0bcd", + "dz": "\u0baa\u0bc2\u0b9f\u0bbe\u0ba9\u0bbf", + "bem": "\u0baa\u0bc6\u0bae\u0bcd\u0baa\u0bbe", + "fa": "\u0baa\u0bc6\u0bb0\u0bcd\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "be": "\u0baa\u0bc6\u0bb2\u0bbe\u0bb0\u0bc1\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "bal": "\u0baa\u0bc6\u0bb2\u0bc1\u0b9a\u0bbf", + "pdc": "\u0baa\u0bc6\u0ba9\u0bcd\u0b9a\u0bbf\u0bb2\u0bcd\u0bb5\u0bc7\u0ba9\u0bbf\u0baf \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "bez": "\u0baa\u0bc6\u0ba9\u0bbe", + "bej": "\u0baa\u0bc7\u0b9c\u0bbe", + "brx": "\u0baa\u0bcb\u0b9f\u0bcb", + "pt": "\u0baa\u0bcb\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bc1\u0b95\u0bcd\u0b95\u0bc0\u0bb8\u0bcd", + "pt_BR": "\u0baa\u0bcb\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bc1\u0b95\u0bc0\u0bb8\u0bcd (\u0baa\u0bbf\u0bb0\u0bc7\u0b9a\u0bbf\u0bb2\u0bcd)", + "pl": "\u0baa\u0bcb\u0bb2\u0bbf\u0bb7\u0bcd", + "bho": "\u0baa\u0bcb\u0b9c\u0bcd\u0baa\u0bc2\u0bb0\u0bbf", + "bs": "\u0baa\u0bcb\u0bb8\u0bcd\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "mak": "\u0bae\u0b95\u0bbe\u0b9a\u0bbe\u0bb0\u0bcd", + "mag": "\u0bae\u0b95\u0bbe\u0bb9\u0bbf", + "mgh": "\u0bae\u0b95\u0bc1\u0bb5\u0bbe-\u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bcb", + "kde": "\u0bae\u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc7", + "mn": "\u0bae\u0b99\u0bcd\u0b95\u0bcb\u0bb2\u0bbf\u0baf\u0ba9\u0bcd", + "tzm": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b85\u0b9f\u0bcd\u0bb2\u0bb8\u0bcd \u0ba4\u0bae\u0b9a\u0bc8\u0b9f\u0bcd", + "enm": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd", + "mga": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b90\u0bb0\u0bbf\u0bb7\u0bcd", + "frm": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b83\u0baa\u0bcd\u0bb0\u0bc6\u0ba9\u0bcd\u0b9a\u0bcd", + "dum": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b9f\u0b9a\u0bcd\u0b9a\u0bc1", + "gmh": "\u0bae\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0bb9\u0bc8 \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "mad": "\u0bae\u0ba4\u0bc1\u0bb0\u0bc0\u0bb8\u0bcd", + "arn": "\u0bae\u0baa\u0bc1\u0b9a\u0bc7", + "mr": "\u0bae\u0bb0\u0bbe\u0ba4\u0bcd\u0ba4\u0bbf", + "mg": "\u0bae\u0bb2\u0b95\u0bbe\u0bb8\u0bbf", + "ms": "\u0bae\u0bb2\u0bbe\u0baf\u0bcd", + "ml": "\u0bae\u0bb2\u0bc8\u0baf\u0bbe\u0bb3\u0bae\u0bcd", + "mnc": "\u0bae\u0ba9\u0bcd\u0b9a\u0bc1", + "mni": "\u0bae\u0ba9\u0bbf\u0baa\u0bc2\u0bb0\u0bbf", + "hmn": "\u0bae\u0bbe\u0b99\u0bcd\u0b95\u0bcd", + "mas": "\u0bae\u0bbe\u0b9a\u0bbe\u0baf\u0bcd", + "jmc": "\u0bae\u0bbe\u0b9a\u0bc6\u0bae\u0bcd", + "ar_001": "\u0bae\u0bbe\u0b9f\u0bb0\u0bcd\u0ba9\u0bcd \u0bb8\u0bcd\u0b9f\u0bbe\u0ba3\u0bcd\u0b9f\u0bb0\u0bcd\u0b9f\u0bcd \u0b85\u0bb0\u0baa\u0bbf\u0b95\u0bcd", + "mwr": "\u0bae\u0bbe\u0bb0\u0bcd\u0bb5\u0bbe\u0bb0\u0bbf", + "mh": "\u0bae\u0bbe\u0bb0\u0bcd\u0bb7\u0bc6\u0bb2\u0bbf\u0bb7\u0bcd", + "chm": "\u0bae\u0bbe\u0bb0\u0bbf", + "mt": "\u0bae\u0bbe\u0bb2\u0bcd\u0b9f\u0bbf\u0bb8\u0bcd", + "mdr": "\u0bae\u0bbe\u0ba9\u0bcd\u0b9f\u0bbe\u0bb0\u0bcd", + "man": "\u0bae\u0bbe\u0ba9\u0bcd\u0b9f\u0bbf\u0b99\u0bcd\u0b95\u0bcb", + "mk": "\u0bae\u0bbe\u0bb8\u0bbf\u0b9f\u0bcb\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "mic": "\u0bae\u0bbf\u0b95\u0bcd\u0bae\u0bbe\u0b95\u0bcd", + "mwl": "\u0bae\u0bbf\u0bb0\u0bbe\u0ba9\u0bcd\u0b9f\u0bc0\u0bb8\u0bcd", + "min": "\u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0bbe\u0b99\u0bcd\u0b95\u0baa\u0bcc", + "mua": "\u0bae\u0bc1\u0ba9\u0bcd\u0b9f\u0bbe\u0b99\u0bcd", + "es_MX": "\u0bae\u0bc6\u0b95\u0bcd\u0b9a\u0bbf\u0b95\u0ba9\u0bcd \u0bb8\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0bb7\u0bcd", + "mer": "\u0bae\u0bc6\u0bb0\u0bc1", + "men": "\u0bae\u0bc6\u0ba9\u0bcd\u0b9f\u0bc0", + "gv": "\u0bae\u0bc7\u0b99\u0bcd\u0b95\u0bcd\u0bb8\u0bcd", + "mgo": "\u0bae\u0bc7\u0b9f\u0bbe", + "fy": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0baf \u0b83\u0baa\u0bcd\u0bb0\u0bbf\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "mai": "\u0bae\u0bc8\u0ba4\u0bbf\u0bb2\u0bbf", + "mfe": "\u0bae\u0bca\u0bb0\u0bbf\u0b9a\u0bbf\u0baf\u0ba9\u0bcd", + "zxx": "\u0bae\u0bca\u0bb4\u0bbf \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", + "mdf": "\u0bae\u0bcb\u0b95\u0bcd\u0b95\u0bcd\u0bb7\u0bbe", + "lol": "\u0bae\u0bcb\u0b99\u0bcd\u0b95\u0bcb", + "ro_MD": "\u0bae\u0bcb\u0bb2\u0bcd\u0b9f\u0bbe\u0bb5\u0bbf\u0baf\u0ba9\u0bcd", + "mos": "\u0bae\u0bcb\u0bb8\u0bcd\u0bb8\u0bbf", + "moh": "\u0bae\u0bcb\u0bb9\u0bbe\u0bb5\u0bcd\u0b95\u0bcd", + "mi": "\u0bae\u0bcc\u0bb0\u0bbf", + "sah": "\u0baf\u0bbe\u0b95\u0bc1\u0b9f\u0bcd", + "yap": "\u0baf\u0bbe\u0baa\u0bc7\u0b9a\u0bbf", + "yao": "\u0baf\u0bbe\u0bb5\u0bcd", + "yo": "\u0baf\u0bcb\u0bb0\u0bc1\u0baa\u0bbe", + "rap": "\u0bb0\u0baa\u0ba9\u0bc1\u0baf\u0bcd", + "rar": "\u0bb0\u0bb0\u0bcb\u0b9f\u0bcb\u0b99\u0bcd\u0b95\u0ba9\u0bcd", + "ru": "\u0bb0\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "raj": "\u0bb0\u0bbe\u0b9c\u0bb8\u0bcd\u0ba4\u0bbe\u0ba9\u0bbf", + "rn": "\u0bb0\u0bc1\u0ba3\u0bcd\u0b9f\u0bbf", + "rwk": "\u0bb0\u0bc1\u0bb5\u0bbe", + "root": "\u0bb0\u0bc2\u0b9f\u0bcd", + "rof": "\u0bb0\u0bcb\u0bae\u0bcd\u0baa\u0bcb", + "rm": "\u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bcd\u0bb7\u0bcd", + "rom": "\u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf", + "ro": "\u0bb0\u0bcb\u0bae\u0bc7\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "lb": "\u0bb2\u0b95\u0bcd\u0bb8\u0bae\u0bcd\u0baa\u0bcb\u0bb0\u0bcd\u0b95\u0bbf\u0bb7\u0bcd", + "lkt": "\u0bb2\u0b95\u0bcb\u0b9f\u0bbe", + "lag": "\u0bb2\u0b99\u0bcd\u0b95\u0bbf", + "lad": "\u0bb2\u0b9f\u0bbf\u0ba9\u0bcb", + "la": "\u0bb2\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd", + "es_419": "\u0bb2\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0b85\u0bae\u0bc6\u0bb0\u0bbf\u0b95\u0bcd\u0b95 \u0bb8\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0bb7\u0bcd", + "lam": "\u0bb2\u0bae\u0bcd\u0baa\u0bbe", + "lah": "\u0bb2\u0bb9\u0ba9\u0bcd\u0b9f\u0bbe", + "lv": "\u0bb2\u0bbe\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0ba9\u0bcd", + "lo": "\u0bb2\u0bbe\u0bb5\u0bcb", + "ln": "\u0bb2\u0bbf\u0b99\u0bcd\u0b95\u0bbe\u0bb2\u0bbe", + "lt": "\u0bb2\u0bbf\u0ba4\u0bc1\u0bb5\u0bc7\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "li": "\u0bb2\u0bbf\u0bae\u0bcd\u0baa\u0bb0\u0bcd\u0b95\u0bbf\u0bb7\u0bcd", + "lu": "\u0bb2\u0bc1\u0baa\u0bbe-\u0b95\u0b9f\u0bbe\u0b99\u0bcd\u0b95\u0bbe", + "lua": "\u0bb2\u0bc1\u0baa\u0bbe-\u0bb2\u0bc1\u0bb2\u0bc1\u0bb2\u0bbe", + "lui": "\u0bb2\u0bc1\u0baf\u0bcd\u0b9a\u0bc7\u0ba9\u0bcb", + "luy": "\u0bb2\u0bc1\u0baf\u0bbf\u0baf\u0bbe", + "luo": "\u0bb2\u0bc1\u0baf\u0bcb", + "smj": "\u0bb2\u0bc1\u0bb2\u0bc7 \u0b9a\u0bae\u0bbf", + "lus": "\u0bb2\u0bc1\u0bb7\u0baf\u0bcd", + "lun": "\u0bb2\u0bc2\u0ba9\u0bcd\u0b9f\u0bbe", + "lez": "\u0bb2\u0bc6\u0b9c\u0bcd\u0b9c\u0bbf\u0baf\u0ba9\u0bcd", + "nds": "\u0bb2\u0bcb \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "loz": "\u0bb2\u0bcb\u0b9a\u0bbf", + "dsb": "\u0bb2\u0bcb\u0baf\u0bb0\u0bcd \u0b9a\u0bcb\u0bb0\u0bcd\u0baa\u0bbf\u0baf\u0ba9\u0bcd", + "jbo": "\u0bb2\u0bcb\u0b9c\u0bcd\u0baa\u0ba9\u0bcd", + "bn": "\u0bb5\u0b99\u0bcd\u0b95\u0bbe\u0bb3\u0bae\u0bcd", + "frr": "\u0bb5\u0b9f\u0b95\u0bcd\u0b95\u0bc1 \u0b83\u0baa\u0bcd\u0bb0\u0bbf\u0bb8\u0bbf\u0baf\u0bbe\u0ba9\u0bcd", + "se": "\u0bb5\u0b9f\u0b95\u0bcd\u0b95\u0bc1 \u0b9a\u0bae\u0bbf", + "nso": "\u0bb5\u0b9f\u0b95\u0bcd\u0b95\u0bc1 \u0b9a\u0bcb\u0ba4\u0bcb", + "nd": "\u0bb5\u0b9f\u0b95\u0bcd\u0b95\u0bc1 \u0ba4\u0bc6\u0baa\u0bc6\u0bb2\u0bc7", + "war": "\u0bb5\u0bbe\u0bb0\u0bc7", + "wal": "\u0bb5\u0bbe\u0bb2\u0bbe\u0bae\u0bcb", + "was": "\u0bb5\u0bbe\u0bb7\u0bcb", + "vi": "\u0bb5\u0bbf\u0baf\u0b9f\u0bcd\u0ba8\u0bbe\u0bae\u0bbf\u0bb8\u0bcd", + "vun": "\u0bb5\u0bc1\u0ba9\u0bcd\u0b9c\u0bcb", + "cy": "\u0bb5\u0bc6\u0bb2\u0bcd\u0bb7\u0bcd", + "ve": "\u0bb5\u0bc6\u0ba9\u0bcd\u0b9f\u0bbe", + "vai": "\u0bb5\u0bc8", + "vot": "\u0bb5\u0bcb\u0b9f\u0bcd\u0b95\u0bcd", + "kaj": "\u0b9c\u0bcd\u0b9c\u0bc2", + "ja": "\u0b9c\u0baa\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", + "zap": "\u0b9c\u0bbe\u0baa\u0bcb\u0b9f\u0bc6\u0b95\u0bcd", + "ka": "\u0b9c\u0bbe\u0bb0\u0bcd\u0b9c\u0bbf\u0baf\u0ba9\u0bcd", + "jv": "\u0b9c\u0bbe\u0bb5\u0bbe\u0ba9\u0bc0\u0bb8\u0bcd", + "zza": "\u0b9c\u0bbe\u0b9c\u0bbe", + "zu": "\u0b9c\u0bc1\u0bb2\u0bc1", + "za": "\u0b9c\u0bc1\u0bb5\u0bbe\u0b99\u0bcd", + "jrb": "\u0b9c\u0bc2\u0ba4\u0bc7\u0baf\u0bcb-\u0b85\u0bb0\u0bbe\u0baa\u0bbf\u0b95\u0bcd", + "jpr": "\u0b9c\u0bc2\u0ba4\u0bc7\u0baf\u0bcb-\u0baa\u0bc6\u0bb0\u0bcd\u0bb7\u0bbf\u0baf\u0ba9\u0bcd", + "zun": "\u0b9c\u0bc2\u0ba9\u0bbf", + "de": "\u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "zen": "\u0b9c\u0bc6\u0ba9\u0b95\u0bbe", + "dyo": "\u0b9c\u0bcb\u0bb2\u0bbe-\u0b83\u0baa\u0bcb\u0ba9\u0bcd\u0baf\u0bbf", + "chg": "\u0bb7\u0b95\u0ba4\u0bc8", + "ksb": "\u0bb7\u0bae\u0bcd\u0baa\u0bbe\u0bb2\u0bbe", + "shn": "\u0bb7\u0bbe\u0ba9\u0bcd", + "sn": "\u0bb7\u0bcb\u0ba9\u0bbe", + "sco": "\u0bb8\u0bcd\u0b95\u0bbe\u0b9f\u0bcd\u0bb8\u0bcd", + "gd": "\u0bb8\u0bcd\u0b95\u0bbe\u0b9f\u0bcd\u0bb8\u0bcd \u0b95\u0bc7\u0bb2\u0bbf\u0b95\u0bcd", + "sms": "\u0bb8\u0bcd\u0b95\u0bcb\u0bb2\u0bcd\u0b9f\u0bcd \u0b9a\u0bae\u0bbf", + "zgh": "\u0bb8\u0bcd\u0b9f\u0bbe\u0ba3\u0bcd\u0b9f\u0bb0\u0bcd\u0b9f\u0bcd \u0bae\u0bca\u0bb0\u0bbe\u0b95\u0bcd\u0b95\u0ba9\u0bcd \u0ba4\u0bae\u0bbe\u0b9a\u0bc8\u0b9f\u0bcd", + "es": "\u0bb8\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0bb7\u0bcd", + "srn": "\u0bb8\u0bcd\u0bb0\u0bbe\u0ba9\u0ba9\u0bcd \u0b9f\u0bcb\u0b99\u0bcd\u0b95\u0bcb", + "den": "\u0bb8\u0bcd\u0bb2\u0bbe\u0bb5\u0bcd", + "sk": "\u0bb8\u0bcd\u0bb2\u0bcb\u0bb5\u0bbe\u0b95\u0bcd", + "sl": "\u0bb8\u0bcd\u0bb2\u0bcb\u0bb5\u0bc7\u0ba9\u0bbf\u0baf\u0ba9\u0bcd", + "ss": "\u0bb8\u0bcd\u0bb5\u0bbe\u0b9f\u0bc0", + "tn": "\u0bb8\u0bcd\u0bb5\u0bbe\u0ba9\u0bbe", + "fr_CH": "\u0bb8\u0bcd\u0bb5\u0bbf\u0bb8\u0bcd \u0baa\u0bbf\u0bb0\u0b9e\u0bcd\u0b9a\u0bc1", + "gsw": "\u0bb8\u0bcd\u0bb5\u0bbf\u0bb8\u0bcd \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "de_CH": "\u0bb8\u0bcd\u0bb5\u0bbf\u0bb8\u0bcd \u0bb9\u0bc8 \u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0ba9\u0bcd", + "sv": "\u0bb8\u0bcd\u0bb5\u0bc0\u0b9f\u0bbf\u0bb7\u0bcd", + "sm": "\u0bb8\u0bbe\u0bae\u0bcb\u0bb5\u0bbe\u0ba9\u0bcd", + "ts": "\u0bb8\u0bcb\u0b99\u0bcd\u0b95\u0bbe", + "hu": "\u0bb9\u0b99\u0bcd\u0b95\u0bc7\u0bb0\u0bbf\u0baf\u0ba9\u0bcd", + "haw": "\u0bb9\u0bb5\u0bbe\u0baf\u0bbf\u0baf\u0ba9\u0bcd", + "hit": "\u0bb9\u0bbf\u0b9f\u0bcd\u0b9f\u0bc8\u0b9f\u0bcd", + "ho": "\u0bb9\u0bbf\u0bb0\u0bbf \u0bae\u0bcb\u0b9f\u0bcd\u0b9f\u0bc1", + "hil": "\u0bb9\u0bbf\u0bb2\u0bbf\u0b95\u0bbe\u0baf\u0bcd\u0ba9\u0bbe\u0ba9\u0bcd", + "he": "\u0bb9\u0bc0\u0baa\u0bcd\u0bb0\u0bc2", + "hup": "\u0bb9\u0bc1\u0baa\u0bbe", + "hz": "\u0bb9\u0bc6\u0bb0\u0bc7\u0bb0\u0bcb", + "hai": "\u0bb9\u0bc8\u0b9f\u0bbe", + "ht": "\u0bb9\u0bc8\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0ba9\u0bcd", + "xh": "\u0bb9\u0bcb\u0b9a\u0bbe", + "ha": "\u0bb9\u0bcc\u0bb8\u0bbe", + "bss": "Akoose", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bax": "Bamun", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "brh": "Brahui", + "bum": "Bulu", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "dzg": "Dazaga", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "ibb": "Ibibio", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "kbl": "Kanembu", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "mde": "Maba", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "byv": "Medumba", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "mye": "Myene", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "sly": "Selayar", + "see": "Seneca", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "trv": "Taroko", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/th-TH.json b/public/intl/language/th-TH.json new file mode 100644 index 0000000..0ff158a --- /dev/null +++ b/public/intl/language/th-TH.json @@ -0,0 +1,611 @@ +{ + "gba": "\u0e01\u0e1a\u0e32\u0e22\u0e32", + "bkm": "\u0e01\u0e21", + "el": "\u0e01\u0e23\u0e35\u0e01", + "grc": "\u0e01\u0e23\u0e35\u0e01\u0e42\u0e1a\u0e23\u0e32\u0e13", + "kl": "\u0e01\u0e23\u0e35\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c", + "kj": "\u0e01\u0e27\u0e19\u0e22\u0e32\u0e21\u0e32", + "yue": "\u0e01\u0e27\u0e32\u0e07\u0e15\u0e38\u0e49\u0e07", + "nmg": "\u0e01\u0e27\u0e32\u0e0b\u0e34\u0e42\u0e2d", + "gn": "\u0e01\u0e27\u0e32\u0e23\u0e32\u0e19\u0e35", + "gwi": "\u0e01\u0e27\u0e34\u0e0a\u0e2d\u0e34\u0e19", + "kaw": "\u0e01\u0e27\u0e35", + "kok": "\u0e01\u0e2d\u0e19\u0e01\u0e32\u0e19\u0e35", + "gom": "\u0e01\u0e2d\u0e19\u0e01\u0e32\u0e19\u0e35\u0e02\u0e2d\u0e07\u0e01\u0e31\u0e27", + "gon": "\u0e01\u0e2d\u0e19\u0e14\u0e34", + "gor": "\u0e01\u0e2d\u0e23\u0e2d\u0e19\u0e17\u0e32\u0e42\u0e25", + "kac": "\u0e01\u0e30\u0e09\u0e34\u0e48\u0e19", + "kn": "\u0e01\u0e31\u0e19\u0e19\u0e32\u0e14\u0e32", + "sba": "\u0e01\u0e31\u0e21\u0e40\u0e1a", + "ks": "\u0e01\u0e31\u0e28\u0e21\u0e35\u0e23\u0e4c", + "gaa": "\u0e01\u0e32", + "gag": "\u0e01\u0e32\u0e01\u0e32\u0e2d\u0e38\u0e0b", + "ca": "\u0e01\u0e32\u0e15\u0e32\u0e25\u0e31\u0e07", + "kab": "\u0e01\u0e32\u0e44\u0e1a\u0e25", + "cps": "\u0e01\u0e32\u0e1b\u0e34\u0e0b\u0e19\u0e2d\u0e19", + "kpe": "\u0e01\u0e32\u0e41\u0e1b\u0e25", + "gay": "\u0e01\u0e32\u0e42\u0e22", + "kaa": "\u0e01\u0e32\u0e23\u0e32-\u0e01\u0e32\u0e25\u0e1e\u0e32\u0e01", + "gl": "\u0e01\u0e32\u0e25\u0e34\u0e40\u0e0b\u0e35\u0e22", + "kha": "\u0e01\u0e32\u0e2a\u0e35", + "krj": "\u0e01\u0e34\u0e19\u0e32\u0e23\u0e32\u0e22\u0e2d\u0e32", + "gil": "\u0e01\u0e34\u0e25\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e15", + "glk": "\u0e01\u0e34\u0e25\u0e32\u0e01\u0e35", + "ki": "\u0e01\u0e35\u0e01\u0e39\u0e22\u0e39", + "quc": "\u0e01\u0e35\u0e40\u0e0a", + "gez": "\u0e01\u0e35\u0e0b", + "guz": "\u0e01\u0e38\u0e0b\u0e0b\u0e35", + "kru": "\u0e01\u0e38\u0e23\u0e38\u0e02", + "aln": "\u0e40\u0e01\u0e01\u0e41\u0e2d\u0e25\u0e40\u0e1a\u0e40\u0e19\u0e35\u0e22", + "grb": "\u0e40\u0e01\u0e23\u0e42\u0e1a", + "ko": "\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35", + "ken": "\u0e40\u0e01\u0e34\u0e19\u0e22\u0e32\u0e07", + "krl": "\u0e41\u0e01\u0e23\u0e40\u0e25\u0e35\u0e22\u0e19", + "got": "\u0e42\u0e01\u0e18\u0e34\u0e01", + "kv": "\u0e42\u0e01\u0e21\u0e34", + "km": "\u0e40\u0e02\u0e21\u0e23", + "kaj": "\u0e04\u0e08\u0e39", + "kri": "\u0e04\u0e23\u0e34\u0e42\u0e2d", + "cr": "\u0e04\u0e23\u0e35", + "mus": "\u0e04\u0e23\u0e35\u0e01", + "tlh": "\u0e04\u0e25\u0e34\u0e07\u0e01\u0e2d\u0e19", + "qu": "\u0e04\u0e27\u0e34\u0e0a\u0e31\u0e27", + "qug": "\u0e04\u0e27\u0e34\u0e0a\u0e31\u0e27\u0e44\u0e2e\u0e41\u0e25\u0e19\u0e14\u0e4c\u0e0a\u0e34\u0e21\u0e42\u0e1a\u0e23\u0e32\u0e42\u0e0b", + "kg": "\u0e04\u0e2d\u0e07\u0e42\u0e01", + "cop": "\u0e04\u0e2d\u0e1b\u0e15\u0e34\u0e01", + "co": "\u0e04\u0e2d\u0e23\u0e4c\u0e0b\u0e34\u0e01\u0e32", + "kw": "\u0e04\u0e2d\u0e23\u0e4c\u0e19\u0e34\u0e0a", + "xh": "\u0e04\u0e30\u0e2b\u0e4c\u0e42\u0e2d\u0e0b\u0e32", + "cad": "\u0e04\u0e31\u0e14\u0e42\u0e14", + "kam": "\u0e04\u0e31\u0e21\u0e1a\u0e32", + "xal": "\u0e04\u0e31\u0e25\u0e21\u0e37\u0e22\u0e04\u0e4c", + "kkj": "\u0e04\u0e32\u0e42\u0e01", + "kk": "\u0e04\u0e32\u0e0b\u0e31\u0e04", + "csb": "\u0e04\u0e32\u0e0b\u0e39\u0e40\u0e1a\u0e35\u0e22\u0e19", + "kr": "\u0e04\u0e32\u0e19\u0e39\u0e23\u0e35", + "kbl": "\u0e04\u0e32\u0e40\u0e19\u0e21\u0e1a\u0e39", + "kea": "\u0e04\u0e32\u0e1a\u0e39\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e40\u0e14\u0e35\u0e22\u0e19\u0e39", + "cay": "\u0e04\u0e32\u0e22\u0e39\u0e01\u0e32", + "kbd": "\u0e04\u0e32\u0e23\u0e4c\u0e1a\u0e32\u0e40\u0e14\u0e35\u0e22", + "krc": "\u0e04\u0e32\u0e23\u0e32\u0e44\u0e0a-\u0e1a\u0e31\u0e25\u0e04\u0e32\u0e23\u0e4c", + "car": "\u0e04\u0e32\u0e23\u0e34\u0e1a", + "kln": "\u0e04\u0e32\u0e40\u0e25\u0e19\u0e08\u0e34\u0e19", + "kmb": "\u0e04\u0e34\u0e21\u0e1a\u0e38\u0e19\u0e14\u0e39", + "cgg": "\u0e04\u0e35\u0e01\u0e32", + "ky": "\u0e04\u0e35\u0e23\u0e4c\u0e01\u0e35\u0e0b", + "gu": "\u0e04\u0e38\u0e0a\u0e23\u0e32\u0e15", + "kut": "\u0e04\u0e39\u0e40\u0e17\u0e44\u0e19", + "kum": "\u0e04\u0e39\u0e21\u0e37\u0e22\u0e04\u0e4c", + "kos": "\u0e04\u0e39\u0e2a\u0e44\u0e23", + "kgp": "\u0e40\u0e04\u0e19\u0e01\u0e48\u0e32\u0e07", + "kiu": "\u0e40\u0e04\u0e2d\u0e23\u0e4c\u0e21\u0e32\u0e19\u0e34\u0e01\u0e34", + "ku": "\u0e40\u0e04\u0e34\u0e23\u0e4c\u0e14", + "ckb": "\u0e40\u0e04\u0e34\u0e23\u0e4c\u0e14\u0e42\u0e0b\u0e23\u0e32\u0e19\u0e35", + "kho": "\u0e42\u0e04\u0e15\u0e31\u0e19", + "avk": "\u0e42\u0e04\u0e15\u0e32\u0e27\u0e32", + "bbj": "\u0e42\u0e04\u0e21\u0e32\u0e25\u0e32", + "koi": "\u0e42\u0e04\u0e21\u0e34-\u0e40\u0e1b\u0e35\u0e22\u0e23\u0e4c\u0e40\u0e21\u0e35\u0e22\u0e04", + "swb": "\u0e42\u0e04\u0e40\u0e21\u0e2d\u0e40\u0e23\u0e35\u0e22\u0e19", + "khq": "\u0e42\u0e04\u0e22\u0e4c\u0e23\u0e32\u0e0a\u0e35\u0e19\u0e35", + "ses": "\u0e42\u0e04\u0e22\u0e4c\u0e23\u0e32\u0e42\u0e1a\u0e42\u0e23\u0e40\u0e0b\u0e19\u0e19\u0e35", + "hr": "\u0e42\u0e04\u0e23\u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22", + "kfo": "\u0e42\u0e04\u0e42\u0e23", + "ksh": "\u0e42\u0e04\u0e42\u0e25\u0e0d", + "khw": "\u0e42\u0e04\u0e27\u0e32\u0e23\u0e4c", + "za": "\u0e08\u0e49\u0e27\u0e07", + "ka": "\u0e08\u0e2d\u0e23\u0e4c\u0e40\u0e08\u0e35\u0e22", + "jut": "\u0e08\u0e31\u0e17", + "zh": "\u0e08\u0e35\u0e19", + "gan": "\u0e08\u0e35\u0e19\u0e01\u0e32\u0e19", + "lzh": "\u0e08\u0e35\u0e19\u0e04\u0e25\u0e32\u0e2a\u0e2a\u0e34\u0e01", + "hak": "\u0e08\u0e35\u0e19\u0e41\u0e04\u0e30", + "hsn": "\u0e08\u0e35\u0e19\u0e40\u0e0b\u0e35\u0e22\u0e07", + "zh_Hant": "\u0e08\u0e35\u0e19\u0e15\u0e31\u0e27\u0e40\u0e15\u0e47\u0e21", + "zh_Hans": "\u0e08\u0e35\u0e19\u0e15\u0e31\u0e27\u0e22\u0e48\u0e2d", + "nan": "\u0e08\u0e35\u0e19\u0e21\u0e34\u0e19\u0e2b\u0e19\u0e32\u0e19", + "wuu": "\u0e08\u0e35\u0e19\u0e2d\u0e39\u0e4b", + "nnh": "\u0e08\u0e35\u0e21\u0e1a\u0e39\u0e19", + "dyo": "\u0e42\u0e08\u0e25\u0e32-\u0e1f\u0e2d\u0e19\u0e22\u0e35", + "jv": "\u0e0a\u0e27\u0e32", + "cho": "\u0e0a\u0e47\u0e2d\u0e01\u0e17\u0e2d\u0e27\u0e4c", + "chg": "\u0e0a\u0e30\u0e01\u0e30\u0e44\u0e15", + "ksb": "\u0e0a\u0e31\u0e21\u0e1a\u0e32\u0e25\u0e32", + "ch": "\u0e0a\u0e32\u0e21\u0e2d\u0e23\u0e4c\u0e42\u0e23", + "chn": "\u0e0a\u0e34\u0e19\u0e38\u0e01\u0e08\u0e32\u0e23\u0e4c\u0e01\u0e2d\u0e19", + "chb": "\u0e0a\u0e34\u0e1a\u0e0a\u0e32", + "chp": "\u0e0a\u0e34\u0e1e\u0e34\u0e27\u0e22\u0e31\u0e19", + "chk": "\u0e0a\u0e39\u0e01", + "cv": "\u0e0a\u0e39\u0e27\u0e31\u0e0a", + "cs": "\u0e40\u0e0a\u0e47\u0e01", + "ce": "\u0e40\u0e0a\u0e40\u0e0a\u0e19", + "chy": "\u0e40\u0e0a\u0e40\u0e22\u0e19\u0e40\u0e19", + "cu": "\u0e40\u0e0a\u0e2d\u0e23\u0e4c\u0e0a\u0e2a\u0e25\u0e32\u0e27\u0e34\u0e01", + "chr": "\u0e40\u0e0a\u0e2d\u0e42\u0e23\u0e01\u0e35", + "sn": "\u0e42\u0e0a\u0e19\u0e32", + "sog": "\u0e0b\u0e2d\u0e01\u0e14\u0e35\u0e19", + "dz": "\u0e0b\u0e2d\u0e07\u0e04\u0e32", + "hsb": "\u0e0b\u0e2d\u0e23\u0e4c\u0e1a\u0e2a\u0e4c\u0e15\u0e2d\u0e19\u0e1a\u0e19", + "dsb": "\u0e0b\u0e2d\u0e23\u0e4c\u0e1a\u0e2a\u0e4c\u0e15\u0e2d\u0e19\u0e25\u0e48\u0e32\u0e07", + "sad": "\u0e0b\u0e31\u0e19\u0e14\u0e32\u0e40\u0e27", + "tsd": "\u0e0b\u0e32\u0e42\u0e04\u0e40\u0e19\u0e35\u0e22", + "sas": "\u0e0b\u0e32\u0e0b\u0e31\u0e01", + "zza": "\u0e0b\u0e32\u0e0b\u0e32", + "zap": "\u0e0b\u0e32\u0e42\u0e1b\u0e40\u0e15\u0e01", + "sm": "\u0e0b\u0e32\u0e21\u0e31\u0e27", + "sma": "\u0e0b\u0e32\u0e21\u0e34\u0e43\u0e15\u0e49", + "smj": "\u0e0b\u0e32\u0e21\u0e34\u0e25\u0e39\u0e40\u0e25", + "sms": "\u0e0b\u0e32\u0e21\u0e34\u0e2a\u0e04\u0e2d\u0e25\u0e15\u0e4c", + "se": "\u0e0b\u0e32\u0e21\u0e34\u0e40\u0e2b\u0e19\u0e37\u0e2d", + "smn": "\u0e0b\u0e32\u0e21\u0e34\u0e2d\u0e35\u0e19\u0e32\u0e23\u0e35", + "sgs": "\u0e0b\u0e32\u0e42\u0e21\u0e08\u0e34\u0e40\u0e15\u0e35\u0e22\u0e19", + "sdc": "\u0e0b\u0e32\u0e23\u0e4c\u0e14\u0e34\u0e40\u0e19\u0e35\u0e22\u0e0b\u0e32\u0e2a\u0e0b\u0e32\u0e23\u0e35", + "sc": "\u0e0b\u0e32\u0e23\u0e4c\u0e40\u0e14\u0e0d\u0e32", + "dje": "\u0e0b\u0e32\u0e23\u0e4c\u0e21\u0e32", + "sah": "\u0e0b\u0e32\u0e2e\u0e32", + "ssy": "\u0e0b\u0e32\u0e42\u0e2e", + "scn": "\u0e0b\u0e34\u0e0b\u0e34\u0e25\u0e35", + "sid": "\u0e0b\u0e34\u0e14\u0e32\u0e42\u0e21", + "tsi": "\u0e0b\u0e34\u0e21\u0e0a\u0e35\u0e41\u0e2d\u0e19", + "ts": "\u0e0b\u0e34\u0e34\u0e15\u0e0b\u0e2d\u0e07\u0e01\u0e32", + "syr": "\u0e0b\u0e35\u0e40\u0e23\u0e35\u0e22", + "syc": "\u0e0b\u0e35\u0e40\u0e23\u0e35\u0e22\u0e41\u0e1a\u0e1a\u0e14\u0e31\u0e49\u0e07\u0e40\u0e14\u0e34\u0e21", + "su": "\u0e0b\u0e38\u0e19\u0e14\u0e32", + "suk": "\u0e0b\u0e39\u0e04\u0e39\u0e21\u0e32", + "sus": "\u0e0b\u0e39\u0e0b\u0e39", + "zun": "\u0e0b\u0e39\u0e19\u0e34", + "sux": "\u0e0b\u0e39\u0e40\u0e21\u0e2d", + "srn": "\u0e0b\u0e39\u0e23\u0e34\u0e19\u0e32\u0e40\u0e21", + "zu": "\u0e0b\u0e39\u0e25\u0e39", + "seh": "\u0e40\u0e0b\u0e19\u0e32", + "zen": "\u0e40\u0e0b\u0e19\u0e32\u0e01\u0e32", + "see": "\u0e40\u0e0b\u0e19\u0e34\u0e01\u0e32", + "ceb": "\u0e40\u0e0b\u0e1a\u0e39", + "sei": "\u0e40\u0e0b\u0e23\u0e35", + "srr": "\u0e40\u0e0b\u0e41\u0e23\u0e23\u0e4c", + "sel": "\u0e40\u0e0b\u0e25\u0e04\u0e38\u0e1b", + "sly": "\u0e40\u0e0b\u0e25\u0e32\u0e22\u0e32\u0e23\u0e4c", + "zea": "\u0e40\u0e0b\u0e41\u0e25\u0e19\u0e14\u0e4c", + "sr": "\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e40\u0e1a\u0e35\u0e22", + "sh": "\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e42\u0e1a-\u0e42\u0e04\u0e23\u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22", + "tkr": "\u0e41\u0e0b\u0e04\u0e40\u0e0b\u0e2d\u0e23\u0e4c", + "sbp": "\u0e41\u0e0b\u0e07\u0e01\u0e39", + "sg": "\u0e41\u0e0b\u0e07\u0e42\u0e01", + "saq": "\u0e41\u0e0b\u0e21\u0e1a\u0e39\u0e23\u0e39", + "xog": "\u0e42\u0e0b\u0e01\u0e32", + "st": "\u0e42\u0e0b\u0e42\u0e17\u0e43\u0e15\u0e49", + "nso": "\u0e42\u0e0b\u0e42\u0e17\u0e40\u0e2b\u0e19\u0e37\u0e2d", + "snk": "\u0e42\u0e0b\u0e19\u0e35\u0e19\u0e40\u0e01", + "so": "\u0e42\u0e0b\u0e21\u0e32\u0e25\u0e35", + "szl": "\u0e44\u0e0b\u0e25\u0e35\u0e40\u0e0b\u0e35\u0e22", + "sli": "\u0e44\u0e0b\u0e25\u0e35\u0e40\u0e0b\u0e35\u0e22\u0e15\u0e2d\u0e19\u0e25\u0e48\u0e32\u0e07", + "ja": "\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19", + "doi": "\u0e42\u0e11\u0e04\u0e23\u0e35", + "ng": "\u0e14\u0e2d\u0e07\u0e01\u0e32", + "nl": "\u0e14\u0e31\u0e15\u0e0a\u0e4c", + "dum": "\u0e14\u0e31\u0e15\u0e0a\u0e4c\u0e01\u0e25\u0e32\u0e07", + "dua": "\u0e14\u0e31\u0e27\u0e25\u0e32", + "dak": "\u0e14\u0e32\u0e42\u0e01\u0e17\u0e32", + "dzg": "\u0e14\u0e32\u0e0b\u0e32\u0e01\u0e32", + "dar": "\u0e14\u0e32\u0e23\u0e4c\u0e01\u0e34\u0e19", + "gbz": "\u0e14\u0e32\u0e23\u0e35\u0e42\u0e0b\u0e42\u0e23\u0e2d\u0e31\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c", + "din": "\u0e14\u0e34\u0e07\u0e01\u0e32", + "dyu": "\u0e14\u0e34\u0e27\u0e25\u0e32", + "dtp": "\u0e14\u0e39\u0e0b\u0e38\u0e19\u0e01\u0e25\u0e32\u0e07", + "da": "\u0e40\u0e14\u0e19\u0e21\u0e32\u0e23\u0e4c\u0e01", + "del": "\u0e40\u0e14\u0e25\u0e32\u0e41\u0e27\u0e23\u0e4c", + "dgr": "\u0e42\u0e14\u0e01\u0e23\u0e34\u0e1a", + "to": "\u0e15\u0e2d\u0e07\u0e01\u0e32", + "ttt": "\u0e15\u0e31\u0e15\u0e21\u0e38\u0e2a\u0e25\u0e34\u0e21", + "twq": "\u0e15\u0e31\u0e2a\u0e0b\u0e32\u0e27\u0e31\u0e04", + "tl": "\u0e15\u0e32\u0e01\u0e32\u0e25\u0e47\u0e2d\u0e01", + "tt": "\u0e15\u0e32\u0e15\u0e32\u0e23\u0e4c", + "ty": "\u0e15\u0e32\u0e2e\u0e34\u0e15\u0e35", + "ti": "\u0e15\u0e34\u0e01\u0e23\u0e34\u0e0d\u0e0d\u0e32", + "tig": "\u0e15\u0e35\u0e40\u0e01\u0e23", + "tr": "\u0e15\u0e38\u0e23\u0e01\u0e35", + "crh": "\u0e15\u0e38\u0e23\u0e01\u0e35\u0e44\u0e04\u0e23\u0e40\u0e21\u0e35\u0e22", + "ota": "\u0e15\u0e38\u0e23\u0e01\u0e35\u0e2d\u0e2d\u0e15\u0e42\u0e15\u0e21\u0e31\u0e19", + "tru": "\u0e15\u0e39\u0e42\u0e23\u0e42\u0e22", + "tcy": "\u0e15\u0e39\u0e25\u0e39", + "tyv": "\u0e15\u0e39\u0e27\u0e32", + "tvl": "\u0e15\u0e39\u0e27\u0e32\u0e25\u0e39", + "teo": "\u0e40\u0e15\u0e42\u0e0b", + "tet": "\u0e40\u0e15\u0e15\u0e38\u0e21", + "te": "\u0e40\u0e15\u0e25\u0e39\u0e01\u0e39", + "tk": "\u0e40\u0e15\u0e34\u0e23\u0e4c\u0e01\u0e40\u0e21\u0e19\u0e34\u0e2a\u0e16\u0e32\u0e19", + "tkl": "\u0e42\u0e15\u0e40\u0e01\u0e40\u0e25\u0e32", + "ta": "\u0e17\u0e21\u0e34\u0e2c", + "tli": "\u0e17\u0e25\u0e34\u0e07\u0e01\u0e34\u0e15", + "tw": "\u0e17\u0e27\u0e34", + "tpi": "\u0e17\u0e47\u0e2d\u0e01\u0e1e\u0e34\u0e0b\u0e34\u0e19", + "tg": "\u0e17\u0e32\u0e08\u0e34\u0e01", + "shi": "\u0e17\u0e32\u0e40\u0e0a\u0e25\u0e35\u0e2b\u0e4c\u0e17", + "tmh": "\u0e17\u0e32\u0e21\u0e32\u0e40\u0e0a\u0e01", + "zgh": "\u0e17\u0e32\u0e21\u0e32\u0e44\u0e0b\u0e15\u0e4c\u0e42\u0e21\u0e23\u0e47\u0e2d\u0e01\u0e42\u0e01\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19", + "tzm": "\u0e17\u0e32\u0e21\u0e32\u0e44\u0e0b\u0e15\u0e4c\u0e41\u0e2d\u0e15\u0e25\u0e32\u0e2a\u0e01\u0e25\u0e32\u0e07", + "trv": "\u0e17\u0e32\u0e42\u0e23\u0e42\u0e01", + "tly": "\u0e17\u0e32\u0e25\u0e34\u0e0a", + "bo": "\u0e17\u0e34\u0e40\u0e1a\u0e15", + "tiv": "\u0e17\u0e34\u0e1f", + "tem": "\u0e17\u0e34\u0e21\u0e40\u0e19", + "kcg": "\u0e17\u0e35\u0e41\u0e22\u0e1b", + "tum": "\u0e17\u0e38\u0e21\u0e1a\u0e39\u0e01\u0e32", + "ter": "\u0e40\u0e17\u0e40\u0e23\u0e42\u0e19", + "dav": "\u0e44\u0e17\u0e17\u0e32", + "th": "\u0e44\u0e17\u0e22", + "shn": "\u0e44\u0e17\u0e43\u0e2b\u0e0d\u0e48", + "dv": "\u0e18\u0e34\u0e40\u0e27\u0e2b\u0e34", + "nzi": "\u0e19\u0e0b\u0e34\u0e21\u0e32", + "no": "\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e27\u0e22\u0e4c", + "nn": "\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e27\u0e22\u0e4c\u0e19\u0e35\u0e19\u0e2d\u0e2a\u0e01\u0e4c", + "nb": "\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e27\u0e22\u0e4c\u0e1a\u0e38\u0e04\u0e21\u0e2d\u0e25", + "non": "\u0e19\u0e2d\u0e23\u0e4c\u0e2a\u0e42\u0e1a\u0e23\u0e32\u0e13", + "nap": "\u0e19\u0e32\u0e42\u0e1b\u0e25\u0e35", + "naq": "\u0e19\u0e32\u0e21\u0e32", + "nv": "\u0e19\u0e32\u0e27\u0e32\u0e42\u0e2e", + "na": "\u0e19\u0e32\u0e2d\u0e39\u0e23\u0e39", + "nyo": "\u0e19\u0e34\u0e42\u0e2d\u0e42\u0e23", + "nia": "\u0e19\u0e35\u0e2d\u0e31\u0e2a", + "niu": "\u0e19\u0e35\u0e2d\u0e39", + "ne": "\u0e40\u0e19\u0e1b\u0e32\u0e25", + "new": "\u0e40\u0e19\u0e27\u0e32\u0e23\u0e4c", + "nwc": "\u0e40\u0e19\u0e27\u0e32\u0e23\u0e4c\u0e14\u0e31\u0e49\u0e07\u0e40\u0e14\u0e34\u0e21", + "nyn": "\u0e40\u0e19\u0e35\u0e22\u0e19\u0e42\u0e01\u0e40\u0e25", + "ny": "\u0e40\u0e19\u0e35\u0e22\u0e19\u0e08\u0e32", + "nym": "\u0e40\u0e19\u0e35\u0e22\u0e21\u0e40\u0e27\u0e0b\u0e35", + "nus": "\u0e40\u0e19\u0e37\u0e2d\u0e23\u0e4c", + "nog": "\u0e42\u0e19\u0e44\u0e01", + "nov": "\u0e42\u0e19\u0e40\u0e27\u0e35\u0e22\u0e25", + "tog": "\u0e44\u0e19\u0e2d\u0e30\u0e0b\u0e32\u0e15\u0e2d\u0e07\u0e01\u0e32", + "brh": "\u0e1a\u0e23\u0e32\u0e2e\u0e38\u0e22", + "byn": "\u0e1a\u0e25\u0e34\u0e19", + "zbl": "\u0e1a\u0e25\u0e34\u0e2a\u0e0b\u0e34\u0e21\u0e42\u0e1a\u0e25\u0e2a\u0e4c", + "tn": "\u0e1a\u0e2d\u0e15\u0e2a\u0e27\u0e32\u0e19\u0e32", + "bs": "\u0e1a\u0e2d\u0e2a\u0e40\u0e19\u0e35\u0e22", + "bqi": "\u0e1a\u0e31\u0e01\u0e15\u0e34\u0e22\u0e32\u0e23\u0e35", + "ba": "\u0e1a\u0e31\u0e0a\u0e04\u0e35\u0e23\u0e4c", + "bjn": "\u0e1a\u0e31\u0e19\u0e08\u0e32\u0e23\u0e4c", + "bm": "\u0e1a\u0e31\u0e21\u0e1a\u0e32\u0e23\u0e32", + "bg": "\u0e1a\u0e31\u0e25\u0e41\u0e01\u0e40\u0e23\u0e35\u0e22", + "eu": "\u0e1a\u0e31\u0e2a\u0e40\u0e01", + "bbc": "\u0e1a\u0e32\u0e15\u0e31\u0e01\u0e42\u0e17\u0e1a\u0e32", + "bfd": "\u0e1a\u0e32\u0e1f\u0e31\u0e15", + "ksf": "\u0e1a\u0e32\u0e40\u0e1f\u0e35\u0e22", + "bax": "\u0e1a\u0e32\u0e21\u0e31\u0e19", + "pi": "\u0e1a\u0e32\u0e25\u0e35", + "bal": "\u0e1a\u0e32\u0e25\u0e39\u0e0a\u0e34", + "bar": "\u0e1a\u0e32\u0e27\u0e32\u0e40\u0e23\u0e35\u0e22", + "bas": "\u0e1a\u0e32\u0e2a\u0e32", + "ban": "\u0e1a\u0e32\u0e2b\u0e25\u0e35", + "bik": "\u0e1a\u0e34\u0e01\u0e2d\u0e25", + "bin": "\u0e1a\u0e34\u0e19\u0e35", + "bi": "\u0e1a\u0e34\u0e2a\u0e25\u0e32\u0e21\u0e32", + "rn": "\u0e1a\u0e38\u0e23\u0e38\u0e19\u0e14\u0e35", + "bug": "\u0e1a\u0e39\u0e01\u0e34\u0e2a", + "bua": "\u0e1a\u0e39\u0e40\u0e23\u0e35\u0e22\u0e15", + "bum": "\u0e1a\u0e39\u0e25\u0e39", + "bn": "\u0e40\u0e1a\u0e07\u0e01\u0e32\u0e25\u0e35", + "bej": "\u0e40\u0e1a\u0e08\u0e32", + "bew": "\u0e40\u0e1a\u0e15\u0e32\u0e27\u0e35", + "bez": "\u0e40\u0e1a\u0e19\u0e32", + "bem": "\u0e40\u0e1a\u0e21\u0e1a\u0e32", + "br": "\u0e40\u0e1a\u0e23\u0e15\u0e31\u0e19", + "be": "\u0e40\u0e1a\u0e25\u0e32\u0e23\u0e38\u0e2a", + "prg": "\u0e1b\u0e23\u0e31\u0e2a\u0e40\u0e0b\u0e35\u0e22", + "pal": "\u0e1b\u0e30\u0e2b\u0e4c\u0e25\u0e32\u0e27\u0e35", + "pa": "\u0e1b\u0e31\u0e0d\u0e08\u0e32\u0e1a", + "pam": "\u0e1b\u0e31\u0e21\u0e1b\u0e32\u0e07\u0e32", + "pag": "\u0e1b\u0e32\u0e07\u0e32\u0e0b\u0e35\u0e19\u0e31\u0e19", + "pap": "\u0e1b\u0e32\u0e40\u0e1b\u0e35\u0e22\u0e40\u0e21\u0e19\u0e42\u0e15", + "pau": "\u0e1b\u0e32\u0e40\u0e25\u0e32", + "pcd": "\u0e1b\u0e34\u0e01\u0e32\u0e23\u0e4c", + "fa": "\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e35\u0e22", + "peo": "\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e35\u0e22\u0e42\u0e1a\u0e23\u0e32\u0e13", + "pt": "\u0e42\u0e1b\u0e23\u0e15\u0e38\u0e40\u0e01\u0e2a", + "pt_BR": "\u0e42\u0e1b\u0e23\u0e15\u0e38\u0e40\u0e01\u0e2a - \u0e1a\u0e23\u0e32\u0e0b\u0e34\u0e25", + "pt_PT": "\u0e42\u0e1b\u0e23\u0e15\u0e38\u0e40\u0e01\u0e2a - \u0e22\u0e38\u0e42\u0e23\u0e1b", + "pro": "\u0e42\u0e1b\u0e23\u0e27\u0e2d\u0e07\u0e0b\u0e32\u0e25\u0e42\u0e1a\u0e23\u0e32\u0e13", + "pl": "\u0e42\u0e1b\u0e41\u0e25\u0e19\u0e14\u0e4c", + "fr": "\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a", + "frm": "\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a\u0e01\u0e25\u0e32\u0e07", + "frc": "\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a\u0e01\u0e32\u0e0c\u0e47\u0e2d\u0e07", + "fro": "\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a\u0e42\u0e1a\u0e23\u0e32\u0e13", + "fr_CH": "\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a (\u0e2a\u0e27\u0e34\u0e2a)", + "bfq": "\u0e1e\u0e17\u0e04\u0e30", + "my": "\u0e1e\u0e21\u0e48\u0e32", + "pnt": "\u0e1e\u0e2d\u0e19\u0e15\u0e34\u0e01", + "pon": "\u0e1e\u0e2d\u0e2b\u0e4c\u0e19\u0e40\u0e1e", + "bra": "\u0e1e\u0e31\u0e23\u0e0a", + "ps": "\u0e1e\u0e32\u0e0a\u0e15\u0e39", + "bpy": "\u0e1e\u0e34\u0e28\u0e19\u0e38\u0e1b\u0e23\u0e34\u0e22\u0e30", + "pms": "\u0e1e\u0e35\u0e14\u0e21\u0e2d\u0e19\u0e15\u0e4c", + "pdt": "\u0e40\u0e1e\u0e25\u0e32\u0e17\u0e4c\u0e14\u0e34\u0e0a", + "brx": "\u0e42\u0e1e\u0e42\u0e11", + "gur": "\u0e1f\u0e23\u0e32\u0e1f\u0e23\u0e32", + "fy": "\u0e1f\u0e23\u0e34\u0e40\u0e0b\u0e35\u0e22\u0e19\u0e15\u0e30\u0e27\u0e31\u0e19\u0e15\u0e01", + "frs": "\u0e1f\u0e23\u0e34\u0e40\u0e0b\u0e35\u0e22\u0e19\u0e15\u0e30\u0e27\u0e31\u0e19\u0e2d\u0e2d\u0e01", + "frr": "\u0e1f\u0e23\u0e34\u0e40\u0e0b\u0e35\u0e22\u0e19\u0e40\u0e2b\u0e19\u0e37\u0e2d", + "stq": "\u0e1f\u0e23\u0e35\u0e40\u0e0b\u0e35\u0e22\u0e19\u0e0b\u0e31\u0e17\u0e40\u0e18\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c", + "fur": "\u0e1f\u0e23\u0e39\u0e25\u0e35", + "fan": "\u0e1f\u0e2d\u0e07", + "fon": "\u0e1f\u0e2d\u0e19", + "fat": "\u0e1f\u0e31\u0e19\u0e15\u0e34", + "fj": "\u0e1f\u0e34\u0e08\u0e34", + "fi": "\u0e1f\u0e34\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c", + "fit": "\u0e1f\u0e34\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c\u0e17\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e14\u0e32\u0e40\u0e25\u0e47\u0e19", + "phn": "\u0e1f\u0e34\u0e19\u0e34\u0e40\u0e0a\u0e35\u0e22", + "fil": "\u0e1f\u0e34\u0e25\u0e34\u0e1b\u0e1b\u0e34\u0e19\u0e2a\u0e4c", + "ff": "\u0e1f\u0e39\u0e25\u0e32\u0e2e\u0e4c", + "nl_BE": "\u0e40\u0e1f\u0e25\u0e21\u0e34\u0e0a", + "vls": "\u0e40\u0e1f\u0e25\u0e21\u0e34\u0e0a\u0e15\u0e30\u0e27\u0e31\u0e19\u0e15\u0e01", + "fo": "\u0e41\u0e1f\u0e42\u0e23", + "und": "\u0e20\u0e32\u0e29\u0e32\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01", + "ase": "\u0e20\u0e32\u0e29\u0e32\u0e21\u0e37\u0e2d\u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e31\u0e19", + "bho": "\u0e42\u0e20\u0e0a\u0e1b\u0e38\u0e23\u0e35", + "mag": "\u0e21\u0e04\u0e2b\u0e35", + "hmn": "\u0e21\u0e49\u0e07", + "mni": "\u0e21\u0e13\u0e35\u0e1b\u0e38\u0e23\u0e30", + "mye": "\u0e21\u0e22\u0e35\u0e19", + "mr": "\u0e21\u0e23\u0e32\u0e10\u0e35", + "mdf": "\u0e21\u0e2d\u0e04\u0e0a\u0e32", + "lol": "\u0e21\u0e2d\u0e07\u0e42\u0e01", + "mn": "\u0e21\u0e2d\u0e07\u0e42\u0e01\u0e40\u0e25\u0e35\u0e22", + "mfe": "\u0e21\u0e2d\u0e23\u0e34\u0e2a\u0e40\u0e22\u0e19", + "ro_MD": "\u0e21\u0e2d\u0e25\u0e42\u0e14\u0e27\u0e32", + "mt": "\u0e21\u0e2d\u0e25\u0e15\u0e32", + "mua": "\u0e21\u0e31\u0e19\u0e14\u0e31\u0e07", + "man": "\u0e21\u0e31\u0e19\u0e14\u0e34\u0e07\u0e01\u0e32", + "mgh": "\u0e21\u0e32\u0e01\u0e31\u0e27\u0e27\u0e32-\u0e21\u0e35\u0e17\u0e42\u0e17", + "mak": "\u0e21\u0e32\u0e01\u0e32\u0e0b\u0e32\u0e23\u0e4c", + "kde": "\u0e21\u0e32\u0e04\u0e2d\u0e19\u0e40\u0e14", + "jmc": "\u0e21\u0e32\u0e0a\u0e32\u0e40\u0e21", + "mzn": "\u0e21\u0e32\u0e0b\u0e31\u0e19\u0e14\u0e32\u0e23\u0e32\u0e19\u0e35", + "mk": "\u0e21\u0e32\u0e0b\u0e34\u0e42\u0e14\u0e40\u0e19\u0e35\u0e22", + "mas": "\u0e21\u0e32\u0e44\u0e0b", + "mad": "\u0e21\u0e32\u0e14\u0e39\u0e23\u0e32", + "gv": "\u0e21\u0e32\u0e19\u0e0b\u0e4c", + "mdr": "\u0e21\u0e32\u0e19\u0e14\u0e32\u0e23\u0e4c", + "mde": "\u0e21\u0e32\u0e1a\u0e32", + "maf": "\u0e21\u0e32\u0e1f\u0e32", + "mh": "\u0e21\u0e32\u0e23\u0e4c\u0e41\u0e0a\u0e25\u0e25\u0e34\u0e2a", + "mwr": "\u0e21\u0e32\u0e23\u0e27\u0e32\u0e11\u0e35", + "chm": "\u0e21\u0e32\u0e23\u0e35", + "mrj": "\u0e21\u0e32\u0e23\u0e35\u0e15\u0e30\u0e27\u0e31\u0e19\u0e15\u0e01", + "mg": "\u0e21\u0e32\u0e25\u0e32\u0e01\u0e32\u0e0b\u0e35", + "ml": "\u0e21\u0e32\u0e25\u0e32\u0e22\u0e32\u0e25\u0e31\u0e21", + "ms": "\u0e21\u0e32\u0e40\u0e25\u0e22\u0e4c", + "mic": "\u0e21\u0e34\u0e01\u0e41\u0e21\u0e01", + "min": "\u0e21\u0e35\u0e19\u0e31\u0e07\u0e01\u0e32\u0e40\u0e1a\u0e32", + "mwl": "\u0e21\u0e35\u0e23\u0e31\u0e19\u0e14\u0e32", + "xmf": "\u0e40\u0e21\u0e40\u0e01\u0e23\u0e40\u0e25\u0e35\u0e22", + "byv": "\u0e40\u0e21\u0e14\u0e38\u0e21\u0e1a\u0e32", + "mgo": "\u0e40\u0e21\u0e15\u0e32", + "men": "\u0e40\u0e21\u0e19\u0e40\u0e14", + "mwv": "\u0e40\u0e21\u0e47\u0e19\u0e15\u0e32\u0e44\u0e27", + "vmf": "\u0e40\u0e21\u0e19-\u0e1f\u0e23\u0e32\u0e19\u0e42\u0e01\u0e40\u0e19\u0e35\u0e22", + "mer": "\u0e40\u0e21\u0e23\u0e39", + "mi": "\u0e40\u0e21\u0e32\u0e23\u0e35", + "mnc": "\u0e41\u0e21\u0e19\u0e08\u0e39", + "mos": "\u0e42\u0e21\u0e0b\u0e35", + "moh": "\u0e42\u0e21\u0e2e\u0e2d\u0e27\u0e4c\u0e01", + "mai": "\u0e44\u0e21\u0e16\u0e34\u0e25\u0e35", + "zxx": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e20\u0e32\u0e29\u0e32", + "yap": "\u0e22\u0e31\u0e1b", + "yi": "\u0e22\u0e34\u0e27", + "jpr": "\u0e22\u0e34\u0e27-\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e35\u0e22", + "jrb": "\u0e22\u0e34\u0e27-\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a", + "lg": "\u0e22\u0e39\u0e01\u0e31\u0e19\u0e14\u0e32", + "uga": "\u0e22\u0e39\u0e01\u0e32\u0e23\u0e34\u0e15", + "uk": "\u0e22\u0e39\u0e40\u0e04\u0e23\u0e19", + "esu": "\u0e22\u0e39\u0e1e\u0e34\u0e01\u0e01\u0e25\u0e32\u0e07", + "ybb": "\u0e40\u0e22\u0e21\u0e1a\u0e32", + "de": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19", + "nds": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e15\u0e48\u0e33 - \u0e41\u0e0b\u0e01\u0e0b\u0e2d\u0e19\u0e15\u0e48\u0e33", + "pfl": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e1e\u0e32\u0e25\u0e32\u0e17\u0e34\u0e40\u0e19\u0e15", + "pdc": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e40\u0e1e\u0e19\u0e0b\u0e34\u0e25\u0e40\u0e27\u0e40\u0e19\u0e35\u0e22", + "gsw": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e2a\u0e27\u0e34\u0e2a", + "gmh": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e2a\u0e39\u0e07\u0e01\u0e25\u0e32\u0e07", + "goh": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e2a\u0e39\u0e07\u0e42\u0e1a\u0e23\u0e32\u0e13", + "de_CH": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19\u0e2a\u0e39\u0e07 (\u0e2a\u0e27\u0e34\u0e2a)", + "de_AT": "\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19 - \u0e2d\u0e2d\u0e2a\u0e40\u0e15\u0e23\u0e35\u0e22", + "yao": "\u0e40\u0e22\u0e49\u0e32", + "yav": "\u0e41\u0e22\u0e07\u0e40\u0e1a\u0e19", + "yo": "\u0e42\u0e22\u0e23\u0e39\u0e1a\u0e32", + "rw": "\u0e23\u0e27\u0e31\u0e19\u0e14\u0e32", + "rwk": "\u0e23\u0e27\u0e32", + "rof": "\u0e23\u0e2d\u0e21\u0e42\u0e1a", + "ru": "\u0e23\u0e31\u0e2a\u0e40\u0e0b\u0e35\u0e22", + "raj": "\u0e23\u0e32\u0e0a\u0e2a\u0e16\u0e32\u0e19", + "rap": "\u0e23\u0e32\u0e1b\u0e32\u0e19\u0e39", + "rar": "\u0e23\u0e32\u0e42\u0e23\u0e17\u0e2d\u0e07\u0e01\u0e32", + "rif": "\u0e23\u0e34\u0e1f\u0e1f\u0e34\u0e2d\u0e31\u0e19", + "rue": "\u0e23\u0e39\u0e0b\u0e34\u0e19", + "root": "\u0e23\u0e39\u0e17", + "rtm": "\u0e42\u0e23\u0e17\u0e39\u0e21\u0e31\u0e19", + "rgn": "\u0e42\u0e23\u0e21\u0e31\u0e13\u0e42\u0e0d", + "rom": "\u0e42\u0e23\u0e21\u0e32\u0e19\u0e35", + "ro": "\u0e42\u0e23\u0e21\u0e32\u0e40\u0e19\u0e35\u0e22", + "rm": "\u0e42\u0e23\u0e41\u0e21\u0e19\u0e0b\u0e4c", + "rug": "\u0e42\u0e23\u0e40\u0e27\u0e35\u0e22\u0e19\u0e32", + "lmo": "\u0e25\u0e2d\u0e21\u0e1a\u0e32\u0e23\u0e4c\u0e14", + "la": "\u0e25\u0e30\u0e15\u0e34\u0e19", + "lb": "\u0e25\u0e31\u0e01\u0e40\u0e0b\u0e21\u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e01", + "ltg": "\u0e25\u0e31\u0e15\u0e40\u0e01\u0e25", + "lv": "\u0e25\u0e31\u0e15\u0e40\u0e27\u0e35\u0e22", + "lun": "\u0e25\u0e31\u0e19\u0e14\u0e32", + "luo": "\u0e25\u0e31\u0e27", + "lkt": "\u0e25\u0e32\u0e42\u0e01\u0e15\u0e32", + "lad": "\u0e25\u0e32\u0e14\u0e34\u0e42\u0e19", + "lo": "\u0e25\u0e32\u0e27", + "lah": "\u0e25\u0e32\u0e2e\u0e4c\u0e19\u0e14\u0e32", + "lij": "\u0e25\u0e34\u0e01\u0e39\u0e40\u0e23\u0e35\u0e22", + "lfn": "\u0e25\u0e34\u0e07\u0e01\u0e31\u0e27\u0e1f\u0e23\u0e31\u0e07\u0e01\u0e32\u0e42\u0e19\u0e27\u0e32", + "ln": "\u0e25\u0e34\u0e07\u0e01\u0e32\u0e25\u0e32", + "lt": "\u0e25\u0e34\u0e17\u0e31\u0e27\u0e40\u0e19\u0e35\u0e22", + "li": "\u0e25\u0e34\u0e21\u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e01", + "liv": "\u0e25\u0e34\u0e42\u0e27\u0e40\u0e19\u0e35\u0e22", + "lui": "\u0e25\u0e38\u0e22\u0e40\u0e0b\u0e42\u0e19", + "lus": "\u0e25\u0e39\u0e44\u0e0a", + "lu": "\u0e25\u0e39\u0e1a\u0e32-\u0e01\u0e32\u0e15\u0e2d\u0e07\u0e01\u0e32", + "lua": "\u0e25\u0e39\u0e1a\u0e32-\u0e25\u0e39\u0e25\u0e31\u0e27", + "luy": "\u0e25\u0e39\u0e40\u0e22\u0e35\u0e22", + "lez": "\u0e40\u0e25\u0e0b\u0e40\u0e01\u0e35\u0e22\u0e19", + "lzz": "\u0e41\u0e25\u0e0b", + "lag": "\u0e41\u0e25\u0e19\u0e08\u0e35", + "lam": "\u0e41\u0e25\u0e21\u0e1a\u0e32", + "jbo": "\u0e42\u0e25\u0e0a\u0e1a\u0e31\u0e19", + "loz": "\u0e42\u0e25\u0e0b\u0e34", + "wae": "\u0e27\u0e31\u0e25\u0e40\u0e0b\u0e2d\u0e23\u0e4c", + "was": "\u0e27\u0e32\u0e42\u0e0a", + "guc": "\u0e27\u0e32\u0e22\u0e39", + "war": "\u0e27\u0e32\u0e40\u0e23\u0e22\u0e4c", + "wal": "\u0e27\u0e32\u0e25\u0e32\u0e42\u0e21", + "wa": "\u0e27\u0e32\u0e42\u0e25\u0e19\u0e35", + "vun": "\u0e27\u0e38\u0e19\u0e08\u0e39", + "ve": "\u0e40\u0e27\u0e19\u0e14\u0e32", + "vec": "\u0e40\u0e27\u0e40\u0e19\u0e42\u0e15\u0e49", + "vep": "\u0e40\u0e27\u0e1b\u0e2a\u0e4c", + "cy": "\u0e40\u0e27\u0e25\u0e2a\u0e4c", + "vi": "\u0e40\u0e27\u0e35\u0e22\u0e14\u0e19\u0e32\u0e21", + "vot": "\u0e42\u0e27\u0e17\u0e34\u0e01", + "vro": "\u0e42\u0e27\u0e42\u0e23", + "wo": "\u0e42\u0e27\u0e25\u0e2d\u0e1f", + "vo": "\u0e42\u0e27\u0e25\u0e32\u0e1e\u0e36\u0e04", + "vai": "\u0e44\u0e27", + "sco": "\u0e2a\u0e01\u0e2d\u0e15\u0e2a\u0e4c", + "gd": "\u0e2a\u0e01\u0e2d\u0e15\u0e2a\u0e4c\u0e01\u0e32\u0e25\u0e34\u0e01", + "es": "\u0e2a\u0e40\u0e1b\u0e19", + "es_ES": "\u0e2a\u0e40\u0e1b\u0e19 (\u0e22\u0e38\u0e42\u0e23\u0e1b)", + "den": "\u0e2a\u0e40\u0e25\u0e27\u0e35", + "sk": "\u0e2a\u0e42\u0e25\u0e27\u0e31\u0e01", + "sl": "\u0e2a\u0e42\u0e25\u0e27\u0e35\u0e40\u0e19\u0e35\u0e22", + "ss": "\u0e2a\u0e27\u0e32\u0e15\u0e34", + "sw": "\u0e2a\u0e27\u0e32\u0e2e\u0e35\u0e25\u0e35", + "swc": "\u0e2a\u0e27\u0e32\u0e2e\u0e35\u0e25\u0e35-\u0e04\u0e2d\u0e07\u0e42\u0e01", + "sv": "\u0e2a\u0e27\u0e35\u0e40\u0e14\u0e19", + "sat": "\u0e2a\u0e31\u0e19\u0e15\u0e32\u0e25\u0e35", + "sa": "\u0e2a\u0e31\u0e19\u0e2a\u0e01\u0e24\u0e15", + "bla": "\u0e2a\u0e34\u0e01\u0e2a\u0e34\u0e01\u0e32", + "si": "\u0e2a\u0e34\u0e07\u0e2b\u0e25", + "sd": "\u0e2a\u0e34\u0e19\u0e18\u0e38", + "ii": "\u0e40\u0e2a\u0e09\u0e27\u0e19\u0e22\u0e34", + "saz": "\u0e40\u0e2a\u0e32\u0e23\u0e32\u0e29\u0e0f\u0e23\u0e4c", + "mul": "\u0e2b\u0e25\u0e32\u0e22\u0e20\u0e32\u0e29\u0e32", + "yrl": "\u0e40\u0e2b\u0e07\u0e07\u0e01\u0e32\u0e15\u0e38", + "arc": "\u0e2d\u0e23\u0e32\u0e40\u0e21\u0e2d\u0e34\u0e01", + "sam": "\u0e2d\u0e23\u0e32\u0e40\u0e21\u0e2d\u0e34\u0e01\u0e0b\u0e32\u0e21\u0e32\u0e40\u0e23\u0e35\u0e22", + "awa": "\u0e2d\u0e27\u0e18\u0e35", + "ae": "\u0e2d\u0e40\u0e27\u0e2a\u0e15\u0e30", + "oc": "\u0e2d\u0e47\u0e2d\u0e01\u0e0b\u0e34\u0e15\u0e31\u0e19", + "os": "\u0e2d\u0e2d\u0e2a\u0e40\u0e0b\u0e40\u0e15\u0e35\u0e22", + "ady": "\u0e2d\u0e30\u0e14\u0e37\u0e22\u0e40\u0e01", + "aa": "\u0e2d\u0e30\u0e1f\u0e32\u0e23\u0e4c", + "akk": "\u0e2d\u0e31\u0e01\u0e01\u0e32\u0e14", + "agq": "\u0e2d\u0e31\u0e01\u0e40\u0e2e\u0e21", + "en": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29", + "enm": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29\u0e01\u0e25\u0e32\u0e07", + "jam": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29\u0e04\u0e25\u0e35\u0e42\u0e2d\u0e25\u0e08\u0e32\u0e40\u0e21\u0e01\u0e32", + "en_CA": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29 - \u0e41\u0e04\u0e19\u0e32\u0e14\u0e32", + "ang": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29\u0e42\u0e1a\u0e23\u0e32\u0e13", + "en_GB": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29 - \u0e2a\u0e2b\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23", + "en_US": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29 - \u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e31\u0e19", + "en_AU": "\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29 - \u0e2d\u0e2d\u0e2a\u0e40\u0e15\u0e23\u0e40\u0e25\u0e35\u0e22", + "anp": "\u0e2d\u0e31\u0e07\u0e04\u0e34\u0e01\u0e32", + "ab": "\u0e2d\u0e31\u0e1a\u0e04\u0e32\u0e0b", + "am": "\u0e2d\u0e31\u0e21\u0e2e\u0e32\u0e23\u0e32", + "alt": "\u0e2d\u0e31\u0e25\u0e44\u0e15\u0e43\u0e15\u0e49", + "ast": "\u0e2d\u0e31\u0e2a\u0e15\u0e39\u0e40\u0e23\u0e35\u0e22\u0e2a", + "as": "\u0e2d\u0e31\u0e2a\u0e2a\u0e31\u0e21", + "ak": "\u0e2d\u0e32\u0e04\u0e31\u0e19", + "bss": "\u0e2d\u0e32\u0e42\u0e04\u0e0b\u0e35", + "ach": "\u0e2d\u0e32\u0e42\u0e04\u0e25\u0e34", + "ace": "\u0e2d\u0e32\u0e40\u0e08\u0e30\u0e2b\u0e4c", + "asa": "\u0e2d\u0e32\u0e0b\u0e39", + "az": "\u0e2d\u0e32\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e44\u0e1a\u0e08\u0e32\u0e19", + "azb": "\u0e2d\u0e32\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e44\u0e1a\u0e08\u0e32\u0e19\u0e43\u0e15\u0e49", + "ada": "\u0e2d\u0e32\u0e41\u0e14\u0e07\u0e21\u0e35", + "frp": "\u0e2d\u0e32\u0e23\u0e4c\u0e1e\u0e34\u0e15\u0e32", + "hy": "\u0e2d\u0e32\u0e23\u0e4c\u0e40\u0e21\u0e40\u0e19\u0e35\u0e22", + "an": "\u0e2d\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19", + "arp": "\u0e2d\u0e32\u0e23\u0e32\u0e1b\u0e32\u0e42\u0e2e", + "arw": "\u0e2d\u0e32\u0e23\u0e32\u0e27\u0e31\u0e01", + "arn": "\u0e2d\u0e32\u0e40\u0e23\u0e32\u0e04\u0e32\u0e40\u0e19\u0e35\u0e22\u0e19", + "aro": "\u0e2d\u0e32\u0e40\u0e23\u0e32\u0e19\u0e32", + "rup": "\u0e2d\u0e32\u0e42\u0e23\u0e21\u0e32\u0e40\u0e19\u0e35\u0e22\u0e19", + "ale": "\u0e2d\u0e32\u0e25\u0e34\u0e27\u0e15\u0e4c", + "njo": "\u0e2d\u0e4b\u0e32\u0e27\u0e19\u0e32\u0e01\u0e32", + "av": "\u0e2d\u0e32\u0e27\u0e32\u0e23\u0e4c", + "ar": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a", + "shu": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a-\u0e0a\u0e32\u0e14", + "aeb": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e15\u0e39\u0e19\u0e34\u0e40\u0e0b\u0e35\u0e22", + "arz": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e1e\u0e37\u0e49\u0e19\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e2d\u0e35\u0e22\u0e34\u0e1b\u0e15\u0e4c", + "ar_001": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e2a\u0e21\u0e31\u0e22\u0e43\u0e2b\u0e21\u0e48", + "ary": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e42\u0e21\u0e23\u0e47\u0e2d\u0e01\u0e42\u0e01", + "arq": "\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e2d\u0e25\u0e08\u0e35\u0e40\u0e23\u0e35\u0e22", + "ig": "\u0e2d\u0e34\u0e01\u0e42\u0e1a", + "it": "\u0e2d\u0e34\u0e15\u0e32\u0e25\u0e35", + "inh": "\u0e2d\u0e34\u0e19\u0e01\u0e38\u0e0a", + "izh": "\u0e2d\u0e34\u0e19\u0e40\u0e01\u0e23\u0e35\u0e22\u0e19", + "id": "\u0e2d\u0e34\u0e19\u0e42\u0e14\u0e19\u0e35\u0e40\u0e0a\u0e35\u0e22", + "ia": "\u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e25\u0e34\u0e07\u0e01\u0e31\u0e27", + "ie": "\u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e25\u0e34\u0e07\u0e01\u0e34\u0e27", + "iu": "\u0e2d\u0e34\u0e19\u0e38\u0e01\u0e15\u0e34\u0e15\u0e38\u0e15", + "iba": "\u0e2d\u0e34\u0e1a\u0e32\u0e19", + "ibb": "\u0e2d\u0e34\u0e1a\u0e34\u0e1a\u0e34\u0e42\u0e2d", + "eka": "\u0e2d\u0e35\u0e01\u0e32\u0e08\u0e38\u0e01", + "io": "\u0e2d\u0e35\u0e42\u0e14", + "ik": "\u0e2d\u0e35\u0e19\u0e39\u0e40\u0e1b\u0e35\u0e22\u0e01", + "efi": "\u0e2d\u0e35\u0e1f\u0e34\u0e01", + "egy": "\u0e2d\u0e35\u0e22\u0e34\u0e1b\u0e15\u0e4c\u0e42\u0e1a\u0e23\u0e32\u0e13", + "elx": "\u0e2d\u0e35\u0e25\u0e32\u0e44\u0e21\u0e15\u0e4c", + "ilo": "\u0e2d\u0e35\u0e42\u0e25\u0e42\u0e01", + "ewo": "\u0e2d\u0e35\u0e27\u0e31\u0e19\u0e42\u0e14", + "jgo": "\u0e2d\u0e36\u0e19\u0e01\u0e2d\u0e21\u0e1a\u0e32", + "uz": "\u0e2d\u0e38\u0e0b\u0e40\u0e1a\u0e01", + "udm": "\u0e2d\u0e38\u0e14\u0e21\u0e39\u0e23\u0e4c\u0e15", + "umb": "\u0e2d\u0e38\u0e21\u0e1a\u0e38\u0e19\u0e14\u0e39", + "ug": "\u0e2d\u0e38\u0e22\u0e01\u0e31\u0e27", + "ur": "\u0e2d\u0e39\u0e23\u0e14\u0e39", + "ext": "\u0e40\u0e2d\u0e01\u0e0b\u0e4c\u0e40\u0e15\u0e23\u0e21\u0e32\u0e14\u0e39\u0e23\u0e32", + "nqo": "\u0e40\u0e2d\u0e47\u0e19\u0e42\u0e01", + "nr": "\u0e40\u0e2d\u0e47\u0e19\u0e40\u0e14\u0e40\u0e1a\u0e40\u0e25\u0e43\u0e15\u0e49", + "nd": "\u0e40\u0e2d\u0e47\u0e19\u0e40\u0e14\u0e40\u0e1a\u0e40\u0e25\u0e40\u0e2b\u0e19\u0e37\u0e2d", + "ebu": "\u0e40\u0e2d\u0e47\u0e21\u0e1a\u0e39", + "egl": "\u0e40\u0e2d\u0e21\u0e35\u0e40\u0e25\u0e35\u0e22", + "ee": "\u0e40\u0e2d\u0e40\u0e27", + "et": "\u0e40\u0e2d\u0e2a\u0e42\u0e15\u0e40\u0e19\u0e35\u0e22", + "eo": "\u0e40\u0e2d\u0e2a\u0e40\u0e1b\u0e2d\u0e23\u0e31\u0e19\u0e42\u0e15", + "myv": "\u0e40\u0e2d\u0e35\u0e22\u0e23\u0e4c\u0e0b\u0e22\u0e32", + "cch": "\u0e41\u0e2d\u0e15\u0e41\u0e0b\u0e21", + "af": "\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e01\u0e32\u0e19\u0e2a\u0e4c", + "afh": "\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e2e\u0e35\u0e25\u0e35", + "sq": "\u0e41\u0e2d\u0e25\u0e40\u0e1a\u0e40\u0e19\u0e35\u0e22", + "akz": "\u0e41\u0e2d\u0e25\u0e30\u0e41\u0e1a\u0e21\u0e32", + "oj": "\u0e42\u0e2d\u0e08\u0e34\u0e1a\u0e27\u0e32", + "osa": "\u0e42\u0e2d\u0e0b\u0e32\u0e01\u0e35", + "or": "\u0e42\u0e2d\u0e23\u0e34\u0e22\u0e32", + "om": "\u0e42\u0e2d\u0e42\u0e23\u0e42\u0e21", + "is": "\u0e44\u0e2d\u0e0b\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c", + "ain": "\u0e44\u0e2d\u0e19\u0e38", + "ay": "\u0e44\u0e2d\u0e22\u0e4c\u0e21\u0e32\u0e23\u0e32", + "ga": "\u0e44\u0e2d\u0e23\u0e34\u0e0a", + "mga": "\u0e44\u0e2d\u0e23\u0e34\u0e0a\u0e01\u0e25\u0e32\u0e07", + "sga": "\u0e44\u0e2d\u0e23\u0e34\u0e0a\u0e42\u0e1a\u0e23\u0e32\u0e13", + "hu": "\u0e2e\u0e31\u0e07\u0e01\u0e32\u0e23\u0e35", + "haw": "\u0e2e\u0e32\u0e27\u0e32\u0e22", + "hit": "\u0e2e\u0e34\u0e15\u0e44\u0e15\u0e15\u0e4c", + "hi": "\u0e2e\u0e34\u0e19\u0e14\u0e35", + "hif": "\u0e2e\u0e34\u0e19\u0e14\u0e35\u0e1f\u0e34\u0e08\u0e34", + "he": "\u0e2e\u0e34\u0e1a\u0e23\u0e39", + "ho": "\u0e2e\u0e35\u0e23\u0e35\u0e42\u0e21\u0e15\u0e39", + "hil": "\u0e2e\u0e35\u0e25\u0e35\u0e01\u0e31\u0e22\u0e19\u0e19", + "hup": "\u0e2e\u0e39\u0e1b\u0e32", + "ht": "\u0e40\u0e2e\u0e15\u0e34", + "hz": "\u0e40\u0e2e\u0e40\u0e23\u0e42\u0e23", + "ha": "\u0e40\u0e2e\u0e32\u0e0a\u0e32", + "hai": "\u0e44\u0e2e\u0e14\u0e32", + "fr_CA": "Canadian French", + "es_419": "Latin American Spanish", + "es_MX": "Mexican Spanish", + "wbp": "Warlpiri" +} diff --git a/public/intl/language/tr-TR.json b/public/intl/language/tr-TR.json new file mode 100644 index 0000000..f164353 --- /dev/null +++ b/public/intl/language/tr-TR.json @@ -0,0 +1,611 @@ +{ + "ab": "Abhazca", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adigece", + "aa": "Afar", + "afh": "Afrihili", + "af": "Afrikaanca", + "agq": "Aghem", + "akk": "Akad Dili", + "ak": "Akan", + "bss": "Akoose", + "akz": "Alabamaca", + "ale": "Aleut", + "de": "Almanca", + "en_US": "Amerikan \u0130ngilizcesi", + "ase": "Amerikan \u0130\u015faret Dili", + "am": "Amharca", + "anp": "Angika", + "grc": "Antik Yunanca", + "njo": "Ao Naga", + "an": "Aragonca", + "arc": "Aramice", + "aro": "Araona", + "arp": "Arapaho Dili", + "ar": "Arap\u00e7a", + "arn": "Araukanya Dili", + "arw": "Arawak Dili", + "bho": "Arayanice", + "sq": "Arnavut\u00e7a", + "frp": "Arpitanca", + "as": "Assamca", + "ast": "Asturyasca", + "asa": "Asu", + "nds": "A\u015fa\u011f\u0131 Almanca", + "sli": "A\u015fa\u011f\u0131 Silezyaca", + "dsb": "A\u015fa\u011f\u0131 Sorb\u00e7a", + "cch": "Atsam", + "av": "Avar Dili", + "ae": "Avest\u00e7e", + "es_ES": "Avrupa \u0130spanyolcas\u0131", + "pt_PT": "Avrupa Portekizcesi", + "en_AU": "Avustralya \u0130ngilizcesi", + "de_AT": "Avusturya Almancas\u0131", + "awa": "Awadhi", + "ay": "Aymara", + "ain": "Ayni Dili", + "az": "Azerice", + "bfq": "Badaga", + "ksf": "Bafia", + "bfd": "Bafut", + "bqi": "Bahtiyari", + "ban": "Bali Dili", + "bal": "Baluchi", + "bm": "Bambara", + "bax": "Bamun", + "bjn": "Banjar Dili", + "bas": "Basa Dili", + "zh_Hans": "Basitle\u015ftirilmi\u015f \u00c7ince", + "eu": "Bask\u00e7a", + "ba": "Ba\u015fk\u0131rt\u00e7a", + "bbc": "Batak Toba", + "vls": "Bat\u0131 Flamanca", + "fy": "Bat\u0131 Frizcesi", + "bar": "Bavyera Dili", + "bej": "Beja Dili", + "bem": "Bemba", + "bez": "Bena", + "bn": "Bengalce", + "bew": "Betawi", + "be": "Beyaz Rus\u00e7a", + "bik": "Bikol", + "und": "Bilinmeyen Dil", + "bin": "Bini", + "mul": "Birden Fazla Dil", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blis Sembolleri", + "brx": "Bodo", + "bs": "Bo\u015fnak\u00e7a", + "bra": "Braj", + "br": "Bretonca", + "pt_BR": "Brezilya Portekizcesi", + "brh": "Brohice", + "bug": "Bugis", + "bg": "Bulgarca", + "bum": "Bulu", + "my": "Burmaca", + "bua": "Buryat", + "dz": "Butan Dili", + "cad": "Caddo", + "frc": "Cajun Frans\u0131zcas\u0131", + "cps": "Capiznon", + "car": "Carib", + "jv": "Cava Dili", + "cay": "Cayuga", + "ceb": "Cebuano", + "arq": "Cezayir Arap\u00e7as\u0131", + "ch": "Chamorro", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "chk": "Chuukese", + "cr": "Cree", + "mus": "Creek", + "shu": "\u00c7ad Arap\u00e7as\u0131", + "chg": "\u00c7a\u011fatay Dili", + "ce": "\u00c7e\u00e7ence", + "cs": "\u00c7ek\u00e7e", + "chr": "\u00c7erokice", + "zh": "\u00c7ince", + "khw": "\u00c7itral Dili", + "cv": "\u00c7uva\u015f\u00e7a", + "dak": "Dakota", + "da": "Danca", + "dar": "Dargince", + "dzg": "Dazaga", + "del": "Delaware", + "zxx": "Dilbilim i\u00e7eri\u011fi yok", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "frs": "Do\u011fu Frizcesi", + "dua": "Duala", + "dyu": "Dyula", + "lzh": "Edebi \u00c7ince", + "efi": "Efik", + "eka": "Ekajuk", + "ext": "Ekstremadura Dili", + "elx": "Elam", + "ebu": "Embu", + "egl": "Emilia Dili", + "id": "Endonezce", + "hy": "Ermenice", + "myv": "Erzya", + "peo": "Eski Fars\u00e7a", + "fro": "Eski Frans\u0131zca", + "ang": "Eski \u0130ngilizce", + "sga": "Eski \u0130rlandaca", + "egy": "Eski M\u0131s\u0131r Dili", + "non": "Eski Norse", + "pro": "Eski Provensal", + "goh": "Eski Y\u00fcksek Almanca", + "eo": "Esperanto", + "et": "Estonca", + "ee": "Ewe", + "ewo": "Ewondo", + "fan": "Fang", + "fat": "Fanti", + "fo": "Faroe Dili", + "fa": "Fars\u00e7a", + "ary": "Fas Arap\u00e7as\u0131", + "phn": "Fenike Dili", + "fj": "Fiji Dili", + "hif": "Fiji Hint\u00e7esi", + "fil": "Filipince", + "fi": "Fince", + "nl_BE": "Flamanca", + "fon": "Fon", + "gur": "Frafra", + "fr": "Frans\u0131zca", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gag": "Gagavuzca", + "cy": "Galce", + "gl": "Gali\u00e7yaca", + "gan": "Gan \u00c7incesi", + "lg": "Ganda", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "zh_Hant": "Geleneksel \u00c7ince", + "aln": "Gheg Arnavut\u00e7as\u0131", + "bbj": "Ghomala", + "glk": "Gilanice", + "gom": "Goa Konkanicesi", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Got\u00e7a", + "grb": "Grebo", + "kl": "Gr\u00f6nland Dili", + "gn": "Guarani Dili", + "guz": "Gusii", + "gu": "G\u00fccerat\u00e7a", + "alt": "G\u00fcney Altayca", + "azb": "G\u00fcney Azerice", + "nr": "G\u00fcney Ndebele", + "sma": "G\u00fcney Sami", + "st": "G\u00fcney Sotho", + "ka": "G\u00fcrc\u00fcce", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "ht": "Haiti Dili", + "hak": "Hakka \u00c7incesi", + "ha": "Hausa", + "haw": "Hawaii Dili", + "hz": "Herero", + "hr": "H\u0131rvat\u00e7a", + "hil": "Hiligaynon", + "hi": "Hint\u00e7e", + "ho": "Hiri Motu", + "hit": "Hitit\u00e7e", + "hmn": "Hmong", + "nl": "Hollandaca", + "kho": "Hotanca", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "smn": "Inari Sami", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "Inuktitut", + "ik": "Inupiak", + "ig": "\u0130bo Dili", + "he": "\u0130branice", + "en_GB": "\u0130ngiliz \u0130ngilizcesi", + "en": "\u0130ngilizce", + "izh": "\u0130ngriya Dili", + "inh": "\u0130ngu\u015f\u00e7a", + "ga": "\u0130rlandaca", + "gd": "\u0130sko\u00e7 Gal Dili", + "es": "\u0130spanyolca", + "sv": "\u0130sve\u00e7\u00e7e", + "gsw": "\u0130svi\u00e7re Almancas\u0131", + "fr_CH": "\u0130svi\u00e7re Frans\u0131zcas\u0131", + "de_CH": "\u0130svi\u00e7re Y\u00fcksek Almancas\u0131", + "it": "\u0130talyanca", + "is": "\u0130zlandaca", + "jam": "Jamaika Patois Dili", + "ja": "Japonca", + "kaj": "Jju", + "dyo": "Jola-Fonyi", + "kbd": "Kabardeyce", + "kab": "Kabiliyece", + "kea": "Kabuverdianu", + "kac": "Ka\u00e7in", + "kgp": "Kaingang", + "kkj": "Kako", + "kln": "Kalenjin", + "xal": "Kalm\u0131k\u00e7a", + "kam": "Kamba", + "fr_CA": "Kanada Frans\u0131zcas\u0131", + "en_CA": "Kanada \u0130ngilizcesi", + "kbl": "Kanembu", + "kn": "Kannada", + "yue": "Kantonca", + "kr": "Kanuri", + "krc": "Kara\u00e7ay-Balkarca", + "kaa": "Karakalpak\u00e7a", + "krl": "Karelyaca", + "csb": "Kashubian", + "ca": "Katalanca", + "kaw": "Kawi", + "kk": "Kazak\u00e7a", + "qu": "Ke\u00e7uvaca", + "ken": "Kenyang", + "kw": "Kernevek\u00e7e", + "ks": "Ke\u015fmirce", + "kha": "Khasi", + "cop": "K\u0131ptice", + "ky": "K\u0131rg\u0131zca", + "crh": "K\u0131r\u0131m T\u00fcrk\u00e7esi", + "kiu": "K\u0131rman\u00e7\u00e7a", + "quc": "Ki\u00e7ece", + "cgg": "Kigaca", + "ki": "Kikuyu", + "cu": "Kilise Slavcas\u0131", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "Kinyarwanda", + "gil": "Kiribati Dili", + "rn": "Kirundi", + "nwc": "Klasik Nevari", + "syc": "Klasik S\u00fcryanice", + "tlh": "Klingonca", + "km": "Kmerce", + "bkm": "Kom", + "kv": "Komi", + "koi": "Komi-Permyak", + "swb": "Komorca", + "kg": "Kongo", + "swc": "Kongo Svahili", + "kok": "Konkani", + "ko": "Korece", + "kfo": "Koro", + "co": "Korsikaca", + "kos": "Kosraean", + "avk": "Kotava", + "khq": "Koyra Chiini", + "ses": "Koyraboro Senni", + "root": "K\u00f6ken", + "ksh": "K\u00f6ln Diyalekti", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumuk\u00e7a", + "kru": "Kurukh", + "kut": "Kutenai", + "frr": "Kuzey Frizce", + "nd": "Kuzey Ndebele", + "se": "Kuzey Sami", + "nso": "Kuzey Sotho", + "pnt": "Kuzeybat\u0131 Kafkasya", + "ku": "K\u00fcrt\u00e7e", + "nmg": "Kwasio", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "Lakotaca", + "lam": "Lamba", + "lag": "Langi", + "lo": "Laoca", + "ltg": "Latgalian", + "es_419": "Latin Amerika \u0130spanyolcas\u0131", + "la": "Latince", + "lzz": "Lazca", + "pl": "Leh\u00e7e", + "lv": "Letonca", + "lez": "Lezgice", + "lij": "Ligurca", + "li": "Limburgca", + "ln": "Lingala", + "lfn": "Lingua Franca Nova", + "lt": "Litvanyaca", + "liv": "Livonca", + "jbo": "Lojban", + "lmo": "Lombard\u00e7a", + "loz": "Lozi", + "lu": "Luba-Katanga", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo", + "lus": "Lushai", + "luy": "Luyia", + "lb": "L\u00fcksemburgca", + "mde": "Maba", + "hu": "Macarca", + "jmc": "Machame", + "mad": "Madura Dili", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main Frankonya Dili", + "mai": "Maithili", + "mak": "Makasar", + "mk": "Makedonca", + "mgh": "Makhuwa-Meetto", + "kde": "Makonde", + "ml": "Malayalam", + "ms": "Malayca", + "mg": "Malga\u015f\u00e7a", + "mt": "Maltaca", + "mnc": "Man\u00e7urya Dili", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "gv": "Manks", + "mi": "Maori Dili", + "mr": "Marathi", + "chm": "Mari", + "mh": "Marshall Adalar\u0131 Dili", + "mwr": "Marvari", + "mas": "Masai", + "mzn": "Mazenderanca", + "byv": "Medumba", + "xmf": "Megrelce", + "es_MX": "Meksika \u0130spanyolcas\u0131", + "men": "Mende", + "mwv": "Mentawai", + "esu": "Merkezi Yupik\u00e7e", + "mer": "Meru", + "mgo": "Meta\u2019", + "arz": "M\u0131s\u0131r Arap\u00e7as\u0131", + "mic": "Micmac", + "nan": "Min Nan \u00c7incesi", + "min": "Minangkabau", + "mwl": "Miranda Dili", + "ar_001": "Modern Standart Arap\u00e7a", + "mn": "Mo\u011folca", + "moh": "Mohavk Dili", + "mdf": "Mok\u015fa Dili", + "ro_MD": "Moldovaca", + "lol": "Mongo", + "mfe": "Morisyen", + "mos": "Mossi", + "mua": "Mundang", + "mye": "Myene", + "nqo": "N\u2019Ko", + "naq": "Nama", + "nap": "Napolice", + "na": "Nauru Dili", + "nv": "Navaho Dili", + "ng": "Ndonga", + "ne": "Nepalce", + "new": "Nevari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "Ngomba", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogayca", + "no": "Norve\u00e7\u00e7e", + "nb": "Norve\u00e7\u00e7e Bokm\u00e5l", + "nn": "Norve\u00e7\u00e7e Nynorsk", + "nov": "Novial", + "nus": "Nuer", + "nym": "Nyamvezi", + "ny": "Nyanja", + "nyn": "Nyankole", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitan", + "oj": "Ojibva Dili", + "or": "Oriya Dili", + "om": "Oromo", + "tzm": "Orta Fas Tamazigti", + "dtp": "Orta Kadazan", + "ckb": "Orta K\u00fcrt\u00e7e", + "dum": "Orta\u00e7a\u011f Felemenk\u00e7esi", + "frm": "Orta\u00e7a\u011f Frans\u0131zcas\u0131", + "enm": "Orta\u00e7a\u011f \u0130ngilizcesi", + "mga": "Orta\u00e7a\u011f \u0130rlandacas\u0131", + "gmh": "Orta\u00e7a\u011f Y\u00fcksek Almancas\u0131", + "osa": "Osage", + "os": "Oset\u00e7e", + "ota": "Osmanl\u0131 T\u00fcrk\u00e7esi", + "mrj": "Ova \u00c7irmi\u015f\u00e7esi", + "uz": "\u00d6zbek\u00e7e", + "pfl": "Palatin Almancas\u0131", + "pau": "Palau Dili", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pal": "Pehlevi Dili", + "pa": "Pencap\u00e7a", + "pdc": "Pensilvanya Almancas\u0131", + "ps": "Pe\u015ftuca", + "pcd": "Picard Dili", + "pms": "Piyemontece", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pt": "Portekizce", + "prg": "Prusyaca", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Rif Berbericesi", + "rom": "Romanca", + "rm": "Roman\u015f\u00e7a", + "rgn": "Romanyolca", + "rof": "Rombo", + "ro": "Romence", + "rtm": "Rotuman", + "rug": "Roviana", + "ru": "Rus\u00e7a", + "rue": "Rusince", + "rwk": "Rwa", + "ssy": "Saho", + "tkr": "Sahurca", + "sam": "Samarit Aramcas\u0131", + "saq": "Samburu", + "sm": "Samoa Dili", + "sgs": "Samogit\u00e7e", + "sad": "Sandave", + "sg": "Sango", + "sbp": "Sangu", + "sa": "Sanskrit\u00e7e", + "sat": "Santali", + "sc": "Sardunya Dili", + "sas": "Sasak", + "sdc": "Sassari Sarduca", + "stq": "Saterland Frizcesi", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "seh": "Sena", + "see": "Seneca", + "srr": "Serer", + "sei": "Seri", + "tn": "Setsvana", + "si": "Seylanca", + "ksb": "Shambala", + "shn": "Shan Dili", + "sn": "Shona", + "sh": "S\u0131rp-H\u0131rvat Dili", + "sr": "S\u0131rp\u00e7a", + "ii": "Sichuan Yi", + "scn": "Sicilyaca", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silezyaca", + "sd": "Sindhi", + "ss": "Sisvati", + "sms": "Skolt Sami", + "den": "Slavey", + "sk": "Slovak\u00e7a", + "sl": "Slovence", + "xog": "Soga", + "sog": "Sogdiana Dili", + "so": "Somalice", + "snk": "Soninke", + "srn": "Sranan Tongo", + "zgh": "Standart Berberi Dili Tamazight", + "suk": "Sukuma", + "su": "Sunda Dili", + "sus": "Susu", + "sux": "S\u00fcmerce", + "syr": "S\u00fcryanice", + "sw": "Svahili", + "chy": "\u015eayen Dili", + "tg": "Tacik\u00e7e", + "ty": "Tahiti Dili", + "dav": "Taita", + "tl": "Takalot\u00e7a", + "tly": "Tal\u0131\u015f\u00e7a", + "tmh": "Tama\u015fek", + "ta": "Tamilce", + "trv": "Taroko", + "twq": "Tasawaq", + "shi": "Ta\u015felhit", + "tt": "Tatarca", + "ttt": "Tat\u00e7a", + "th": "Tayca", + "te": "Telugu Dili", + "ter": "Tereno", + "teo": "Teso", + "tet": "Tetum", + "bo": "Tibet\u00e7e", + "tig": "Tigre", + "ti": "Tigrinya", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "to": "Tongaca", + "fit": "Tornedalin Fincesi", + "tsd": "Tsakonca", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tcy": "Tuluca", + "tum": "Tumbuka", + "aeb": "Tunus Arap\u00e7as\u0131", + "tru": "Turoyo", + "tyv": "Tuvaca", + "tvl": "Tuvalu", + "tr": "T\u00fcrk\u00e7e", + "tk": "T\u00fcrkmence", + "tw": "Tvi", + "kcg": "Tyap", + "udm": "Udmurt\u00e7a", + "uga": "Ugarit Dili", + "uk": "Ukraynaca", + "rup": "Ulah\u00e7a", + "umb": "Umbundu", + "ur": "Urduca", + "ug": "Uygurca", + "vai": "Vai", + "wal": "Valamo", + "wa": "Valonca", + "war": "Varay", + "was": "Va\u015fo", + "ve": "Venda", + "vec": "Venedik\u00e7e", + "vep": "Veps", + "vi": "Vietnamca", + "vo": "Volap\u00fck", + "wo": "Volof\u00e7a", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "Vunjo", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "wuu": "Wu \u00c7incesi", + "hsn": "Xiang \u00c7incesi", + "jrb": "Yahudi Arap\u00e7as\u0131", + "jpr": "Yahudi Fars\u00e7as\u0131", + "sah": "Yakut\u00e7a", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yap\u00e7a", + "ybb": "Yemba", + "yi": "Yidi\u015f", + "yo": "Yorubaca", + "hsb": "Yukar\u0131 Sorb\u00e7a", + "el": "Yunanca", + "jut": "Yutland Dili", + "zap": "Zapotek Dili", + "dje": "Zarma", + "zza": "Zazaca", + "zea": "Zelandaca", + "zen": "Zenaga", + "gbz": "Zerd\u00fc\u015ft Daricesi", + "za": "Zhuang", + "xh": "Zosa", + "zu": "Zuluca", + "zun": "Zuni" +} diff --git a/public/intl/language/uk-UA.json b/public/intl/language/uk-UA.json new file mode 100644 index 0000000..89526b9 --- /dev/null +++ b/public/intl/language/uk-UA.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0430\u0431\u0445\u0430\u0437\u044c\u043a\u0430", + "awa": "\u0430\u0432\u0430\u0434\u0445\u0456", + "av": "\u0430\u0432\u0430\u0440\u0441\u044c\u043a\u0430", + "ae": "\u0430\u0432\u0435\u0441\u0442\u0456\u0439\u0441\u044c\u043a\u0430", + "agq": "\u0430\u0433\u0435\u043c", + "ada": "\u0430\u0434\u0430\u043d\u0433\u043c\u0435", + "ady": "\u0430\u0434\u0438\u0433\u0435\u0439\u0441\u044c\u043a\u0430", + "az": "\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u044c\u043a\u0430", + "ay": "\u0430\u0439\u043c\u0430\u0440\u0430", + "ain": "\u0430\u0439\u043d\u0441\u044c\u043a\u0430", + "ak": "\u0430\u043a\u0430\u043d", + "akk": "\u0430\u043a\u043a\u0430\u0434\u0441\u044c\u043a\u0430", + "bss": "\u0430\u043a\u0443\u0441", + "sq": "\u0430\u043b\u0431\u0430\u043d\u0441\u044c\u043a\u0430", + "ale": "\u0430\u043b\u0435\u0443\u0442\u0441\u044c\u043a\u0430", + "am": "\u0430\u043c\u0445\u0430\u0440\u0441\u044c\u043a\u0430", + "anp": "\u0430\u043d\u0433\u0456\u043a\u0430", + "en": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "en_GB": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u044c\u043a\u0430 \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0430", + "ar": "\u0430\u0440\u0430\u0431\u0441\u044c\u043a\u0430", + "arw": "\u0430\u0440\u0430\u0432\u0430\u043a\u0441\u044c\u043a\u0430", + "an": "\u0430\u0440\u0430\u0433\u043e\u043d\u0441\u044c\u043a\u0430", + "arc": "\u0430\u0440\u0430\u043c\u0435\u0439\u0441\u044c\u043a\u0430", + "arp": "\u0430\u0440\u0430\u043f\u0430\u0445\u043e", + "arn": "\u0430\u0440\u0430\u0443\u043a\u0430\u043d\u0441\u044c\u043a\u0430", + "rup": "\u0430\u0440\u0443\u043c\u0443\u043d\u0441\u044c\u043a\u0430", + "as": "\u0430\u0441\u0441\u0430\u043c\u0441\u044c\u043a\u0430", + "ast": "\u0430\u0441\u0442\u0443\u0440\u0441\u044c\u043a\u0430", + "asa": "\u0430\u0441\u0443", + "cch": "\u0430\u0442\u0441\u0430\u043c", + "aa": "\u0430\u0444\u0430\u0440\u0441\u044c\u043a\u0430", + "af": "\u0430\u0444\u0440\u0438\u043a\u0430\u0430\u043d\u0441", + "afh": "\u0430\u0444\u0440\u0438\u0445\u0456\u043b\u0456", + "ace": "\u0430\u0447\u0435\u0445\u0441\u044c\u043a\u0430", + "ach": "\u0430\u0447\u043e\u043b\u0456", + "ban": "\u0431\u0430\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "bal": "\u0431\u0430\u043b\u0443\u0447\u0456", + "bm": "\u0431\u0430\u043c\u0431\u0430\u0440\u0430", + "bax": "\u0431\u0430\u043c\u0443\u043c", + "bas": "\u0431\u0430\u0441\u0430", + "eu": "\u0431\u0430\u0441\u043a\u0441\u044c\u043a\u0430", + "ksf": "\u0431\u0430\u0444\u0456\u0430", + "bfd": "\u0431\u0430\u0444\u0443\u0442", + "ba": "\u0431\u0430\u0448\u043a\u0438\u0440\u0441\u044c\u043a\u0430", + "bej": "\u0431\u0435\u0434\u0436\u0430", + "bem": "\u0431\u0435\u043c\u0431\u0430", + "bez": "\u0431\u0435\u043d\u0430", + "bn": "\u0431\u0435\u043d\u0433\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "bik": "\u0431\u0456\u043a\u043e\u043b\u044c\u0441\u044c\u043a\u0430", + "be": "\u0431\u0456\u043b\u043e\u0440\u0443\u0441\u044c\u043a\u0430", + "bin": "\u0431\u0456\u043d\u0456", + "my": "\u0431\u0456\u0440\u043c\u0430\u043d\u0441\u044c\u043a\u0430", + "bi": "\u0431\u0456\u0441\u043b\u0430\u043c\u0430", + "byn": "\u0431\u043b\u0456\u043d", + "zbl": "\u0431\u043b\u0456\u0441\u0441\u0430 \u043c\u043e\u0432\u0430", + "brx": "\u0431\u043e\u0434\u043e", + "bg": "\u0431\u043e\u043b\u0433\u0430\u0440\u0441\u044c\u043a\u0430", + "bs": "\u0431\u043e\u0441\u043d\u0456\u0439\u0441\u044c\u043a\u0430", + "bra": "\u0431\u0440\u0430\u0434\u0436", + "br": "\u0431\u0440\u0435\u0442\u043e\u043d\u0441\u044c\u043a\u0430", + "bug": "\u0431\u0443\u0433\u0456\u0439\u0441\u044c\u043a\u0430", + "nb": "\u0431\u0443\u043a\u043c\u043e\u043b (\u041d\u043e\u0440\u0432\u0435\u0433\u0456\u044f)", + "bum": "\u0431\u0443\u043b\u0443", + "bua": "\u0431\u0443\u0440\u044f\u0442\u0441\u044c\u043a\u0430", + "bho": "\u0431\u0445\u043e\u0434\u0436\u043f\u0443\u0440\u0456", + "vai": "\u0432\u0430\u0457", + "wal": "\u0432\u0430\u043b\u0430\u043c\u043e", + "wae": "\u0412\u0430\u043b\u0437\u0435\u0440\u0441\u044c\u043a\u0430", + "cy": "\u0432\u0430\u043b\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "wa": "\u0432\u0430\u043b\u043b\u043e\u043d\u0441\u044c\u043a\u0430", + "war": "\u0432\u0430\u0440\u0430\u0439", + "was": "\u0432\u0430\u0448\u043e", + "ve": "\u0432\u0435\u043d\u0434\u0430", + "hsb": "\u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043b\u0443\u0436\u0438\u0446\u044c\u043a\u0430", + "de_CH": "\u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0430 (\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0456\u044f)", + "hy": "\u0432\u0456\u0440\u043c\u0435\u043d\u0441\u044c\u043a\u0430", + "vot": "\u0432\u043e\u0434\u0441\u044c\u043a\u0430", + "vo": "\u0432\u043e\u043b\u0430\u043f\u2019\u044e\u043a", + "wo": "\u0432\u043e\u043b\u043e\u0444", + "vun": "\u0432\u0443\u043d\u044c\u043e", + "vi": "\u0432\u02bc\u0454\u0442\u043d\u0430\u043c\u0441\u044c\u043a\u0430", + "gaa": "\u0433\u0430", + "haw": "\u0433\u0430\u0432\u0430\u0439\u0441\u044c\u043a\u0430", + "gag": "\u0433\u0430\u0433\u0430\u0443\u0437\u044c\u043a\u0430", + "gd": "\u0433\u0430\u0435\u043b\u044c\u0441\u044c\u043a\u0430", + "ht": "\u0433\u0430\u0457\u0442\u044f\u043d\u0441\u044c\u043a\u0430", + "gay": "\u0433\u0430\u0439\u043e", + "gl": "\u0433\u0430\u043b\u0456\u0441\u0456\u0439\u0441\u044c\u043a\u0430", + "lg": "\u0433\u0430\u043d\u0434\u0430", + "gba": "\u0433\u0431\u0430\u0439\u044f", + "hz": "\u0433\u0435\u0440\u0435\u0440\u043e", + "gez": "\u0433\u0454\u0435\u0437", + "gil": "\u0433\u0456\u043b\u044c\u0431\u0435\u0440\u0442\u0441\u044c\u043a\u0430", + "hi": "\u0433\u0456\u043d\u0434\u0456", + "nl": "\u0433\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "bbj": "\u0433\u043e\u043c\u0430\u043b\u0430", + "gon": "\u0433\u043e\u043d\u0434\u0456", + "gor": "\u0433\u043e\u0440\u043e\u043d\u0442\u0430\u043b\u043e", + "got": "\u0433\u043e\u0442\u0441\u044c\u043a\u0430", + "grb": "\u0433\u0440\u0435\u0431\u043e", + "el": "\u0433\u0440\u0435\u0446\u044c\u043a\u0430", + "ka": "\u0433\u0440\u0443\u0437\u0438\u043d\u0441\u044c\u043a\u0430", + "gn": "\u0433\u0443\u0430\u0440\u0430\u043d\u0456", + "gu": "\u0433\u0443\u0434\u0436\u0430\u0440\u0430\u0442\u0456", + "guz": "\u0433\u0443\u0441\u0456\u0457", + "ang": "\u0434\u0430\u0432\u043d\u044c\u043e\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "goh": "\u0434\u0430\u0432\u043d\u044c\u043e\u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0430", + "grc": "\u0434\u0430\u0432\u043d\u044c\u043e\u0433\u0440\u0435\u0446\u044c\u043a\u0430", + "egy": "\u0434\u0430\u0432\u043d\u044c\u043e\u0454\u0433\u0438\u043f\u0435\u0442\u0441\u044c\u043a\u0430", + "sga": "\u0434\u0430\u0432\u043d\u044c\u043e\u0456\u0440\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "non": "\u0434\u0430\u0432\u043d\u044c\u043e\u043d\u043e\u0440\u0432\u0435\u0437\u044c\u043a\u0430", + "peo": "\u0434\u0430\u0432\u043d\u044c\u043e\u043f\u0435\u0440\u0441\u044c\u043a\u0430", + "pro": "\u0434\u0430\u0432\u043d\u044c\u043e\u043f\u0440\u043e\u0432\u0430\u043d\u0441\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "fro": "\u0434\u0430\u0432\u043d\u044c\u043e\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0430", + "dzg": "\u0434\u0430\u0437\u0430\u0433\u0430", + "dak": "\u0434\u0430\u043a\u043e\u0442\u0430", + "da": "\u0434\u0430\u043d\u0441\u044c\u043a\u0430", + "dar": "\u0434\u0430\u0440\u0433\u0456\u043d\u0441\u044c\u043a\u0430", + "mul": "\u0434\u0435\u043a\u0456\u043b\u044c\u043a\u0430 \u043c\u043e\u0432", + "del": "\u0434\u0435\u043b\u0430\u0432\u0430\u0440\u0441\u044c\u043a\u0430", + "dje": "\u0434\u0436\u0435\u0440\u043c\u0430", + "dz": "\u0434\u0437\u043e\u043d\u0433-\u043a\u0435", + "dv": "\u0434\u0456\u0432\u0435\u0445\u0456", + "din": "\u0434\u0456\u043d\u043a\u0430", + "dyu": "\u0434\u0456\u0443\u043b\u0430", + "dgr": "\u0434\u043e\u0433\u0440\u0438\u0431\u0441\u044c\u043a\u0430", + "doi": "\u0434\u043e\u0433\u0440\u0456", + "dua": "\u0434\u0443\u0430\u043b\u0430", + "dyo": "\u0434\u044c\u043e\u043b\u0430-\u0444\u043e\u043d\u0456", + "ee": "\u0435\u0432\u0435", + "ewo": "\u0435\u0432\u043e\u043d\u0434\u043e", + "eka": "\u0435\u043a\u0430\u0434\u0436\u0443\u043a", + "elx": "\u0435\u043b\u0430\u043c\u0441\u044c\u043a\u0430", + "ebu": "\u0435\u043c\u0431\u0443", + "myv": "\u0435\u0440\u0437\u044f", + "eo": "\u0435\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e", + "et": "\u0435\u0441\u0442\u043e\u043d\u0441\u044c\u043a\u0430", + "efi": "\u0435\u0444\u0456\u043a", + "ybb": "\u0454\u043c\u0431\u0430", + "zza": "\u0437\u0430\u0437\u0430\u043a\u0456", + "fy": "\u0437\u0430\u0445\u0456\u0434\u043d\u043e-\u0444\u0440\u0438\u0437\u044c\u043a\u0430", + "zen": "\u0437\u0435\u043d\u0430\u0433\u0430", + "zu": "\u0437\u0443\u043b\u0443\u0441\u044c\u043a\u0430", + "zun": "\u0437\u0443\u043d\u044c\u0457", + "iba": "\u0456\u0431\u0430\u043d\u0441\u044c\u043a\u0430", + "ibb": "\u0456\u0431\u0456\u0431\u0456\u043e", + "he": "\u0456\u0432\u0440\u0438\u0442", + "ig": "\u0456\u0433\u0431\u043e", + "yi": "\u0456\u0434\u0438\u0448", + "io": "\u0456\u0434\u043e", + "ilo": "\u0456\u043b\u043e\u043a\u0430\u043d\u0441\u044c\u043a\u0430", + "inh": "\u0456\u043d\u0433\u0443\u0441\u044c\u043a\u0430", + "id": "\u0456\u043d\u0434\u043e\u043d\u0435\u0437\u0456\u0439\u0441\u044c\u043a\u0430", + "ia": "\u0456\u043d\u0442\u0435\u0440\u043b\u0456\u043d\u0433\u0432\u0430", + "ie": "\u0456\u043d\u0442\u0435\u0440\u043b\u0456\u043d\u0433\u0432\u0435", + "iu": "\u0456\u043d\u0443\u043a\u0442\u0456\u0442\u0443\u0442", + "ik": "\u0456\u043d\u0443\u043f\u0456\u0430\u043a", + "ga": "\u0456\u0440\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "is": "\u0456\u0441\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "es": "\u0456\u0441\u043f\u0430\u043d\u0441\u044c\u043a\u0430", + "es_ES": "\u0456\u0441\u043f\u0430\u043d\u0441\u044c\u043a\u0430 (\u0404\u0432\u0440\u043e\u043f\u0430)", + "it": "\u0456\u0442\u0430\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "jrb": "\u0456\u0443\u0434\u0435\u043e-\u0430\u0440\u0430\u0431\u0441\u044c\u043a\u0430", + "jpr": "\u0456\u0443\u0434\u0435\u043e-\u043f\u0435\u0440\u0441\u044c\u043a\u0430", + "yo": "\u0439\u043e\u0440\u0443\u0431\u0430", + "kaj": "\u0439\u044e", + "kbd": "\u043a\u0430\u0431\u0430\u0440\u0434\u0438\u043d\u0441\u044c\u043a\u0430", + "kab": "\u043a\u0430\u0431\u0456\u043b\u044c\u0441\u044c\u043a\u0430", + "kea": "\u043a\u0430\u0431\u0443\u0432\u0435\u0440\u0434\u0456\u0430\u043d\u0443", + "kaw": "\u043a\u0430\u0432\u0456", + "cad": "\u043a\u0430\u0434\u0434\u043e", + "kk": "\u043a\u0430\u0437\u0430\u0445\u0441\u044c\u043a\u0430", + "cay": "\u043a\u0430\u0439\u044e\u0433\u0430", + "kkj": "\u043a\u0430\u043a\u043e", + "kl": "\u043a\u0430\u043b\u0430\u0430\u043b\u043b\u0456\u0441\u0443\u0442", + "kln": "\u043a\u0430\u043b\u0435\u043d\u0434\u0436\u0438\u043d", + "xal": "\u043a\u0430\u043b\u043c\u0438\u0446\u044c\u043a\u0430", + "kam": "\u043a\u0430\u043c\u0431\u0430", + "kbl": "\u043a\u0430\u043d\u0435\u043c\u0431\u0443", + "kn": "\u043a\u0430\u043d\u043d\u0430\u0434\u0430", + "yue": "\u043a\u0430\u043d\u0442\u043e\u043d\u0441\u044c\u043a\u0430", + "kr": "\u043a\u0430\u043d\u0443\u0440\u0456", + "kaa": "\u043a\u0430\u0440\u0430\u043a\u0430\u043b\u043f\u0430\u0446\u044c\u043a\u0430", + "krc": "\u043a\u0430\u0440\u0430\u0447\u0430\u0454\u0432\u043e-\u0431\u0430\u043b\u043a\u0430\u0440\u0441\u044c\u043a\u0430", + "krl": "\u043a\u0430\u0440\u0435\u043b\u044c\u0441\u044c\u043a\u0430", + "car": "\u043a\u0430\u0440\u0456\u0431\u0441\u044c\u043a\u0430", + "ca": "\u043a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u044c\u043a\u0430", + "kac": "\u043a\u0430\u0447\u0456\u043d", + "ks": "\u043a\u0430\u0448\u043c\u0456\u0440\u0441\u044c\u043a\u0430", + "csb": "\u043a\u0430\u0448\u0443\u0431\u0441\u044c\u043a\u0430", + "nmg": "\u043a\u0432\u0430\u0437\u0456\u043e", + "qu": "\u043a\u0435\u0447\u0443\u0430", + "ky": "\u043a\u0438\u0440\u0433\u0438\u0437\u044c\u043a\u0430", + "zh": "\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430", + "cgg": "\u043a\u0456\u0433\u0430", + "ki": "\u043a\u0456\u043a\u0443\u0439\u044e", + "kmb": "\u043a\u0456\u043c\u0431\u0443\u043d\u0434\u0443", + "rw": "\u043a\u0456\u043d\u044c\u044f\u0440\u0443\u0430\u043d\u0434\u0430", + "quc": "\u043a\u0456\u0447\u0435", + "tlh": "\u043a\u043b\u0456\u043d\u0433\u043e\u043d", + "khq": "\u043a\u043e\u0439\u0440\u0430 \u0447\u0456\u0457\u043d\u0456", + "ses": "\u043a\u043e\u0439\u0440\u0430\u0431\u043e\u0440\u043e \u0441\u0435\u043d\u0456", + "ksh": "\u043a\u043e\u043b\u043e\u043d\u0456\u0430\u043d", + "bkm": "\u043a\u043e\u043c", + "kv": "\u043a\u043e\u043c\u0456", + "koi": "\u043a\u043e\u043c\u0456-\u043f\u0435\u0440\u043c\u2019\u044f\u0446\u044c\u043a\u0430", + "swb": "\u043a\u043e\u043c\u043e\u0440\u0441\u044c\u043a\u0430", + "swc": "\u043a\u043e\u043d\u0433\u0456\u0439\u0441\u044c\u043a\u0435 \u0441\u0443\u0430\u0445\u0456\u043b\u0456", + "kg": "\u043a\u043e\u043d\u0491\u043e\u043b\u0435\u0437\u044c\u043a\u0430", + "kok": "\u043a\u043e\u043d\u043a\u0430\u043d\u0456", + "cop": "\u043a\u043e\u043f\u0442\u0441\u044c\u043a\u0430", + "ko": "\u043a\u043e\u0440\u0435\u0439\u0441\u044c\u043a\u0430", + "root": "\u043a\u043e\u0440\u0456\u043d\u044c", + "kw": "\u043a\u043e\u0440\u043d\u0456\u0439\u0441\u044c\u043a\u0430", + "kfo": "\u043a\u043e\u0440\u043e", + "co": "\u043a\u043e\u0440\u0441\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0430", + "kos": "\u043a\u043e\u0441\u0440\u0430\u0435", + "kpe": "\u043a\u043f\u0435\u043b\u043b\u0454", + "crh": "\u043a\u0440\u0438\u043c\u0441\u044c\u043a\u043e\u0442\u0430\u0442\u0430\u0440\u0441\u044c\u043a\u0430", + "cr": "\u043a\u0440\u0456", + "mus": "\u043a\u0440\u0456\u043a", + "kum": "\u043a\u0443\u043c\u0438\u0446\u044c\u043a\u0430", + "kj": "\u043a\u0443\u043d\u0430\u043c\u0430", + "ku": "\u043a\u0443\u0440\u0434\u0441\u044c\u043a\u0430", + "ckb": "\u043a\u0443\u0440\u0434\u0441\u044c\u043a\u0430 (\u0441\u043e\u0440\u0430\u043d\u0456)", + "kru": "\u043a\u0443\u0440\u0443\u043a\u0445", + "kut": "\u043a\u0443\u0442\u0435\u043d\u0430\u0457", + "gwi": "\u043a\u0443\u0447\u0456\u043d", + "kha": "\u043a\u0445\u0430\u0441\u0456", + "km": "\u043a\u0445\u043c\u0435\u0440\u0441\u044c\u043a\u0430", + "xh": "\u043a\u0445\u043e\u0441\u0430", + "lad": "\u043b\u0430\u0434\u0456\u043d\u043e", + "lkt": "\u043b\u0430\u043a\u043e\u0442\u0430", + "lam": "\u043b\u0430\u043c\u0431\u0430", + "lag": "\u043b\u0430\u043d\u0433\u0456", + "lah": "\u043b\u0430\u043d\u0434\u0430", + "lo": "\u043b\u0430\u043e\u0441\u044c\u043a\u0430", + "lv": "\u043b\u0430\u0442\u0432\u0456\u0439\u0441\u044c\u043a\u0430", + "la": "\u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0430", + "lez": "\u043b\u0435\u0437\u0433\u0456\u043d\u0441\u044c\u043a\u0430", + "lt": "\u043b\u0438\u0442\u043e\u0432\u0441\u044c\u043a\u0430", + "li": "\u043b\u0456\u043c\u0431\u0443\u0440\u0433\u0456\u0439\u0441\u044c\u043a\u0430", + "ln": "\u043b\u0456\u043d\u0433\u0430\u043b\u0430", + "jbo": "\u043b\u043e\u0436\u0431\u0430\u043d", + "loz": "\u043b\u043e\u0437\u0456", + "lu": "\u043b\u0443\u0431\u0430-\u043a\u0430\u0442\u0430\u043d\u0433\u0430", + "lua": "\u043b\u0443\u0431\u0430-\u043b\u0443\u043b\u0443\u0430", + "lui": "\u043b\u0443\u0457\u0441\u0435\u043d\u044c\u043e", + "luy": "\u043b\u0443\u0439\u044f", + "lun": "\u043b\u0443\u043d\u0434\u0430", + "luo": "\u043b\u0443\u043e", + "lus": "\u043b\u0443\u0448\u0435\u0439", + "lb": "\u043b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0437\u044c\u043a\u0430", + "mde": "\u043c\u0430\u0431\u0430", + "mfe": "\u043c\u0430\u0432\u0440\u0438\u043a\u0456\u0439\u0441\u044c\u043a\u0430 \u043a\u0440\u0435\u043e\u043b\u044c\u0441\u044c\u043a\u0430", + "moh": "\u043c\u0430\u0433\u0430\u0432\u043a", + "mag": "\u043c\u0430\u0433\u0430\u0434\u0445\u0456", + "mad": "\u043c\u0430\u0434\u0443\u0440\u0441\u044c\u043a\u0430", + "mai": "\u043c\u0430\u0439\u0442\u0445\u0456\u043b\u0456", + "mak": "\u043c\u0430\u043a\u0430\u0441\u0430\u0440\u0441\u044c\u043a\u0430", + "mk": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u044c\u043a\u0430", + "kde": "\u043c\u0430\u043a\u043e\u043d\u0434\u0435", + "mgh": "\u043c\u0430\u043a\u0443\u0432\u0430-\u043c\u0435\u0435\u0442\u043e", + "mg": "\u043c\u0430\u043b\u0430\u0433\u0430\u0441\u0456\u0439\u0441\u044c\u043a\u0430", + "ms": "\u043c\u0430\u043b\u0430\u0439\u0441\u044c\u043a\u0430", + "ml": "\u043c\u0430\u043b\u0430\u044f\u043b\u0430\u043c", + "mt": "\u043c\u0430\u043b\u044c\u0442\u0456\u0439\u0441\u044c\u043a\u0430", + "mdr": "\u043c\u0430\u043d\u0434\u0430\u0440\u0441\u044c\u043a\u0430", + "man": "\u043c\u0430\u043d\u0434\u0456\u043d\u0433\u043e", + "mni": "\u043c\u0430\u043d\u0456\u043f\u0443\u0440\u0456", + "mnc": "\u043c\u0430\u043d\u0447\u0436\u0443\u0440\u0441\u044c\u043a\u0430", + "mi": "\u043c\u0430\u043e\u0440\u0456", + "mr": "\u043c\u0430\u0440\u0430\u0442\u0445\u0456", + "mwr": "\u043c\u0430\u0440\u0432\u0430\u0440\u0456", + "chm": "\u043c\u0430\u0440\u0456\u0439\u0441\u044c\u043a\u0430", + "mh": "\u043c\u0430\u0440\u0448\u0430\u043b\u043b\u044c\u0441\u044c\u043a\u0430", + "mas": "\u043c\u0430\u0441\u0430\u0457", + "maf": "\u043c\u0430\u0444\u0430", + "jmc": "\u043c\u0430\u0447\u0430\u043c\u0435", + "byv": "\u043c\u0435\u0434\u0443\u043c\u0431\u0430", + "men": "\u043c\u0435\u043d\u0434\u0435", + "gv": "\u043c\u0435\u043d\u043a\u0441\u044c\u043a\u0430", + "mer": "\u043c\u0435\u0440\u0443", + "mgo": "\u043c\u0435\u0442\u0430", + "mye": "\u043c\u0438\u0456\u043d", + "mic": "\u043c\u0456\u043a\u043c\u0430\u043a", + "min": "\u043c\u0456\u043d\u0430\u043d\u0433\u043a\u0430\u0431\u0430\u0443", + "mwl": "\u043c\u0456\u0440\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "mdf": "\u043c\u043e\u043a\u0448\u0430", + "ro_MD": "\u043c\u043e\u043b\u0434\u0430\u0432\u0441\u044c\u043a\u0430", + "lol": "\u043c\u043e\u043d\u0433\u043e", + "mn": "\u043c\u043e\u043d\u0433\u043e\u043b\u044c\u0441\u044c\u043a\u0430", + "mos": "\u043c\u043e\u0441\u0441\u0456", + "mua": "\u043c\u0443\u043d\u0434\u0430\u043d\u0433", + "nv": "\u043d\u0430\u0432\u0430\u0445\u043e", + "naq": "\u043d\u0430\u043c\u0430", + "na": "\u043d\u0430\u0443\u0440\u0443", + "sba": "\u043d\u0433\u0430\u043c\u0431\u0430\u0439", + "nnh": "\u043d\u0433\u0454\u043c\u0431\u0443\u043d", + "jgo": "\u043d\u0433\u043e\u043c\u0431\u0430", + "nr": "\u043d\u0434\u0435\u0431\u0435\u043b\u0454 \u043f\u0456\u0432\u0434\u0435\u043d\u043d\u0430", + "nd": "\u043d\u0434\u0435\u0431\u0435\u043b\u0454 \u043f\u0456\u0432\u043d\u0456\u0447\u043d\u0430", + "ng": "\u043d\u0434\u043e\u043d\u0433\u0430", + "nap": "\u043d\u0435\u0430\u043f\u043e\u043b\u0456\u0442\u0430\u043d\u0441\u044c\u043a\u0430", + "new": "\u043d\u0435\u0432\u0430\u0440\u0456", + "nwc": "\u043d\u0435\u0432\u0430\u0440\u0456 \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0430", + "und": "\u043d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 \u043c\u043e\u0432\u0430", + "zxx": "\u043d\u0435\u043c\u0430\u0454 \u043c\u043e\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0456\u0441\u0442\u0443", + "ne": "\u043d\u0435\u043f\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "nzi": "\u043d\u0437\u0456\u043c\u0430", + "dsb": "\u043d\u0438\u0436\u043d\u044c\u043e\u043b\u0443\u0436\u0438\u0446\u044c\u043a\u0430", + "nds": "\u043d\u0438\u0436\u043d\u044c\u043e\u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0430", + "nia": "\u043d\u0456\u0430\u0441\u044c\u043a\u0430", + "de": "\u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0430", + "gsw": "\u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0430 \u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u044c\u043a\u0430", + "niu": "\u043d\u0456\u0443\u0435", + "nqo": "\u043d\u043a\u043e", + "nog": "\u043d\u043e\u0433\u0430\u0439\u0441\u044c\u043a\u0430", + "no": "\u043d\u043e\u0440\u0432\u0435\u0437\u044c\u043a\u0430", + "nus": "\u043d\u0443\u0435\u0440", + "nyo": "\u043d\u044c\u043e\u0440\u043e", + "nym": "\u043d\u044c\u044f\u043c\u0432\u0435\u0437\u0456", + "ny": "\u043d\u044c\u044f\u043d\u0434\u0436\u0430", + "nyn": "\u043d\u044c\u044f\u043d\u043a\u043e\u043b\u0435", + "tog": "\u043d\u044c\u044f\u0441\u0430 \u0442\u043e\u043d\u0433\u0430", + "nn": "\u043d\u044e\u043d\u043e\u0448\u043a (\u041d\u043e\u0440\u0432\u0435\u0433\u0456\u044f)", + "oj": "\u043e\u0434\u0436\u0456\u0431\u0432\u0430", + "oc": "\u043e\u043a\u0438\u0442\u0430\u043d", + "or": "\u043e\u0440\u0456\u044f", + "om": "\u043e\u0440\u043e\u043c\u043e", + "osa": "\u043e\u0441\u0435\u0439\u0434\u0436", + "os": "\u043e\u0441\u0435\u0442\u0438\u043d\u0441\u044c\u043a\u0430", + "ota": "\u043e\u0441\u043c\u0430\u043d\u0441\u044c\u043a\u0430", + "pau": "\u043f\u0430\u043b\u0430\u0443\u0430\u043d\u0441\u044c\u043a\u0430", + "pi": "\u043f\u0430\u043b\u0456", + "pam": "\u043f\u0430\u043c\u043f\u0430\u043d\u0433\u0430", + "pag": "\u043f\u0430\u043d\u0433\u0430\u0441\u0456\u043d\u0430\u043d\u0441\u044c\u043a\u0430", + "pa": "\u043f\u0430\u043d\u0434\u0436\u0430\u0431\u0456", + "pap": "\u043f\u0430\u043f\u2019\u044f\u043c\u0435\u043d\u0442\u043e", + "fa": "\u043f\u0435\u0440\u0441\u044c\u043a\u0430", + "pal": "\u043f\u0435\u0445\u043b\u0435\u0432\u0456", + "alt": "\u043f\u0456\u0432\u0434\u0435\u043d\u043d\u043e\u0430\u043b\u0442\u0430\u0439\u0441\u044c\u043a\u0430", + "pl": "\u043f\u043e\u043b\u044c\u0441\u044c\u043a\u0430", + "pon": "\u043f\u043e\u043d\u0430\u043f\u0435", + "pt": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "pt_PT": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u044c\u043a\u0430 (\u0404\u0432\u0440\u043e\u043f\u0430)", + "ps": "\u043f\u0443\u0448\u0442\u0443", + "raj": "\u0440\u0430\u0434\u0436\u0430\u0441\u0442\u0445\u0430\u043d\u0456", + "rap": "\u0440\u0430\u043f\u0430\u043d\u0443\u0457", + "rar": "\u0440\u0430\u0440\u043e\u0442\u043e\u043d\u0433\u0430", + "rwk": "\u0420\u0432\u0430", + "rm": "\u0440\u0435\u0442\u043e\u0440\u043e\u043c\u0430\u043d\u0441\u044c\u043a\u0430", + "rof": "\u0440\u043e\u043c\u0431\u043e", + "ru": "\u0440\u043e\u0441\u0456\u0439\u0441\u044c\u043a\u0430", + "ro": "\u0440\u0443\u043c\u0443\u043d\u0441\u044c\u043a\u0430", + "rn": "\u0440\u0443\u043d\u0434\u0456", + "smn": "\u0441\u0430\u0430\u043c\u0441\u044c\u043a\u0430 \u0456\u043d\u0430\u0440\u0456", + "smj": "\u0441\u0430\u0430\u043c\u0441\u044c\u043a\u0430 \u043b\u0443\u043b\u0435", + "sma": "\u0441\u0430\u0430\u043c\u0441\u044c\u043a\u0430 \u043f\u0456\u0432\u0434\u0435\u043d\u043d\u0430", + "se": "\u0441\u0430\u0430\u043c\u0441\u044c\u043a\u0430 \u043f\u0456\u0432\u043d\u0456\u0447\u043d\u0430", + "sms": "\u0441\u0430\u0430\u043c\u0441\u044c\u043a\u0430 \u0441\u043a\u043e\u043b\u044c\u0442", + "sam": "\u0441\u0430\u043c\u0430\u0440\u0438\u0442\u044f\u043d\u0441\u044c\u043a\u0430 \u0430\u0440\u0430\u043c\u0435\u0439\u0441\u044c\u043a\u0430", + "saq": "\u0441\u0430\u043c\u0431\u0443\u0440\u0443", + "sm": "\u0441\u0430\u043c\u043e\u0430\u043d\u0441\u044c\u043a\u0430", + "sg": "\u0441\u0430\u043d\u0433\u043e", + "sbp": "\u0441\u0430\u043d\u0433\u0443", + "sad": "\u0441\u0430\u043d\u0434\u0430\u0432\u0435", + "sa": "\u0441\u0430\u043d\u0441\u043a\u0440\u0438\u0442", + "sat": "\u0441\u0430\u043d\u0442\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "zap": "\u0441\u0430\u043f\u043e\u0442\u0435\u043a\u0441\u044c\u043a\u0430", + "sc": "\u0441\u0430\u0440\u0434\u0438\u043d\u0441\u044c\u043a\u0430", + "sas": "\u0441\u0430\u0441\u0430\u043a\u0441\u044c\u043a\u0430", + "ssy": "\u0441\u0430\u0445\u043e", + "ceb": "\u0441\u0435\u0431\u0443\u0430\u043d\u0441\u044c\u043a\u0430", + "sel": "\u0441\u0435\u043b\u044c\u043a\u0443\u043f\u0441\u044c\u043a\u0430", + "seh": "\u0441\u0435\u043d\u0430", + "see": "\u0441\u0435\u043d\u0435\u043a\u0430", + "sr": "\u0441\u0435\u0440\u0431\u0441\u044c\u043a\u0430", + "sh": "\u0441\u0435\u0440\u0431\u0441\u044c\u043a\u043e-\u0445\u043e\u0440\u0432\u0430\u0442\u0441\u044c\u043a\u0430", + "enm": "\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "gmh": "\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0430", + "mga": "\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0456\u0440\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "dum": "\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u043d\u0456\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "frm": "\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0430", + "srr": "\u0441\u0435\u0440\u0435\u0440", + "si": "\u0441\u0438\u043d\u0433\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "syr": "\u0441\u0438\u0440\u0456\u0439\u0441\u044c\u043a\u0430", + "syc": "\u0441\u0438\u0440\u0456\u0439\u0441\u044c\u043a\u0430 \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0430", + "scn": "\u0441\u0438\u0446\u0438\u043b\u0456\u0439\u0441\u044c\u043a\u0430", + "ii": "\u0441\u0438\u0447\u0443\u0430\u043d\u044c", + "sid": "\u0441\u0456\u0434\u0430\u043c\u043e", + "bla": "\u0441\u0456\u043a\u0441\u0456\u043a\u0430", + "sd": "\u0441\u0456\u043d\u0434\u0445\u0456", + "ss": "\u0441\u0456\u0441\u0432\u0430\u0442\u0456", + "den": "\u0441\u043b\u0435\u0439\u0432", + "sk": "\u0441\u043b\u043e\u0432\u0430\u0446\u044c\u043a\u0430", + "sl": "\u0441\u043b\u043e\u0432\u0435\u043d\u0441\u044c\u043a\u0430", + "xog": "\u0441\u043e\u0433\u0430", + "sog": "\u0441\u043e\u0433\u0434\u0456\u0439\u0441\u044c\u043a\u0430", + "so": "\u0441\u043e\u043c\u0430\u043b\u0456", + "snk": "\u0441\u043e\u043d\u0456\u043d\u043a\u0435", + "st": "\u0441\u043e\u0442\u043e \u043f\u0456\u0432\u0434\u0435\u043d\u043d\u0430", + "nso": "\u0441\u043e\u0442\u043e \u043f\u0456\u0432\u043d\u0456\u0447\u043d\u0430", + "srn": "\u0441\u0440\u0430\u043d\u0430\u043d \u0442\u043e\u043d\u0433\u043e", + "zgh": "\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u043c\u0430\u0440\u043e\u043a\u043a\u0430\u043d\u0441\u044c\u043a\u0430 \u0431\u0435\u0440\u0431\u0435\u0440\u0441\u044c\u043a\u0430", + "sw": "\u0441\u0443\u0430\u0445\u0456\u043b\u0456", + "suk": "\u0441\u0443\u043a\u0443\u043c\u0430", + "su": "\u0441\u0443\u043d\u0434\u0430\u043d\u0441\u044c\u043a\u0430", + "sus": "\u0441\u0443\u0441\u0443", + "ar_001": "\u0441\u0443\u0447\u0430\u0441\u043d\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430 \u0430\u0440\u0430\u0431\u0441\u044c\u043a\u0430", + "tl": "\u0442\u0430\u0433\u0430\u043b\u044c\u0441\u044c\u043a\u0430", + "tg": "\u0442\u0430\u0434\u0436\u0438\u0446\u044c\u043a\u0430", + "dav": "\u0442\u0430\u0456\u0442\u0430", + "ty": "\u0442\u0430\u0457\u0442\u044f\u043d\u0441\u044c\u043a\u0430", + "th": "\u0442\u0430\u0439\u0441\u044c\u043a\u0430", + "tmh": "\u0442\u0430\u043c\u0430\u0448\u0435\u043a", + "ta": "\u0442\u0430\u043c\u0456\u043b\u044c\u0441\u044c\u043a\u0430", + "trv": "\u0442\u0430\u0440\u043e\u043a\u043e", + "twq": "\u0442\u0430\u0441\u0430\u0432\u0430\u043a", + "tt": "\u0442\u0430\u0442\u0430\u0440\u0441\u044c\u043a\u0430", + "shi": "\u0442\u0430\u0447\u0435\u043b\u0456\u0442", + "tw": "\u0442\u0432\u0456", + "te": "\u0442\u0435\u043b\u0443\u0433\u0443", + "tem": "\u0442\u0435\u043c\u043d\u0435", + "ter": "\u0442\u0435\u0440\u0435\u043d\u043e", + "teo": "\u0442\u0435\u0441\u043e", + "tet": "\u0442\u0435\u0442\u0443\u043c", + "bo": "\u0442\u0438\u0431\u0435\u0442\u0441\u044c\u043a\u0430", + "tig": "\u0442\u0438\u0433\u0440\u0435", + "ti": "\u0442\u0438\u0433\u0440\u0438\u043d\u044c\u044f", + "kcg": "\u0442\u0456\u0430\u043f", + "tiv": "\u0442\u0456\u0432", + "tli": "\u0442\u043b\u0456\u043d\u0433\u0456\u0442", + "tpi": "\u0442\u043e\u043a-\u043f\u0456\u0441\u0456\u043d", + "tkl": "\u0442\u043e\u043a\u0435\u043b\u0430\u0443", + "to": "\u0442\u043e\u043d\u0433\u0430\u043d\u0441\u044c\u043a\u0430", + "tn": "\u0442\u0441\u0432\u0430\u043d\u0430", + "ts": "\u0442\u0441\u043e\u043d\u0433\u0430", + "tvl": "\u0442\u0443\u0432\u0430\u043b\u0443", + "tyv": "\u0442\u0443\u0432\u0438\u043d\u0441\u044c\u043a\u0430", + "tum": "\u0442\u0443\u043c\u0431\u0443\u043a\u0430", + "tr": "\u0442\u0443\u0440\u0435\u0446\u044c\u043a\u0430", + "tk": "\u0442\u0443\u0440\u043a\u043c\u0435\u043d\u0441\u044c\u043a\u0430", + "uga": "\u0443\u0433\u0430\u0440\u0438\u0442\u0441\u044c\u043a\u0430", + "hu": "\u0443\u0433\u043e\u0440\u0441\u044c\u043a\u0430", + "udm": "\u0443\u0434\u043c\u0443\u0440\u0442\u0441\u044c\u043a\u0430", + "uz": "\u0443\u0437\u0431\u0435\u0446\u044c\u043a\u0430", + "ug": "\u0443\u0439\u0433\u0443\u0440\u0441\u044c\u043a\u0430", + "uk": "\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430", + "umb": "\u0443\u043c\u0431\u0443\u043d\u0434\u0443", + "ur": "\u0443\u0440\u0434\u0443", + "fan": "\u0444\u0430\u043d\u0433", + "fat": "\u0444\u0430\u043d\u0442\u0456", + "fo": "\u0444\u0430\u0440\u0435\u0440\u0441\u044c\u043a\u0430", + "fj": "\u0444\u0456\u0434\u0436\u0456", + "fil": "\u0444\u0456\u043b\u0456\u043f\u043f\u0456\u043d\u0441\u044c\u043a\u0430", + "phn": "\u0444\u0456\u043d\u0456\u043a\u0456\u0439\u0441\u044c\u043a\u043e-\u043f\u0443\u043d\u0456\u0447\u043d\u0430", + "fi": "\u0444\u0456\u043d\u0441\u044c\u043a\u0430", + "nl_BE": "\u0444\u043b\u0430\u043c\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "fon": "\u0444\u043e\u043d", + "fr": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0430", + "frr": "\u0444\u0440\u0438\u0437\u044c\u043a\u0430 \u043f\u0456\u0432\u043d\u0456\u0447\u043d\u0430", + "frs": "\u0444\u0440\u0438\u0437\u044c\u043a\u0430 \u0441\u0445\u0456\u0434\u043d\u0430", + "fur": "\u0444\u0440\u0456\u0443\u043b\u044c\u0441\u044c\u043a\u0430", + "ff": "\u0444\u0443\u043b\u0430", + "hai": "\u0445\u0430\u0439\u0434\u0430", + "ha": "\u0445\u0430\u0443\u0441\u0430", + "hil": "\u0445\u0456\u043b\u0456\u0433\u0430\u0439\u043d\u043e\u043d", + "ho": "\u0445\u0456\u0440\u0456-\u043c\u043e\u0442\u0443", + "hit": "\u0445\u0456\u0442\u0456\u0442\u0456", + "hmn": "\u0445\u043c\u043e\u043d\u0433", + "hr": "\u0445\u043e\u0440\u0432\u0430\u0442\u0441\u044c\u043a\u0430", + "kho": "\u0445\u043e\u0442\u0430\u043d\u043e\u0441\u0430\u043a\u0441\u044c\u043a\u0430", + "hup": "\u0445\u0443\u043f\u0430", + "tzm": "\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u043c\u0430\u0440\u043e\u043a\u0430\u043d\u0441\u044c\u043a\u0430 \u0442\u0430\u043c\u0430\u0437\u0456\u0442", + "cu": "\u0446\u0435\u0440\u043a\u043e\u0432\u043d\u043e\u0441\u043b\u043e\u0432\u2019\u044f\u043d\u0441\u044c\u043a\u0430", + "rom": "\u0446\u0438\u0433\u0430\u043d\u0441\u044c\u043a\u0430", + "tsi": "\u0446\u0438\u043c\u0448\u0438\u0430\u043d", + "chg": "\u0447\u0430\u0433\u0430\u0442\u0430\u0439\u0441\u044c\u043a\u0430", + "shu": "\u0447\u0430\u0434\u0456\u0439\u0441\u044c\u043a\u0430 \u0430\u0440\u0430\u0431\u0441\u044c\u043a\u0430", + "ch": "\u0447\u0430\u043c\u043e\u0440\u0440\u043e", + "chy": "\u0447\u0435\u0439\u0454\u043d\u043d", + "chr": "\u0447\u0435\u0440\u043e\u043a\u0456", + "cs": "\u0447\u0435\u0441\u044c\u043a\u0430", + "ce": "\u0447\u0435\u0447\u0435\u043d\u0441\u044c\u043a\u0430", + "za": "\u0447\u0436\u0443\u0430\u043d", + "chn": "\u0447\u0438\u043d\u0443\u043a \u0436\u0430\u0440\u0433\u043e\u043d", + "chb": "\u0447\u0456\u0431\u0447\u0430", + "chp": "\u0447\u0456\u043f\u0435\u0432\u2019\u044f\u043d", + "cho": "\u0447\u043e\u043a\u0442\u043e", + "cv": "\u0447\u0443\u0432\u0430\u0441\u044c\u043a\u0430", + "chk": "\u0447\u0443\u0443\u043a\u0441\u044c\u043a\u0430", + "ksb": "\u0448\u0430\u043c\u0431\u0430\u043b\u0430", + "shn": "\u0448\u0430\u043d\u0441\u044c\u043a\u0430", + "sv": "\u0448\u0432\u0435\u0434\u0441\u044c\u043a\u0430", + "sn": "\u0448\u043e\u043d\u0430", + "sco": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430", + "sux": "\u0448\u0443\u043c\u0435\u0440\u0441\u044c\u043a\u0430", + "jv": "\u044f\u0432\u0430\u043d\u0441\u044c\u043a\u0430", + "sah": "\u044f\u043a\u0443\u0442\u0441\u044c\u043a\u0430", + "yav": "\u044f\u043d\u0433\u0431\u0435\u043d", + "yao": "\u044f\u043e", + "yap": "\u044f\u043f", + "ja": "\u044f\u043f\u043e\u043d\u0441\u044c\u043a\u0430", + "akz": "Alabama", + "arq": "Algerian Arabic", + "en_US": "American English", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "en_AU": "Australian English", + "de_AT": "Austrian German", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "pt_BR": "Brazilian Portuguese", + "frc": "Cajun French", + "en_CA": "Canadian English", + "fr_CA": "Canadian French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "es_419": "Latin American Spanish", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "es_MX": "Mexican Spanish", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "zh_Hans": "Simplified Chinese", + "azb": "South Azerbaijani", + "fr_CH": "Swiss French", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "zh_Hant": "Traditional Chinese", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/ur-PK.json b/public/intl/language/ur-PK.json new file mode 100644 index 0000000..a98648a --- /dev/null +++ b/public/intl/language/ur-PK.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0627\u0628\u0642\u0627\u0632\u06cc\u0627\u0646", + "hsb": "\u0627\u067e\u0631 \u0633\u0631\u0628\u06cc\u0627\u0626\u06cc", + "ur": "\u0627\u0631\u062f\u0648", + "hy": "\u0627\u0631\u0645\u06cc\u0646\u06cc", + "uz": "\u0627\u0632\u0628\u06cc\u06a9", + "et": "\u0627\u0633\u0679\u0648\u0646\u06cc\u0646", + "zgh": "\u0627\u0633\u0679\u06cc\u0646\u0688\u0631\u0688 \u0645\u0631\u0627\u0642\u0634\u06cc \u062a\u0645\u0627\u0632\u06cc\u0642\u06cc", + "it": "\u0627\u0637\u0627\u0644\u0648\u06cc", + "agq": "\u0627\u063a\u0645", + "ak": "\u0627\u06a9\u0627\u0646", + "ach": "\u0627\u06a9\u0648\u0644\u06cc", + "ig": "\u0627\u0650\u06af\u0628\u0648", + "sq": "\u0627\u0644\u0628\u0627\u0646\u06cc", + "ebu": "\u0627\u0645\u0628\u0648", + "en_US": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0627\u0646\u06af\u0631\u06cc\u0632\u06cc", + "am": "\u0627\u0645\u06c1\u0627\u0631\u06cc", + "smn": "\u0627\u0646\u0627\u0631\u06cc \u0633\u0627\u0645\u06cc", + "id": "\u0627\u0646\u0688\u0648\u0646\u06cc\u062b\u06cc\u0627\u0626\u06cc", + "en": "\u0627\u0646\u06af\u0631\u06cc\u0632\u06cc", + "om": "\u0627\u0648\u0631\u0648\u0645\u0648", + "or": "\u0627\u0648\u0631\u0650\u06cc\u0627", + "os": "\u0627\u0648\u0633\u06cc\u0679\u06a9", + "eo": "\u0627\u06cc\u0633\u067e\u0631\u0627\u0646\u0679\u0648", + "af": "\u0627\u06cc\u0641\u0631\u06cc\u06a9\u0627\u0646\u0632", + "efi": "\u0627\u06cc\u0641\u0650\u06a9", + "ay": "\u0627\u06cc\u0645\u0627\u0631\u0627", + "iu": "\u0627\u06cc\u0646\u064f\u06a9\u0679\u06cc\u0679\u0679", + "nqo": "\u0627\u06cc\u0646\u06a9\u0648", + "ee": "\u0627\u06cc\u0648", + "az": "\u0622\u0632\u0631\u0628\u0627\u0626\u06cc\u062c\u0627\u0646\u06cc", + "as": "\u0622\u0633\u0627\u0645\u06cc", + "de_AT": "\u0622\u0633\u0679\u0631\u06cc\u0627\u0626\u06cc \u062c\u0631\u0645\u0646", + "en_AU": "\u0622\u0633\u0679\u0631\u06cc\u0644\u06cc\u0627\u0626\u06cc \u0627\u0646\u06af\u0631\u06cc\u0632\u06cc", + "asa": "\u0622\u0633\u0648", + "is": "\u0622\u0626\u0633 \u0644\u06cc\u0646\u0688\u06a9", + "ga": "\u0622\u0626\u06cc\u0631\u0650\u0634", + "oc": "\u0622\u0643\u0633\u06cc\u0679\u0627\u0646", + "eu": "\u0628\u0627\u0633\u06a9\u06cc", + "ba": "\u0628\u0627\u0634\u06a9\u06cc\u0631", + "ksf": "\u0628\u0627\u0641\u064a\u0627", + "pt_BR": "\u0628\u0631\u0627\u0632\u06cc\u0644\u06cc \u067e\u0631\u062a\u06af\u0627\u0644\u06cc", + "en_GB": "\u0628\u0631\u0637\u0627\u0646\u0648\u06cc \u0627\u0646\u06af\u0631\u06cc\u0632\u06cc", + "my": "\u0628\u0631\u0645\u06cc", + "br": "\u0628\u0631\u06cc\u0679\u0646", + "bg": "\u0628\u0644\u063a\u0627\u0631\u06cc", + "bm": "\u0628\u0645\u0628\u0627\u0631\u0627", + "bn": "\u0628\u0646\u06af\u0627\u0644\u06cc", + "brx": "\u0628\u0648\u0688\u0648", + "bs": "\u0628\u0648\u0633\u0646\u06cc", + "be": "\u0628\u06cc\u0644\u0627\u0631\u0648\u0633\u06cc", + "bem": "\u0628\u06cc\u0645\u0628\u0627", + "ia": "\u0628\u06cc\u0646 \u0644\u0633\u0627\u0646\u06cc\u0627\u062a", + "bez": "\u0628\u06cc\u0646\u0627", + "pt": "\u067e\u064f\u0631\u062a\u06af\u0627\u0644\u06cc", + "ps": "\u067e\u0634\u062a\u0648", + "pa": "\u067e\u0646\u062c\u0627\u0628\u06cc", + "pl": "\u067e\u0648\u0644\u0633\u062a\u0627\u0646\u06cc", + "tt": "\u062a\u0627\u062a\u0627\u0631", + "tg": "\u062a\u0627\u062c\u06a9", + "twq": "\u062a\u0627\u0633\u0627\u0648\u0627\u0642", + "ty": "\u062a\u0627\u06c1\u06cc\u062a\u06cc", + "dav": "\u062a\u0627\u0626\u062a\u0627", + "bo": "\u062a\u0628\u062a\u06cc", + "tk": "\u062a\u0631\u06a9\u0645\u0627\u0646", + "tr": "\u062a\u0631\u06a9\u06cc", + "shi": "\u062a\u0634\u0644\u062d\u064a\u062a", + "ta": "\u062a\u0645\u0644", + "teo": "\u062a\u06cc\u0633\u0648", + "te": "\u062a\u06cc\u0644\u06af\u0648", + "th": "\u062a\u06be\u0627\u0626\u06cc", + "ti": "\u0679\u06af\u0631\u06cc\u0646\u06cc\u0627", + "tum": "\u0679\u0645\u0628\u0648\u06a9\u0627", + "tpi": "\u0679\u0648\u06a9 \u067e\u0650\u0633\u0650\u0646", + "to": "\u0679\u0648\u0646\u06af\u0646", + "tet": "\u0679\u06cc\u0679\u0645", + "ja": "\u062c\u0627\u067e\u0627\u0646\u06cc", + "ka": "\u062c\u0627\u0631\u062c\u06cc", + "jv": "\u062c\u0627\u0648\u06cc", + "de": "\u062c\u0631\u0645\u0646", + "sma": "\u062c\u0646\u0648\u0628\u06cc \u0633\u0627\u0645\u06cc", + "st": "\u062c\u0646\u0648\u0628\u06cc \u0633\u0648\u062a\u06be\u0648", + "dyo": "\u062c\u0648\u0644\u0627 \u0641\u0648\u0646\u064a\u0627", + "chr": "\u0686\u06cc\u0631\u0648\u06a9\u06cc", + "cs": "\u0686\u06cc\u06a9", + "cgg": "\u0686\u06cc\u06af\u0627", + "zh": "\u0686\u06cc\u0646\u06cc", + "zh_Hans": "\u0686\u06cc\u0646\u06cc (\u0622\u0633\u0627\u0646 \u06a9\u0631\u062f\u06c1)", + "km": "\u062e\u0645\u06cc\u0631", + "dua": "\u062f\u0648\u0627\u0644\u0627", + "nl": "\u0688\u0686", + "da": "\u0688\u06cc\u0646\u0634", + "dv": "\u0688\u06cc\u0648\u06cc\u06c1\u06cc", + "dsb": "\u0630\u06cc\u0644\u06cc \u0633\u0631\u0628\u06cc\u0627\u0626\u06cc", + "rwk": "\u0631\u0648\u0627", + "zh_Hant": "\u0631\u0648\u0627\u06cc\u062a\u06cc \u0686\u06cc\u0646\u06cc", + "ru": "\u0631\u0648\u0633\u06cc", + "rm": "\u0631\u0648\u0645\u0627\u0646\u0634", + "rof": "\u0631\u0648\u0645\u0628\u0648", + "ro": "\u0631\u0648\u0645\u06cc\u0646\u06cc\u0646", + "rn": "\u0631\u0648\u0646\u0688\u06cc", + "dje": "\u0632\u0631\u0645\u0627", + "zu": "\u0632\u0648\u0644\u0648", + "ts": "\u0632\u0648\u0646\u06af\u0627", + "xh": "\u0698\u0648\u0633\u0627", + "dz": "\u0698\u0648\u0646\u06af\u06a9\u06be\u0627", + "saq": "\u0633\u0627\u0645\u0628\u0648\u0631\u0648", + "sm": "\u0633\u0627\u0645\u0648\u0622\u0646", + "sg": "\u0633\u0627\u0646\u062c\u0648", + "sbp": "\u0633\u0627\u0646\u06af\u0648", + "ii": "\u0633\u0686\u0648\u0627\u0646 \u0627\u06cc", + "sh": "\u0633\u0631\u0628\u0648-\u06a9\u0631\u0648\u0626\u06cc\u0634\u06cc\u0646", + "gd": "\u0633\u06a9\u0627\u0679 \u06af\u06cc\u0644\u0650\u06a9", + "sms": "\u0633\u06a9\u0648\u0644\u0679 \u0633\u0627\u0645\u06cc", + "sk": "\u0633\u0644\u0648\u0648\u0627\u06a9", + "sl": "\u0633\u0644\u0648\u0648\u06cc\u0646\u06cc\u0627\u0626\u06cc", + "sd": "\u0633\u0646\u062f\u06be\u06cc", + "su": "\u0633\u0646\u0688\u0627\u0646\u06cc\u0632", + "sa": "\u0633\u064e\u0646\u0633\u06a9\u0631\u0650\u062a", + "si": "\u0633\u0646\u06c1\u0627\u0644\u0627", + "ss": "\u0633\u0648\u0627\u062a\u06cc", + "sw": "\u0633\u0648\u0627\u062d\u0644\u06cc", + "tn": "\u0633\u0648\u0627\u0646\u0627", + "ckb": "\u0633\u0648\u0631\u0627\u0646\u06cc \u06a9\u0631\u062f\u0634", + "xog": "\u0633\u0648\u06af\u0627", + "sv": "\u0633\u0648\u06cc\u0688\u0634", + "gsw": "\u0633\u0648\u0626\u0633 \u062c\u0631\u0645\u0646", + "fr_CH": "\u0633\u0648\u0626\u0633 \u0641\u0631\u06cc\u0646\u0686", + "de_CH": "\u0633\u0648\u0626\u0633 \u06c1\u0627\u0626\u06cc \u062c\u0631\u0645\u0646", + "seh": "\u0633\u06cc\u0646\u0627", + "tzm": "\u0633\u06cc\u0646\u0679\u0631\u0644 \u0627\u06cc\u0679\u0644\u0633 \u0679\u0645\u0627\u0632\u0627\u0626\u0679", + "ksb": "\u0634\u0627\u0645\u0628\u0627\u0644\u0627", + "nd": "\u0634\u0645\u0627\u0644\u06cc \u062f\u0628\u06cc\u0644", + "se": "\u0634\u0645\u0627\u0644\u06cc \u0633\u0627\u0645\u06cc", + "nso": "\u0634\u0645\u0627\u0644\u06cc \u0633\u0648\u062a\u06be\u0648", + "sn": "\u0634\u0648\u0646\u0627", + "sr": "\u0635\u0631\u0628\u06cc", + "so": "\u0635\u0648\u0645\u0627\u0644\u06cc", + "he": "\u0639\u0628\u0631\u0627\u0646\u06cc", + "ar": "\u0639\u0631\u0628\u06cc", + "gag": "\u063a\u0627\u063a\u0627\u0648\u0632", + "fa": "\u0641\u0627\u0631\u0633\u06cc", + "fj": "\u0641\u062c\u06cc", + "fr": "\u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc", + "fil": "\u0641\u0644\u06cc\u067e\u06cc\u0646\u0648", + "nl_BE": "\u0641\u0644\u06cc\u0645\u0650\u0634", + "fo": "\u0641\u06cc\u0631\u0648\u0626\u06cc\u0632", + "fi": "\u0641\u06cc\u0646\u06cc\u0634", + "kab": "\u0642\u0628\u0627\u0626\u0644\u06cc", + "kk": "\u0642\u0632\u0627\u062e", + "kam": "\u06a9\u0627\u0645\u0628\u0627", + "kg": "\u06a9\u0627\u0646\u06af\u0648", + "swc": "\u06a9\u0627\u0646\u06af\u0648 \u0633\u0648\u0627\u062d\u0644\u06cc", + "hr": "\u06a9\u0631\u0627\u062a\u06cc", + "ku": "\u06a9\u0631\u062f\u0634", + "ky": "\u06a9\u0631\u063a\u06cc\u0632\u06cc", + "ks": "\u06a9\u0634\u0645\u06cc\u0631\u06cc", + "tlh": "\u06a9\u0644\u0646\u06af\u0646", + "kn": "\u06a9\u0646\u0651\u0627\u0688\u0627", + "co": "\u06a9\u0648\u0631\u0627\u0633\u06cc\u06a9\u0646", + "kw": "\u06a9\u0648\u0631\u0646\u0634", + "ko": "\u06a9\u0648\u0631\u06cc\u0627\u0626\u06cc", + "koi": "\u06a9\u0648\u0645\u06cc \u067e\u0631\u0645\u06cc\u0627\u06a9", + "kok": "\u06a9\u0648\u0646\u06a9\u0646\u06cc", + "qu": "\u06a9\u0648\u06cc\u0686\u0648\u0622", + "zxx": "\u06a9\u0648\u0626\u06cc \u0644\u0633\u0627\u0646\u06cc \u0645\u0648\u0627\u062f \u0646\u06c1\u06cc\u06ba", + "ca": "\u06a9\u06cc\u0679\u0627\u0644\u0627\u0646", + "ki": "\u06a9\u06cc\u06a9\u0648\u06cc\u0648", + "rw": "\u06a9\u06cc\u0646\u06cc\u0627\u0631\u0648\u0627\u0646\u0688\u0627", + "en_CA": "\u06a9\u06cc\u0646\u06cc\u0688\u06cc\u0646 \u0627\u0646\u06af\u0631\u06cc\u0632\u06cc", + "fr_CA": "\u06a9\u06cc\u0646\u06cc\u0688\u06cc\u0646 \u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc", + "gaa": "\u06af\u0627", + "gn": "\u06af\u064f\u0627\u0631\u0627\u0646\u06cc", + "gl": "\u06af\u0627\u0644\u06cc\u0634\u06cc\u0627\u0626\u06cc", + "gu": "\u06af\u062c\u0631\u0627\u062a\u06cc", + "guz": "\u06af\u0633\u06cc", + "lg": "\u06af\u06cc\u0646\u0688\u0627", + "la": "\u0644\u0627\u0637\u06cc\u0646\u06cc", + "es_419": "\u0644\u0627\u0637\u06cc\u0646\u06cc \u0627\u0645\u0631\u06cc\u06a9\u06cc \u06c1\u0633\u067e\u0627\u0646\u0648\u06cc", + "lkt": "\u0644\u0627\u06a9\u0648\u0679\u0627", + "lag": "\u0644\u0627\u0646\u06af\u06cc", + "lo": "\u0644\u0627\u0624", + "lu": "\u0644\u0628\u0627-\u0643\u0627\u062a\u0627\u0646\u062c\u0627", + "lt": "\u0644\u062a\u06be\u064f\u0648\u0627\u06cc\u0646\u06cc\u0646", + "lb": "\u0644\u06af\u0698\u0645\u0628\u0631\u06af\u0634", + "ln": "\u0644\u0650\u0646\u06af\u064e\u0644\u0627", + "luo": "\u0644\u0648", + "loz": "\u0644\u0648\u0632\u06cc", + "smj": "\u0644\u0648\u0644 \u0633\u0627\u0645\u06cc", + "luy": "\u0644\u0648\u06cc\u0627", + "lv": "\u0644\u06cc\u0679\u0648\u06cc\u0646", + "lua": "\u0644\u06cc\u0648\u0628\u0627 \u0644\u0648\u0644\u0648\u0622", + "arn": "\u0645\u0627\u067e\u0648\u0686\u06d2", + "mgh": "\u0645\u0627\u062e\u0627\u0648\u0627-\u0645\u064a\u062a\u0648", + "ar_001": "\u0645\u0627\u0688\u0631\u0646 \u0627\u0633\u0679\u06cc\u0646\u0688\u0631\u0688 \u0639\u0631\u0628\u06cc", + "mas": "\u0645\u0627\u0633\u0627\u06cc", + "jmc": "\u0645\u0627\u0634\u06cc\u0645", + "ml": "\u0645\u0627\u0644\u0627\u06cc\u0627\u0644\u0645", + "ms": "\u0645\u0627\u0644\u0627\u0626\u06cc", + "mt": "\u0645\u0627\u0644\u0679\u06cc", + "mi": "\u0645\u0627\u0624\u0631\u06cc", + "kde": "\u0645\u0627\u0643\u0648\u0646\u062f\u0647", + "mr": "\u0645\u0631\u0627\u0679\u0647\u06cc", + "fy": "\u0645\u063a\u0631\u0628\u06cc \u0641\u0631\u06cc\u0633\u06cc\u0626\u0646", + "mk": "\u0645\u0642\u062f\u0648\u0646\u06cc\u0627\u0626\u06cc", + "mg": "\u0645\u0644\u0627\u06af\u0627\u0633\u06cc", + "mua": "\u0645\u0646\u0688\u0627\u0646\u06af", + "mn": "\u0645\u0646\u06af\u0624\u0644\u06cc", + "mfe": "\u0645\u0648\u0631\u06cc\u0633\u06cc\u06cc\u0646", + "moh": "\u0645\u0648\u06c1\u0627\u06a9", + "mgo": "\u0645\u06cc\u0679\u0627", + "mer": "\u0645\u06cc\u0631\u0648", + "es_MX": "\u0645\u06cc\u06a9\u0633\u06cc\u06a9\u0646 \u06c1\u0633\u067e\u0627\u0646\u0648\u06cc", + "gv": "\u0645\u06cc\u0646\u06a9\u0633", + "no": "\u0646\u0627\u0631\u0648\u06cc\u062c\u06cc\u0646", + "nb": "\u0646\u0627\u0631\u0648\u06cc\u062c\u06cc\u0646 \u0628\u0648\u06a9\u0645\u0644", + "naq": "\u0646\u0627\u0645\u0627", + "und": "\u0646\u0627\u0645\u0639\u0644\u0648\u0645 \u0632\u0628\u0627\u0646", + "jgo": "\u0646\u06af\u0648\u0645\u0628\u0627", + "nn": "\u0646\u0648\u0631\u0648\u06cc\u062c\u06cc\u0646\u06cc \u0646\u06cc\u0646\u0648\u0631\u0633\u06a9", + "nus": "\u0646\u0648\u06cc\u0631", + "ny": "\u0646\u06cc\u0627\u0646\u062c\u0627", + "ne": "\u0646\u06cc\u067e\u0627\u0644\u06cc", + "nyn": "\u0646\u06cc\u0646\u06a9\u0648\u0644", + "vai": "\u0648\u0627\u0626\u06cc", + "vun": "\u0648\u0646\u062c\u0648", + "wo": "\u0648\u0648\u0644\u0648\u0641", + "vi": "\u0648\u06cc\u062a\u0646\u0627\u0645\u06cc", + "cy": "\u0648\u06cc\u0644\u0634", + "ve": "\u0648\u06cc\u0646\u0688\u0627", + "es": "\u06c1\u0633\u067e\u0627\u0646\u0648\u06cc", + "hi": "\u06c1\u0646\u062f\u06cc", + "hu": "\u06c1\u0646\u06af\u06cc\u0631\u06cc\u0646", + "haw": "\u06c1\u0648\u0627\u0626\u06cc", + "ha": "\u06c1\u0624\u0633\u0627", + "ht": "\u06c1\u06cc\u062a\u06cc", + "yi": "\u06cc\u062f\u0634", + "pt_PT": "\u06cc\u0648\u0631\u067e\u06cc \u067e\u0631\u062a\u06af\u0627\u0644\u06cc", + "es_ES": "\u06cc\u0648\u0631\u067e\u06cc \u06c1\u0633\u067e\u0627\u0646\u0648\u06cc", + "yo": "\u06cc\u0648\u0631\u0648\u0628\u0627", + "uk": "\u06cc\u0648\u06a9\u0631\u06cc\u0646\u06cc\u0627\u0626\u06cc", + "el": "\u06cc\u0648\u0646\u0627\u0646\u06cc", + "ug": "\u06cc\u0648\u0626\u06af\u06c1\u0631", + "kea": "\u0643\u0627\u0628\u0648\u064a\u0631\u062f\u064a\u0627\u0646\u0648", + "kl": "\u0643\u0627\u0644\u0627\u0644\u064a\u0633\u062a", + "kln": "\u0643\u0627\u0644\u064a\u0646\u062c\u064a\u0646", + "nmg": "\u0643\u0648\u0627\u064a\u0633\u0648", + "khq": "\u0643\u0648\u064a\u0631\u0627 \u0634\u064a\u0646\u064a", + "ses": "\u0643\u0648\u064a\u0631\u0627\u0628\u0648\u0631\u0648 \u0633\u064a\u0646\u06cc", + "quc": "\u0643\u064a\u0634\u06cc", + "ace": "Achinese", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "ain": "Ainu", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "ale": "Aleut", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "njo": "Ao Naga", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "rup": "Aromanian", + "frp": "Arpitan", + "ast": "Asturian", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "awa": "Awadhi", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brh": "Brahui", + "bra": "Braj", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chy": "Cheyenne", + "chb": "Chibcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "cop": "Coptic", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "doi": "Dogri", + "dgr": "Dogrib", + "dyu": "Dyula", + "frs": "Eastern Frisian", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "egl": "Emilian", + "myv": "Erzya", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "hif": "Fiji Hindi", + "fon": "Fon", + "gur": "Frafra", + "fur": "Friulian", + "ff": "Fulah", + "gan": "Gan Chinese", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "gon": "Gondi", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "io": "Ido", + "ilo": "Iloko", + "izh": "Ingrian", + "inh": "Ingush", + "ie": "Interlingue", + "ik": "Inupiaq", + "jam": "Jamaican Creole English", + "kaj": "Jju", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "xal": "Kalmyk", + "kbl": "Kanembu", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "csb": "Kashubian", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "kv": "Komi", + "kfo": "Koro", + "kos": "Kosraean", + "avk": "Kotava", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lam": "Lamba", + "ltg": "Latgalian", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "nds": "Low German", + "sli": "Lower Silesian", + "lui": "Luiseno", + "lun": "Lunda", + "mde": "Maba", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "chm": "Mari", + "mh": "Marshallese", + "mwr": "Marwari", + "mzn": "Mazanderani", + "byv": "Medumba", + "men": "Mende", + "mwv": "Mentawai", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "mdf": "Moksha", + "ro_MD": "Moldavian", + "lol": "Mongo", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "ttt": "Muslim Tat", + "mye": "Myene", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "frr": "Northern Frisian", + "nov": "Novial", + "nym": "Nyamwezi", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "osa": "Osage", + "ota": "Ottoman Turkish", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pnt": "Pontic", + "prg": "Prussian", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "Romany", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "sgs": "Samogitian", + "sad": "Sandawe", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "sly": "Selayar", + "sel": "Selkup", + "see": "Seneca", + "srr": "Serer", + "sei": "Seri", + "shn": "Shan", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "den": "Slave", + "sog": "Sogdien", + "snk": "Soninke", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sumerian", + "sus": "Susu", + "syr": "Syriac", + "tl": "Tagalog", + "tly": "Talysh", + "tmh": "Tamashek", + "trv": "Taroko", + "ter": "Tereno", + "tig": "Tigre", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tkl": "Tokelau", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "uga": "Ugaritic", + "umb": "Umbundu", + "vec": "Venetian", + "vep": "Veps", + "vo": "Volap\u00fck", + "vro": "V\u00f5ro", + "vot": "Votic", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ybb": "Yemba", + "zap": "Zapotec", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "gbz": "Zoroastrian Dari", + "zun": "Zuni" +} diff --git a/public/intl/language/uz-UZ.json b/public/intl/language/uz-UZ.json new file mode 100644 index 0000000..daacab8 --- /dev/null +++ b/public/intl/language/uz-UZ.json @@ -0,0 +1,611 @@ +{ + "ab": "abxazcha", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aa": "Afar", + "afh": "Afrihili", + "af": "afrikancha", + "agq": "ag\u2018emcha", + "ain": "Ainu", + "ak": "akancha", + "akk": "Akkadian", + "bss": "Akoose", + "akz": "Alabama", + "sq": "albancha", + "ale": "Aleut", + "arq": "Algerian Arabic", + "en_US": "American English", + "ase": "American Sign Language", + "am": "amxarcha", + "egy": "Ancient Egyptian", + "grc": "Ancient Greek", + "anp": "Angika", + "zh_Hant": "an\u02bcanaviy xitoycha", + "njo": "Ao Naga", + "ar": "arabcha", + "an": "Aragonese", + "arc": "Aramaic", + "aro": "Araona", + "arp": "Arapaho", + "arw": "Arawak", + "hy": "armancha", + "rup": "Aromanian", + "frp": "Arpitan", + "as": "assamcha", + "ast": "Asturian", + "asa": "asucha", + "cch": "Atsam", + "av": "Avaric", + "ae": "Avestan", + "en_AU": "Avstraliya inglizchasi", + "de_AT": "Avstriya olmonchasi", + "awa": "Awadhi", + "ay": "Aymara", + "bfq": "Badaga", + "ksf": "bafiycha", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "Balinese", + "bal": "Baluchi", + "bm": "bambarcha", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "Basaa", + "eu": "baskcha", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "Beja", + "be": "belaruscha", + "bem": "bembacha", + "bez": "benacha", + "bn": "bengalcha", + "bew": "Betawi", + "bho": "Bhojpuri", + "bik": "Bikol", + "bin": "Bini", + "my": "birmancha", + "bpy": "Bishnupriya", + "bi": "Bislama", + "byn": "Blin", + "zbl": "Blissymbols", + "brx": "bodocha", + "bg": "bolgarcha", + "ba": "boshqircha", + "bs": "bosniycha", + "brh": "Brahui", + "bra": "Braj", + "pt_BR": "Braziliya portugalchasi", + "br": "bretoncha", + "en_GB": "Britaniya inglizchasi", + "bug": "Buginese", + "bum": "Bulu", + "bua": "Buriat", + "cad": "Caddo", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "car": "Carib", + "cay": "Cayuga", + "ceb": "Cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "chg": "Chagatai", + "ch": "Chamorro", + "ce": "Chechen", + "chr": "cherokcha", + "cs": "chexcha", + "chy": "Cheyenne", + "chb": "Chibcha", + "cgg": "chigcha", + "qug": "Chimborazo Highland Quichua", + "chn": "Chinook Jargon", + "chp": "Chipewyan", + "cho": "Choctaw", + "cu": "Church Slavic", + "chk": "Chuukese", + "cv": "Chuvash", + "nwc": "Classical Newari", + "syc": "Classical Syriac", + "ksh": "Colognian", + "swb": "Comorian", + "cop": "Coptic", + "cr": "Cree", + "mus": "Creek", + "crh": "Crimean Turkish", + "dak": "Dakota", + "dar": "Dargwa", + "da": "datcha", + "dzg": "Dazaga", + "del": "Delaware", + "din": "Dinka", + "dv": "Divehi", + "doi": "Dogri", + "dgr": "Dogrib", + "dua": "dualcha", + "dyu": "Dyula", + "frs": "Eastern Frisian", + "efi": "Efik", + "arz": "Egyptian Arabic", + "eka": "Ekajuk", + "elx": "Elamite", + "ebu": "embucha", + "egl": "Emilian", + "myv": "Erzya", + "eo": "esperantocha", + "et": "estoncha", + "ewo": "Ewondo", + "ext": "Extremaduran", + "fan": "Fang", + "fat": "Fanti", + "fo": "farercha", + "fj": "fijcha", + "hif": "Fiji Hindi", + "fil": "filipincha", + "fi": "fincha", + "nl_BE": "flamandcha", + "fon": "Fon", + "fa": "forscha", + "gur": "Frafra", + "fr": "fransuzcha", + "fur": "Friulian", + "ff": "Fulah", + "gaa": "Ga", + "gag": "gagozcha", + "ht": "gaitcha", + "gl": "galitsiycha", + "gan": "Gan Chinese", + "lg": "gandcha", + "haw": "gavaycha", + "gay": "Gayo", + "gba": "Gbaya", + "gez": "Geez", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "fy": "g\u02bbarbiy friziancha", + "glk": "Gilaki", + "gil": "Gilbertese", + "gom": "Goan Konkani", + "nl": "gollandcha", + "gon": "Gondi", + "gn": "gorancha", + "gor": "Gorontalo", + "got": "Gothic", + "grb": "Grebo", + "ka": "gruzincha", + "gu": "gujoratcha", + "guz": "guzcha", + "gwi": "Gwich\u02bcin", + "hai": "Haida", + "hak": "Hakka Chinese", + "hz": "Herero", + "hil": "Hiligaynon", + "hi": "hindcha", + "ho": "Hiri Motu", + "hit": "Hittite", + "hmn": "Hmong", + "hup": "Hupa", + "iba": "Iban", + "ibb": "Ibibio", + "he": "ibroniy", + "io": "Ido", + "ig": "igbocha", + "ilo": "Iloko", + "smn": "inari semiycha", + "id": "indoneyzcha", + "en": "inglizcha", + "izh": "Ingrian", + "inh": "Ingush", + "ia": "Interlingua", + "ie": "Interlingue", + "iu": "inuktitutcha", + "ik": "Inupiaq", + "ga": "irlandcha", + "is": "islandcha", + "es": "ispancha", + "it": "italyancha", + "ee": "ivicha", + "jam": "Jamaican Creole English", + "sma": "janubiy semiycha", + "kaj": "Jju", + "jrb": "Judeo-Arabic", + "jpr": "Judeo-Persian", + "jut": "Jutish", + "kbd": "Kabardian", + "kea": "kabuverdiancha", + "kac": "Kachin", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "kalallisutcha", + "kln": "kalenjincha", + "xal": "Kalmyk", + "kam": "kambcha", + "fr_CA": "Kanada fransuzchasi", + "en_CA": "Kanada inglizchasi", + "kbl": "Kanembu", + "kn": "kannadcha", + "kr": "Kanuri", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "ks": "kashmircha", + "csb": "Kashubian", + "ca": "katalancha", + "kaw": "Kawi", + "ken": "Kenyang", + "kha": "Khasi", + "kho": "Khotanese", + "khw": "Khowar", + "ki": "kikuycha", + "kmb": "Kimbundu", + "krj": "Kinaray-a", + "rw": "kinyarvandcha", + "kiu": "Kirmanjki", + "tlh": "Klingon", + "bkm": "Kom", + "kv": "Komi", + "koi": "komi-permyakcha", + "kg": "Kongo", + "swc": "kongo svahiliycha", + "kok": "konkancha", + "ko": "koreyscha", + "kw": "kornishcha", + "kfo": "Koro", + "co": "korsiancha", + "ses": "koryaboro senniycha", + "kos": "Kosraean", + "avk": "Kotava", + "kpe": "Kpelle", + "kri": "Krio", + "kj": "Kuanyama", + "kum": "Kumyk", + "ku": "kurdcha", + "kru": "Kurukh", + "kut": "Kutenai", + "nmg": "kvaziycha", + "lad": "Ladino", + "lah": "Lahnda", + "lkt": "lakotcha", + "lam": "Lamba", + "lag": "langcha", + "lo": "laoscha", + "ltg": "Latgalian", + "lv": "latishcha", + "lzz": "Laz", + "lez": "Lezghian", + "lij": "Ligurian", + "li": "Limburgish", + "ln": "lingalcha", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litovcha", + "liv": "Livonian", + "jbo": "Lojban", + "lmo": "Lombard", + "es_419": "Lotin Amerika ispanchasi", + "la": "lotincha", + "nds": "Low German", + "sli": "Lower Silesian", + "loz": "Lozi", + "lu": "luba-katangcha", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "luli semiycha", + "lun": "Lunda", + "luo": "luocha", + "luy": "luycha", + "lb": "lyuksemburgcha", + "mde": "Maba", + "jmc": "machamcha", + "mad": "Madurese", + "maf": "Mafa", + "mag": "Magahi", + "vmf": "Main-Franconian", + "mai": "Maithili", + "mak": "Makasar", + "mk": "makedoncha", + "mgh": "makuva-mittocha", + "mg": "malagasiycha", + "ml": "malayamcha", + "ms": "malaycha", + "mt": "maltacha", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri", + "mi": "maoriycha", + "arn": "mapuchiycha", + "kde": "maqondiy", + "mr": "maratcha", + "chm": "Mari", + "tzm": "markaziy atlas vaqt zonasi", + "mh": "Marshallese", + "mwr": "Marwari", + "mas": "masaycha", + "mzn": "Mazanderani", + "byv": "Medumba", + "es_MX": "Meksika ispanchasi", + "gv": "mencha", + "men": "Mende", + "mwv": "Mentawai", + "mer": "merucha", + "mgo": "metacha", + "mic": "Micmac", + "dum": "Middle Dutch", + "enm": "Middle English", + "frm": "Middle French", + "gmh": "Middle High German", + "mga": "Middle Irish", + "nan": "Min Nan Chinese", + "min": "Minangkabau", + "xmf": "Mingrelian", + "mwl": "Mirandese", + "lus": "Mizo", + "mn": "mo\u2018g\u2018ulcha", + "moh": "mohaukcha", + "mdf": "Moksha", + "ro_MD": "moldovan rumincha", + "lol": "Mongo", + "mfe": "morisyencha", + "ary": "Moroccan Arabic", + "mos": "Mossi", + "mul": "Multiple Languages", + "mua": "mundangcha", + "ttt": "Muslim Tat", + "mye": "Myene", + "naq": "namacha", + "na": "Nauru", + "nv": "Navajo", + "ng": "Ndonga", + "nap": "Neapolitan", + "de": "nemischa", + "ne": "nepalcha", + "new": "Newari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "ngombcha", + "yrl": "Nheengatu", + "nia": "Nias", + "niu": "Niuean", + "nog": "Nogai", + "und": "noma\u02bclum til", + "frr": "Northern Frisian", + "nso": "Northern Sotho", + "nb": "norvegcha bokmal", + "nn": "norvegcha ninorsk", + "no": "Norwegian", + "nov": "Novial", + "nus": "noyrcha", + "nqo": "nqoancha", + "nym": "Nyamwezi", + "ny": "Nyanja", + "nyn": "nyankolcha", + "tog": "Nyasa Tonga", + "nyo": "Nyoro", + "nzi": "Nzima", + "oc": "Occitan", + "uz": "o\u02bbzbekcha", + "oj": "Ojibwa", + "ang": "Old English", + "fro": "Old French", + "goh": "Old High German", + "sga": "Old Irish", + "non": "Old Norse", + "peo": "Old Persian", + "pro": "Old Proven\u00e7al", + "or": "oriycha", + "om": "oromocha", + "osa": "Osage", + "os": "Ossetic", + "ota": "Ottoman Turkish", + "az": "ozarbayjoncha", + "pal": "Pahlavi", + "pfl": "Palatine German", + "pau": "Palauan", + "pi": "Pali", + "pam": "Pampanga", + "pag": "Pangasinan", + "pa": "panjobcha", + "pap": "Papiamento", + "pdc": "Pennsylvania German", + "phn": "Phoenician", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pon": "Pohnpeian", + "pl": "polyakcha", + "pnt": "Pontic", + "pt": "portugalcha", + "prg": "Prussian", + "ps": "pushtu tili", + "quc": "qichiancha", + "ky": "qirg\u02bbizcha", + "kab": "qobilcha", + "khq": "qoyra-chincha", + "kk": "qozoqcha", + "dsb": "quyi sorbcha", + "qu": "qvechuancha", + "raj": "Rajasthani", + "rap": "Rapanui", + "rar": "Rarotongan", + "rif": "Riffian", + "rgn": "Romagnol", + "rm": "romancha", + "rom": "Romany", + "rof": "rombacha", + "root": "Root", + "rtm": "Rotuman", + "rug": "Roviana", + "rwk": "ruandcha", + "ro": "rumincha", + "rn": "rundcha", + "ru": "ruscha", + "rue": "Rusyn", + "ssy": "Saho", + "sah": "Sakha", + "sam": "Samaritan Aramaic", + "saq": "samburcha", + "sm": "Samoan", + "sgs": "Samogitian", + "sad": "Sandawe", + "sg": "sangoancha", + "sbp": "sanguancha", + "sa": "sanskritcha", + "sat": "Santali", + "sc": "Sardinian", + "sas": "Sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sco": "Scots", + "gd": "Scottish Gaelic", + "sly": "Selayar", + "sel": "Selkup", + "see": "Seneca", + "seh": "seniycha", + "sr": "serbcha", + "sh": "Serbo-Croatian", + "srr": "Serer", + "sei": "Seri", + "ksb": "shambalacha", + "shn": "Shan", + "nd": "shimoliy ndebelcha", + "se": "shimoliy semiycha", + "sms": "shkolt semiycha", + "sn": "shoniycha", + "sv": "shvedcha", + "fr_CH": "Shvesariya fransuzchasi", + "de_CH": "Shvesariya olmonchasi", + "gsw": "shveysariya nemischasi", + "scn": "Sicilian", + "sid": "Sidamo", + "bla": "Siksika", + "szl": "Silesian", + "sd": "sindxiycha", + "si": "sinholcha", + "den": "Slave", + "sk": "slovakcha", + "sl": "slovencha", + "zh_Hans": "soddalashtirilgan xitoycha", + "xog": "sogancha", + "sog": "Sogdien", + "so": "somalicha", + "snk": "Soninke", + "ckb": "sorani kurd tili", + "azb": "South Azerbaijani", + "nr": "South Ndebele", + "alt": "Southern Altai", + "st": "Southern Sotho", + "srn": "Sranan Tongo", + "zgh": "standart marokash tamazit", + "suk": "Sukuma", + "sux": "Sumerian", + "su": "sundancha", + "sus": "Susu", + "sw": "svahilcha", + "ss": "Swati", + "syr": "Syriac", + "shi": "tachilgitcha", + "tl": "Tagalog", + "ty": "Tahitian", + "dav": "taitcha", + "tly": "Talysh", + "tmh": "Tamashek", + "ta": "tamilcha", + "trv": "Taroko", + "tt": "tatarcha", + "th": "taycha", + "te": "telugvancha", + "ter": "Tereno", + "teo": "tesoancha", + "tet": "Tetum", + "bo": "tibetcha", + "tig": "Tigre", + "ti": "tigrincha", + "zxx": "til tarkibi yo\u02bbq", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tg": "tojikcha", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "to": "tongocha", + "fit": "Tornedalen Finnish", + "twq": "tosovoqcha", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "Tsimshian", + "ts": "Tsonga", + "tn": "Tswana", + "tcy": "Tulu", + "tum": "Tumbuka", + "aeb": "Tunisian Arabic", + "tr": "turkcha", + "tk": "turkmancha", + "tru": "Turoyo", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "tw": "Twi", + "kcg": "Tyap", + "udm": "Udmurt", + "cy": "uelscha", + "uga": "Ugaritic", + "uk": "ukraincha", + "umb": "Umbundu", + "ur": "urducha", + "ug": "uyg\u02bburcha", + "vai": "vayancha", + "ve": "Venda", + "vec": "Venetian", + "hu": "vengrcha", + "vep": "Veps", + "vo": "Volap\u00fck", + "wo": "volofcha", + "vro": "V\u00f5ro", + "vot": "Votic", + "vun": "vunjoancha", + "vi": "vyetnamcha", + "wa": "Walloon", + "wae": "Walser", + "war": "Waray", + "wbp": "Warlpiri", + "was": "Washo", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wal": "Wolaytta", + "wuu": "Wu Chinese", + "ha": "xauscha", + "hsn": "Xiang Chinese", + "zh": "xitoycha", + "km": "xmercha", + "hr": "xorvatcha", + "xh": "xosancha", + "yav": "Yangben", + "yao": "Yao", + "yap": "Yapese", + "ja": "yaponcha", + "jv": "yavancha", + "ybb": "Yemba", + "es_ES": "Yevropa ispanchasi", + "pt_PT": "Yevropa portugalchasi", + "yi": "Yiddish", + "dyo": "yola-fonyicha", + "yo": "yorubcha", + "dz": "yovoncha", + "el": "yunoncha", + "hsb": "yuqori sorbcha", + "ar_001": "zamonavij standart arabcha", + "zap": "Zapotec", + "dje": "zarmacha", + "zza": "Zaza", + "zea": "Zeelandic", + "zen": "Zenaga", + "za": "Zhuang", + "ii": "zichuan yicha", + "gbz": "Zoroastrian Dari", + "zu": "zuluancha", + "zun": "Zuni" +} diff --git a/public/intl/language/vi-VN.json b/public/intl/language/vi-VN.json new file mode 100644 index 0000000..7c446a0 --- /dev/null +++ b/public/intl/language/vi-VN.json @@ -0,0 +1,611 @@ +{ + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "en_AU": "Australian English", + "de_AT": "Austrian German", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "nso": "B\u1eafc Sotho", + "bew": "Betawi", + "chn": "Bi\u1ec7t ng\u1eef Chinook", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "en_CA": "Canadian English", + "fr_CA": "Canadian French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "pt_PT": "European Portuguese", + "es_ES": "European Spanish", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "zxx": "Kh\u00f4ng c\u00f3 n\u1ed9i dung ng\u00f4n ng\u1eef", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "zbl": "K\u00fd hi\u1ec7u Blissymbols", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "es_MX": "Mexican Spanish", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "und": "Ng\u00f4n ng\u1eef kh\u00f4ng x\u00e1c \u0111\u1ecbnh", + "yrl": "Nheengatu", + "mul": "Nhi\u1ec1u Ng\u00f4n ng\u1eef", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "zh_Hans": "Simplified Chinese", + "azb": "South Azerbaijani", + "fr_CH": "Swiss French", + "tly": "Talysh", + "tet": "Tetum", + "ar": "Ti\u1ebfng \u1ea2 R\u1eadp", + "ar_001": "Ti\u1ebfng \u1ea2 R\u1eadp Hi\u1ec7n \u0111\u1ea1i", + "shu": "Ti\u1ebfng \u1ea2-R\u1eadp Chad", + "ab": "Ti\u1ebfng Abkhazia", + "ace": "Ti\u1ebfng Achinese", + "ach": "Ti\u1ebfng Acoli", + "ada": "Ti\u1ebfng Adangme", + "ady": "Ti\u1ebfng Adyghe", + "aa": "Ti\u1ebfng Afar", + "afh": "Ti\u1ebfng Afrihili", + "agq": "Ti\u1ebfng Aghem", + "egy": "Ti\u1ebfng Ai C\u1eadp c\u1ed5", + "ga": "Ti\u1ebfng Ai-len", + "sga": "Ti\u1ebfng Ai-len c\u1ed5", + "mga": "Ti\u1ebfng Ai-len Trung c\u1ed5", + "ain": "Ti\u1ebfng Ainu", + "ak": "Ti\u1ebfng Akan", + "akk": "Ti\u1ebfng Akkadia", + "bss": "Ti\u1ebfng Akoose", + "ale": "Ti\u1ebfng Aleut", + "alt": "Ti\u1ebfng Altai Mi\u1ec1n Nam", + "am": "Ti\u1ebfng Amharic", + "sq": "Ti\u1ebfng An-ba-ni", + "anp": "Ti\u1ebfng Angika", + "en": "Ti\u1ebfng Anh", + "en_GB": "Ti\u1ebfng Anh (Anh)", + "en_US": "Ti\u1ebfng Anh (M\u1ef9)", + "ang": "Ti\u1ebfng Anh c\u1ed5", + "enm": "Ti\u1ebfng Anh Trung c\u1ed5", + "an": "Ti\u1ebfng Aragon", + "arc": "Ti\u1ebfng Aramaic", + "arp": "Ti\u1ebfng Arapaho", + "arn": "Ti\u1ebfng Araucanian", + "arw": "Ti\u1ebfng Arawak", + "hy": "Ti\u1ebfng Armenia", + "rup": "Ti\u1ebfng Aromania", + "as": "Ti\u1ebfng Assam", + "ast": "Ti\u1ebfng Asturias", + "asa": "Ti\u1ebfng Asu", + "cch": "Ti\u1ebfng Atsam", + "av": "Ti\u1ebfng Avaric", + "ae": "Ti\u1ebfng Avestan", + "awa": "Ti\u1ebfng Awadhi", + "ay": "Ti\u1ebfng Aymara", + "az": "Ti\u1ebfng Azerbaijan", + "pl": "Ti\u1ebfng Ba Lan", + "fa": "Ti\u1ebfng Ba T\u01b0", + "peo": "Ti\u1ebfng Ba T\u01b0 c\u1ed5", + "ksf": "Ti\u1ebfng Bafia", + "bfd": "Ti\u1ebfng Bafut", + "ban": "Ti\u1ebfng Bali", + "bal": "Ti\u1ebfng Baluchi", + "bm": "Ti\u1ebfng Bambara", + "bax": "Ti\u1ebfng Bamun", + "bas": "Ti\u1ebfng Basaa", + "ba": "Ti\u1ebfng Bashkir", + "eu": "Ti\u1ebfng Basque", + "bej": "Ti\u1ebfng Beja", + "be": "Ti\u1ebfng Belarus", + "bem": "Ti\u1ebfng Bemba", + "bez": "Ti\u1ebfng Bena", + "bn": "Ti\u1ebfng Bengali", + "bho": "Ti\u1ebfng Bhojpuri", + "bik": "Ti\u1ebfng Bikol", + "bin": "Ti\u1ebfng Bini", + "bi": "Ti\u1ebfng Bislama", + "byn": "Ti\u1ebfng Blin", + "brx": "Ti\u1ebfng Bodo", + "pt": "Ti\u1ebfng B\u1ed3 \u0110\u00e0o Nha", + "pt_BR": "Ti\u1ebfng B\u1ed3 \u0110\u00e0o Nha (Braxin)", + "bra": "Ti\u1ebfng Braj", + "br": "Ti\u1ebfng Breton", + "bug": "Ti\u1ebfng Bugin", + "bg": "Ti\u1ebfng Bulgaria", + "bum": "Ti\u1ebfng Bulu", + "bua": "Ti\u1ebfng Buriat", + "cad": "Ti\u1ebfng Caddo", + "car": "Ti\u1ebfng Carib", + "ca": "Ti\u1ebfng Catalan", + "cay": "Ti\u1ebfng Cayuga", + "ceb": "Ti\u1ebfng Cebuano", + "chg": "Ti\u1ebfng Chagatai", + "ch": "Ti\u1ebfng Chamorro", + "ce": "Ti\u1ebfng Chechen", + "chr": "Ti\u1ebfng Cherokee", + "chy": "Ti\u1ebfng Cheyenne", + "chb": "Ti\u1ebfng Chibcha", + "cgg": "Ti\u1ebfng Chiga", + "chp": "Ti\u1ebfng Chipewyan", + "cho": "Ti\u1ebfng Choctaw", + "chk": "Ti\u1ebfng Chuuk", + "cv": "Ti\u1ebfng Chuvash", + "ksh": "Ti\u1ebfng Cologne", + "cop": "Ti\u1ebfng Coptic", + "kw": "Ti\u1ebfng Cornwall", + "co": "Ti\u1ebfng Corsica", + "swb": "Ti\u1ebfng C\u00f4mo", + "cr": "Ti\u1ebfng Cree", + "mus": "Ti\u1ebfng Creek", + "hr": "Ti\u1ebfng Croatia", + "dak": "Ti\u1ebfng Dakota", + "dar": "Ti\u1ebfng Dargwa", + "dzg": "Ti\u1ebfng Dazaga", + "del": "Ti\u1ebfng Delaware", + "ii": "Ti\u1ebfng Di T\u1ee9 Xuy\u00ean", + "din": "Ti\u1ebfng Dinka", + "dv": "Ti\u1ebfng Divehi", + "he": "Ti\u1ebfng Do Th\u00e1i", + "doi": "Ti\u1ebfng Dogri", + "dgr": "Ti\u1ebfng Dogrib", + "dua": "Ti\u1ebfng Duala", + "dyu": "Ti\u1ebfng Dyula", + "dz": "Ti\u1ebfng Dzongkha", + "da": "Ti\u1ebfng \u0110an M\u1ea1ch", + "de": "Ti\u1ebfng \u0110\u1ee9c", + "gsw": "Ti\u1ebfng \u0110\u1ee9c (Th\u1ee5y S\u0129)", + "efi": "Ti\u1ebfng Efik", + "eka": "Ti\u1ebfng Ekajuk", + "elx": "Ti\u1ebfng Elamite", + "ebu": "Ti\u1ebfng Embu", + "myv": "Ti\u1ebfng Erzya", + "et": "Ti\u1ebfng Estonia", + "ee": "Ti\u1ebfng Ewe", + "ewo": "Ti\u1ebfng Ewondo", + "fan": "Ti\u1ebfng Fang", + "fat": "Ti\u1ebfng Fanti", + "fo": "Ti\u1ebfng Faore", + "fj": "Ti\u1ebfng Fiji", + "nl_BE": "Ti\u1ebfng Flemish", + "fon": "Ti\u1ebfng Fon", + "fy": "Ti\u1ebfng Frisia", + "frr": "Ti\u1ebfng Frisian Mi\u1ec1n B\u1eafc", + "frs": "Ti\u1ebfng Frisian Mi\u1ec1n \u0110\u00f4ng", + "fur": "Ti\u1ebfng Friulian", + "ff": "Ti\u1ebfng Fulah", + "gaa": "Ti\u1ebfng Ga", + "gag": "Ti\u1ebfng Gagauz", + "gl": "Ti\u1ebfng Galician", + "lg": "Ti\u1ebfng Ganda", + "gay": "Ti\u1ebfng Gayo", + "gba": "Ti\u1ebfng Gbaya", + "gez": "Ti\u1ebfng Geez", + "bbj": "Ti\u1ebfng Ghomala", + "gil": "Ti\u1ebfng Gilbert", + "gon": "Ti\u1ebfng Gondi", + "gor": "Ti\u1ebfng Gorontalo", + "got": "Ti\u1ebfng G\u00f4-t\u00edch", + "grb": "Ti\u1ebfng Grebo", + "ka": "Ti\u1ebfng Gruzia", + "gn": "Ti\u1ebfng Guarani", + "gu": "Ti\u1ebfng Gujarati", + "guz": "Ti\u1ebfng Gusii", + "gwi": "Ti\u1ebfng Gwich\u02bcin", + "nds": "Ti\u1ebfng H\u1ea1 Gi\u00e9c-man", + "nl": "Ti\u1ebfng H\u00e0 Lan", + "dum": "Ti\u1ebfng H\u00e0 Lan Trung c\u1ed5", + "dsb": "Ti\u1ebfng H\u1ea1 Sorbia", + "hai": "Ti\u1ebfng Haida", + "ht": "Ti\u1ebfng Haiti", + "ko": "Ti\u1ebfng H\u00e0n", + "ha": "Ti\u1ebfng Hausa", + "haw": "Ti\u1ebfng Hawaii", + "hz": "Ti\u1ebfng Herero", + "hil": "Ti\u1ebfng Hiligaynon", + "hi": "Ti\u1ebfng Hindi", + "ho": "Ti\u1ebfng Hiri Motu", + "hit": "Ti\u1ebfng Hittite", + "hmn": "Ti\u1ebfng Hm\u00f4ng", + "hu": "Ti\u1ebfng Hungary", + "hup": "Ti\u1ebfng Hupa", + "el": "Ti\u1ebfng Hy L\u1ea1p", + "grc": "Ti\u1ebfng Hy L\u1ea1p c\u1ed5", + "iba": "Ti\u1ebfng Iban", + "ibb": "Ti\u1ebfng Ibibio", + "is": "Ti\u1ebfng Iceland", + "io": "Ti\u1ebfng Ido", + "ig": "Ti\u1ebfng Igbo", + "ilo": "Ti\u1ebfng Iloko", + "smn": "Ti\u1ebfng Inari Sami", + "id": "Ti\u1ebfng Indonesia", + "inh": "Ti\u1ebfng Ingush", + "ie": "Ti\u1ebfng Interlingue", + "iu": "Ti\u1ebfng Inuktitut", + "ik": "Ti\u1ebfng Inupiaq", + "jv": "Ti\u1ebfng Java", + "kaj": "Ti\u1ebfng Jju", + "dyo": "Ti\u1ebfng Jola-Fonyi", + "jrb": "Ti\u1ebfng Judeo-\u1ea2 R\u1eadp", + "jpr": "Ti\u1ebfng Judeo-Ba T\u01b0", + "kbd": "Ti\u1ebfng Kabardian", + "kea": "Ti\u1ebfng Kabuverdianu", + "kab": "Ti\u1ebfng Kabyle", + "kac": "Ti\u1ebfng Kachin", + "kkj": "Ti\u1ebfng Kako", + "kl": "Ti\u1ebfng Kalaallisut", + "kln": "Ti\u1ebfng Kalenjin", + "xal": "Ti\u1ebfng Kalmyk", + "kam": "Ti\u1ebfng Kamba", + "kbl": "Ti\u1ebfng Kanembu", + "kn": "Ti\u1ebfng Kannada", + "kr": "Ti\u1ebfng Kanuri", + "kaa": "Ti\u1ebfng Kara-Kalpak", + "krc": "Ti\u1ebfng Karachay-Balkar", + "krl": "Ti\u1ebfng Karelian", + "ks": "Ti\u1ebfng Kashmiri", + "csb": "Ti\u1ebfng Kashubia", + "kaw": "Ti\u1ebfng Kawi", + "kk": "Ti\u1ebfng Kazakh", + "kha": "Ti\u1ebfng Khasi", + "ia": "Ti\u1ebfng Khoa H\u1ecdc Qu\u1ed1c T\u1ebf", + "kho": "Ti\u1ebfng Khotan", + "km": "Ti\u1ebfng Kh\u01a1-me", + "ki": "Ti\u1ebfng Kikuyu", + "kmb": "Ti\u1ebfng Kimbundu", + "rw": "Ti\u1ebfng Kinyarwanda", + "tlh": "Ti\u1ebfng Klingon", + "bkm": "Ti\u1ebfng Kom", + "kv": "Ti\u1ebfng Komi", + "koi": "Ti\u1ebfng Komi-Permyak", + "kg": "Ti\u1ebfng Kongo", + "kok": "Ti\u1ebfng Konkani", + "kfo": "Ti\u1ebfng Koro", + "kos": "Ti\u1ebfng Kosrae", + "khq": "Ti\u1ebfng Koyra Chiini", + "ses": "Ti\u1ebfng Koyraboro Senni", + "kpe": "Ti\u1ebfng Kpelle", + "kj": "Ti\u1ebfng Kuanyama", + "kum": "Ti\u1ebfng Kumyk", + "ku": "Ti\u1ebfng Kurd", + "ckb": "Ti\u1ebfng Kurd Sorani", + "kru": "Ti\u1ebfng Kurukh", + "kut": "Ti\u1ebfng Kutenai", + "nmg": "Ti\u1ebfng Kwasio", + "ky": "Ti\u1ebfng Kyrgyz", + "quc": "Ti\u1ebfng K\u02bciche\u02bc", + "la": "Ti\u1ebfng La-tinh", + "lad": "Ti\u1ebfng Ladino", + "lah": "Ti\u1ebfng Lahnda", + "lkt": "Ti\u1ebfng Lakota", + "lam": "Ti\u1ebfng Lamba", + "lag": "Ti\u1ebfng Langi", + "lo": "Ti\u1ebfng L\u00e0o", + "lv": "Ti\u1ebfng Latvia", + "lez": "Ti\u1ebfng Lezghian", + "li": "Ti\u1ebfng Limburg", + "ln": "Ti\u1ebfng Lingala", + "lt": "Ti\u1ebfng L\u00edt-va", + "jbo": "Ti\u1ebfng Lojban", + "loz": "Ti\u1ebfng Lozi", + "lu": "Ti\u1ebfng Luba-Katanga", + "lua": "Ti\u1ebfng Luba-Lulua", + "lui": "Ti\u1ebfng Luiseno", + "smj": "Ti\u1ebfng Lule Sami", + "lun": "Ti\u1ebfng Lunda", + "luo": "Ti\u1ebfng Luo", + "lus": "Ti\u1ebfng Lushai", + "lb": "Ti\u1ebfng Luxembourg", + "luy": "Ti\u1ebfng Luyia", + "mde": "Ti\u1ebfng Maba", + "mk": "Ti\u1ebfng Macedonia", + "jmc": "Ti\u1ebfng Machame", + "mad": "Ti\u1ebfng Madura", + "maf": "Ti\u1ebfng Mafa", + "mag": "Ti\u1ebfng Magahi", + "mai": "Ti\u1ebfng Maithili", + "mak": "Ti\u1ebfng Makasar", + "mgh": "Ti\u1ebfng Makhuwa-Meetto", + "kde": "Ti\u1ebfng Makonde", + "mg": "Ti\u1ebfng Malagasy", + "ml": "Ti\u1ebfng Malayalam", + "ms": "Ti\u1ebfng Malaysia", + "mt": "Ti\u1ebfng Malt", + "mnc": "Ti\u1ebfng Manchu", + "mdr": "Ti\u1ebfng Mandar", + "man": "Ti\u1ebfng Mandingo", + "mni": "Ti\u1ebfng Manipuri", + "gv": "Ti\u1ebfng Manx", + "mi": "Ti\u1ebfng Maori", + "mr": "Ti\u1ebfng Marathi", + "chm": "Ti\u1ebfng Mari", + "mh": "Ti\u1ebfng Marshall", + "mwr": "Ti\u1ebfng Marwari", + "mas": "Ti\u1ebfng Masai", + "byv": "Ti\u1ebfng Medumba", + "men": "Ti\u1ebfng Mende", + "mer": "Ti\u1ebfng Meru", + "mgo": "Ti\u1ebfng Meta\u2019", + "mic": "Ti\u1ebfng Micmac", + "my": "Ti\u1ebfng Mi\u1ebfn \u0110i\u1ec7n", + "min": "Ti\u1ebfng Minangkabau", + "mwl": "Ti\u1ebfng Miranda", + "moh": "Ti\u1ebfng Mohawk", + "mdf": "Ti\u1ebfng Moksha", + "ro_MD": "Ti\u1ebfng Moldova", + "lol": "Ti\u1ebfng Mongo", + "mfe": "Ti\u1ebfng Morisyen", + "mos": "Ti\u1ebfng Mossi", + "mn": "Ti\u1ebfng M\u00f4ng C\u1ed5", + "mua": "Ti\u1ebfng Mundang", + "mye": "Ti\u1ebfng Myene", + "nqo": "Ti\u1ebfng N\u2019Ko", + "no": "Ti\u1ebfng Na Uy", + "nb": "Ti\u1ebfng Na Uy (Bokm\u00e5l)", + "nn": "Ti\u1ebfng Na Uy (Nynorsk)", + "non": "Ti\u1ebfng Na Uy c\u1ed5", + "af": "Ti\u1ebfng Nam Phi", + "bs": "Ti\u1ebfng Nam T\u01b0", + "naq": "Ti\u1ebfng Nama", + "nap": "Ti\u1ebfng Napoli", + "na": "Ti\u1ebfng Nauru", + "nv": "Ti\u1ebfng Navajo", + "nd": "Ti\u1ebfng Ndebele Mi\u1ec1n B\u1eafc", + "nr": "Ti\u1ebfng Ndebele Mi\u1ec1n Nam", + "ng": "Ti\u1ebfng Ndonga", + "ne": "Ti\u1ebfng Nepal", + "new": "Ti\u1ebfng Newari", + "nwc": "Ti\u1ebfng Newari C\u1ed5 \u0111i\u1ec3n", + "ru": "Ti\u1ebfng Nga", + "sba": "Ti\u1ebfng Ngambay", + "nnh": "Ti\u1ebfng Ngiemboon", + "jgo": "Ti\u1ebfng Ngomba", + "ja": "Ti\u1ebfng Nh\u1eadt", + "nia": "Ti\u1ebfng Nias", + "niu": "Ti\u1ebfng Niuean", + "nog": "Ti\u1ebfng Nogai", + "nus": "Ti\u1ebfng Nuer", + "nym": "Ti\u1ebfng Nyamwezi", + "ny": "Ti\u1ebfng Nyanja", + "nyn": "Ti\u1ebfng Nyankole", + "tog": "Ti\u1ebfng Nyasa Tonga", + "nyo": "Ti\u1ebfng Nyoro", + "nzi": "Ti\u1ebfng Nzima", + "oc": "Ti\u1ebfng Occitan", + "oj": "Ti\u1ebfng Ojibwa", + "or": "Ti\u1ebfng Oriya", + "om": "Ti\u1ebfng Oromo", + "osa": "Ti\u1ebfng Osage", + "os": "Ti\u1ebfng Ossetic", + "pal": "Ti\u1ebfng Pahlavi", + "pau": "Ti\u1ebfng Palauan", + "pi": "Ti\u1ebfng Pali", + "pam": "Ti\u1ebfng Pampanga", + "pag": "Ti\u1ebfng Pangasinan", + "pap": "Ti\u1ebfng Papiamento", + "ps": "Ti\u1ebfng Pashto", + "sa": "Ti\u1ebfng Ph\u1ea1n", + "fr": "Ti\u1ebfng Ph\u00e1p", + "fro": "Ti\u1ebfng Ph\u00e1p c\u1ed5", + "frm": "Ti\u1ebfng Ph\u00e1p Trung c\u1ed5", + "fi": "Ti\u1ebfng Ph\u1ea7n Lan", + "fil": "Ti\u1ebfng Philipin", + "phn": "Ti\u1ebfng Phoenicia", + "pon": "Ti\u1ebfng Pohnpeian", + "pro": "Ti\u1ebfng Proven\u00e7al c\u1ed5", + "pa": "Ti\u1ebfng Punjab", + "yue": "Ti\u1ebfng Qu\u1ea3ng \u0110\u00f4ng", + "qu": "Ti\u1ebfng Quechua", + "eo": "Ti\u1ebfng Qu\u1ed1c T\u1ebf Ng\u1eef", + "raj": "Ti\u1ebfng Rajasthani", + "rap": "Ti\u1ebfng Rapanui", + "rar": "Ti\u1ebfng Rarotongan", + "rm": "Ti\u1ebfng Romansh", + "rom": "Ti\u1ebfng Romany", + "rof": "Ti\u1ebfng Rombo", + "root": "Ti\u1ebfng Root", + "ro": "Ti\u1ebfng Rumani", + "rn": "Ti\u1ebfng Rundi", + "rwk": "Ti\u1ebfng Rwa", + "ssy": "Ti\u1ebfng Saho", + "sah": "Ti\u1ebfng Sakha", + "sam": "Ti\u1ebfng Samaritan Aramaic", + "saq": "Ti\u1ebfng Samburu", + "se": "Ti\u1ebfng Sami Mi\u1ec1n B\u1eafc", + "sma": "TI\u1ebfng Sami Mi\u1ec1n Nam", + "sm": "Ti\u1ebfng Samoa", + "sad": "Ti\u1ebfng Sandawe", + "sg": "Ti\u1ebfng Sango", + "sbp": "Ti\u1ebfng Sangu", + "sat": "Ti\u1ebfng Santali", + "sc": "Ti\u1ebfng Sardinia", + "sas": "Ti\u1ebfng Sasak", + "sco": "Ti\u1ebfng Scots", + "cs": "Ti\u1ebfng S\u00e9c", + "sel": "Ti\u1ebfng Selkup", + "seh": "Ti\u1ebfng Sena", + "see": "Ti\u1ebfng Seneca", + "sr": "Ti\u1ebfng Serbia", + "srr": "Ti\u1ebfng Serer", + "st": "Ti\u1ebfng Sesotho", + "ksb": "Ti\u1ebfng Shambala", + "shn": "Ti\u1ebfng Shan", + "sn": "Ti\u1ebfng Shona", + "scn": "Ti\u1ebfng Sicilia", + "sid": "Ti\u1ebfng Sidamo", + "bla": "Ti\u1ebfng Siksika", + "sd": "Ti\u1ebfng Sindhi", + "si": "Ti\u1ebfng Sinhala", + "sms": "Ti\u1ebfng Skolt Sami", + "den": "Ti\u1ebfng Slave", + "cu": "Ti\u1ebfng Slav\u01a1 Nh\u00e0 th\u1edd", + "sk": "Ti\u1ebfng Slovak", + "sl": "Ti\u1ebfng Slovenia", + "xog": "Ti\u1ebfng Soga", + "sog": "Ti\u1ebfng Sogdien", + "so": "Ti\u1ebfng Somali", + "snk": "Ti\u1ebfng Soninke", + "srn": "Ti\u1ebfng Sranan Tongo", + "su": "Ti\u1ebfng Sudan", + "suk": "Ti\u1ebfng Sukuma", + "sux": "Ti\u1ebfng Sumeria", + "sus": "Ti\u1ebfng Susu", + "sw": "Ti\u1ebfng Swahili", + "swc": "Ti\u1ebfng Swahili Congo", + "ss": "Ti\u1ebfng Swati", + "syc": "Ti\u1ebfng Syria C\u1ed5 \u0111i\u1ec3n", + "syr": "Ti\u1ebfng Syriac", + "shi": "Ti\u1ebfng Tachelhit", + "tl": "Ti\u1ebfng Tagalog", + "ty": "Ti\u1ebfng Tahiti", + "dav": "Ti\u1ebfng Taita", + "tg": "Ti\u1ebfng Tajik", + "tmh": "Ti\u1ebfng Tamashek", + "zgh": "Ti\u1ebfng Tamazight Chu\u1ea9n c\u1ee7a Ma-r\u1ed1c", + "tzm": "Ti\u1ebfng Tamazight Mi\u1ec1n Trung Ma-r\u1ed1c", + "ta": "Ti\u1ebfng Tamil", + "trv": "Ti\u1ebfng Taroko", + "twq": "Ti\u1ebfng Tasawaq", + "tt": "Ti\u1ebfng Tatar", + "es": "Ti\u1ebfng T\u00e2y Ban Nha", + "es_419": "Ti\u1ebfng T\u00e2y Ban Nha (M\u1ef9 La tinh)", + "bo": "Ti\u1ebfng T\u00e2y T\u1ea1ng", + "te": "Ti\u1ebfng Telugu", + "ter": "Ti\u1ebfng Tereno", + "teo": "Ti\u1ebfng Teso", + "th": "Ti\u1ebfng Th\u00e1i", + "tr": "Ti\u1ebfng Th\u1ed5 Nh\u0129 K\u1ef3", + "crh": "Ti\u1ebfng Th\u1ed5 Nh\u0129 K\u1ef3 Crimean", + "ota": "Ti\u1ebfng Th\u1ed5 Nh\u0129 K\u1ef3 Ottoman", + "sv": "Ti\u1ebfng Th\u1ee5y \u0110i\u1ec3n", + "de_CH": "Ti\u1ebfng Th\u01b0\u1ee3ng Gi\u00e9c-man (Th\u1ee5y S\u0129)", + "goh": "Ti\u1ebfng Th\u01b0\u1ee3ng Gi\u00e9c-man c\u1ed5", + "gmh": "Ti\u1ebfng Th\u01b0\u1ee3ng Gi\u00e9c-man Trung c\u1ed5", + "hsb": "Ti\u1ebfng Th\u01b0\u1ee3ng Sorbia", + "tig": "Ti\u1ebfng Tigre", + "ti": "Ti\u1ebfng Tigrigya", + "tem": "Ti\u1ebfng Timne", + "tiv": "Ti\u1ebfng Tiv", + "tli": "Ti\u1ebfng Tlingit", + "tpi": "Ti\u1ebfng Tok Pisin", + "tkl": "Ti\u1ebfng Tokelau", + "to": "Ti\u1ebfng Tonga", + "zh": "Ti\u1ebfng Trung", + "tsi": "Ti\u1ebfng Tsimshian", + "ts": "Ti\u1ebfng Tsonga", + "tn": "Ti\u1ebfng Tswana", + "tum": "Ti\u1ebfng Tumbuka", + "tk": "Ti\u1ebfng Turk", + "tvl": "Ti\u1ebfng Tuvalu", + "tyv": "Ti\u1ebfng Tuvinian", + "tw": "Ti\u1ebfng Twi", + "kcg": "Ti\u1ebfng Tyap", + "uk": "Ti\u1ebfng Ucraina", + "udm": "Ti\u1ebfng Udmurt", + "ur": "Ti\u1ebfng U\u0111u", + "uga": "Ti\u1ebfng Ugaritic", + "umb": "Ti\u1ebfng Umbundu", + "ug": "Ti\u1ebfng Uyghur", + "uz": "Ti\u1ebfng Uzbek", + "vai": "Ti\u1ebfng Vai", + "ve": "Ti\u1ebfng Venda", + "vi": "Ti\u1ebfng Vi\u1ec7t", + "vo": "Ti\u1ebfng Volap\u00fck", + "vot": "Ti\u1ebfng Votic", + "vun": "Ti\u1ebfng Vunjo", + "wal": "Ti\u1ebfng Walamo", + "cy": "Ti\u1ebfng Wales", + "wa": "Ti\u1ebfng Walloon", + "wae": "Ti\u1ebfng Walser", + "war": "Ti\u1ebfng Waray", + "was": "Ti\u1ebfng Washo", + "wo": "Ti\u1ebfng Wolof", + "sh": "Ti\u1ebfng X\u00e9c bi - Croatia", + "gd": "Ti\u1ebfng Xent\u01a1 (Xc\u1ed1t len)", + "xh": "Ti\u1ebfng Xhosa", + "it": "Ti\u1ebfng \u00dd", + "yi": "Ti\u1ebfng Y-\u0111it", + "yav": "Ti\u1ebfng Yangben", + "yao": "Ti\u1ebfng Yao", + "yap": "Ti\u1ebfng Yap", + "ybb": "Ti\u1ebfng Yemba", + "yo": "Ti\u1ebfng Yoruba", + "zap": "Ti\u1ebfng Zapotec", + "dje": "Ti\u1ebfng Zarma", + "zza": "Ti\u1ebfng Zaza", + "zen": "Ti\u1ebfng Zenaga", + "za": "Ti\u1ebfng Zhuang", + "zu": "Ti\u1ebfng Zulu", + "zun": "Ti\u1ebfng Zuni", + "fit": "Tornedalen Finnish", + "zh_Hant": "Traditional Chinese", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/zh-CN.json b/public/intl/language/zh-CN.json new file mode 100644 index 0000000..996ab4f --- /dev/null +++ b/public/intl/language/zh-CN.json @@ -0,0 +1,611 @@ +{ + "ab": "\u963f\u5e03\u54c8\u897f\u4e9a\u6587", + "cch": "\u963f\u707f\u6587", + "ada": "\u963f\u5f53\u6885\u6587", + "ady": "\u963f\u8fea\u4f55\u6587", + "sq": "\u963f\u5c14\u5df4\u5c3c\u4e9a\u6587", + "aa": "\u963f\u6cd5\u6587", + "afh": "\u963f\u5f17\u91cc\u5e0c\u5229\u6587", + "akk": "\u963f\u5361\u5fb7\u6587", + "ak": "\u963f\u80af\u6587", + "bss": "\u963f\u5e93\u8272\u6587", + "ar": "\u963f\u62c9\u4f2f\u6587", + "an": "\u963f\u62c9\u8d21\u6587", + "arc": "\u963f\u62c9\u7c73\u6587", + "arp": "\u963f\u62c9\u5e15\u970d\u6587", + "arw": "\u963f\u62c9\u74e6\u514b\u6587", + "ale": "\u963f\u7559\u7533\u6587", + "rup": "\u963f\u7f57\u9a6c\u5c3c\u4e9a\u6587", + "am": "\u963f\u59c6\u54c8\u62c9\u6587", + "ach": "\u963f\u4e54\u5229\u6587", + "as": "\u963f\u8428\u59c6\u6587", + "az": "\u963f\u585e\u62dc\u7586\u6587", + "ast": "\u963f\u65af\u56fe\u91cc\u4e9a\u601d\u7279\u6587", + "asa": "\u963f\u82cf\u6587", + "av": "\u963f\u74e6\u5c14\u6587", + "awa": "\u963f\u74e6\u4e54\u6587", + "ae": "\u963f\u7ef4\u65af\u5854\u6587", + "ain": "\u963f\u4f0a\u52aa\u6587", + "efi": "\u57c3\u83f2\u514b\u6587", + "eka": "\u57c3\u514b\u4e18\u514b\u6587", + "ee": "\u57c3\u7ef4\u6587", + "elx": "\u827e\u62c9\u7c73\u7279\u6587", + "ay": "\u827e\u9a6c\u62c9\u6587", + "ga": "\u7231\u5c14\u5170\u6587", + "et": "\u7231\u6c99\u5c3c\u4e9a\u6587", + "anp": "\u6602\u52a0\u6587", + "de_AT": "\u5965\u5730\u5229\u5fb7\u6587", + "oj": "\u5965\u5409\u5e03\u74e6\u6587", + "oc": "\u5965\u514b\u897f\u5510\u6587", + "or": "\u5965\u91cc\u4e9a\u6587", + "om": "\u5965\u6d1b\u83ab\u6587", + "osa": "\u5965\u8428\u683c\u6587", + "os": "\u5965\u585e\u68af\u6587", + "ota": "\u5965\u6258\u66fc\u571f\u8033\u5176\u6587", + "en_AU": "\u6fb3\u5927\u5229\u4e9a\u82f1\u6587", + "bfd": "\u5df4\u975e\u7279\u6587", + "ksf": "\u5df4\u83f2\u4e9a\u6587", + "car": "\u5df4\u52d2\u6bd4\u6587", + "ban": "\u5df4\u91cc\u6587", + "pi": "\u5df4\u5229\u6587", + "bax": "\u5df4\u59c6\u7a46\u6587", + "bas": "\u5df4\u8428\u6587", + "ba": "\u5df4\u4ec0\u5ba2\u5c14\u6587", + "eu": "\u5df4\u65af\u514b\u6587", + "pt_BR": "\u5df4\u897f\u8461\u8404\u7259\u6587", + "be": "\u767d\u4fc4\u7f57\u65af\u6587", + "bm": "\u73ed\u5df4\u62c9\u6587", + "pag": "\u90a6\u963f\u897f\u6960\u6587", + "pam": "\u90a6\u677f\u7259\u6587", + "bg": "\u4fdd\u52a0\u5229\u4e9a\u6587", + "nd": "\u5317\u6069\u5fb7\u8d1d\u52d2\u6587", + "frr": "\u5317\u5f17\u91cc\u897f\u4e9a\u6587", + "se": "\u5317\u8428\u7c73\u6587", + "twq": "\u5317\u6851\u6d77\u6587", + "nso": "\u5317\u7d22\u6258\u6587", + "bez": "\u8d1d\u7eb3\u6587", + "bin": "\u6bd4\u5c3c\u6587", + "bi": "\u6bd4\u65af\u62c9\u9a6c\u6587", + "bal": "\u4ffe\u8def\u652f\u6587", + "bik": "\u6bd5\u5e93\u5c14\u6587", + "zgh": "\u6807\u51c6\u6469\u6d1b\u54e5\u5854\u9a6c\u585e\u7279\u6587", + "bem": "\u522b\u59c6\u5df4\u6587", + "bej": "\u522b\u672d\u6587", + "is": "\u51b0\u5c9b\u6587", + "pl": "\u6ce2\u5170\u6587", + "pon": "\u6ce2\u7eb3\u4f69\u6587", + "bs": "\u6ce2\u65af\u5c3c\u4e9a\u6587", + "fa": "\u6ce2\u65af\u6587", + "brx": "\u535a\u591a\u6587", + "bho": "\u535a\u6770\u666e\u5c14\u6587", + "dz": "\u4e0d\u4e39\u6587", + "bug": "\u5e03\u5409\u6587", + "bra": "\u5e03\u62c9\u6770\u6587", + "br": "\u5e03\u91cc\u591a\u5c3c\u6587", + "bua": "\u5e03\u91cc\u4e9a\u7279\u6587", + "zbl": "\u5e03\u5229\u65af\u7b26\u53f7", + "byn": "\u5e03\u6797\u6587", + "bum": "\u5e03\u9c81\u6587", + "chg": "\u67e5\u52a0\u6587", + "ch": "\u67e5\u83ab\u7f57\u6587", + "ce": "\u8f66\u81e3\u6587", + "chr": "\u5f7b\u7f57\u57fa\u6587", + "cv": "\u695a\u74e6\u4ec0\u6587", + "chk": "\u695a\u543e\u514b\u6587", + "dar": "\u8fbe\u5c14\u683c\u74e6\u6587", + "dak": "\u8fbe\u79d1\u4ed6\u6587", + "dzg": "\u8fbe\u624e\u845b\u6587", + "da": "\u4e39\u9ea6\u6587", + "shn": "\u63b8\u6587", + "de": "\u5fb7\u6587", + "nds": "\u4f4e\u5730\u5fb7\u6587", + "dv": "\u8fea\u7ef4\u5e0c\u6587", + "dyu": "\u8fea\u5c24\u62c9\u6587", + "tiv": "\u8482\u592b\u6587", + "tsi": "\u8482\u59c6\u897f\u4e9a\u6587", + "din": "\u4e01\u5361\u6587", + "frs": "\u4e1c\u5f17\u91cc\u897f\u4e9a\u6587", + "ses": "\u4e1c\u6851\u6d77\u6587", + "dua": "\u90fd\u963f\u62c9\u6587", + "doi": "\u591a\u683c\u62c9\u6587", + "dgr": "\u591a\u683c\u91cc\u5e03\u6587", + "mul": "\u591a\u79cd\u8bed\u7cfb", + "myv": "\u4fc4\u65e5\u4e9a\u6587", + "ru": "\u4fc4\u6587", + "ebu": "\u6069\u5e03\u6587", + "ng": "\u6069\u4e1c\u52a0\u6587", + "nnh": "\u6069\u7518\u6f8e\u6587", + "jgo": "\u6069\u826e\u5df4", + "nzi": "\u6069\u6d4e\u9a6c\u6587", + "fo": "\u6cd5\u7f57\u6587", + "fr": "\u6cd5\u6587", + "zh_Hant": "\u7e41\u4f53\u4e2d\u6587", + "sa": "\u68b5\u6587", + "fat": "\u82b3\u8482\u6587", + "fan": "\u82b3\u683c\u6587", + "fil": "\u83f2\u5f8b\u5bbe\u6587", + "phn": "\u8153\u5c3c\u57fa\u6587", + "fj": "\u6590\u6d4e\u6587", + "fi": "\u82ac\u5170\u6587", + "fon": "\u4e30\u6587", + "fur": "\u5f17\u7559\u5229\u6587", + "nl_BE": "\u4f5b\u5170\u8292\u6587", + "ff": "\u592b\u62c9\u6587", + "qu": "\u76d6\u4e18\u4e9a\u6587", + "sba": "\u7518\u62dc\u6587", + "swc": "\u521a\u679c\u65af\u74e6\u5e0c\u91cc\u6587", + "kg": "\u521a\u679c\u6587", + "kok": "\u521a\u5361\u5c3c\u6587", + "gon": "\u5c97\u5fb7\u6587", + "km": "\u9ad8\u68c9\u6587", + "bbj": "\u6208\u9a6c\u62c9\u6587", + "got": "\u54e5\u7279\u6587", + "grb": "\u683c\u5217\u535a\u6587", + "kl": "\u683c\u9675\u5170\u6587", + "ka": "\u683c\u9c81\u5409\u4e9a\u6587", + "gba": "\u845b\u5df4\u4e9a\u6587", + "root": "\u6839\u8bed\u8a00", + "egy": "\u53e4\u57c3\u53ca\u6587", + "sga": "\u53e4\u7231\u5c14\u5170\u6587", + "fro": "\u53e4\u6cd5\u6587", + "goh": "\u53e4\u9ad8\u5730\u5fb7\u6587", + "gu": "\u53e4\u5409\u62c9\u7279\u6587", + "peo": "\u53e4\u8001\u6ce2\u65af\u6587", + "non": "\u53e4\u8bfa\u5c14\u65af\u6587", + "sog": "\u53e4\u7c9f\u7279\u6587", + "grc": "\u53e4\u5e0c\u814a\u6587", + "guz": "\u53e4\u897f\u6587", + "ang": "\u53e4\u82f1\u6587", + "gn": "\u74dc\u62c9\u5c3c\u6587", + "ia": "\u56fd\u9645\u6587\u5b57", + "ie": "\u56fd\u9645\u6587\u5b57\uff08E\uff09", + "kk": "\u54c8\u8428\u514b\u6587", + "hai": "\u6d77\u8fbe\u6587", + "ht": "\u6d77\u5730\u6587", + "ko": "\u97e9\u6587", + "ha": "\u8c6a\u8428\u6587", + "kho": "\u548c\u7530\u6587", + "nl": "\u8377\u5170\u6587", + "hz": "\u8d6b\u96f7\u7f57\u6587", + "hmn": "\u8d6b\u8499\u6587", + "hit": "\u8d6b\u68af\u6587", + "hup": "\u80e1\u5e15\u6587", + "rn": "\u57fa\u9686\u8fea\u6587", + "quc": "\u57fa\u5207\u6587", + "gil": "\u5409\u5c14\u4f2f\u7279\u65af\u6587", + "ky": "\u5409\u5c14\u5409\u65af\u6587", + "ki": "\u5409\u5e93\u5c24\u6587", + "rom": "\u5409\u666e\u8d5b\u6587", + "gwi": "\u5409\u7ef4\u514b\u7434\u6587", + "gez": "\u5409\u5179\u6587", + "gag": "\u52a0\u544a\u5179\u6587", + "gl": "\u52a0\u5229\u897f\u4e9a\u6587", + "fr_CA": "\u52a0\u62ff\u5927\u6cd5\u6587", + "en_CA": "\u52a0\u62ff\u5927\u82f1\u6587", + "kbl": "\u52a0\u6d85\u59c6\u5e03\u6587", + "ca": "\u52a0\u6cf0\u7f57\u5c3c\u4e9a\u6587", + "gaa": "\u52a0\u6587", + "gay": "\u8fe6\u7ea6\u6587", + "zh_Hans": "\u7b80\u4f53\u4e2d\u6587", + "cs": "\u6377\u514b\u6587", + "kmb": "\u91d1\u90a6\u675c\u6587", + "nwc": "\u7ecf\u5178\u5c3c\u74e6\u5c14\u6587", + "syc": "\u7ecf\u5178\u53d9\u5229\u4e9a\u6587", + "kbd": "\u5361\u5df4\u5c14\u8fbe\u6587", + "kab": "\u5361\u6bd4\u5c14\u6587", + "kea": "\u5361\u5e03\u4f5b\u5f97\u9c81\u6587", + "cad": "\u5361\u591a\u6587", + "xal": "\u5361\u5c14\u6885\u514b\u6587", + "kaj": "\u5361\u6377\u6587", + "kkj": "\u5361\u5e93\u6587", + "kaa": "\u5361\u62c9\u5361\u5c14\u5e15\u514b\u6587", + "krc": "\u5361\u62c9\u6070\u4f0a\u5df4\u5c14\u5361\u5c14\u6587", + "krl": "\u5361\u7d2f\u5229\u963f\u6587", + "kln": "\u5361\u4f26\u91d1\u6587", + "kam": "\u5361\u59c6\u5df4\u6587", + "kn": "\u5361\u7eb3\u8fbe\u6587", + "kr": "\u5361\u52aa\u91cc\u6587", + "kac": "\u5361\u7434\u6587", + "csb": "\u5361\u8212\u6587", + "kcg": "\u5361\u5854\u5e03\u6587", + "kaw": "\u5361\u5a01\u6587", + "kha": "\u5361\u897f\u6587", + "cay": "\u5361\u5c24\u52a0\u6587", + "kw": "\u51ef\u5c14\u7279\u6587", + "ksh": "\u79d1\u9686\u6587", + "kfo": "\u79d1\u7f57\u6587", + "gor": "\u79d1\u6d1b\u6d85\u8fbe\u7f57\u6587", + "koi": "\u79d1\u7c73-\u5f7c\u5c14\u7c73\u4e9a\u514b\u6587", + "kv": "\u79d1\u7c73\u6587", + "swb": "\u79d1\u6469\u7f57\u6587", + "bkm": "\u79d1\u59c6\u6587", + "cop": "\u79d1\u666e\u7279\u6587", + "xh": "\u79d1\u8428\u6587", + "kos": "\u79d1\u65af\u62c9\u4f0a\u6587", + "co": "\u79d1\u897f\u5609\u6587", + "mus": "\u514b\u91cc\u514b\u6587", + "crh": "\u514b\u91cc\u7c73\u4e9a\u571f\u8033\u5176\u6587", + "cr": "\u514b\u91cc\u65cf\u6587", + "tlh": "\u514b\u6797\u8d21\u6587", + "hr": "\u514b\u7f57\u5730\u4e9a\u6587", + "kpe": "\u514b\u4f69\u5217\u6587", + "ks": "\u514b\u4ec0\u7c73\u5c14\u6587", + "ku": "\u5e93\u5c14\u5fb7\u6587", + "kru": "\u5e93\u9c81\u514b\u6587", + "kum": "\u5e93\u6885\u514b\u6587", + "kut": "\u5e93\u7279\u5185\u6587", + "nmg": "\u5938\u897f\u5965\u6587", + "kj": "\u5bbd\u4e9a\u739b\u6587", + "lad": "\u62c9\u8fea\u8bfa\u6587", + "es_419": "\u62c9\u4e01\u7f8e\u6d32\u897f\u73ed\u7259\u6587", + "la": "\u62c9\u4e01\u6587", + "lah": "\u62c9\u4ea8\u8fbe\u6587", + "raj": "\u62c9\u8d3e\u65af\u5766\u6587", + "lkt": "\u62c9\u79d1\u5854\u6587", + "rar": "\u62c9\u7f57\u6c64\u52a0\u6587", + "rap": "\u62c9\u5e15\u52aa\u4f0a\u6587", + "lv": "\u62c9\u8131\u7ef4\u4e9a\u6587", + "lez": "\u83b1\u5179\u4f9d\u6602\u6587", + "lam": "\u5170\u5df4\u6587", + "rof": "\u5170\u535a\u6587", + "lag": "\u6717\u5409\u6587", + "lo": "\u8001\u631d\u6587", + "lt": "\u7acb\u9676\u5b9b\u6587", + "ln": "\u6797\u52a0\u62c9\u6587", + "li": "\u6dcb\u5e03\u5c14\u5409\u6587", + "lun": "\u9686\u8fbe\u6587", + "luo": "\u5362\u5965\u6587", + "lg": "\u5362\u5e72\u8fbe\u6587", + "lb": "\u5362\u68ee\u5821\u6587", + "lus": "\u5362\u6652\u6587", + "rw": "\u5362\u65fa\u8fbe\u6587", + "luy": "\u5362\u96c5\u6587", + "lu": "\u9c81\u5df4\u52a0\u4e39\u52a0\u6587", + "lua": "\u9c81\u5df4\u9c81\u74e6\u6587", + "lui": "\u8def\u6613\u585e\u8bfa\u6587", + "smj": "\u5f8b\u52d2\u6b27\u8428\u7c73\u6587", + "ro": "\u7f57\u9a6c\u5c3c\u4e9a\u6587", + "rm": "\u7f57\u66fc\u4ec0\u6587", + "rwk": "\u7f57\u74e6\u6587", + "jbo": "\u903b\u8f91\u6587", + "loz": "\u6d1b\u5179\u6587", + "mde": "\u9a6c\u575d\u6587", + "mad": "\u9a6c\u90fd\u62c9\u6587", + "gv": "\u9a6c\u6069\u5c9b\u6587", + "mg": "\u9a6c\u5c14\u52a0\u4ec0\u6587", + "mwr": "\u9a6c\u5c14\u74e6\u5229\u6587", + "mt": "\u9a6c\u8033\u4ed6\u6587", + "maf": "\u9a6c\u6cd5\u6587", + "mag": "\u9a6c\u52a0\u4f0a\u6587", + "kde": "\u9a6c\u5b54\u5fb7\u6587", + "mgh": "\u9a6c\u5938\u6587", + "mr": "\u9a6c\u62c9\u5730\u6587", + "ml": "\u9a6c\u62c9\u96c5\u62c9\u59c6\u6587", + "ms": "\u9a6c\u6765\u6587", + "chm": "\u9a6c\u91cc\u6587", + "arn": "\u9a6c\u666e\u5207\u6587", + "mk": "\u9a6c\u5176\u987f\u6587", + "jmc": "\u9a6c\u5207\u59c6\u6587", + "mh": "\u9a6c\u7ecd\u5c14\u6587", + "mai": "\u8fc8\u8482\u5229\u6587", + "mnc": "\u6ee1\u6587", + "mdr": "\u66fc\u8fbe\u5c14\u6587", + "man": "\u66fc\u4e01\u54e5\u6587", + "mni": "\u66fc\u5c3c\u666e\u91cc\u6587", + "lol": "\u8292\u6208\u6587", + "mfe": "\u6bdb\u91cc\u6c42\u65af\u514b\u91cc\u5965\u5c14\u6587", + "mi": "\u6bdb\u5229\u6587", + "byv": "\u6885\u6566\u5df4\u6587", + "mer": "\u6885\u9c81\u6587", + "mgo": "\u6885\u5854", + "en_US": "\u7f8e\u5f0f\u82f1\u6587", + "men": "\u95e8\u8fea\u6587", + "mua": "\u8499\u5f53\u6587", + "mn": "\u8499\u53e4\u6587", + "bn": "\u5b5f\u52a0\u62c9\u6587", + "mic": "\u7c73\u514b\u9a6c\u514b\u6587", + "mwl": "\u7c73\u5170\u5fb7\u65af\u6587", + "min": "\u7c73\u5357\u5361\u4fdd\u6587", + "my": "\u7f05\u7538\u6587", + "ro_MD": "\u6469\u5c14\u591a\u74e6\u6587", + "moh": "\u6469\u970d\u514b\u6587", + "mdf": "\u83ab\u514b\u6c99\u6587", + "mos": "\u83ab\u897f\u6587", + "es_MX": "\u58a8\u897f\u54e5\u897f\u73ed\u7259\u6587", + "mye": "\u59c6\u8036\u5185\u6587", + "nap": "\u62ff\u6ce2\u91cc\u6587", + "naq": "\u7eb3\u9a6c\u6587", + "nv": "\u7eb3\u74e6\u970d\u6587", + "alt": "\u5357\u963f\u5c14\u6cf0\u6587", + "nr": "\u5357\u6069\u5fb7\u8d1d\u52d2\u6587", + "af": "\u5357\u975e\u8377\u5170\u6587", + "sma": "\u5357\u8428\u7c73\u6587", + "st": "\u5357\u7d22\u6258\u6587", + "na": "\u7459\u9c81\u6587", + "nyn": "\u5c3c\u6602\u79d1\u52d2\u6587", + "ne": "\u5c3c\u6cca\u5c14\u6587", + "new": "\u5c3c\u74e6\u5c14\u6587", + "nym": "\u5c3c\u4e9a\u59c6\u97e6\u9f50\u6587", + "nia": "\u5c3c\u4e9a\u65af\u6587", + "ny": "\u5c3c\u626c\u624e\u6587", + "nyo": "\u5c3c\u7ea6\u7f57\u6587", + "niu": "\u7ebd\u57c3\u6587", + "nus": "\u52aa\u57c3\u5c14\u6587", + "nb": "\u632a\u5a01\u535a\u514b\u9a6c\u5c14\u6587", + "nn": "\u632a\u5a01\u5c3c\u8bfa\u65af\u514b\u6587", + "no": "\u632a\u5a01\u6587", + "nog": "\u8bfa\u76d6\u6587", + "pt_PT": "\u6b27\u6d32\u8461\u8404\u7259\u6587", + "es_ES": "\u6b27\u6d32\u897f\u73ed\u7259\u6587", + "pal": "\u5e15\u62c9\u7ef4\u6587", + "pau": "\u5e15\u52b3\u6587", + "pap": "\u5e15\u76ae\u4e9a\u95e8\u6258\u6587", + "pa": "\u65c1\u906e\u666e\u6587", + "chp": "\u4f69\u74e6\u626c\u6587", + "pt": "\u8461\u8404\u7259\u6587", + "pro": "\u666e\u7f57\u6587\u65af\u6587", + "ps": "\u666e\u4ec0\u56fe\u6587", + "cgg": "\u5947\u52a0\u6587", + "chb": "\u5951\u5e03\u5361\u6587", + "chn": "\u5951\u52aa\u514b\u6587", + "cho": "\u4e54\u514b\u6258\u6587", + "ja": "\u65e5\u6587", + "sv": "\u745e\u5178\u6587", + "gsw": "\u745e\u58eb\u5fb7\u6587", + "fr_CH": "\u745e\u58eb\u6cd5\u6587", + "de_CH": "\u745e\u58eb\u9ad8\u5730\u5fb7\u6587", + "zap": "\u8428\u6ce2\u8482\u514b\u6587", + "sc": "\u8428\u4e01\u6587", + "ssy": "\u8428\u970d\u6587", + "sam": "\u8428\u739b\u5229\u4e9a\u6587", + "sm": "\u8428\u6469\u4e9a\u6587", + "sas": "\u8428\u8428\u514b\u6587", + "mas": "\u8428\u4f0a\u6587", + "tn": "\u585e\u8328\u74e6\u7eb3\u6587", + "sel": "\u585e\u5c14\u5e93\u666e\u6587", + "sh": "\u585e\u5c14\u7ef4\u4e9a-\u514b\u7f57\u5730\u4e9a\u6587", + "sr": "\u585e\u5c14\u7ef4\u4e9a\u6587", + "seh": "\u585e\u7eb3\u6587", + "see": "\u585e\u5185\u5361\u6587", + "sad": "\u6563\u8fbe\u7ef4\u6587", + "saq": "\u6851\u5e03\u9c81\u6587", + "sg": "\u6851\u6208\u6587", + "sbp": "\u6851\u53e4\u6587", + "sat": "\u6851\u5854\u5229\u6587", + "si": "\u50e7\u4f3d\u7f57\u6587", + "hsb": "\u4e0a\u7d22\u5e03\u6587", + "sn": "\u7ecd\u7eb3\u6587", + "eo": "\u4e16\u754c\u6587", + "bla": "\u53f8\u514b\u53f8\u5361\u6587", + "den": "\u53f8\u96f7\u592b\u6587", + "sms": "\u65af\u79d1\u7279\u8428\u7c73\u6587", + "sk": "\u65af\u6d1b\u4f10\u514b\u6587", + "sl": "\u65af\u6d1b\u6587\u5c3c\u4e9a\u6587", + "ss": "\u65af\u74e6\u7279\u6587", + "sw": "\u65af\u74e6\u5e0c\u91cc\u6587", + "ii": "\u56db\u5ddd\u5f5d\u6587", + "gd": "\u82cf\u683c\u5170\u76d6\u5c14\u6587", + "sco": "\u82cf\u683c\u5170\u6587", + "suk": "\u82cf\u5e93\u9a6c\u6587", + "srn": "\u82cf\u91cc\u5357\u6c64\u52a0\u6587", + "sux": "\u82cf\u9a6c\u6587", + "sus": "\u82cf\u82cf\u6587", + "ceb": "\u5bbf\u52a1\u6587", + "xog": "\u7d22\u52a0\u6587", + "ckb": "\u7d22\u62c9\u5c3c\u5e93\u5c14\u5fb7\u6587", + "so": "\u7d22\u9a6c\u91cc\u6587", + "snk": "\u7d22\u5c3c\u57fa\u6587", + "tg": "\u5854\u5409\u514b\u6587", + "tl": "\u5854\u52a0\u6d1b\u6587", + "tzm": "\u5854\u9a6c\u9f50\u683c\u7279\u6587", + "tmh": "\u5854\u9a6c\u5947\u514b\u6587", + "tt": "\u5854\u5854\u5c14\u6587", + "ty": "\u5854\u897f\u63d0\u6587", + "dav": "\u53f0\u5854\u6587", + "trv": "\u592a\u9c81\u9601\u6587", + "te": "\u6cf0\u5362\u56fa\u6587", + "ta": "\u6cf0\u7c73\u5c14\u6587", + "th": "\u6cf0\u6587", + "to": "\u6c64\u52a0\u6587", + "tog": "\u6c64\u52a0\u6587\uff08\u5c3c\u4e9a\u8428\u5730\u533a\uff09", + "del": "\u7279\u62c9\u534e\u6587", + "ter": "\u7279\u5217\u7eb3\u6587", + "tli": "\u7279\u6797\u5409\u7279\u6587", + "teo": "\u7279\u7d22\u6587", + "tet": "\u7279\u5854\u59c6\u6587", + "tw": "\u7279\u5a01\u6587", + "tem": "\u6ed5\u5185\u6587", + "tig": "\u63d0\u683c\u96f7\u6587", + "ti": "\u63d0\u683c\u91cc\u5c3c\u4e9a\u6587", + "tum": "\u901a\u5e03\u5361\u6587", + "tvl": "\u56fe\u74e6\u5362\u6587", + "tyv": "\u56fe\u74e6\u6587", + "tr": "\u571f\u8033\u5176\u6587", + "tk": "\u571f\u5e93\u66fc\u6587", + "tkl": "\u6258\u514b\u52b3\u6587", + "tpi": "\u6258\u514b\u76ae\u8f9b\u6587", + "wae": "\u74e6\u5c14\u745f\u6587", + "wal": "\u74e6\u62c9\u83ab\u6587", + "war": "\u74e6\u8d56\u6587", + "wa": "\u74e6\u9686\u6587", + "was": "\u74e6\u7ecd\u6587", + "vai": "\u74e6\u4f0a\u6587", + "ewo": "\u65fa\u675c\u6587", + "mak": "\u671b\u52a0\u9521\u6587", + "cy": "\u5a01\u5c14\u58eb\u6587", + "ug": "\u7ef4\u543e\u5c14\u6587", + "und": "\u672a\u77e5\u8bed\u8a00", + "vun": "\u6e29\u65e7\u6587", + "ve": "\u6587\u8fbe\u6587", + "umb": "\u7fc1\u672c\u675c\u6587", + "vo": "\u6c83\u62c9\u666e\u514b\u6587", + "wo": "\u6c83\u6d1b\u592b\u6587", + "vot": "\u6c83\u63d0\u514b\u6587", + "udm": "\u4e4c\u5fb7\u7a46\u5c14\u7279\u6587", + "ur": "\u4e4c\u5c14\u90fd\u6587", + "uga": "\u4e4c\u52a0\u91cc\u7279\u6587", + "uk": "\u4e4c\u514b\u5170\u6587", + "uz": "\u4e4c\u5179\u522b\u514b\u6587", + "zxx": "\u65e0\u8bed\u8a00\u5185\u5bb9", + "he": "\u5e0c\u4f2f\u6765\u6587", + "shi": "\u5e0c\u5c14\u54c8\u6587", + "el": "\u5e0c\u814a\u6587", + "ho": "\u5e0c\u91cc\u83ab\u56fe\u6587", + "hil": "\u5e0c\u5229\u76d6\u519c\u6587", + "sid": "\u6089\u8fbe\u6469\u6587", + "es": "\u897f\u73ed\u7259\u6587", + "nqo": "\u897f\u975e\u4e66\u9762\u6587\u5b57", + "fy": "\u897f\u5f17\u91cc\u897f\u4e9a\u6587", + "khq": "\u897f\u6851\u6d77\u6587", + "scn": "\u897f\u897f\u91cc\u6587", + "dsb": "\u4e0b\u7d22\u5e03\u6587", + "haw": "\u590f\u5a01\u5937\u6587", + "chy": "\u590f\u5ef6\u6587", + "ar_001": "\u73b0\u4ee3\u6807\u51c6\u963f\u62c9\u4f2f\u6587", + "ksb": "\u9999\u5df4\u62c9\u6587", + "srr": "\u8c22\u5217\u5c14\u6587", + "sd": "\u4fe1\u5fb7\u6587", + "hu": "\u5308\u7259\u5229\u6587", + "syr": "\u53d9\u5229\u4e9a\u6587", + "su": "\u5dfd\u4ed6\u6587", + "sah": "\u96c5\u5e93\u7279\u6587", + "yap": "\u96c5\u6d66\u6587", + "agq": "\u4e9a\u7f55\u6587", + "hy": "\u4e9a\u7f8e\u5c3c\u4e9a\u6587", + "ace": "\u4e9a\u9f50\u6587", + "yav": "\u6d0b\u535e\u6587", + "yao": "\u7476\u65cf\u6587", + "ybb": "\u8036\u59c6\u5df4\u6587", + "iba": "\u4f0a\u73ed\u6587", + "ibb": "\u4f0a\u6bd4\u6bd4\u5965\u6587", + "ig": "\u4f0a\u5e03\u6587", + "io": "\u4f0a\u591a\u6587", + "ilo": "\u4f0a\u6d1b\u5e72\u8bfa\u6587", + "smn": "\u4f0a\u7eb3\u91cc\u8428\u7c73\u6587", + "yi": "\u4f9d\u5730\u6587", + "ik": "\u4f9d\u5974\u76ae\u7ef4\u514b\u6587", + "it": "\u610f\u5927\u5229\u6587", + "iu": "\u56e0\u7ebd\u7279\u6587", + "hi": "\u5370\u5730\u6587", + "id": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u6587", + "inh": "\u5370\u53e4\u4ec0\u6587", + "en_GB": "\u82f1\u5f0f\u82f1\u6587", + "en": "\u82f1\u6587", + "jrb": "\u72b9\u592a\u963f\u62c9\u4f2f\u6587", + "jpr": "\u72b9\u592a\u6ce2\u65af\u6587", + "yo": "\u7ea6\u9c81\u5df4\u6587", + "yue": "\u7ca4\u8bed", + "vi": "\u8d8a\u5357\u6587", + "bo": "\u85cf\u6587", + "zen": "\u6cfd\u7eb3\u52a0\u6587", + "zza": "\u624e\u624e\u6587", + "shu": "\u4e4d\u5f97\u963f\u62c9\u4f2f\u6587", + "jv": "\u722a\u54c7\u6587", + "dje": "\u54f2\u5c14\u9a6c\u6587", + "mga": "\u4e2d\u53e4\u7231\u5c14\u5170\u6587", + "frm": "\u4e2d\u53e4\u6cd5\u6587", + "gmh": "\u4e2d\u53e4\u9ad8\u5730\u5fb7\u6587", + "dum": "\u4e2d\u53e4\u8377\u5170\u6587", + "enm": "\u4e2d\u53e4\u82f1\u6587", + "zh": "\u4e2d\u6587", + "dyo": "\u6731\u62c9\u6587", + "za": "\u58ee\u6587", + "ts": "\u5b97\u52a0\u6587", + "cu": "\u5b97\u6559\u65af\u62c9\u592b\u6587", + "zu": "\u7956\u9c81\u6587", + "zun": "\u7956\u5c3c\u6587", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/zh-TW.json b/public/intl/language/zh-TW.json new file mode 100644 index 0000000..8f9a089 --- /dev/null +++ b/public/intl/language/zh-TW.json @@ -0,0 +1,611 @@ +{ + "din": "\u4e01\u5361\u6587", + "hsb": "\u4e0a\u7d22\u5e03\u6587", + "dsb": "\u4e0b\u7d22\u5e03\u6587", + "tr": "\u571f\u8033\u5176\u6587", + "tk": "\u571f\u5e93\u66fc\u6587", + "men": "\u95e8\u8fea\u6587", + "jmc": "\u9a6c\u5207\u59c6\u6587", + "kde": "\u9a6c\u5b54\u5fb7\u6587", + "mag": "\u9a6c\u52a0\u4f0a\u6587", + "mg": "\u9a6c\u5c14\u52a0\u4ec0\u6587", + "mwr": "\u9a6c\u5c14\u74e6\u5229\u6587", + "mgh": "\u9a6c\u5938\u6587", + "mt": "\u9a6c\u8033\u4ed6\u6587", + "mde": "\u9a6c\u575d\u6587", + "ms": "\u9a6c\u6765\u6587", + "chm": "\u9a6c\u91cc\u6587", + "mk": "\u9a6c\u5176\u987f\u6587", + "mr": "\u9a6c\u62c9\u5730\u6587", + "ml": "\u9a6c\u62c9\u96c5\u62c9\u59c6\u6587", + "maf": "\u9a6c\u6cd5\u6587", + "mh": "\u9a6c\u7ecd\u5c14\u6587", + "gv": "\u9a6c\u6069\u5c9b\u6587", + "mad": "\u9a6c\u90fd\u62c9\u6587", + "arn": "\u9a6c\u666e\u5207\u6587", + "dz": "\u4e0d\u4e39\u6587", + "zh": "\u4e2d\u6587", + "frm": "\u4e2d\u53e4\u6cd5\u6587", + "enm": "\u4e2d\u53e4\u82f1\u6587", + "mga": "\u4e2d\u53e4\u7231\u5c14\u5170\u6587", + "gmh": "\u4e2d\u53e4\u9ad8\u5730\u5fb7\u6587", + "dum": "\u4e2d\u53e4\u8377\u5170\u6587", + "fon": "\u4e30\u6587", + "da": "\u4e39\u9ea6\u6587", + "uga": "\u4e4c\u52a0\u91cc\u7279\u6587", + "ur": "\u4e4c\u5c14\u90fd\u6587", + "uk": "\u4e4c\u514b\u5170\u6587", + "uz": "\u4e4c\u5179\u522b\u514b\u6587", + "udm": "\u4e4c\u5fb7\u7a46\u5c14\u7279\u6587", + "trv": "\u592a\u9c81\u9601\u6587", + "ff": "\u592b\u62c9\u6587", + "ba": "\u5df4\u4ec0\u5ba2\u5c14\u6587", + "pt_BR": "\u5df4\u897f\u8461\u8404\u7259\u6587", + "pi": "\u5df4\u5229\u6587", + "ban": "\u5df4\u91cc\u6587", + "bax": "\u5df4\u59c6\u7a46\u6587", + "bfd": "\u5df4\u975e\u7279\u6587", + "car": "\u5df4\u52d2\u6bd4\u6587", + "eu": "\u5df4\u65af\u514b\u6587", + "ksf": "\u5df4\u83f2\u4e9a\u6587", + "bas": "\u5df4\u8428\u6587", + "bbj": "\u6208\u9a6c\u62c9\u6587", + "zza": "\u624e\u624e\u6587", + "ve": "\u6587\u8fbe\u6587", + "zxx": "\u65e0\u8bed\u8a00\u5185\u5bb9", + "ja": "\u65e5\u6587", + "bin": "\u6bd4\u5c3c\u6587", + "bi": "\u6bd4\u65af\u62c9\u9a6c\u6587", + "mi": "\u6bdb\u5229\u6587", + "mfe": "\u6bdb\u91cc\u6c42\u65af\u514b\u91cc\u5965\u5c14\u6587", + "jv": "\u722a\u54c7\u6587", + "bez": "\u8d1d\u7eb3\u6587", + "ce": "\u8f66\u81e3\u6587", + "eo": "\u4e16\u754c\u6587", + "frs": "\u4e1c\u5f17\u91cc\u897f\u4e9a\u6587", + "ses": "\u4e1c\u6851\u6d77\u6587", + "shu": "\u4e4d\u5f97\u963f\u62c9\u4f2f\u6587", + "lam": "\u5170\u5df4\u6587", + "rof": "\u5170\u535a\u6587", + "gaa": "\u52a0\u6587", + "gl": "\u52a0\u5229\u897f\u4e9a\u6587", + "gag": "\u52a0\u544a\u5179\u6587", + "fr_CA": "\u52a0\u62ff\u5927\u6cd5\u6587", + "en_CA": "\u52a0\u62ff\u5927\u82f1\u6587", + "ca": "\u52a0\u6cf0\u7f57\u5c3c\u4e9a\u6587", + "kbl": "\u52a0\u6d85\u59c6\u5e03\u6587", + "frr": "\u5317\u5f17\u91cc\u897f\u4e9a\u6587", + "nd": "\u5317\u6069\u5fb7\u8d1d\u52d2\u6587", + "twq": "\u5317\u6851\u6d77\u6587", + "nso": "\u5317\u7d22\u6258\u6587", + "se": "\u5317\u8428\u7c73\u6587", + "cay": "\u5361\u5c24\u52a0\u6587", + "kbd": "\u5361\u5df4\u5c14\u8fbe\u6587", + "kab": "\u5361\u6bd4\u5c14\u6587", + "xal": "\u5361\u5c14\u6885\u514b\u6587", + "kea": "\u5361\u5e03\u4f5b\u5f97\u9c81\u6587", + "kln": "\u5361\u4f26\u91d1\u6587", + "cad": "\u5361\u591a\u6587", + "kha": "\u5361\u897f\u6587", + "kr": "\u5361\u52aa\u91cc\u6587", + "kkj": "\u5361\u5e93\u6587", + "kn": "\u5361\u7eb3\u8fbe\u6587", + "kam": "\u5361\u59c6\u5df4\u6587", + "kaa": "\u5361\u62c9\u5361\u5c14\u5e15\u514b\u6587", + "krc": "\u5361\u62c9\u6070\u4f0a\u5df4\u5c14\u5361\u5c14\u6587", + "kaw": "\u5361\u5a01\u6587", + "kaj": "\u5361\u6377\u6587", + "krl": "\u5361\u7d2f\u5229\u963f\u6587", + "kac": "\u5361\u7434\u6587", + "csb": "\u5361\u8212\u6587", + "kcg": "\u5361\u5854\u5e03\u6587", + "lg": "\u5362\u5e72\u8fbe\u6587", + "rw": "\u5362\u65fa\u8fbe\u6587", + "lus": "\u5362\u6652\u6587", + "luo": "\u5362\u5965\u6587", + "lb": "\u5362\u68ee\u5821\u6587", + "luy": "\u5362\u96c5\u6587", + "gu": "\u53e4\u5409\u62c9\u7279\u6587", + "peo": "\u53e4\u8001\u6ce2\u65af\u6587", + "guz": "\u53e4\u897f\u6587", + "grc": "\u53e4\u5e0c\u814a\u6587", + "fro": "\u53e4\u6cd5\u6587", + "ang": "\u53e4\u82f1\u6587", + "egy": "\u53e4\u57c3\u53ca\u6587", + "sga": "\u53e4\u7231\u5c14\u5170\u6587", + "non": "\u53e4\u8bfa\u5c14\u65af\u6587", + "goh": "\u53e4\u9ad8\u5730\u5fb7\u6587", + "sog": "\u53e4\u7c9f\u7279\u6587", + "dav": "\u53f0\u5854\u6587", + "bla": "\u53f8\u514b\u53f8\u5361\u6587", + "den": "\u53f8\u96f7\u592b\u6587", + "ii": "\u56db\u5ddd\u5f5d\u6587", + "new": "\u5c3c\u74e6\u5c14\u6587", + "nym": "\u5c3c\u4e9a\u59c6\u97e6\u9f50\u6587", + "nia": "\u5c3c\u4e9a\u65af\u6587", + "ny": "\u5c3c\u626c\u624e\u6587", + "nyo": "\u5c3c\u7ea6\u7f57\u6587", + "nyn": "\u5c3c\u6602\u79d1\u52d2\u6587", + "ne": "\u5c3c\u6cca\u5c14\u6587", + "bug": "\u5e03\u5409\u6587", + "zbl": "\u5e03\u5229\u65af\u7b26\u53f7", + "bua": "\u5e03\u91cc\u4e9a\u7279\u6587", + "br": "\u5e03\u91cc\u591a\u5c3c\u6587", + "bra": "\u5e03\u62c9\u6770\u6587", + "byn": "\u5e03\u6797\u6587", + "bum": "\u5e03\u9c81\u6587", + "fur": "\u5f17\u7559\u5229\u6587", + "und": "\u672a\u77e5\u8bed\u8a00", + "gn": "\u74dc\u62c9\u5c3c\u6587", + "wae": "\u74e6\u5c14\u745f\u6587", + "vai": "\u74e6\u4f0a\u6587", + "wal": "\u74e6\u62c9\u83ab\u6587", + "was": "\u74e6\u7ecd\u6587", + "wa": "\u74e6\u9686\u6587", + "war": "\u74e6\u8d56\u6587", + "sba": "\u7518\u62dc\u6587", + "be": "\u767d\u4fc4\u7f57\u65af\u6587", + "lt": "\u7acb\u9676\u5b9b\u6587", + "cho": "\u4e54\u514b\u6258\u6587", + "ace": "\u4e9a\u9f50\u6587", + "agq": "\u4e9a\u7f55\u6587", + "hy": "\u4e9a\u7f8e\u5c3c\u4e9a\u6587", + "ibb": "\u4f0a\u6bd4\u6bd4\u5965\u6587", + "ig": "\u4f0a\u5e03\u6587", + "io": "\u4f0a\u591a\u6587", + "smn": "\u4f0a\u7eb3\u91cc\u8428\u7c73\u6587", + "ilo": "\u4f0a\u6d1b\u5e72\u8bfa\u6587", + "iba": "\u4f0a\u73ed\u6587", + "is": "\u51b0\u5c9b\u6587", + "kok": "\u521a\u5361\u5c3c\u6587", + "kg": "\u521a\u679c\u6587", + "swc": "\u521a\u679c\u65af\u74e6\u5e0c\u91cc\u6587", + "hu": "\u5308\u7259\u5229\u6587", + "inh": "\u5370\u53e4\u4ec0\u6587", + "hi": "\u5370\u5730\u6587", + "id": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u6587", + "ky": "\u5409\u5c14\u5409\u65af\u6587", + "gil": "\u5409\u5c14\u4f2f\u7279\u65af\u6587", + "ki": "\u5409\u5e93\u5c24\u6587", + "gez": "\u5409\u5179\u6587", + "gwi": "\u5409\u7ef4\u514b\u7434\u6587", + "rom": "\u5409\u666e\u8d5b\u6587", + "iu": "\u56e0\u7ebd\u7279\u6587", + "za": "\u58ee\u6587", + "mul": "\u591a\u79cd\u8bed\u7cfb", + "dgr": "\u591a\u683c\u91cc\u5e03\u6587", + "doi": "\u591a\u683c\u62c9\u6587", + "nmg": "\u5938\u897f\u5965\u6587", + "tpi": "\u6258\u514b\u76ae\u8f9b\u6587", + "tkl": "\u6258\u514b\u52b3\u6587", + "dyo": "\u6731\u62c9\u6587", + "bik": "\u6bd5\u5e93\u5c14\u6587", + "to": "\u6c64\u52a0\u6587", + "tog": "\u6c64\u52a0\u6587\uff08\u5c3c\u4e9a\u8428\u5730\u533a\uff09", + "mwl": "\u7c73\u5170\u5fb7\u65af\u6587", + "mic": "\u7c73\u514b\u9a6c\u514b\u6587", + "min": "\u7c73\u5357\u5361\u4fdd\u6587", + "yo": "\u7ea6\u9c81\u5df4\u6587", + "lo": "\u8001\u631d\u6587", + "ay": "\u827e\u9a6c\u62c9\u6587", + "elx": "\u827e\u62c9\u7c73\u7279\u6587", + "fy": "\u897f\u5f17\u91cc\u897f\u4e9a\u6587", + "scn": "\u897f\u897f\u91cc\u6587", + "nqo": "\u897f\u975e\u4e66\u9762\u6587\u5b57", + "khq": "\u897f\u6851\u6d77\u6587", + "es": "\u897f\u73ed\u7259\u6587", + "nds": "\u4f4e\u5730\u5fb7\u6587", + "nl_BE": "\u4f5b\u5170\u8292\u6587", + "ks": "\u514b\u4ec0\u7c73\u5c14\u6587", + "crh": "\u514b\u91cc\u7c73\u4e9a\u571f\u8033\u5176\u6587", + "mus": "\u514b\u91cc\u514b\u6587", + "cr": "\u514b\u91cc\u65cf\u6587", + "kpe": "\u514b\u4f69\u5217\u6587", + "tlh": "\u514b\u6797\u8d21\u6587", + "hr": "\u514b\u7f57\u5730\u4e9a\u6587", + "bej": "\u522b\u672d\u6587", + "bem": "\u522b\u59c6\u5df4\u6587", + "nus": "\u52aa\u57c3\u5c14\u6587", + "gon": "\u5c97\u5fb7\u6587", + "shi": "\u5e0c\u5c14\u54c8\u6587", + "he": "\u5e0c\u4f2f\u6765\u6587", + "hil": "\u5e0c\u5229\u76d6\u519c\u6587", + "ho": "\u5e0c\u91cc\u83ab\u56fe\u6587", + "el": "\u5e0c\u814a\u6587", + "ku": "\u5e93\u5c14\u5fb7\u6587", + "kut": "\u5e93\u7279\u5185\u6587", + "kum": "\u5e93\u6885\u514b\u6587", + "kru": "\u5e93\u9c81\u514b\u6587", + "chr": "\u5f7b\u7f57\u57fa\u6587", + "vo": "\u6c83\u62c9\u666e\u514b\u6587", + "wo": "\u6c83\u6d1b\u592b\u6587", + "vot": "\u6c83\u63d0\u514b\u6587", + "jpr": "\u72b9\u592a\u6ce2\u65af\u6587", + "jrb": "\u72b9\u592a\u963f\u62c9\u4f2f\u6587", + "naq": "\u7eb3\u9a6c\u6587", + "nv": "\u7eb3\u74e6\u970d\u6587", + "niu": "\u7ebd\u57c3\u6587", + "lol": "\u8292\u6208\u6587", + "dzg": "\u8fbe\u624e\u845b\u6587", + "dar": "\u8fbe\u5c14\u683c\u74e6\u6587", + "dak": "\u8fbe\u79d1\u4ed6\u6587", + "mai": "\u8fc8\u8482\u5229\u6587", + "pam": "\u90a6\u677f\u7259\u6587", + "pag": "\u90a6\u963f\u897f\u6960\u6587", + "chp": "\u4f69\u74e6\u626c\u6587", + "ik": "\u4f9d\u5974\u76ae\u7ef4\u514b\u6587", + "yi": "\u4f9d\u5730\u6587", + "kw": "\u51ef\u5c14\u7279\u6587", + "kho": "\u548c\u7530\u6587", + "ia": "\u56fd\u9645\u6587\u5b57", + "ie": "\u56fd\u9645\u6587\u5b57\uff08E\uff09", + "tyv": "\u56fe\u74e6\u6587", + "tvl": "\u56fe\u74e6\u5362\u6587", + "cgg": "\u5947\u52a0\u6587", + "mye": "\u59c6\u8036\u5185\u6587", + "bn": "\u5b5f\u52a0\u62c9\u6587", + "ts": "\u5b97\u52a0\u6587", + "cu": "\u5b97\u6559\u65af\u62c9\u592b\u6587", + "pap": "\u5e15\u76ae\u4e9a\u95e8\u6258\u6587", + "pau": "\u5e15\u52b3\u6587", + "pal": "\u5e15\u62c9\u7ef4\u6587", + "la": "\u62c9\u4e01\u6587", + "es_419": "\u62c9\u4e01\u7f8e\u6d32\u897f\u73ed\u7259\u6587", + "lah": "\u62c9\u4ea8\u8fbe\u6587", + "rap": "\u62c9\u5e15\u52aa\u4f0a\u6587", + "rar": "\u62c9\u7f57\u6c64\u52a0\u6587", + "lkt": "\u62c9\u79d1\u5854\u6587", + "lad": "\u62c9\u8fea\u8bfa\u6587", + "raj": "\u62c9\u8d3e\u65af\u5766\u6587", + "lv": "\u62c9\u8131\u7ef4\u4e9a\u6587", + "ewo": "\u65fa\u675c\u6587", + "anp": "\u6602\u52a0\u6587", + "ln": "\u6797\u52a0\u62c9\u6587", + "es_ES": "\u6b27\u6d32\u897f\u73ed\u7259\u6587", + "pt_PT": "\u6b27\u6d32\u8461\u8404\u7259\u6587", + "fr": "\u6cd5\u6587", + "fo": "\u6cd5\u7f57\u6587", + "pl": "\u6ce2\u5170\u6587", + "pon": "\u6ce2\u7eb3\u4f69\u6587", + "fa": "\u6ce2\u65af\u6587", + "bs": "\u6ce2\u65af\u5c3c\u4e9a\u6587", + "zen": "\u6cfd\u7eb3\u52a0\u6587", + "ar_001": "\u73b0\u4ee3\u6807\u51c6\u963f\u62c9\u4f2f\u6587", + "sn": "\u7ecd\u7eb3\u6587", + "nwc": "\u7ecf\u5178\u5c3c\u74e6\u5c14\u6587", + "syc": "\u7ecf\u5178\u53d9\u5229\u4e9a\u6587", + "ro": "\u7f57\u9a6c\u5c3c\u4e9a\u6587", + "rwk": "\u7f57\u74e6\u6587", + "rm": "\u7f57\u66fc\u4ec0\u6587", + "fi": "\u82ac\u5170\u6587", + "fan": "\u82b3\u683c\u6587", + "fat": "\u82b3\u8482\u6587", + "sux": "\u82cf\u9a6c\u6587", + "suk": "\u82cf\u5e93\u9a6c\u6587", + "srn": "\u82cf\u91cc\u5357\u6c64\u52a0\u6587", + "sus": "\u82cf\u82cf\u6587", + "sco": "\u82cf\u683c\u5170\u6587", + "gd": "\u82cf\u683c\u5170\u76d6\u5c14\u6587", + "kmb": "\u91d1\u90a6\u675c\u6587", + "akk": "\u963f\u5361\u5fb7\u6587", + "sq": "\u963f\u5c14\u5df4\u5c3c\u4e9a\u6587", + "ab": "\u963f\u5e03\u54c8\u897f\u4e9a\u6587", + "afh": "\u963f\u5f17\u91cc\u5e0c\u5229\u6587", + "av": "\u963f\u74e6\u5c14\u6587", + "awa": "\u963f\u74e6\u4e54\u6587", + "ach": "\u963f\u4e54\u5229\u6587", + "ain": "\u963f\u4f0a\u52aa\u6587", + "ada": "\u963f\u5f53\u6885\u6587", + "bss": "\u963f\u5e93\u8272\u6587", + "cch": "\u963f\u707f\u6587", + "am": "\u963f\u59c6\u54c8\u62c9\u6587", + "arw": "\u963f\u62c9\u74e6\u514b\u6587", + "arc": "\u963f\u62c9\u7c73\u6587", + "ar": "\u963f\u62c9\u4f2f\u6587", + "an": "\u963f\u62c9\u8d21\u6587", + "arp": "\u963f\u62c9\u5e15\u970d\u6587", + "aa": "\u963f\u6cd5\u6587", + "rup": "\u963f\u7f57\u9a6c\u5c3c\u4e9a\u6587", + "ak": "\u963f\u80af\u6587", + "asa": "\u963f\u82cf\u6587", + "ady": "\u963f\u8fea\u4f55\u6587", + "ale": "\u963f\u7559\u7533\u6587", + "ae": "\u963f\u7ef4\u65af\u5854\u6587", + "ast": "\u963f\u65af\u56fe\u91cc\u4e9a\u601d\u7279\u6587", + "az": "\u963f\u585e\u62dc\u7586\u6587", + "as": "\u963f\u8428\u59c6\u6587", + "ru": "\u4fc4\u6587", + "myv": "\u4fc4\u65e5\u4e9a\u6587", + "bg": "\u4fdd\u52a0\u5229\u4e9a\u6587", + "sd": "\u4fe1\u5fb7\u6587", + "alt": "\u5357\u963f\u5c14\u6cf0\u6587", + "af": "\u5357\u975e\u8377\u5170\u6587", + "nr": "\u5357\u6069\u5fb7\u8d1d\u52d2\u6587", + "st": "\u5357\u7d22\u6258\u6587", + "sma": "\u5357\u8428\u7c73\u6587", + "syr": "\u53d9\u5229\u4e9a\u6587", + "kk": "\u54c8\u8428\u514b\u6587", + "chb": "\u5951\u5e03\u5361\u6587", + "chn": "\u5951\u52aa\u514b\u6587", + "cy": "\u5a01\u5c14\u58eb\u6587", + "smj": "\u5f8b\u52d2\u6b27\u8428\u7c73\u6587", + "chg": "\u67e5\u52a0\u6587", + "ch": "\u67e5\u83ab\u7f57\u6587", + "zgh": "\u6807\u51c6\u6469\u6d1b\u54e5\u5854\u9a6c\u585e\u7279\u6587", + "yav": "\u6d0b\u535e\u6587", + "loz": "\u6d1b\u5179\u6587", + "koi": "\u79d1\u7c73-\u5f7c\u5c14\u7c73\u4e9a\u514b\u6587", + "kv": "\u79d1\u7c73\u6587", + "co": "\u79d1\u897f\u5609\u6587", + "bkm": "\u79d1\u59c6\u6587", + "kfo": "\u79d1\u7f57\u6587", + "gor": "\u79d1\u6d1b\u6d85\u8fbe\u7f57\u6587", + "kos": "\u79d1\u65af\u62c9\u4f0a\u6587", + "cop": "\u79d1\u666e\u7279\u6587", + "ksh": "\u79d1\u9686\u6587", + "xh": "\u79d1\u8428\u6587", + "swb": "\u79d1\u6469\u7f57\u6587", + "en_US": "\u7f8e\u5f0f\u82f1\u6587", + "ybb": "\u8036\u59c6\u5df4\u6587", + "hup": "\u80e1\u5e15\u6587", + "en": "\u82f1\u6587", + "en_GB": "\u82f1\u5f0f\u82f1\u6587", + "gay": "\u8fe6\u7ea6\u6587", + "dyu": "\u8fea\u5c24\u62c9\u6587", + "dv": "\u8fea\u7ef4\u5e0c\u6587", + "ksb": "\u9999\u5df4\u62c9\u6587", + "bal": "\u4ffe\u8def\u652f\u6587", + "got": "\u54e5\u7279\u6587", + "dje": "\u54f2\u5c14\u9a6c\u6587", + "eka": "\u57c3\u514b\u4e18\u514b\u6587", + "ee": "\u57c3\u7ef4\u6587", + "efi": "\u57c3\u83f2\u514b\u6587", + "chy": "\u590f\u5ef6\u6587", + "haw": "\u590f\u5a01\u5937\u6587", + "kj": "\u5bbd\u4e9a\u739b\u6587", + "ng": "\u6069\u4e1c\u52a0\u6587", + "ebu": "\u6069\u5e03\u6587", + "nnh": "\u6069\u7518\u6f8e\u6587", + "jgo": "\u6069\u826e\u5df4", + "nzi": "\u6069\u6d4e\u9a6c\u6587", + "nap": "\u62ff\u6ce2\u91cc\u6587", + "no": "\u632a\u5a01\u6587", + "nn": "\u632a\u5a01\u5c3c\u8bfa\u65af\u514b\u6587", + "nb": "\u632a\u5a01\u535a\u514b\u9a6c\u5c14\u6587", + "pa": "\u65c1\u906e\u666e\u6587", + "lag": "\u6717\u5409\u6587", + "root": "\u6839\u8bed\u8a00", + "grb": "\u683c\u5217\u535a\u6587", + "kl": "\u683c\u9675\u5170\u6587", + "ka": "\u683c\u9c81\u5409\u4e9a\u6587", + "sg": "\u6851\u6208\u6587", + "sbp": "\u6851\u53e4\u6587", + "saq": "\u6851\u5e03\u9c81\u6587", + "sat": "\u6851\u5854\u5229\u6587", + "th": "\u6cf0\u6587", + "te": "\u6cf0\u5362\u56fa\u6587", + "ta": "\u6cf0\u7c73\u5c14\u6587", + "ht": "\u6d77\u5730\u6587", + "hai": "\u6d77\u8fbe\u6587", + "ga": "\u7231\u5c14\u5170\u6587", + "et": "\u7231\u6c99\u5c3c\u4e9a\u6587", + "ter": "\u7279\u5217\u7eb3\u6587", + "del": "\u7279\u62c9\u534e\u6587", + "tli": "\u7279\u6797\u5409\u7279\u6587", + "tw": "\u7279\u5a01\u6587", + "teo": "\u7279\u7d22\u6587", + "tet": "\u7279\u5854\u59c6\u6587", + "bm": "\u73ed\u5df4\u62c9\u6587", + "zun": "\u7956\u5c3c\u6587", + "zu": "\u7956\u9c81\u6587", + "so": "\u7d22\u9a6c\u91cc\u6587", + "xog": "\u7d22\u52a0\u6587", + "snk": "\u7d22\u5c3c\u57fa\u6587", + "ckb": "\u7d22\u62c9\u5c3c\u5e93\u5c14\u5fb7\u6587", + "umb": "\u7fc1\u672c\u675c\u6587", + "nog": "\u8bfa\u76d6\u6587", + "km": "\u9ad8\u68c9\u6587", + "quc": "\u57fa\u5207\u6587", + "rn": "\u57fa\u9686\u8fea\u6587", + "ceb": "\u5bbf\u52a1\u6587", + "sid": "\u6089\u8fbe\u6469\u6587", + "cs": "\u6377\u514b\u6587", + "shn": "\u63b8\u6587", + "man": "\u66fc\u4e01\u54e5\u6587", + "mni": "\u66fc\u5c3c\u666e\u91cc\u6587", + "mdr": "\u66fc\u8fbe\u5c14\u6587", + "mak": "\u671b\u52a0\u9521\u6587", + "byv": "\u6885\u6566\u5df4\u6587", + "mer": "\u6885\u9c81\u6587", + "mgo": "\u6885\u5854", + "sa": "\u68b5\u6587", + "li": "\u6dcb\u5e03\u5c14\u5409\u6587", + "qu": "\u76d6\u4e18\u4e9a\u6587", + "ug": "\u7ef4\u543e\u5c14\u6587", + "nl": "\u8377\u5170\u6587", + "mos": "\u83ab\u897f\u6587", + "mdf": "\u83ab\u514b\u6c99\u6587", + "lez": "\u83b1\u5179\u4f9d\u6602\u6587", + "tum": "\u901a\u5e03\u5361\u6587", + "dua": "\u90fd\u963f\u62c9\u6587", + "brx": "\u535a\u591a\u6587", + "bho": "\u535a\u6770\u666e\u5c14\u6587", + "oj": "\u5965\u5409\u5e03\u74e6\u6587", + "de_AT": "\u5965\u5730\u5229\u5fb7\u6587", + "ota": "\u5965\u6258\u66fc\u571f\u8033\u5176\u6587", + "oc": "\u5965\u514b\u897f\u5510\u6587", + "or": "\u5965\u91cc\u4e9a\u6587", + "om": "\u5965\u6d1b\u83ab\u6587", + "os": "\u5965\u585e\u68af\u6587", + "osa": "\u5965\u8428\u683c\u6587", + "su": "\u5dfd\u4ed6\u6587", + "ti": "\u63d0\u683c\u91cc\u5c3c\u4e9a\u6587", + "tig": "\u63d0\u683c\u96f7\u6587", + "sad": "\u6563\u8fbe\u7ef4\u6587", + "fj": "\u6590\u6d4e\u6587", + "sw": "\u65af\u74e6\u5e0c\u91cc\u6587", + "ss": "\u65af\u74e6\u7279\u6587", + "sl": "\u65af\u6d1b\u6587\u5c3c\u4e9a\u6587", + "sk": "\u65af\u6d1b\u4f10\u514b\u6587", + "sms": "\u65af\u79d1\u7279\u8428\u7c73\u6587", + "ps": "\u666e\u4ec0\u56fe\u6587", + "pro": "\u666e\u7f57\u6587\u65af\u6587", + "vun": "\u6e29\u65e7\u6587", + "yue": "\u7ca4\u8bed", + "my": "\u7f05\u7538\u6587", + "phn": "\u8153\u5c3c\u57fa\u6587", + "fil": "\u83f2\u5f8b\u5bbe\u6587", + "srr": "\u8c22\u5217\u5c14\u6587", + "vi": "\u8d8a\u5357\u6587", + "jbo": "\u903b\u8f91\u6587", + "lun": "\u9686\u8fbe\u6587", + "sah": "\u96c5\u5e93\u7279\u6587", + "yap": "\u96c5\u6d66\u6587", + "ko": "\u97e9\u6587", + "lu": "\u9c81\u5df4\u52a0\u4e39\u52a0\u6587", + "lua": "\u9c81\u5df4\u9c81\u74e6\u6587", + "tzm": "\u5854\u9a6c\u9f50\u683c\u7279\u6587", + "tmh": "\u5854\u9a6c\u5947\u514b\u6587", + "tl": "\u5854\u52a0\u6d1b\u6587", + "tg": "\u5854\u5409\u514b\u6587", + "ty": "\u5854\u897f\u63d0\u6587", + "tt": "\u5854\u5854\u5c14\u6587", + "see": "\u585e\u5185\u5361\u6587", + "sel": "\u585e\u5c14\u5e93\u666e\u6587", + "sh": "\u585e\u5c14\u7ef4\u4e9a-\u514b\u7f57\u5730\u4e9a\u6587", + "sr": "\u585e\u5c14\u7ef4\u4e9a\u6587", + "seh": "\u585e\u7eb3\u6587", + "tn": "\u585e\u8328\u74e6\u7eb3\u6587", + "it": "\u610f\u5927\u5229\u6587", + "cv": "\u695a\u74e6\u4ec0\u6587", + "chk": "\u695a\u543e\u514b\u6587", + "mnc": "\u6ee1\u6587", + "na": "\u7459\u9c81\u6587", + "fr_CH": "\u745e\u58eb\u6cd5\u6587", + "de_CH": "\u745e\u58eb\u9ad8\u5730\u5fb7\u6587", + "gsw": "\u745e\u58eb\u5fb7\u6587", + "sv": "\u745e\u5178\u6587", + "zh_Hans": "\u7b80\u4f53\u4e2d\u6587", + "sc": "\u8428\u4e01\u6587", + "mas": "\u8428\u4f0a\u6587", + "sam": "\u8428\u739b\u5229\u4e9a\u6587", + "zap": "\u8428\u6ce2\u8482\u514b\u6587", + "sas": "\u8428\u8428\u514b\u6587", + "sm": "\u8428\u6469\u4e9a\u6587", + "ssy": "\u8428\u970d\u6587", + "gba": "\u845b\u5df4\u4e9a\u6587", + "pt": "\u8461\u8404\u7259\u6587", + "tiv": "\u8482\u592b\u6587", + "tsi": "\u8482\u59c6\u897f\u4e9a\u6587", + "lui": "\u8def\u6613\u585e\u8bfa\u6587", + "si": "\u50e7\u4f3d\u7f57\u6587", + "yao": "\u7476\u65cf\u6587", + "mn": "\u8499\u53e4\u6587", + "mua": "\u8499\u5f53\u6587", + "ha": "\u8c6a\u8428\u6587", + "hit": "\u8d6b\u68af\u6587", + "hz": "\u8d6b\u96f7\u7f57\u6587", + "hmn": "\u8d6b\u8499\u6587", + "de": "\u5fb7\u6587", + "ro_MD": "\u6469\u5c14\u591a\u74e6\u6587", + "moh": "\u6469\u970d\u514b\u6587", + "tem": "\u6ed5\u5185\u6587", + "es_MX": "\u58a8\u897f\u54e5\u897f\u73ed\u7259\u6587", + "en_AU": "\u6fb3\u5927\u5229\u4e9a\u82f1\u6587", + "zh_Hant": "\u7e41\u4f53\u4e2d\u6587", + "bo": "\u85cf\u6587", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bqi": "Bakhtiari", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "frc": "Cajun French", + "cps": "Capiznon", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "qug": "Chimborazo Highland Quichua", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/messages/am-ET.json b/public/intl/messages/am-ET.json new file mode 100644 index 0000000..e0332ae --- /dev/null +++ b/public/intl/messages/am-ET.json @@ -0,0 +1,2230 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Actions" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Add website" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "All" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "All time" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "Back" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce rate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsers" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancel" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Change password" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirm password" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Countries" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Current password" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Custom range" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dashboard" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Date range" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Default date range" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Delete" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Delete website" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Devices" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Dismiss" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Edit" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Enable share URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event Data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "Events" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combined" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Raw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " days" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hours" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Login" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "More" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Name" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "New password" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Page views" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pages" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Password" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profile" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realtime" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Refresh" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Required" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reset" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Save" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Settings" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Share URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Single day" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "This month" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "This week" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "This year" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Timezone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Today" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Tracking code" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unique visitors" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Unknown" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Username" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "View details" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Views" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitors" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " current " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitor" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitors" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Are you sure you want to delete " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are you sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "All website data will be deleted." + } + ], + "message.error": [ + { + "type": 0, + "value": "Something went wrong." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Go to settings" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Incorrect username/password." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Invalid domain. Do not include http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "No data available." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwords do not match." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "You do not have any websites configured." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Page not found." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your settings will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Saved." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "This is the publicly shared URL for " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "To track stats for this website, place the following code in the " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " section of your HTML." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitor from " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " using " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ar-SA.json b/public/intl/messages/ar-SA.json new file mode 100644 index 0000000..66a88df --- /dev/null +++ b/public/intl/messages/ar-SA.json @@ -0,0 +1,2214 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "كود الدعوة" + } + ], + "label.actions": [ + { + "type": 0, + "value": "الإجراءات" + } + ], + "label.activity": [ + { + "type": 0, + "value": "سجل الأحداث" + } + ], + "label.add": [ + { + "type": 0, + "value": "أضِف" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "أضف لوحة" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "أضِف وصف" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "أضِف عضو" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "إضافة خطوة" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "إضافة موقع" + } + ], + "label.admin": [ + { + "type": 0, + "value": "مدير" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "يعد" + } + ], + "label.all": [ + { + "type": 0, + "value": "الكل" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "كل الوقت" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "تحليلات" + } + ], + "label.apply": [ + { + "type": 0, + "value": "تطبيق" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "الإسناد" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "شاهد كيف يتفاعل المستخدمون مع حملاتك التسويقية وما الذي يحفز التحويلات." + } + ], + "label.average": [ + { + "type": 0, + "value": "المتوسط" + } + ], + "label.back": [ + { + "type": 0, + "value": "للخلف" + } + ], + "label.before": [ + { + "type": 0, + "value": "قبل" + } + ], + "label.boards": [ + { + "type": 0, + "value": "لوحات" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "معدل الارتداد" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "التصنيف" + } + ], + "label.browser": [ + { + "type": 0, + "value": "المتصفح" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "المتصفحات" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "حملات" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "إلغاء" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "تغيير كلمة المرور" + } + ], + "label.channels": [ + { + "type": 0, + "value": "قنوات" + } + ], + "label.cities": [ + { + "type": 0, + "value": "المدن" + } + ], + "label.city": [ + { + "type": 0, + "value": "المدينة" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "مسح الكل" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "مجموعة" + } + ], + "label.compare": [ + { + "type": 0, + "value": "المقارنة" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "قارن التواريخ" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "تأكيد" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "تأكيد كلمة المرور" + } + ], + "label.contains": [ + { + "type": 0, + "value": "يحتوي على" + } + ], + "label.content": [ + { + "type": 0, + "value": "المحتوى" + } + ], + "label.continue": [ + { + "type": 0, + "value": "تابع" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "تحويل" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "معدل التحويل" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "خطوة التحويل" + } + ], + "label.count": [ + { + "type": 0, + "value": "العدد" + } + ], + "label.countries": [ + { + "type": 0, + "value": "الدول" + } + ], + "label.country": [ + { + "type": 0, + "value": "الدولة" + } + ], + "label.create": [ + { + "type": 0, + "value": "أنشِئ" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "أنشِئ تقرير" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "أنشِئ فريق" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "أنشِئ مستخدم" + } + ], + "label.created": [ + { + "type": 0, + "value": "أُنشئت" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "أُنشئ من قبل" + } + ], + "label.currency": [ + { + "type": 0, + "value": "العملة" + } + ], + "label.current": [ + { + "type": 0, + "value": "الحالي" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "كلمة المرور الحالية" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "فترة مخصّصة" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "لوحة التحكم" + } + ], + "label.data": [ + { + "type": 0, + "value": "البيانات" + } + ], + "label.date": [ + { + "type": 0, + "value": "التاريخ" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "فترة مخصّصة" + } + ], + "label.day": [ + { + "type": 0, + "value": "يوم" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "الفترة المخصّصة الافتراضية" + } + ], + "label.delete": [ + { + "type": 0, + "value": "حذف" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "احذف التقرير" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "حذف الفريق" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "جذف مستخدم" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "حذف الموقع" + } + ], + "label.description": [ + { + "type": 0, + "value": "الوصف" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "كمبيوتر" + } + ], + "label.details": [ + { + "type": 0, + "value": "تفاصيل" + } + ], + "label.device": [ + { + "type": 0, + "value": "الجهاز" + } + ], + "label.devices": [ + { + "type": 0, + "value": "الأجهزة" + } + ], + "label.direct": [ + { + "type": 0, + "value": "مباشر" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "تجاهل" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "معرّف مميز" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "لا يحتوي على" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "لا يتضمن" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "غير موجود" + } + ], + "label.domain": [ + { + "type": 0, + "value": "النطاق" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "إنزال" + } + ], + "label.edit": [ + { + "type": 0, + "value": "تعديل" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "عدّل لوحة التحكم" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "عدّل العضو" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "فعّل مشاركة الرابط" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "الخطوة الأخيرة" + } + ], + "label.entry": [ + { + "type": 0, + "value": "رابط الدخول" + } + ], + "label.event": [ + { + "type": 0, + "value": "الحدث" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "تاريخ الحدث" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "اسم الحدث" + } + ], + "label.events": [ + { + "type": 0, + "value": "الأحداث" + } + ], + "label.exists": [ + { + "type": 0, + "value": "موجود" + } + ], + "label.exit": [ + { + "type": 0, + "value": "رابط المغادرة" + } + ], + "label.false": [ + { + "type": 0, + "value": "خطأ" + } + ], + "label.field": [ + { + "type": 0, + "value": "الحقل" + } + ], + "label.fields": [ + { + "type": 0, + "value": "الحقول" + } + ], + "label.filter": [ + { + "type": 0, + "value": "تصفيَة" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "مُجمّعة" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "خام" + } + ], + "label.filters": [ + { + "type": 0, + "value": "التصفيات" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "النقرة الأولى" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "أول ظهور" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "قمع" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "فهم معدل التحويل والانقطاع عن المستخدمين." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "قمعات" + } + ], + "label.goal": [ + { + "type": 0, + "value": "الهدف" + } + ], + "label.goals": [ + { + "type": 0, + "value": "الأهداف" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "تابع تحقق أهدافك المرتبطة بمشاهدات الصفحات والأحداث." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "أكبَر مِن" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "أكبَر مِن أو يساوي" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "مجمع" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "اسم المضيف" + } + ], + "label.includes": [ + { + "type": 0, + "value": "يتضمن" + } + ], + "label.insight": [ + { + "type": 0, + "value": "رؤية معمقة" + } + ], + "label.insights": [ + { + "type": 0, + "value": "نتائج التحليلات" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "تعمق في بياناتك باستخدام الشرائح والتصفيات." + } + ], + "label.is": [ + { + "type": 0, + "value": "يساوي" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "غير صحيح" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "لا يساوي" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "لم ضُبط" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "ضُبط" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "صحيح" + } + ], + "label.join": [ + { + "type": 0, + "value": "انضم" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "انضم للفريق" + } + ], + "label.journey": [ + { + "type": 0, + "value": "رحلة المستخدم" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "تعرّف على كيفية تنقّل المستخدمين داخل موقعك." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "رحلات المستخدم" + } + ], + "label.language": [ + { + "type": 0, + "value": "اللغة" + } + ], + "label.languages": [ + { + "type": 0, + "value": "اللغات" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "لابتوب" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "النقرة الأخيرة" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "آخر " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " يوم/ايام" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "آخر " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ساعة" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "آخر " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " شهر/أشهر" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "آخر ظهور" + } + ], + "label.leave": [ + { + "type": 0, + "value": "غادر" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "مغادرة المجموعة" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "أقل مِن" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "أقل مِن أو يساوي" + } + ], + "label.links": [ + { + "type": 0, + "value": "روابط" + } + ], + "label.login": [ + { + "type": 0, + "value": "تسجيل الدخول" + } + ], + "label.logout": [ + { + "type": 0, + "value": "تسجيل الخروج" + } + ], + "label.manage": [ + { + "type": 0, + "value": "التحكم" + } + ], + "label.manager": [ + { + "type": 0, + "value": "مدير" + } + ], + "label.max": [ + { + "type": 0, + "value": "الحد الأقصى" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "توسيع" + } + ], + "label.medium": [ + { + "type": 0, + "value": "وسيط" + } + ], + "label.member": [ + { + "type": 0, + "value": "عضو" + } + ], + "label.members": [ + { + "type": 0, + "value": "الأعضاء" + } + ], + "label.min": [ + { + "type": 0, + "value": "الحد الأدنى" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "جوال" + } + ], + "label.model": [ + { + "type": 0, + "value": "نموذج" + } + ], + "label.more": [ + { + "type": 0, + "value": "المزيد" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "حسابي" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "مواقعي" + } + ], + "label.name": [ + { + "type": 0, + "value": "الاسم" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "كلمة مرور جديدة" + } + ], + "label.none": [ + { + "type": 0, + "value": "لا شيء" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "سجل" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "سجلات" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "نعم" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "بحث عضوي" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "تسوق عضوي" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "اجتماعي عضوي" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "فيديو عضوي" + } + ], + "label.os": [ + { + "type": 0, + "value": "نظام التشغيل" + } + ], + "label.other": [ + { + "type": 0, + "value": "أخرى" + } + ], + "label.overview": [ + { + "type": 0, + "value": "نظرة عامة" + } + ], + "label.owner": [ + { + "type": 0, + "value": "المالك" + } + ], + "label.page": [ + { + "type": 0, + "value": "صفحة" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "صفحة " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " من " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "مشاهدات الصفحة" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "عنوان الصفحة" + } + ], + "label.pages": [ + { + "type": 0, + "value": "صفحات" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "إعلانات مدفوعة" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "بحث مدفوع" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "تسوق مدفوع" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "اجتماعي مدفوع" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "فيديو مدفوع" + } + ], + "label.password": [ + { + "type": 0, + "value": "كلمة المرور" + } + ], + "label.path": [ + { + "type": 0, + "value": "مسار" + } + ], + "label.paths": [ + { + "type": 0, + "value": "مسارات" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "بكسلات" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "مشغل بواسطة " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "السابق" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "الفترة السابقة" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "العام السابق" + } + ], + "label.profile": [ + { + "type": 0, + "value": "الملف الشخصي" + } + ], + "label.properties": [ + { + "type": 0, + "value": "خصائص" + } + ], + "label.property": [ + { + "type": 0, + "value": "خاصية" + } + ], + "label.queries": [ + { + "type": 0, + "value": "استعلامات" + } + ], + "label.query": [ + { + "type": 0, + "value": "استعلام" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "معاملات الاستعلام" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "الوقت الفعلي" + } + ], + "label.referral": [ + { + "type": 0, + "value": "إحالة" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "المرجع" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "التحويلات" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "تحديث" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "إعادة توليد" + } + ], + "label.region": [ + { + "type": 0, + "value": "المنطقة" + } + ], + "label.regions": [ + { + "type": 0, + "value": "المناطق" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "متبقي" + } + ], + "label.remove": [ + { + "type": 0, + "value": "أزِل" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "احذف عضو" + } + ], + "label.reports": [ + { + "type": 0, + "value": "التقارير" + } + ], + "label.required": [ + { + "type": 0, + "value": "اجباري" + } + ], + "label.reset": [ + { + "type": 0, + "value": "اعادة تعيين" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "اعادة تعيين الإحصائيات" + } + ], + "label.retention": [ + { + "type": 0, + "value": "الاحتفاظ" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "قس مدى ثبات موقعك على الويب من خلال تتبع عدد مرات عودة المستخدمين." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "الإيرادات" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "قم بإلقاء نظرة على بيانات إيراداتك وكيفية إنفاق المستخدمين." + } + ], + "label.role": [ + { + "type": 0, + "value": "الصلاحية" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "شغّل الاستعلام" + } + ], + "label.save": [ + { + "type": 0, + "value": "حفظ" + } + ], + "label.screens": [ + { + "type": 0, + "value": "الشاشات" + } + ], + "label.search": [ + { + "type": 0, + "value": "بحث" + } + ], + "label.select": [ + { + "type": 0, + "value": "اختر" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "حدد التاريخ" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "اختر تصفية" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "حدد الدور" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "حدد موقع" + } + ], + "label.session": [ + { + "type": 0, + "value": "الزيارة" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "بيانات الجلسة" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "الزيارات" + } + ], + "label.settings": [ + { + "type": 0, + "value": "الإعدادات" + } + ], + "label.share": [ + { + "type": 0, + "value": "مشاركة" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "مشاركة الرابط" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "يوم واحد" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "مصادر" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "الخطوة الأولى" + } + ], + "label.steps": [ + { + "type": 0, + "value": "الخطوات" + } + ], + "label.sum": [ + { + "type": 0, + "value": "المجموع" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "تابلت" + } + ], + "label.tag": [ + { + "type": 0, + "value": "الوسم" + } + ], + "label.tags": [ + { + "type": 0, + "value": "الوسوم" + } + ], + "label.team": [ + { + "type": 0, + "value": "الفريق" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "معرّف الفريق" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "مدير الفريق" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "عضو الفريق" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "اسم الفريق" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "مدير الفريق" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "إعدادات الفريق" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "عرض الفريق فقط" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "مواقع الفريق" + } + ], + "label.teams": [ + { + "type": 0, + "value": "الفرق" + } + ], + "label.terms": [ + { + "type": 0, + "value": "مصطلحات" + } + ], + "label.theme": [ + { + "type": 0, + "value": "السمة" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "الشهر الحالي" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "الاسبوع الحالي" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "السنة الحالية" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "المنطقة الزمنية" + } + ], + "label.title": [ + { + "type": 0, + "value": "العنوان" + } + ], + "label.today": [ + { + "type": 0, + "value": "اليوم" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "تغيير الإحصائيات" + } + ], + "label.total": [ + { + "type": 0, + "value": "الإجمالي" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "إجمالي السجلات" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "كود التتبع" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "المعاملات" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "نقل" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "انقل الموقع" + } + ], + "label.true": [ + { + "type": 0, + "value": "حقيقي" + } + ], + "label.type": [ + { + "type": 0, + "value": "النوع" + } + ], + "label.unique": [ + { + "type": 0, + "value": "فريد" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "زائرون فريدون" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "العملاء الفريدون" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "غير معروف" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "بدون عنوان" + } + ], + "label.update": [ + { + "type": 0, + "value": "تحديث" + } + ], + "label.user": [ + { + "type": 0, + "value": "المستخدم" + } + ], + "label.username": [ + { + "type": 0, + "value": "اسم المستخدم" + } + ], + "label.users": [ + { + "type": 0, + "value": "المستخدمين" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "تابع حملاتك التسويقية باستخدام معلمات UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "القيمة" + } + ], + "label.view": [ + { + "type": 0, + "value": "عرض" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "عرض التفاصيل" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "عرض فقط" + } + ], + "label.views": [ + { + "type": 0, + "value": "المشاهدات" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "مشاهدات لكل زيارة" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "متوسط وقت الزيارة" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "الزوار" + } + ], + "label.visits": [ + { + "type": 0, + "value": "الزيارات" + } + ], + "label.website": [ + { + "type": 0, + "value": "الموقع" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "معرّف الموقع" + } + ], + "label.websites": [ + { + "type": 0, + "value": "المواقع" + } + ], + "label.window": [ + { + "type": 0, + "value": "النافذة" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "الأمس" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "اكتب " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " في المربع أدناه للتأكيد." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " حاليا " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "زائر واحد" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "زوار" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "البيانات المجمعة" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "هل أنت متأكد من حذف " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "هل أنت متأكد من مغادرة " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "هل انت متأكد من حذف " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "هل أنت متأكد من اعادة تعيين الإحصائيات لـ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "؟" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "سيؤدي حذف الفريق أيضًا إلى حذف كافة مواقع الفريق" + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "سيتم حذف كافة بيانات الموقع." + } + ], + "message.error": [ + { + "type": 0, + "value": "حدث خطأ ما." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " في " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "الذهاب إلى الإعدادات" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "اسم المستخدم او كلمة المرور غير صحيحة." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "النطاق غير صحيح" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "اقل عدد مسموح به " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " حرف/أحرف" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "إصدار جديد من Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " متاح!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "لا توجد بيانات متاحة." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "لا توجد بيانات الحدث متاحة." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "كلمة المرور غير متطابقة" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "لا توجد نتائج." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "هذا الفريق ليس لديه أي مواقع." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "لم تنشِئ اي فرق." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "لا يوجد مستخدمين." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "لم تقم بإعداد اي موقع." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "الصفحة غير موجودة." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "لإعادة ضبط موقع الويب هذا، اكتب " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " في المربع أدناه للتأكيد." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "سيتم اعادة تعيين كافة الإحصائيات لهذا الموقع، لكن لن يتم تغيير كود التتبع" + } + ], + "message.saved": [ + { + "type": 0, + "value": "تم الحفظ بنجاح." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "إحصائيات موقعك متاحة للجميع على الرابط التالي:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "أنت عضو في الفريق" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "لم يتم العثور على الفريق" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "يمكن مشاهدة الموقع من اي عضو في الفريق." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "كود التتبع" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "نقل هذا الموقع إلى حسابك؟" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "اختر الفريق الذي تريد نقل الموقع إليه." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "نقل ملكية الموقع لحسابك أو فريق أخر." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "أُطلق الحدث" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "تم حذف المستخدم." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "شوهدت الصفحة" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "زائر من " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " يستخدم " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " على " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/be-BY.json b/public/intl/messages/be-BY.json new file mode 100644 index 0000000..dc6afb7 --- /dev/null +++ b/public/intl/messages/be-BY.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Код доступу" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Дзеянні" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Журнал актыўнасці" + } + ], + "label.add": [ + { + "type": 0, + "value": "Дадаць" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Дадаць дошку" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Дадаць апісанне" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Дадаць удзельніка" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Дадаць крок" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Дадаць сайт" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Адміністратар" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Партнёр" + } + ], + "label.after": [ + { + "type": 0, + "value": "Пасля" + } + ], + "label.all": [ + { + "type": 0, + "value": "Усё" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Увесь час" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Аналітыка" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Ужыць" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Атрыбуцыя" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Глядзіце, як карыстальнікі ўзаемадзейнічаюць з вашым маркетынгам і што прыводзіць да канверсій." + } + ], + "label.average": [ + { + "type": 0, + "value": "Сярэдняе" + } + ], + "label.back": [ + { + "type": 0, + "value": "Назад" + } + ], + "label.before": [ + { + "type": 0, + "value": "Да" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Дошкі" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Паказчык адмоваў" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Разбіўка" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Браўзер" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Браўзеры" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Кампаніі" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Адмена" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Змяніць пароль" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Каналы" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Гарады" + } + ], + "label.city": [ + { + "type": 0, + "value": "Горад" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Ачысціць усё" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Кагорта" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Параўнаць" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Параўнаць даты" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Падцвердзіць" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Падцвердзіць пароль" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Уключае" + } + ], + "label.content": [ + { + "type": 0, + "value": "Змест" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Працягнуць" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Канверсія" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Канверсійная стаўка" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Крок канверсіі" + } + ], + "label.count": [ + { + "type": 0, + "value": "Колькасць" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Краіны" + } + ], + "label.country": [ + { + "type": 0, + "value": "Краіна" + } + ], + "label.create": [ + { + "type": 0, + "value": "Стварыць" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Стварыць справаздачу" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Стварыць каманду" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Стварыць карыстальніка" + } + ], + "label.created": [ + { + "type": 0, + "value": "Створана" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Створана" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Валюта" + } + ], + "label.current": [ + { + "type": 0, + "value": "Цяперашні" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Цяперашні пароль" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Іншы дыяпазон" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Інфармацыйная панэль" + } + ], + "label.data": [ + { + "type": 0, + "value": "Дадзеныя" + } + ], + "label.date": [ + { + "type": 0, + "value": "Дата" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Дыяпазон дат" + } + ], + "label.day": [ + { + "type": 0, + "value": "Дзень" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Дыяпазон дат па змаўчанню" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Выдаліць" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Выдаліць справаздачу" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Выдаліць каманду" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Выдаліць карыстальніка" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Выдаліць сайт" + } + ], + "label.description": [ + { + "type": 0, + "value": "Апісанне" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Настольны ПК" + } + ], + "label.details": [ + { + "type": 0, + "value": "Дэталі" + } + ], + "label.device": [ + { + "type": 0, + "value": "Прылада" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Прылады" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Прама" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Адхіліць" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Унікальны ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Не ўключае" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Не ўключае" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Не існуе" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Дамен" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Адмовы" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Змяніць" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Змяніць інфармацыйную панэль" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Рэдагаваць удзельніка" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Дазволіць дзяліцца спасылкай" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Канчатковы крок" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL уваходу" + } + ], + "label.event": [ + { + "type": 0, + "value": "Падзея" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Дадзеныя падзеі" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Назва падзеі" + } + ], + "label.events": [ + { + "type": 0, + "value": "Падзеі" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Існуе" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL выхаду" + } + ], + "label.false": [ + { + "type": 0, + "value": "Ложна" + } + ], + "label.field": [ + { + "type": 0, + "value": "Поле" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Палі" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Фільтр" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Камбініраваны" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Сырыя" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Фільтры" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Першы клік" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Першы раз убачана" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Варонка" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Разумець паказчыкі канверсіі і адмоваў." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Варонкі" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Мэта" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Мэты" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Сачыць за мэтамі па праглядах старонак і падзеях." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Больш чым" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Больш чым або роўна" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Групаваны" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Імя хаста" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Уключае" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Інсайт" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Інсайты" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Даследваць дадзеныя з дапамогай сегментаў і фільтраў." + } + ], + "label.is": [ + { + "type": 0, + "value": "З'яўляецца" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Ложна" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Не з'яўляецца" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Не ўстаноўлена" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Устаноўлена" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Праўда" + } + ], + "label.join": [ + { + "type": 0, + "value": "Далучыцца" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Далучыцца да каманды" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Маршрут карыстальніка" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Разумець як карыстальнікі навігуюць па сайце." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Маршруты" + } + ], + "label.language": [ + { + "type": 0, + "value": "Мова" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Мовы" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Ноўтбук" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Апошні клік" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Апошнія " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " дзён" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Апошнія " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " гадзіны" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Апошнія " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " месяцаў" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Пакінуць" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Пакінуць каманду" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Менш чым" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Менш чым або роўна" + } + ], + "label.links": [ + { + "type": 0, + "value": "Спасылкі" + } + ], + "label.login": [ + { + "type": 0, + "value": "Увайсці" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Выйсці" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Кіраваць" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Кіраўнік" + } + ], + "label.max": [ + { + "type": 0, + "value": "Максімум" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Разгарнуць" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Сярэдні" + } + ], + "label.member": [ + { + "type": 0, + "value": "Удзельнік" + } + ], + "label.members": [ + { + "type": 0, + "value": "Удзельнікі" + } + ], + "label.min": [ + { + "type": 0, + "value": "Мінімум" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Мабільны" + } + ], + "label.model": [ + { + "type": 0, + "value": "Мадэль" + } + ], + "label.more": [ + { + "type": 0, + "value": "Болей" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Мой уліковы запіс" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Мае сайты" + } + ], + "label.name": [ + { + "type": 0, + "value": "Імя" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Новы пароль" + } + ], + "label.none": [ + { + "type": 0, + "value": "Няма" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "запіс" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "запісаў" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "ОК" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Арганічны пошук" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Арганічныя пакупкі" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Арганічныя сацыяльныя сеткі" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Арганічнае відэа" + } + ], + "label.os": [ + { + "type": 0, + "value": "Аперацыйная сістэма" + } + ], + "label.other": [ + { + "type": 0, + "value": "Іншае" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Агляд" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Уласнік" + } + ], + "label.page": [ + { + "type": 0, + "value": "Старонка" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Старонка " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " з " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Прагляды старонкі" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Загаловак старонкі" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Старонкі" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Платная рэклама" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Платаны пошук" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Платныя пакупкі" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Платныя сацыяльныя сеткі" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Платнае відэа" + } + ], + "label.password": [ + { + "type": 0, + "value": "Пароль" + } + ], + "label.path": [ + { + "type": 0, + "value": "Шлях" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Шляхи" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Пікселі" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Зроблена " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Папярэдні" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Папярэдні перыяд" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Папярэдні год" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Профіль" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Уласцівасці" + } + ], + "label.property": [ + { + "type": 0, + "value": "Уласцівасць" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Запыты" + } + ], + "label.query": [ + { + "type": 0, + "value": "Запыт" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Параметры запыту" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "У рэяльным часе" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Рэферал" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Рэферэр" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Рэферэры" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Аднавіць" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Рэгенераваць" + } + ], + "label.region": [ + { + "type": 0, + "value": "Рэгіён" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Рэгіёны" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Засталося" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Выдаліць" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Выдаліць удзельніка" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Справаздачы" + } + ], + "label.required": [ + { + "type": 0, + "value": "Абавязкова" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Скінуць" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Скінуць статыстыку" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Утрыманне" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Ацаніць прыцягальнасць сайта, адсочваючы павяртанні карыстальнікаў." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Роля" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Запусціць запыт" + } + ], + "label.save": [ + { + "type": 0, + "value": "Захаваць" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Экраны" + } + ], + "label.search": [ + { + "type": 0, + "value": "Пошук" + } + ], + "label.select": [ + { + "type": 0, + "value": "Выбраць" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Выбраць дату" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Выбраць фільтр" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Выбраць ролю" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Выбраць сайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Сесія" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Дадзеныя сесіі" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Сесіі" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Налады" + } + ], + "label.share": [ + { + "type": 0, + "value": "Падзяліцца" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Падзяліцца спасылкай" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Адзін дзень" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Крыніцы" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Першы кроку" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Крокі" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Сума" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Планшэт" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Каманда" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Ідэнтыфікатар каманды" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Кіраўнік каманды" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Удзельнік каманды" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Назва каманды" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Уласнік каманды" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Налады каманды" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Толькі для каманднага прагляду" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Сайты каманды" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Каманды" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Тэрміны" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Тэма" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Гэты месяц" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Гэты тыдзень" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Гэты год" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Часавы пояс" + } + ], + "label.title": [ + { + "type": 0, + "value": "Загаловак" + } + ], + "label.today": [ + { + "type": 0, + "value": "Сёння" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Пераключыць графікі" + } + ], + "label.total": [ + { + "type": 0, + "value": "Агульная колькасць" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Агульная колькасць запісаў" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Код адсочвання" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Перадаць" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Перадаць сайт" + } + ], + "label.true": [ + { + "type": 0, + "value": "Ісціна" + } + ], + "label.type": [ + { + "type": 0, + "value": "Тып" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Унікальны" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Унікальныя наведвальнікі" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Невядома" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Без назвы" + } + ], + "label.update": [ + { + "type": 0, + "value": "Абнавіць" + } + ], + "label.user": [ + { + "type": 0, + "value": "Карыстальнік" + } + ], + "label.username": [ + { + "type": 0, + "value": "Імя карыстальніка" + } + ], + "label.users": [ + { + "type": 0, + "value": "Карыстальнікі" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Сачыць за кампаніямі з дапамогай UTM-метак." + } + ], + "label.value": [ + { + "type": 0, + "value": "Значэнне" + } + ], + "label.view": [ + { + "type": 0, + "value": "Паглядзець" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Паглядзець дэталі" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Толькі прагляд" + } + ], + "label.views": [ + { + "type": 0, + "value": "Прагляды" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Прагляды за наведванне" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Сярэдняя даўжыня наведвання" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Наведвальнікі" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Наведванні" + } + ], + "label.website": [ + { + "type": 0, + "value": "Сайт" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Ідэнтыфікатар сайта" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Сайты" + } + ], + "label.window": [ + { + "type": 0, + "value": "Вакно" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Учора" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Увядзіце " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " у поле ніжэй, каб пацвердзіць." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " цякучых " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "наведвальнік" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "наведвальнікаў" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Сабраныя дадзеныя" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Вы дакладна хочаце выдаліць " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Вы дакладна хочаце пакінуць " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Вы дакладна хочаце выдаліць " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Вы дакладна хочаце скінуць " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " статыстыку?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Выдаленне каманды таксама выдаліць усе сайты каманды." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Усе асацыяваныя дадзеныя будуць таксама выдалены." + } + ], + "message.error": [ + { + "type": 0, + "value": "Нешта пайшло не так." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Да налад" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Некарэктнае імя карыстальніка/пароль." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Некарэктны дамен" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Мінімальная даўжыня " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " знакаў" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Даступная новая версія Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Няма дадзеных." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Дадзеныя падзеі недаступныя." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Паролі не супадаюць" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Вынікаў не знойдзена." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Гэтая каманда не мае ніводнага сайта." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Вы не стварылі ніводнай каманды." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Няма карыстальнікаў." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Вы не наладзілі ніводнага сайта." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Старонка не знойдзена." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Каб скінуць гэты сайт, увядзіце " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " у поле ніжэй для пацверджання." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Уся статыстыка для гэтага сайта будзе выдалена, але код адсочвання будзе працягваць працаваць." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Захавана паспяхова." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Гэта публічная спасылка для " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Вы ўжо ўдзельнік каманды." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Каманда не знойдзена." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Сайты могуць быць праглядацца любым удзельнікам каманды." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Код адсочвання" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Перадаць гэты сайт на ваш уліковы запіс?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Выберыце каманду для перадачы гэтага сайта." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Перадача сайта на ваш уліковы запіс або іншай камандзе." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Падзея якая спрацавала" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Карыстальнік выдалены." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Праглядзеў старонку" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Наведвальнік з " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " праз " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/bg-BG.json b/public/intl/messages/bg-BG.json new file mode 100644 index 0000000..1ff2a7b --- /dev/null +++ b/public/intl/messages/bg-BG.json @@ -0,0 +1,2228 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Код за достъп" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Действия" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Активностти" + } + ], + "label.add": [ + { + "type": 0, + "value": "Добави" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Добави дъска" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Добави описание" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Добави член" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Добави стъпка" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Добави уебсайт" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Администратор" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Партньор" + } + ], + "label.after": [ + { + "type": 0, + "value": "След" + } + ], + "label.all": [ + { + "type": 0, + "value": "Всички" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "За всички времена" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Анализи" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Приложи" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Атрибуция" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Вижте как потребителите взаимодействат с вашия маркетинг и какво води до конверсии." + } + ], + "label.average": [ + { + "type": 0, + "value": "Средно" + } + ], + "label.back": [ + { + "type": 0, + "value": "Назад" + } + ], + "label.before": [ + { + "type": 0, + "value": "Преди" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Дъски" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Kоефициент на отказ" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Разбивка" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Браузър" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Браузъри" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Кампании" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Отмени" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Смени парола" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Канали" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Градове" + } + ], + "label.city": [ + { + "type": 0, + "value": "Град" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Изчисти всички" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Кохорта" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Сравни" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Сравни дати" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Потвърди" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Потвърди парола" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Съдържа" + } + ], + "label.content": [ + { + "type": 0, + "value": "Съдържание" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Продължи" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Конверсия" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Процент на конверсия" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Стъпка на конверсия" + } + ], + "label.count": [ + { + "type": 0, + "value": "Брой" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Държави" + } + ], + "label.country": [ + { + "type": 0, + "value": "Държава" + } + ], + "label.create": [ + { + "type": 0, + "value": "Създай" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Създай отчет" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Създай екип" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Създай потребител" + } + ], + "label.created": [ + { + "type": 0, + "value": "Създадено" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Създадено от" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Валута" + } + ], + "label.current": [ + { + "type": 0, + "value": "Текущ" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Текуща парола" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Обхват" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Табло" + } + ], + "label.data": [ + { + "type": 0, + "value": "Данни" + } + ], + "label.date": [ + { + "type": 0, + "value": "Дата" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Диапазон от дати" + } + ], + "label.day": [ + { + "type": 0, + "value": "Ден" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Диапазон от дати по подразбиране" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Изтрий" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Изтрий отчет" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Изтрий екип" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Изтрий потребител" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Изтрий уебсайт" + } + ], + "label.description": [ + { + "type": 0, + "value": "Описание" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Десктоп" + } + ], + "label.details": [ + { + "type": 0, + "value": "Детайли" + } + ], + "label.device": [ + { + "type": 0, + "value": "Устройство" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Устройства" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Директно" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Отхвърли" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Уникален ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Не съдържа" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Не включва" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Не съществува" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Домейн" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Отпадане" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Редактирай" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Редактирай табло" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Редактирай член" + } + ], + "label.email": [ + { + "type": 0, + "value": "Имейл" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Активирай Линк за споделяне" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Крайна стъпка" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL на вход" + } + ], + "label.event": [ + { + "type": 0, + "value": "Събитие" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Данни за събитие" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Име на събитие" + } + ], + "label.events": [ + { + "type": 0, + "value": "Събития" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Съществува" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Грешно" + } + ], + "label.field": [ + { + "type": 0, + "value": "Поле" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Полета" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Филтър" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Комбиниран" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Суров" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Филтри" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Първо кликване" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Първо видяно" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Фуния" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Разберете процента на конверсия и отпадане на потребителите." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Фунии" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Цел" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Цели" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Следете целите си за прегледи на страници и събития." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "По-голямо от" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "По-голямо или равно на" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Групирано" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Име на хост" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Включва" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Прозрение" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Изводи" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Навлезте по-дълбоко в данните си, като използвате сегменти и филтри." + } + ], + "label.is": [ + { + "type": 0, + "value": "Е" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Грешно" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Не е" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Не е зададено" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Зададено е" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Вярно" + } + ], + "label.join": [ + { + "type": 0, + "value": "Присъедини се" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Присъедини се към екип" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Пътешествие" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Разберете как потребителите навигират във вашия уебсайт." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Пътешествия" + } + ], + "label.language": [ + { + "type": 0, + "value": "Език" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Езици" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Лаптоп" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Последно кликване" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Последните " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " дни" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Последните " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " часа" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Последните " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " месеца" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Напусни" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Напусни екип" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "По-малко от" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "По-малко или равно на" + } + ], + "label.links": [ + { + "type": 0, + "value": "Връзки" + } + ], + "label.login": [ + { + "type": 0, + "value": "Вход" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Изход" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Управлявай" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Мениджър" + } + ], + "label.max": [ + { + "type": 0, + "value": "Максимум" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Разшири" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Среден" + } + ], + "label.member": [ + { + "type": 0, + "value": "Член" + } + ], + "label.members": [ + { + "type": 0, + "value": "Членове" + } + ], + "label.min": [ + { + "type": 0, + "value": "Минимум" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Мобилен" + } + ], + "label.model": [ + { + "type": 0, + "value": "Модел" + } + ], + "label.more": [ + { + "type": 0, + "value": "Още" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Моят акаунт" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Моите уебсайтове" + } + ], + "label.name": [ + { + "type": 0, + "value": "Име" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Нова парола" + } + ], + "label.none": [ + { + "type": 0, + "value": "Няма" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "един" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "други" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "Добре" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Органично търсене" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Органично пазаруване" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Органични социални мрежи" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Органично видео" + } + ], + "label.os": [ + { + "type": 0, + "value": "ОС" + } + ], + "label.other": [ + { + "type": 0, + "value": "Друго" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Общ преглед" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Собственик" + } + ], + "label.page": [ + { + "type": 0, + "value": "Страница" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Страница " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " от " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Прегледи на страницата" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Заглавие на страница" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Страници" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Платени реклами" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Платено търсене" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Платено пазаруване" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Платени социални мрежи" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Платено видео" + } + ], + "label.password": [ + { + "type": 0, + "value": "Парола" + } + ], + "label.path": [ + { + "type": 0, + "value": "Път" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Пътища" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Пиксели" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Поддържано от " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Профил" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Свойства" + } + ], + "label.property": [ + { + "type": 0, + "value": "Свойство" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Запитвания" + } + ], + "label.query": [ + { + "type": 0, + "value": "Запитване" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Параметри на търсене" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "В реално време" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Реферал" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Референт" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Референти" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Обнови" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Регенерирай" + } + ], + "label.region": [ + { + "type": 0, + "value": "Регион" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Региони" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Оставащи" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Премахни" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Премахни член" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Отчети" + } + ], + "label.required": [ + { + "type": 0, + "value": "Задължително" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Нулирай" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Нулирай уебсайт" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Привързване" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Измерете привързаността към вашия уебсайт, като проследявате колко често потребителите се връщат." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Роля" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Изпълни запитване" + } + ], + "label.save": [ + { + "type": 0, + "value": "Запази" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Екрани" + } + ], + "label.search": [ + { + "type": 0, + "value": "Търсене" + } + ], + "label.select": [ + { + "type": 0, + "value": "Избери" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Избери дата" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Избери филтър" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Избери роля" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Избери уебсайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Сесия" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Данни за сесия" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Сесии" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Настройки" + } + ], + "label.share": [ + { + "type": 0, + "value": "Сподели" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Сподели Линк" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Един ден" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Източници" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Начална стъпка" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Стъпки" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Сума" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Таблет" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Етикет" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Етикети" + } + ], + "label.team": [ + { + "type": 0, + "value": "Екип" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID на екип" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Мениджър на екип" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Член на екипа" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Име на екипа" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Собственик на екипа" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Настройки на екипа" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Видимо само за членове на екипа" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Уебсайтове на екипа" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Екипи" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Термини" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Тема" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Този месец" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Тази седмица" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Тази година" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Часова зона" + } + ], + "label.title": [ + { + "type": 0, + "value": "Заглавие" + } + ], + "label.today": [ + { + "type": 0, + "value": "Днес" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Виж диаграми" + } + ], + "label.total": [ + { + "type": 0, + "value": "Общо" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Общо записи" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Код за проследяване" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Прехвърли" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Прехвърляне на уебсайт" + } + ], + "label.true": [ + { + "type": 0, + "value": "Вярно" + } + ], + "label.type": [ + { + "type": 0, + "value": "Вид" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Уникален" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Уникални посетители" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Неизвестен" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Без заглавие" + } + ], + "label.update": [ + { + "type": 0, + "value": "Актуализирай" + } + ], + "label.user": [ + { + "type": 0, + "value": "Потребител" + } + ], + "label.username": [ + { + "type": 0, + "value": "Потребителско име" + } + ], + "label.users": [ + { + "type": 0, + "value": "Потребители" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Следете кампаниите си чрез UTM параметри." + } + ], + "label.value": [ + { + "type": 0, + "value": "Стойност" + } + ], + "label.view": [ + { + "type": 0, + "value": "Преглед" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Преглед на детайлите" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Само за преглед" + } + ], + "label.views": [ + { + "type": 0, + "value": "Прегледи" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Прегледи на посещение" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Посетители" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Посещения" + } + ], + "label.website": [ + { + "type": 0, + "value": "Уебсайт" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Идентификатор на уебсайт" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Уебсайтове" + } + ], + "label.window": [ + { + "type": 0, + "value": "Прозорец" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Вчера" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Въведете " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " в полето по-долу, за да потвърдите." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "активен един" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "активни други" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да изтриете " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да напуснете " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да премахнете " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да нулирате " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Изтриването на екип ще изтрие и всички уебсайтове създадени от екипа." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Всички данни за уебсайта ще бъдат изтрити." + } + ], + "message.error": [ + { + "type": 0, + "value": "Възникна грешка." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Отидете в настройките" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Неправилно потребителско име и/или парола." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Невалиден домейн. Не включвайте http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Минимална дължина от " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " символа" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Има нова версия на Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Няма налични данни." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Няма налични данни за събитие." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Паролите не съвпадат." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Няма намерени резултати." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Този екип няма никакви уебсайтове." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Няма създадени екипи." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Няма потребители." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Нямате конфигурирани уебсайтове." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Страницата не е намерена" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "За да нулирате този уебсайт, въведете " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " в полето по-долу, за да потвърдите." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Всички статистически данни за този уебсайт ще бъдат изтрити, но вашите настройки ще останат непроменени." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Запазено." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Статистиката за вашия уебсайт е публично достъпна на следния URL адрес:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Вече сте член на екипа." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Екипът не е намерен." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Уебсайтовете могат да бъдат преглеждани от всеки член на екипа." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "За активирате проследяването на статистиката във вашият уебсайт, поставете следния код в секцията " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " намираща се в вашия HTML." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Искате да прехвърлите този уебсайт към вашия акаунт?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Изберете екипът на който да бъде прехвърлен уебсайта." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Прехвърли собствеността на уебсайта към вашия акаунт или към друг екип." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Активирано събитие" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Потребителят е изтрит." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Страницата е видяна" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Посетител от " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": ", използващ " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/bn-BD.json b/public/intl/messages/bn-BD.json new file mode 100644 index 0000000..aa66cd8 --- /dev/null +++ b/public/intl/messages/bn-BD.json @@ -0,0 +1,2230 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "এক্সেস কোড" + } + ], + "label.actions": [ + { + "type": 0, + "value": "অ্যাকশনস" + } + ], + "label.activity": [ + { + "type": 0, + "value": "একটিভিটি দেখুন" + } + ], + "label.add": [ + { + "type": 0, + "value": "যুক্ত করুন" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "বোর্ড যুক্ত করুন" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "বর্ননা যোগ করুন" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "সদস্য যোগ করুন" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "পদ যোগ করুন" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "ওয়েবসাইট যুক্ত করুন" + } + ], + "label.admin": [ + { + "type": 0, + "value": "অ্যাডমিন" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "সহযোগী" + } + ], + "label.after": [ + { + "type": 0, + "value": "পরে" + } + ], + "label.all": [ + { + "type": 0, + "value": "সবগুলো" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "সব সময়" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "বিশ্লেষণ" + } + ], + "label.apply": [ + { + "type": 0, + "value": "প্রয়োগ করুন" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "অ্যাট্রিবিউশন" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "দেখুন ব্যবহারকারীরা কীভাবে আপনার মার্কেটিংয়ের সাথে যুক্ত হয় এবং কীভাবে রূপান্তর ঘটে।" + } + ], + "label.average": [ + { + "type": 0, + "value": "গড়" + } + ], + "label.back": [ + { + "type": 0, + "value": "পেছনে" + } + ], + "label.before": [ + { + "type": 0, + "value": "পূর্বে" + } + ], + "label.boards": [ + { + "type": 0, + "value": "বোর্ডসমূহ" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "উপরে উঠার হার" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "ভাঙ্গন" + } + ], + "label.browser": [ + { + "type": 0, + "value": "ব্রাউজার" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "ব্রাউজার সমূহ" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "প্রচারণা" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "বাতিল" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "পাসওয়ার্ড পরিবর্তন করুন" + } + ], + "label.channels": [ + { + "type": 0, + "value": "চ্যানেলসমূহ" + } + ], + "label.cities": [ + { + "type": 0, + "value": "শহরসমূহ" + } + ], + "label.city": [ + { + "type": 0, + "value": "শহর" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "সব মুছে ফেলুন" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "কোহর্ট" + } + ], + "label.compare": [ + { + "type": 0, + "value": "তুলনা করুন" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "তারিখ তুলনা করুন" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "নিশ্চিত করুন" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "পাসওয়ার্ড নিশ্চিত করুন" + } + ], + "label.contains": [ + { + "type": 0, + "value": "রয়েছে" + } + ], + "label.content": [ + { + "type": 0, + "value": "বিষয়বস্তু" + } + ], + "label.continue": [ + { + "type": 0, + "value": "পরবর্তিতে" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "রূপান্তর" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "রূপান্তর হার" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "রূপান্তর ধাপ" + } + ], + "label.count": [ + { + "type": 0, + "value": "গণনা" + } + ], + "label.countries": [ + { + "type": 0, + "value": "দেশসমূহ" + } + ], + "label.country": [ + { + "type": 0, + "value": "দেশ" + } + ], + "label.create": [ + { + "type": 0, + "value": "তৈরি করুন" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "রিপোর্ট তৈরি করুন" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "দল তৈরি করুন" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "ব্যবহারকারী তৈরি করুন" + } + ], + "label.created": [ + { + "type": 0, + "value": "তৈরি করা হয়েছে" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "তৈরি করেছেন" + } + ], + "label.currency": [ + { + "type": 0, + "value": "মুদ্রা" + } + ], + "label.current": [ + { + "type": 0, + "value": "বর্তমান" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "বর্তমান পাসওয়ার্ড" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "কাস্টম রেঞ্জ" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "ড্যাশবোর্ড" + } + ], + "label.data": [ + { + "type": 0, + "value": "ডেটা" + } + ], + "label.date": [ + { + "type": 0, + "value": "তারিখ" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "তারিখের পরিসীমা" + } + ], + "label.day": [ + { + "type": 0, + "value": "দিন" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "ডিফল্ট তারিখের পরিসীমা" + } + ], + "label.delete": [ + { + "type": 0, + "value": "মুছে ফেলুন" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "রিপোর্ট মুছুন" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "দল মুছুন" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "ব্যবহারকারী মুছুন" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "ওয়েবসাইট মুছুন" + } + ], + "label.description": [ + { + "type": 0, + "value": "বর্ণনা" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "ডেস্কটপ" + } + ], + "label.details": [ + { + "type": 0, + "value": "বিস্তারিত" + } + ], + "label.device": [ + { + "type": 0, + "value": "ডিভাইস" + } + ], + "label.devices": [ + { + "type": 0, + "value": "ডিভাইস গুলো" + } + ], + "label.direct": [ + { + "type": 0, + "value": "সরাসরি" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "বাতিল" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "স্বতন্ত্র আইডি" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "ধারণ করে না" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "অন্তর্ভুক্ত নয়" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "অস্তিত্ব নেই" + } + ], + "label.domain": [ + { + "type": 0, + "value": "ডোমেইন" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "ছেড়ে যাওয়া" + } + ], + "label.edit": [ + { + "type": 0, + "value": "সম্পাদনা করুন" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "ড্যাশবোর্ড সম্পাদনা করুন" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "সদস্য সম্পাদনা করুন" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "শেয়ার ইউআরএল শেয়ার করুন" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "শেষ ধাপ" + } + ], + "label.entry": [ + { + "type": 0, + "value": "প্রবেশ URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "ইভেন্ট" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "ইভেন্ট ডেটা" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "ইভেন্টের নাম" + } + ], + "label.events": [ + { + "type": 0, + "value": "ঘটনা" + } + ], + "label.exists": [ + { + "type": 0, + "value": "অস্তিত্ব আছে" + } + ], + "label.exit": [ + { + "type": 0, + "value": "প্রস্থান URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "মিথ্যা" + } + ], + "label.field": [ + { + "type": 0, + "value": "ক্ষেত্র" + } + ], + "label.fields": [ + { + "type": 0, + "value": "ক্ষেত্রসমূহ" + } + ], + "label.filter": [ + { + "type": 0, + "value": "ফিল্টার" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "সম্মিলিত" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "অপরিশোধিত" + } + ], + "label.filters": [ + { + "type": 0, + "value": "ফিল্টারসমূহ" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "প্রথম ক্লিক" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "প্রথম দেখা" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "ফানেল" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "ব্যবহারকারীদের রূপান্তর ও ছেড়ে যাওয়ার হার বুঝুন।" + } + ], + "label.funnels": [ + { + "type": 0, + "value": "ফানেলসমূহ" + } + ], + "label.goal": [ + { + "type": 0, + "value": "লক্ষ্য" + } + ], + "label.goals": [ + { + "type": 0, + "value": "লক্ষ্যসমূহ" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "পৃষ্ঠাদর্শন ও ইভেন্টের লক্ষ্য ট্র্যাক করুন।" + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "এর চেয়ে বেশি" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "এর চেয়ে বেশি বা সমান" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "গ্রুপ করা" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "হোস্টনেম" + } + ], + "label.includes": [ + { + "type": 0, + "value": "অন্তর্ভুক্ত" + } + ], + "label.insight": [ + { + "type": 0, + "value": "অন্তর্দৃষ্টি" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "হয়" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "মিথ্যা" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "নয়" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "নির্ধারিত নয়" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "নির্ধারিত" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "সত্য" + } + ], + "label.join": [ + { + "type": 0, + "value": "যোগ দিন" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "দলে যোগ দিন" + } + ], + "label.journey": [ + { + "type": 0, + "value": "যাত্রা" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "ব্যবহারকারীরা কীভাবে আপনার ওয়েবসাইটে নেভিগেট করে তা বুঝুন।" + } + ], + "label.journeys": [ + { + "type": 0, + "value": "যাত্রাসমূহ" + } + ], + "label.language": [ + { + "type": 0, + "value": "ভাষা" + } + ], + "label.languages": [ + { + "type": 0, + "value": "ভাষা" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "ল্যাপটপ" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "শেষ ক্লিক" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "শেষ " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " দিন" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "শেষ " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ঘন্টা" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "শেষ " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " মাস" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "শেষ দেখা" + } + ], + "label.leave": [ + { + "type": 0, + "value": "ত্যাগ করুন" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "দল ত্যাগ করুন" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "এর চেয়ে কম" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "এর চেয়ে কম বা সমান" + } + ], + "label.links": [ + { + "type": 0, + "value": "লিঙ্কসমূহ" + } + ], + "label.login": [ + { + "type": 0, + "value": "লগিন" + } + ], + "label.logout": [ + { + "type": 0, + "value": "লগ আউট" + } + ], + "label.manage": [ + { + "type": 0, + "value": "পরিচালনা করুন" + } + ], + "label.manager": [ + { + "type": 0, + "value": "পরিচালক" + } + ], + "label.max": [ + { + "type": 0, + "value": "সর্বাধিক" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "বিস্তৃত করুন" + } + ], + "label.medium": [ + { + "type": 0, + "value": "মাঝারি" + } + ], + "label.member": [ + { + "type": 0, + "value": "সদস্য" + } + ], + "label.members": [ + { + "type": 0, + "value": "সদস্যগণ" + } + ], + "label.min": [ + { + "type": 0, + "value": "সর্বনিম্ন" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "মুঠোফোন" + } + ], + "label.model": [ + { + "type": 0, + "value": "মডেল" + } + ], + "label.more": [ + { + "type": 0, + "value": "আরও" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "আমার অ্যাকাউন্ট" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "আমার ওয়েবসাইটসমূহ" + } + ], + "label.name": [ + { + "type": 0, + "value": "নাম" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "নতুন পাসওয়ার্ড" + } + ], + "label.none": [ + { + "type": 0, + "value": "কিছুই না" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "অর্গানিক সার্চ" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "অর্গানিক শপিং" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "অর্গানিক সোশ্যাল" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "অর্গানিক ভিডিও" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "অন্যান্য" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "মালিক" + } + ], + "label.page": [ + { + "type": 0, + "value": "পৃষ্ঠা" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "পৃষ্ঠা পরিদর্শন গুলো" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "পৃষ্ঠাগুলি" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "পেইড বিজ্ঞাপন" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "পেইড সার্চ" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "পেইড শপিং" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "পেইড সোশ্যাল" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "পেইড ভিডিও" + } + ], + "label.password": [ + { + "type": 0, + "value": "পাসওয়ার্ড" + } + ], + "label.path": [ + { + "type": 0, + "value": "পথ" + } + ], + "label.paths": [ + { + "type": 0, + "value": "পথসমূহ" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "পিক্সেল" + } + ], + "label.powered-by": [ + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " দ্বারা চালিত" + } + ], + "label.previous": [ + { + "type": 0, + "value": "পূর্ববর্তী" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "পূর্ববর্তী সময়কাল" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "গত বছর" + } + ], + "label.profile": [ + { + "type": 0, + "value": "প্রোফাইল" + } + ], + "label.properties": [ + { + "type": 0, + "value": "বৈশিষ্ট্যসমূহ" + } + ], + "label.property": [ + { + "type": 0, + "value": "বৈশিষ্ট্য" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "সরাসরি" + } + ], + "label.referral": [ + { + "type": 0, + "value": "রেফারেল" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "রেফারার্স" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "রিফ্রেশ" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "বাকি আছে" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "প্রয়োজনীয়" + } + ], + "label.reset": [ + { + "type": 0, + "value": "রিসেট" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "ওয়েবসাইট রিসেট করুন" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "আয়" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "সময়ের সাথে সাথে আপনার আয় দেখুন।" + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "সংরক্ষণ" + } + ], + "label.screens": [ + { + "type": 0, + "value": "স্ক্রিনগুলি" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "ফিল্টার নির্বাচন করুন" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "সেশন" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "সেশন ডেটা" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "সেটিংস" + } + ], + "label.share": [ + { + "type": 0, + "value": "শেয়ার করুন" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "এটি " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " এর জন্য প্রকাশ্যে শেয়ার করার ইউআরএল।" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "একদিন" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "উৎসসমূহ" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "ট্যাবলেট" + } + ], + "label.tag": [ + { + "type": 0, + "value": "ট্যাগ" + } + ], + "label.tags": [ + { + "type": 0, + "value": "ট্যাগসমূহ" + } + ], + "label.team": [ + { + "type": 0, + "value": "দল" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "দল আইডি" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "দল ব্যবস্থাপক" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "দলের সদস্য" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "দলের নাম" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "দলের মালিক" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "দলের সেটিংস" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "শর্তাবলী" + } + ], + "label.theme": [ + { + "type": 0, + "value": "থিম" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "এই মাস" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "এই সপ্তাহ" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "এই বছর" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "সময়স্থান" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "আজ" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "চার্ট পরিবর্তন করুন" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "ট্র্যাকিং কোড" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "অনন্য ভিজিটর" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "অজানা" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "ব্যবহারকারীর নাম" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "বিস্তারিত দেখুন" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "ভিউস" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "গড় পরিদর্শনের সময়" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "পরিদর্শনার্থী" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "সবগুলো ওয়েবসাইট" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " বর্তমান " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitor" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitors" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "আপনি কি নিশ্চিত যে আপনি " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " মুছতে চান?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "আপনি কি নিশ্চিত যে আপনি " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " এর পরিসংখ্যান পুনরায় সেট করতে চান?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "সমস্ত সম্পর্কিত ডেটা পাশাপাশি মুছে ফেলা হবে।" + } + ], + "message.error": [ + { + "type": 0, + "value": "কিছু ভুল হয়েছে।" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "সেটিংস এ যান" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "ভুল ব্যবহারকারীর নাম/পাসওয়ার্ড।" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "ভুল ডোমেন" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "কোন তথ্য নেই।" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "পাসওয়ার্ড মেলে না" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "কোনও ওয়েবসাইট কনফিগার করা নেই।" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "পৃষ্ঠা খুঁজে পাওয়া যায়নি।" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "এই ওয়েবসাইটের সমস্ত পরিসংখ্যান মুছে ফেলা হবে, তবে আপনার ট্র্যাকিং কোডটি অক্ষত থাকবে।" + } + ], + "message.saved": [ + { + "type": 0, + "value": "সংরক্ষিত হয়েছে।" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "এটি " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " এর জন্য প্রকাশ্যে শেয়ার করার ইউআরএল।" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "ট্র্যাকিং কোড" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " থেকে একজন ভিসিটর " + }, + { + "type": 1, + "value": "ব্রাউজার" + }, + { + "type": 0, + "value": ", ব্যবহার করছেন " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " এর মধ্যে।" + } + ] +} diff --git a/public/intl/messages/bs-BA.json b/public/intl/messages/bs-BA.json new file mode 100644 index 0000000..7d115a5 --- /dev/null +++ b/public/intl/messages/bs-BA.json @@ -0,0 +1,2228 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Pristupni kod" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Akcije" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Log aktivnosti" + } + ], + "label.add": [ + { + "type": 0, + "value": "Dodaj" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Dodaj ploču" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Dodaj opis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Dodaj člana" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Dodaj korak" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Dodaj web stranicu" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Nakon" + } + ], + "label.all": [ + { + "type": 0, + "value": "Sve" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Cijelo vrijeme" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitike" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Primijeni" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribucija" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Pogledajte kako korisnici komuniciraju s vašim marketingom i šta dovodi do konverzija." + } + ], + "label.average": [ + { + "type": 0, + "value": "Prosjek" + } + ], + "label.back": [ + { + "type": 0, + "value": "Nazad" + } + ], + "label.before": [ + { + "type": 0, + "value": "Prije" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Ploče" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Stopa napuštanja" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Pregled po kategorijama" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browseri" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanje" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Otkaži" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Promijeni šifru" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanali" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Gradovi" + } + ], + "label.city": [ + { + "type": 0, + "value": "Grad" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Očisti sve" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorta" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Uporedi" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Uporedi datume" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potvrdi" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potvrdi šifru" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Sadrži" + } + ], + "label.content": [ + { + "type": 0, + "value": "Sadržaj" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Nastavi" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konverzija" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Stopa konverzije" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Korak konverzije" + } + ], + "label.count": [ + { + "type": 0, + "value": "Broj" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Zemlje" + } + ], + "label.country": [ + { + "type": 0, + "value": "Zemlja" + } + ], + "label.create": [ + { + "type": 0, + "value": "Kreiraj" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Kreiraj izvještaj" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Kreiraj tim" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Kreiraj korisnika" + } + ], + "label.created": [ + { + "type": 0, + "value": "Kreiraj" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Kreirao" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Trenutno" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Trenutna šifra" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Proizvoljni raspon" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dashboard" + } + ], + "label.data": [ + { + "type": 0, + "value": "Podaci" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datumski raspon" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dan" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Defaultni datumski raspon" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Izbriši" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Izbriši report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Izbriši tim" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Izbriši korisnika" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Izbriši web stranicu" + } + ], + "label.description": [ + { + "type": 0, + "value": "Opis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalji" + } + ], + "label.device": [ + { + "type": 0, + "value": "Uređaj" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Uređaji" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direktno" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Odbaci" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Jedinstveni ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Ne sadrži" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Ne uključuje" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Ne postoji" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domena" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Odlazak" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Uredi" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Uredi dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Uredi člana" + } + ], + "label.email": [ + { + "type": 0, + "value": "E-mail" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Omogući URL za dijeljenje" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Završni korak" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL ulaza" + } + ], + "label.event": [ + { + "type": 0, + "value": "Događaj" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Podaci o događaju" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Naziv događaja" + } + ], + "label.events": [ + { + "type": 0, + "value": "Događaji" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Postoji" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Ne" + } + ], + "label.field": [ + { + "type": 0, + "value": "Polje" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Polja" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinovano" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Sirovo" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtri" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Prvi klik" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Prvi put viđeno" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Lijevak" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Razumite koverziju i drop-off učestalost korisnika." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Lijevci" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cilj" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ciljevi" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Pratite svoje ciljeve za prikaze stranica i događaje." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Veće od" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Veće od ili jednako" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grupisano" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Naziv hosta" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Uključuje" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Uvid" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Uvidi" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Zaronite dublje u vaše podatke korištenjem segmenata i filtera" + } + ], + "label.is": [ + { + "type": 0, + "value": "Jeste" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Nije tačno" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nije" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nije setano" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Jeste setano" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Tačno" + } + ], + "label.join": [ + { + "type": 0, + "value": "Učlani se" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Učlani se u tim" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Putovanje" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Saznajte kako korisnici navigiraju vašom web stranicom." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Putovanja" + } + ], + "label.language": [ + { + "type": 0, + "value": "Jezik" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Jezici" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Zadnji klik" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dana" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " sati" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mjeseci" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Napusti" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Napusti tim" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Manje od" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Manje od ili jednako" + } + ], + "label.links": [ + { + "type": 0, + "value": "Linkovi" + } + ], + "label.login": [ + { + "type": 0, + "value": "Login" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Menadžer" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Proširi" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Srednje" + } + ], + "label.member": [ + { + "type": 0, + "value": "Član" + } + ], + "label.members": [ + { + "type": 0, + "value": "Članovi" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Više" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Moj račun" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Moje web stranice" + } + ], + "label.name": [ + { + "type": 0, + "value": "Ime" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nova šifra" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nijedno" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "zapis" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "zapisa" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organska pretraga" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organska kupovina" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organske društvene mreže" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organski video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Drugo" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Pregled" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Vlasnik" + } + ], + "label.page": [ + { + "type": 0, + "value": "Stranica" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Strana " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " od " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Pregleda stranica" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Naslov stranice" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Stranice" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Plaćeni oglasi" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Plaćena pretraga" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Plaćena kupovina" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Plaćene društvene mreže" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Plaćeni video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Šifra" + } + ], + "label.path": [ + { + "type": 0, + "value": "Putanja" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Putanje" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pikseli" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Omogućeno s " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Svojstva" + } + ], + "label.property": [ + { + "type": 0, + "value": "Svojstvo" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Upiti" + } + ], + "label.query": [ + { + "type": 0, + "value": "Upit" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametri upita" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realno vrijeme" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Preporuka" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Preporučilac" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Preporučioci" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Osvježi" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regeneriši" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regioni" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Preostalo" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Ukloni" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Ukloni člana" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Izvještaji" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obavezno" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Resetuj" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Resetuj web stranicu" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Zadržavanje" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Izmjeri 'ljepljivost' svoje web stranice praćenjem koliko često set korisnici vraćaju." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Prihod" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Pogledajte svoje prihode tokom vremena." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rola" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Pokreni query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Sačuvaj" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekrani" + } + ], + "label.search": [ + { + "type": 0, + "value": "Traži" + } + ], + "label.select": [ + { + "type": 0, + "value": "Odaberi" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Odaberi datum" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Odaberi filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Odaberi rolu" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Odaberi web stranicu" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesija" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Podaci o sesiji" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesije" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Postavke" + } + ], + "label.share": [ + { + "type": 0, + "value": "Podijeli" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL za dijeljenje" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Jedan dan" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Izvori" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Početni korak" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Koraci" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Oznaka" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Oznake" + } + ], + "label.team": [ + { + "type": 0, + "value": "Tim" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Tim ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Menadžer tima" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Član tima" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Naziv tima" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Vlasnik tima" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Postavke tima" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Samo tim može vidjeti" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Timske web stranice" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Timovi" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Pojmovi" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Teme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Ovaj mjesec" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Ova sedmica" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Ova godina" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Vremenska zona" + } + ], + "label.title": [ + { + "type": 0, + "value": "Naslov" + } + ], + "label.today": [ + { + "type": 0, + "value": "Danas" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Uklj/isklj grafikone" + } + ], + "label.total": [ + { + "type": 0, + "value": "Ukupno" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Ukupno redova" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kod za praćenje" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer web stranice" + } + ], + "label.true": [ + { + "type": 0, + "value": "Da" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tip" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Jedinstveno" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Jedinstvenih posjetitelja" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Nepoznato" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Bezimeno" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Korisnik" + } + ], + "label.username": [ + { + "type": 0, + "value": "Korisničko ime" + } + ], + "label.users": [ + { + "type": 0, + "value": "Korisnici" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Pratite vaše kampanje kroz UTM parametre." + } + ], + "label.value": [ + { + "type": 0, + "value": "Vrijednost" + } + ], + "label.view": [ + { + "type": 0, + "value": "Pregled" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Pogledaj detalje" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Samo gledanje" + } + ], + "label.views": [ + { + "type": 0, + "value": "Pregledi" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Pregledi po posjeti" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Prosječno vrijeme posjete" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Posjetitelji" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Posjete" + } + ], + "label.website": [ + { + "type": 0, + "value": "Web stranica" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID web stranice" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Web stranice" + } + ], + "label.window": [ + { + "type": 0, + "value": "Prozor" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Jučer" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Unesite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " ispod da potvrdite." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " trenutno " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "posjetitelj" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "posjetitelja" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Jeste li sigurni da želite obrisati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Jeste li sigurni da želite napustiti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Jeste li sigurni da želite ukloniti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Jeste li sigurni da želite resetovati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Brisanje tima će također obrisati sve web stranice tima." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Svi podaci web stranice biće obrisani." + } + ], + "message.error": [ + { + "type": 0, + "value": "Nešto je pošlo po zlu." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Idi na postavke" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Pogrešno korisničko ime i/ili šifra." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Nevalidna domena. Ne uključujte http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimalna dužina od " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " karaktera" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Nova verzija Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " je dostupna!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nema dostupnih podataka." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Nema dostupnih podataka o događajima." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Šifre se ne poklapaju." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Nema rezultata." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Ovaj tim nema nikakvih web stranica." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Niste kreirali nijedan tim." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Nema nikakvih korisnika." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nemate iskonfigurisanu nijednu web stranicu." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Stranica nije pronađena" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Da resetujete ovu web stranicu, upišite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " dole da potvrdite." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Sve statistike o ovoj web stranici će biti obrisane, ali vaše postavke neće biti dirane." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Sačuvano." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Statistike vaše web stranice su javno dostupne na sljedećem URLu:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Već ste član tima." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Tim nije pronađen." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Web stranice može vidjeti bilo ko iz tima." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Da pratite statistike ove web stranice, stavite sljedeći kod u " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " sekciju vašeg HTMLa." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Prebacite ovu web stranicu na vaš račun?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Odaberite tim u koji želite prebaciti ovu web stranicu." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Prebacite vlasništvo web stranice na vaš račun ili drugi tim." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Trigerovani događaj" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Korisnik obrisan." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Pogledana stranica" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Posjetitelj iz " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " koristi " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ca-ES.json b/public/intl/messages/ca-ES.json new file mode 100644 index 0000000..fab208b --- /dev/null +++ b/public/intl/messages/ca-ES.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Codi d'accés" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Accions" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Registre d'activitat" + } + ], + "label.add": [ + { + "type": 0, + "value": "Afegir" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Afegir tauler" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Afegir descripció" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Afegir membre" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Afegir pas" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Afegir lloc web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrador" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliat" + } + ], + "label.after": [ + { + "type": 0, + "value": "Després" + } + ], + "label.all": [ + { + "type": 0, + "value": "Tots" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Sempre" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analítiques" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aplica" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribució" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Vegeu com els usuaris interactuen amb el vostre màrqueting i què impulsa les conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Mitjana" + } + ], + "label.back": [ + { + "type": 0, + "value": "Enrere" + } + ], + "label.before": [ + { + "type": 0, + "value": "Abans" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Taulers" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Percentatge de rebot" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Desglossament" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Navegador" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navegadors" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campanyes" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancel·la" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Canvia la contrasenya" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canals" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Ciutats" + } + ], + "label.city": [ + { + "type": 0, + "value": "Ciutat" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Netejar tot" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Comparar dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmar" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirma la contrasenya" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Conté" + } + ], + "label.content": [ + { + "type": 0, + "value": "Contingut" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuar" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversió" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Taxa de conversió" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Pas de conversió" + } + ], + "label.count": [ + { + "type": 0, + "value": "Recompte" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Països" + } + ], + "label.country": [ + { + "type": 0, + "value": "País" + } + ], + "label.create": [ + { + "type": 0, + "value": "Crear" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Crear informe" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Crear equip" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Crear usuari" + } + ], + "label.created": [ + { + "type": 0, + "value": "Creat" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creat Per" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Moneda" + } + ], + "label.current": [ + { + "type": 0, + "value": "Actual" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Contrasenya actual" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Rang personalitzat" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Panell" + } + ], + "label.data": [ + { + "type": 0, + "value": "Dades" + } + ], + "label.date": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Interval de dates" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dia" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Interval de dates per defecte" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Esborra" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Eliminar informe" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Eliminar equip" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Eliminar usuari" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Esborra el lloc web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descripció" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Escriptori" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalls" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispositiu" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositius" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Directe" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Descarta" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distintiu" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "No conté" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "No inclou" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "No existeix" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domini" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Abandonament" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Edita" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edita panell" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edita membre" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Activa l'enllaç per compartir" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Pas Final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL d'entrada" + } + ], + "label.event": [ + { + "type": 0, + "value": "Esdeveniment" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dades de l'esdeveniment" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nom de l'esdeveniment" + } + ], + "label.events": [ + { + "type": 0, + "value": "Esdeveniments" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existeix" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL de sortida" + } + ], + "label.false": [ + { + "type": 0, + "value": "Fals" + } + ], + "label.field": [ + { + "type": 0, + "value": "Camp" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Camps" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtre" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinat" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "En cru" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtres" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primer clic" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Vist per primer cop" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Embut" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Entengui la taxa de conversió i abandonament dels usuaris." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Embuts" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Meta" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Metes" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Feu un seguiment de les seves metes per a pàgines vistes i esdeveniments." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Més gran que" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Més gran que o igual a" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Agrupat" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nom de host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inclou" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Visió" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Aprofundeixi en les seves dades mitjançant l'ús de segments i filtres." + } + ], + "label.is": [ + { + "type": 0, + "value": "És igual a" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "És fals" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "No és igual a" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "No està establert" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Està establert" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "És cert" + } + ], + "label.join": [ + { + "type": 0, + "value": "Unir" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Unir-se al equip" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Trajecte" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Entengui com naveguen els usuaris pel seu lloc web." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Trajectes" + } + ], + "label.language": [ + { + "type": 0, + "value": "Idioma" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Idiomes" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portàtil" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Últim clic" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Últims " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dies" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Últimes " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hores" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Últims " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mesos" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Vist per últim cop" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Abandonar" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Abandonar equip" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Menor que" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Menor que o igual a" + } + ], + "label.links": [ + { + "type": 0, + "value": "Enllaços" + } + ], + "label.login": [ + { + "type": 0, + "value": "Connecta't" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Desconnecta't" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Administrar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Responsable" + } + ], + "label.max": [ + { + "type": 0, + "value": "Màx" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expandeix" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Mitjà" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membre" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membres" + } + ], + "label.min": [ + { + "type": 0, + "value": "Mín" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mòbil" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Més" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "El meu compte" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Els meus llocs web" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nom" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Contrasenya nova" + } + ], + "label.none": [ + { + "type": 0, + "value": "Cap" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "registre" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "registres" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Cerca orgànica" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Compra orgànica" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social orgànic" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Vídeo orgànic" + } + ], + "label.os": [ + { + "type": 0, + "value": "SO" + } + ], + "label.other": [ + { + "type": 0, + "value": "Altres" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Resum" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Propietari" + } + ], + "label.page": [ + { + "type": 0, + "value": "Pàgina" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Pàgina " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " de " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Pàgines vistes" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Títol de la pàgina" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pàgines" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Anuncis de pagament" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Cerca de pagament" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Compra de pagament" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social de pagament" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Vídeo de pagament" + } + ], + "label.password": [ + { + "type": 0, + "value": "Contrasenya" + } + ], + "label.path": [ + { + "type": 0, + "value": "Camí" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Camins" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Funciona amb " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Període anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Any anterior" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Perfil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Propietats" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propietat" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Consultes" + } + ], + "label.query": [ + { + "type": 0, + "value": "Consulta" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Paràmetres de consulta" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Temps real" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referència" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referent" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referents" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Refresca" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerar" + } + ], + "label.region": [ + { + "type": 0, + "value": "Regió" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Restant" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Treure" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Eliminar membre" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Informes" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obligatori" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Restableix" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Restableix estadístiques" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retenció" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mesuri la retenció del seu lloc web fent un seguiment de la freqüència amb què tornen els usuaris." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Ingressos" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Observi els seus ingressos al llarg del temps." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Executar consulta" + } + ], + "label.save": [ + { + "type": 0, + "value": "Desa" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Pantalles" + } + ], + "label.search": [ + { + "type": 0, + "value": "Buscar" + } + ], + "label.select": [ + { + "type": 0, + "value": "Seleccionar" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Seleccionar data" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Seleccionar filtre" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Seleccionar rol" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Seleccionar lloc web" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sessió" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Dades de sessió" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Configuració" + } + ], + "label.share": [ + { + "type": 0, + "value": "Comparteix" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Enllaç per compartir" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Un sol dia" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Fonts" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Pas inicial" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pasos" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tauleta" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etiqueta" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etiquetes" + } + ], + "label.team": [ + { + "type": 0, + "value": "Equip" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID del equip" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Responsable d'equip" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Membre de l'equip" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nom de l'equip" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Propietari de l'equip" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Configuració de l'equip" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Vista només de l'equip" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Llocs web de l'equip" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Equips" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termes" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Aquest mes" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Aquesta setmana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Aquest any" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zona horària" + } + ], + "label.title": [ + { + "type": 0, + "value": "Títol" + } + ], + "label.today": [ + { + "type": 0, + "value": "Avui" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Mostra/amaga gràfics" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total de registres" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Codi de seguiment" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transaccions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir lloc web" + } + ], + "label.true": [ + { + "type": 0, + "value": "Cert" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tipus" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Únic" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitants únics" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clients Únics" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Desconegut" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Sense títol" + } + ], + "label.update": [ + { + "type": 0, + "value": "Actualitzar" + } + ], + "label.user": [ + { + "type": 0, + "value": "Usuari" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nom d'usuari" + } + ], + "label.users": [ + { + "type": 0, + "value": "Usuaris" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Rastreji les seves campanyes a través de paràmetres UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Valor" + } + ], + "label.view": [ + { + "type": 0, + "value": "Visualitzar" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Veure els detalls" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Només veure" + } + ], + "label.views": [ + { + "type": 0, + "value": "Vistes" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vistes per visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Temps mitjà de visita" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitants" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visites" + } + ], + "label.website": [ + { + "type": 0, + "value": "Lloc web" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID del lloc web" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Llocs web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Finestra" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Ahir" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Escrigui " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " al cuadre inferior per confirmar." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitant actual" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitants actuals" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Dades recol·lectades" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Segur que vol esborrar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Segur que vol abandonar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Segur que vol eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Segur que vol restablir les estadístiques de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Al eliminar un equip també s'eliminaran tots els llocs web de l'equip." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "També s'esborraran totes les dades relacionades." + } + ], + "message.error": [ + { + "type": 0, + "value": "S'ha produït un error." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " a " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Vés a la configuració" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nom d'usuari o contrasenya incorrectes." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domini invàlid" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Longitud mínima de " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caràcters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Una nova versió d'Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " està disponible!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "No hi ha dades disponibles." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No hi ha dades d'esdeveniments disponibles." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Les contrasenyes no coincideixen" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No s'han trobat resultats." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Aquest equip no té cap lloc web." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "No ha creat cap equip." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "No hi ha cap usuari." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "No hi ha cap lloc web configurat." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "No s'ha trobat la pàgina." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Per restablir aquest lloc web, escrigui " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " al cuadre inferior per confirmar." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "S'esborraran totes les estadístiques per aquest lloc web, però el codi de seguiment es mantindrà." + } + ], + "message.saved": [ + { + "type": 0, + "value": "S'ha desat amb èxit." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Aquest és l'enllaç públic per compartir de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Ja és membre d'aquest equip." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Equip no trobat." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Els llocs web poden ser visualitzats per qualsevol membre de l'equip." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Codi de seguiment" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transferir aquest lloc web al seu compte?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Seleccioni l'equip al qui transferir aquest lloc web." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transferir la propietat del lloc web al seu compte o a un altre equip." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Esdeveniment desencadenat" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Usuari eliminat." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Pàgina vista" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitant de " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " usant " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " a " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/cs-CZ.json b/public/intl/messages/cs-CZ.json new file mode 100644 index 0000000..d45ef5d --- /dev/null +++ b/public/intl/messages/cs-CZ.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Přístupový kód" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Akce" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Log aktivity" + } + ], + "label.add": [ + { + "type": 0, + "value": "Přidat" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Přidat nástěnku" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Přidat popis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Přidat člena" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Přidat krok" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Přidat web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrátor" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Po" + } + ], + "label.all": [ + { + "type": 0, + "value": "Vše" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Celá doba" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytika" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Použít" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribuce" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Podívejte se, jak uživatelé interagují s vaším marketingem a co vede ke konverzím." + } + ], + "label.average": [ + { + "type": 0, + "value": "Průměr" + } + ], + "label.back": [ + { + "type": 0, + "value": "Zpět" + } + ], + "label.before": [ + { + "type": 0, + "value": "Před" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Nástěnky" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Okamžité opuštění" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Rozpis" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Prohlížeč" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Prohlížeče" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampaně" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Zrušit" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Změnit heslo" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanály" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Města" + } + ], + "label.city": [ + { + "type": 0, + "value": "Město" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Vyčistit vše" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorta" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Porovnat" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Porovnat data" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potvrdit" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potvrdit heslo" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Obsahuje" + } + ], + "label.content": [ + { + "type": 0, + "value": "Obsah" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Pokračovat" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konverze" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Míra konverze" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Krok konverze" + } + ], + "label.count": [ + { + "type": 0, + "value": "Počet" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Státy" + } + ], + "label.country": [ + { + "type": 0, + "value": "Stát" + } + ], + "label.create": [ + { + "type": 0, + "value": "Vytvořit" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Vytvořit hlášení" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Vytvořit tým" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Vytvořit uživatele" + } + ], + "label.created": [ + { + "type": 0, + "value": "Vytvořeno" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Měna" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuální" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Aktuální heslo" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Vlastní rozsah" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Přehled" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Období" + } + ], + "label.day": [ + { + "type": 0, + "value": "Den" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Výchozí období" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Smazat" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Smazat hlášení" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Smazat tým" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Smazat uživatele" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Smazat web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Popis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Stolní počítač" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detaily" + } + ], + "label.device": [ + { + "type": 0, + "value": "Zařízení" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Zařízení" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Přímý" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Odejít" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Jedinečné ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Neobsahuje" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Nezahrnuje" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Neexistuje" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Doména" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Opuštění" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Upravit" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Upravit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Upravit člena" + } + ], + "label.email": [ + { + "type": 0, + "value": "E-mail" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Povolit sdílení URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Konečný krok" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Vstupní URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Událost" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Data události" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Název události" + } + ], + "label.events": [ + { + "type": 0, + "value": "Události" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existuje" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Nepravda" + } + ], + "label.field": [ + { + "type": 0, + "value": "Pole" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Pole" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtr" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinace" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Nezpracované" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtry" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "První kliknutí" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Poprvé viděno" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Trychtýř" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Trychtýře" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cíl" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Cíle" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Větší než" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Větší nebo rovno" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Seskupeno" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Název hostitele" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Zahrnuje" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Pohled" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Pohledy" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Ponořte se hlouběji do svých dat pomocí segmentů a filtrů." + } + ], + "label.is": [ + { + "type": 0, + "value": "Je" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Nepravda" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Není" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Není nastaveno" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Nastaveno" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Pravda" + } + ], + "label.join": [ + { + "type": 0, + "value": "Připojit se" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Připojit se k týmu" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Cesta" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Zjistěte, jak uživatelé procházejí vaším webem." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Cesty" + } + ], + "label.language": [ + { + "type": 0, + "value": "Jazyk" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Jazyky" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Přenosný počítač" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Poslední kliknutí" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Posledních " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dnů" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Posledních " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hodin" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Posledních " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " měsíců" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Opustit" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Opustit tým" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Méně než" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Méně nebo rovno" + } + ], + "label.links": [ + { + "type": 0, + "value": "Odkazy" + } + ], + "label.login": [ + { + "type": 0, + "value": "Přihlásit" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Odhlásit" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Spravovat" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Správce" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Rozbalit" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Střední" + } + ], + "label.member": [ + { + "type": 0, + "value": "Člen" + } + ], + "label.members": [ + { + "type": 0, + "value": "Členové" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobilní telefon" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Více" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Můj účet" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mé weby" + } + ], + "label.name": [ + { + "type": 0, + "value": "Jméno" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nové heslo" + } + ], + "label.none": [ + { + "type": 0, + "value": "Žádný" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "záznam" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "záznamů" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organické vyhledávání" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organický nákup" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organická sociální síť" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organické video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Jiné" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Přehled" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Vlastník" + } + ], + "label.page": [ + { + "type": 0, + "value": "Stránka" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Stránka " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " z " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Zobrazení stránek" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Název stránky" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Stránky" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Placené reklamy" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Placené vyhledávání" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Placený nákup" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Placená sociální síť" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Placené video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Heslo" + } + ], + "label.path": [ + { + "type": 0, + "value": "Cesta" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Cesty" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixely" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Běží na " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Vlastnosti" + } + ], + "label.property": [ + { + "type": 0, + "value": "Vlastnost" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Dotazy" + } + ], + "label.query": [ + { + "type": 0, + "value": "Dotaz" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametry dotazu" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Aktuálně" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Doporučení" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Odkazující" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Odkazující" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Obnovit" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerovat" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regiony" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Zbývá" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Odstranit" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Odstranit člena" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Hlášení" + } + ], + "label.required": [ + { + "type": 0, + "value": "Povinné" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Resetovat" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Resetovat statistiky" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Udržení" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Měřte přilnavost svého webu sledováním, jak často se uživatelé vracejí." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Příjem" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Podívejte se na své příjmy v průběhu času." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Spustit dotaz" + } + ], + "label.save": [ + { + "type": 0, + "value": "Uložit" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Obrazovky" + } + ], + "label.search": [ + { + "type": 0, + "value": "Hledat" + } + ], + "label.select": [ + { + "type": 0, + "value": "Vybrat" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Vybrat datum" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Vybrat filtr" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Vybrat roli" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Vybrat web" + } + ], + "label.session": [ + { + "type": 0, + "value": "Relace" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Data relace" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Relace" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Nastavení" + } + ], + "label.share": [ + { + "type": 0, + "value": "Sdílet" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL pro sdílení" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Jeden den" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Zdroje" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Počáteční krok" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Kroky" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Součet" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Štítek" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Štítky" + } + ], + "label.team": [ + { + "type": 0, + "value": "Tým" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID týmu" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Manažer týmu" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Člen týmu" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Název týmu" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Vlastník týmu" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Nastavení týmu" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Pouze pro zobrazení týmu" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Weby týmu" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Týmy" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termíny" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Téma" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Tento měsíc" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Tento týden" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Tento rok" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Časová zóna" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Dnes" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Sledovací kód" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Jedinečné návštěvy" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Neznámý" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Uživatelské jméno" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Zobrazit detaily" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Zobrazení" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Průměrný čas návštěvy" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Návštěvníci" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Návštěvy" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Weby" + } + ], + "label.window": [ + { + "type": 0, + "value": "Okno" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Včera" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " aktuálně " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "návštěvník" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "návštěvníci" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Opravdu smazat " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Všechna související data budou také smazána." + } + ], + "message.error": [ + { + "type": 0, + "value": "Něco se pokazilo." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Jít do nastavení" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nesprávné jméno/heslo." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Neplatná doména" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Žádná data." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Hesla se neschodují" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nemáte nastavený žádný web." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Stránka nenalezena." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Úspěšně uloženo." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Toto je sdílené URL pro " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Sledovací kód" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Návštěvník z " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " s prohlížečem " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/da-DK.json b/public/intl/messages/da-DK.json new file mode 100644 index 0000000..577d069 --- /dev/null +++ b/public/intl/messages/da-DK.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Adgangskode" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Handlinger" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Aktivitetslog" + } + ], + "label.add": [ + { + "type": 0, + "value": "Tilføj" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Tilføj tavle" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Tilføj beskrivelse" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Tilføj medlem" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Tilføj trin" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Tilføj hjemmeside" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Efter" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alle" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Altid" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analyser" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Anvend" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribuering" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Se, hvordan brugere interagerer med din markedsføring, og hvad der driver konverteringer." + } + ], + "label.average": [ + { + "type": 0, + "value": "Gennemsnit" + } + ], + "label.back": [ + { + "type": 0, + "value": "Tilbage" + } + ], + "label.before": [ + { + "type": 0, + "value": "Før" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Tavler" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Afvisningsprocent" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Opdeling" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsere" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampagner" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Afvis" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Skift adgangskode" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanaler" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Byer" + } + ], + "label.city": [ + { + "type": 0, + "value": "By" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Ryd alt" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Sammenlign" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Sammenlign datoer" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Bekræft" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Godkendt adgangskode" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Indhold" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Fortsæt" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konvertering" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konverteringsrate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konverteringstrin" + } + ], + "label.count": [ + { + "type": 0, + "value": "Antal" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Lande" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Opret" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Opret rapport" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Opret team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Opret bruger" + } + ], + "label.created": [ + { + "type": 0, + "value": "Oprettet" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Oprettet af" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Nuværende" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Nuværende adgangskode" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Tilpasset interval" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Betjeningspanel" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Dato" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datointerval" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dag" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Standard datointerval" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Slet" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Slet rapport" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Slet team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Slet bruger" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Slet hjemmeside" + } + ], + "label.description": [ + { + "type": 0, + "value": "Beskrivelse" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Skrivebord" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detaljer" + } + ], + "label.device": [ + { + "type": 0, + "value": "Enhed" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Enheder" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direkte" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Afvis" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Unikt ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Indeholder ikke" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Inkluderer ikke" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Findes ikke" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domæne" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Frafald" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Rediger" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Rediger betjeningspanel" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Rediger medlem" + } + ], + "label.email": [ + { + "type": 0, + "value": "E-mail" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Aktivér delings-URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Sluttrin" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Indgangs-URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Hændelse" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Hændelsesdata" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Hændelsesnavn" + } + ], + "label.events": [ + { + "type": 0, + "value": "Hændelser" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Findes" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Udgangs-URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falsk" + } + ], + "label.field": [ + { + "type": 0, + "value": "Felt" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Felter" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombineret" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Rå" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtre" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Første klik" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Først set" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Tragt" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Forstå brugernes konverterings- og frafaldsrate." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Tragte" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Følg dine mål for sidevisninger og hændelser." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Større end" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Større end eller lig med" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Gruperet" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Værtsnavn" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inkluderer" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Indsigt" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Indsigter" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dyk dybere ned i dine data ved at bruge segmenter og filtre." + } + ], + "label.is": [ + { + "type": 0, + "value": "Er" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Er falsk" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Er ikke" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Er ikke sat" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Er sat" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Er sandt" + } + ], + "label.join": [ + { + "type": 0, + "value": "Deltag" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Deltag i team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Rejse" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Forstå hvordan brugere navigerer på din hjemmeside." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Rejser" + } + ], + "label.language": [ + { + "type": 0, + "value": "Sprog" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Sprog" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Sidste klik" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Sidste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dage" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Sidste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " timer" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Sidste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " måneder" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Sidst set" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Forlad" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Forlad team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Mindre end" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Mindre end eller lig med" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Log ind" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Log ud" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Administrer" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Leder" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maks" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Udvid" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Medlem" + } + ], + "label.members": [ + { + "type": 0, + "value": "Medlemmer" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobil" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mere" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Min konto" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mine hjemmesider" + } + ], + "label.name": [ + { + "type": 0, + "value": "Navn" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Ny adgangskode" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ingen" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "post" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "poster" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organisk søgning" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organisk shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organisk social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organisk video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Andet" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Oversigt" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Ejer" + } + ], + "label.page": [ + { + "type": 0, + "value": "Side" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Side " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " af " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Sidevisninger" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Sidetitel" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Sider" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Betalte annoncer" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Betalt søgning" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Betalt shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Betalt social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Betalt video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Adgangskode" + } + ], + "label.path": [ + { + "type": 0, + "value": "Sti" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Stier" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Drevet af " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Egenskaber" + } + ], + "label.property": [ + { + "type": 0, + "value": "Egenskab" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Forespørgsler" + } + ], + "label.query": [ + { + "type": 0, + "value": "Forespørgsel" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Forespørgselsparametre" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realtid" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Henvisning" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Henviser" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Henvisninger" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Opdater" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Gendan" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regioner" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Tilbageværende" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Fjern" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Fjern medlem" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Rapporter" + } + ], + "label.required": [ + { + "type": 0, + "value": "Påkrævet" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Nulstil" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Nulstil statistik" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Fastholdelse" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mål hvor ofte brugere vender tilbage til din hjemmeside." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Indtægt" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Se din indtægt over tid." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rolle" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Kør forespørgsel" + } + ], + "label.save": [ + { + "type": 0, + "value": "Gem" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Skærme" + } + ], + "label.search": [ + { + "type": 0, + "value": "Søg" + } + ], + "label.select": [ + { + "type": 0, + "value": "Vælg" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Vælg dato" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Vælg filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Vælg rolle" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Vælg hjemmeside" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Sessionsdata" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessioner" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Indstillinger" + } + ], + "label.share": [ + { + "type": 0, + "value": "Del" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Del URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Enkelt dag" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Kilder" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Starttrin" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Trin" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Teamleder" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Teammedlem" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Teamnavn" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Teamejer" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Teamindstillinger" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Kun visning af team" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Teamets hjemmesider" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Vilkår" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Denne måned" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Denne uge" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Dette år" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Tidszone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Idag" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Ændre graf" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Sporingskode" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unikke besøgende" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Ukendt" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Brugernavn" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Vis detajler" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visninger" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Gennemsnitlig besøgstid" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Besøgende" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Hjemmesider" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " nuværende " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "bruger" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "brugere" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Er du sikker på at du vil slette " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Er du sikker på at du ville nulstille " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistikker?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Alle tilknyttede data slettes også." + } + ], + "message.error": [ + { + "type": 0, + "value": "Noget gik galt." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Gå til betjeningspanel" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Ugyldigt brugernavn/adgangskode." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ugyldigt domæne" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Ingen data tilgængelig." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Adgangskoderne matcher ikke" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Du har ikke konfigureret nogen hjemmesider." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Side ikke fundet." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Alle statistikker for denne hjemmeside ville blive slettet, men sporingskode ville forblive intakt." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Gemt!" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Dette er den offentlige delings-URL til " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Sporingskode" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Besøgende fra " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " bruger " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " på " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/de-CH.json b/public/intl/messages/de-CH.json new file mode 100644 index 0000000..58d318c --- /dev/null +++ b/public/intl/messages/de-CH.json @@ -0,0 +1,2214 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Zuegangscode" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Aktione" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Aktivitätsverlauf" + } + ], + "label.add": [ + { + "type": 0, + "value": "hinzuefüege" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Board hinzuefüege" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Beschriibig hinzuefüege" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Mitglied hinzuefüege" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Schritt hinzuefüege" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Websiite hinzuefüege" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partnerprogramm" + } + ], + "label.after": [ + { + "type": 0, + "value": "Nach" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alli" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Gsamte Zitruum" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytik" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aawände" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Zuordnig" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Lueg wie d'Benutzer mit dim Marketing interagiere und was zu Umwandlige führt." + } + ], + "label.average": [ + { + "type": 0, + "value": "Durchschnitt" + } + ], + "label.back": [ + { + "type": 0, + "value": "Zrugg" + } + ], + "label.before": [ + { + "type": 0, + "value": "Vor" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Absprungsrate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Uufschlüsselig" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampagne" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Abbreche" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Passwort ändere" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanäle" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Städt" + } + ], + "label.city": [ + { + "type": 0, + "value": "Stadt" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Alles lösche" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Gruppe" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Vergliiche" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Datum vergleiche" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Bestätige" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Passwort widerhole" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Enthaltet" + } + ], + "label.content": [ + { + "type": 0, + "value": "Inhalt" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Wiiter" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Umwandlig" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Umwandligsrate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Umwandligsschritt" + } + ], + "label.count": [ + { + "type": 0, + "value": "Azahl" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Länder" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Erstelle" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Bricht erstelle" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Team erstelle" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Benutzer erstelle" + } + ], + "label.created": [ + { + "type": 0, + "value": "Erstellt" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Erstellt vo" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Währung" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuell" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Aktuells Passwort" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Benutzerdefinierte Bereich" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Übersicht" + } + ], + "label.data": [ + { + "type": 0, + "value": "Datä" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datumsbereich" + } + ], + "label.day": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Voriigstellte Datumsbereich" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Lösche" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Bricht lösche" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Team lösche" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Benutzer lösche" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Websiite lösche" + } + ], + "label.description": [ + { + "type": 0, + "value": "Beschriibig" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Grät" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Grät" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direkt" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Verwärfe" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Eindeutigi ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Enthaltet nid" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Isch nid debii" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Existiert nid" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Absprung" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Bearbeite" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Dashboard bearbeite" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Mitglied bearbeite" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Freigab-URL aktiviere" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Schlussschritt" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Iigangs URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Ereigniss" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Ereigniss Date" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Ereignissname" + } + ], + "label.events": [ + { + "type": 0, + "value": "Ereigniss" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existiert" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Uusgangs URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falsch" + } + ], + "label.field": [ + { + "type": 0, + "value": "Fäld" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fälder" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombiniert" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Rohdate" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Erste Klick" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Erstmal gse" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Tunnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Verstönd Sie d Konversions- und Abspruungsrate vo Nutzer." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Ziel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ziele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "verfolged Sie Ihri Ziel für Siitenufrüef und Ereigniss." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Grösser als" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Grösser oder gliich" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Gruppiert" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostnam" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Isch debii" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Iiblick" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Iiblick" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Vertüfed Sie sich i Ihri Date, mit Hilf vo Segment und Filter." + } + ], + "label.is": [ + { + "type": 0, + "value": "Isch" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Isch falsch" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Isch nid" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Isch ned gsetzt" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Isch gsetzt" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Isch wahr" + } + ], + "label.join": [ + { + "type": 0, + "value": "Biträte" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Team biträte" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Reis" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Verstönd Sie, wie Nutzer dur Ihri Website navigiered." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Reise" + } + ], + "label.language": [ + { + "type": 0, + "value": "Sprach" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Sprache" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Letzte Klick" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Letzti " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Täg" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Letzti " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Stunde" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Letzti " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Mönet" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Zletzt gse" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Verlah" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Team verlah" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Kliiner als" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Kliiner oder gliich" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Aamälde" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Abmälde" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Verwalte" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Uusklappe" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Mitglied" + } + ], + "label.members": [ + { + "type": 0, + "value": "Mitglieder" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Händy" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Meh" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Min Account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mini Websiite" + } + ], + "label.name": [ + { + "type": 0, + "value": "Name" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Neus Passwort" + } + ], + "label.none": [ + { + "type": 0, + "value": "Keis" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organischi Suechi" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organischi Iikauf" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organischi Social Media" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organischi Video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Anderi" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Übersicht" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Bsitzer" + } + ], + "label.page": [ + { + "type": 0, + "value": "Siite" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Siite " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " vo " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Siitenufrüef" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Siitetitel" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Siite" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Bezahlti Werbung" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Bezahlti Suechi" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Bezahlti Iikauf" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Bezahlti Social Media" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Bezahlti Video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Passwort" + } + ], + "label.path": [ + { + "type": 0, + "value": "Pfad" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Pfade" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixel" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Betriibe dur " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Vorherig" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Vorherigi Periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Vorherigs Jahr" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Eigeschafte" + } + ], + "label.property": [ + { + "type": 0, + "value": "Eigeschafte" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Abfrage" + } + ], + "label.query": [ + { + "type": 0, + "value": "Abfrag" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Abfragparameter" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Echtzit" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Empfehlig" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Verwiiser" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Verwiisendi" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Aktualisiere" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Erneuere" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regionä" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Verblibe" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Entferne" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Mitglied entferne" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Brichte" + } + ], + "label.required": [ + { + "type": 0, + "value": "Erforderlich" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Zruggsetze" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Statistik zruggsetze" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mässed Sie d Verwiilduur vo Ihrere Website, indem Sie verfolged wie oft ihri Nutzer zruggkehred." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Umsatz" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Lueged Sie sich Ihre Umsatz im Lauf vor Ziit a." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rollä" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Abfrag starte" + } + ], + "label.save": [ + { + "type": 0, + "value": "Speichere" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Bildschirmuflösige" + } + ], + "label.search": [ + { + "type": 0, + "value": "Sueche" + } + ], + "label.select": [ + { + "type": 0, + "value": "Auswähle" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Datä uuswähle" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Filter uuswähle" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rollä uuswähle" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Websiite uuswähle" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sitzig" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Sitzigsdate" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sitzige" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Istellige" + } + ], + "label.share": [ + { + "type": 0, + "value": "Teile" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Freigab-URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Ein Tag" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Quälle" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Startschritt" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Schritt" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Summe" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Stichwort" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team Manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team Mitglied" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team Name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team Bsitzer" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team Istellige" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Nur für Teammitglieder sichtbar" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team Websiite" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Bedingige" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Thema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Dä Monet" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Diä Wuuche" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Das Johr" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Ziitzone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Titel" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hüt" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Charts umschalte" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Gsamti Datesätz" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Tracking Code" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transaktione" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferiere" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Websiite transferiere" + } + ], + "label.true": [ + { + "type": 0, + "value": "Wahr" + } + ], + "label.type": [ + { + "type": 0, + "value": "Typ" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Einzigartigi" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Einzigartigi Bsuecher" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Einzigartigi Kunde" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Unbekannt" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Unbennant" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Benutzer" + } + ], + "label.username": [ + { + "type": 0, + "value": "Benutzername" + } + ], + "label.users": [ + { + "type": 0, + "value": "Benutzer" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Tracked Sie Ihri Kampagnen mit UTM Parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Wärt" + } + ], + "label.view": [ + { + "type": 0, + "value": "Azeige" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Details azeige" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Nume aluege" + } + ], + "label.views": [ + { + "type": 0, + "value": "Ufrüef" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Ufrüef pro Bsuech" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Durchschn. Bsuechsziit" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Bsuecher" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Bsüech" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Websiite ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websiite" + } + ], + "label.window": [ + { + "type": 0, + "value": "Fenster" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Gester" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Typed Sie " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " is Feld underhalb um z bestätige." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "aktive Bsuecher" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "aktivi Bsuecher" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Gsammleti Date" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Sind Sie sich sicher, " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zlösche?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Sind Sie sich sicher, " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zverlah?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Sind Sie sich sicher, dass Sie " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " wänd entferne?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Sind Sie sicher, dass Sie d Statistike vo " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zruggsetze wänd?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Es Team lösche dued ebefalls alli team Websiite lösche." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Alli dezueghörige Date werded ebefalls glöscht." + } + ], + "message.error": [ + { + "type": 0, + "value": "Es isch en Fehler ufträte." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " uf " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Zu de Istellige" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Falsches Passwort oder Benutzername." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ungültigi Domain" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Miminamli längi vo " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " Zeiche" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Es isch en neue Version vo Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " verfügbar!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Kei Date vorhande." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Es sind kei Event Date verfügbar." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwörter stimmed ned überi" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Kei Ergäbnis gfunde." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Dem Team sind kei Websiite zuegordnet." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Bisher sind no kei Teams erstellt worde." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Da gits kei Benutzer" + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Es isch kei Websiite vorhande." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Siite ned gfunde." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Um die Websiite zruggzsetze, typed Sie " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " is Feld unde dran." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Alli Date für die Websiite werdet glöscht, nur de Tracking Code blibt bestah." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Erfolgrich gspeichert." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Ihri Websiitestatistik isch under de folgende URL öffentlich zuegänglich:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Sie sind bereits es Mitglied vo däm Team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team nöd gfunde." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websiite chöi vo jedem im Team agluegt werde" + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Tracking Code" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Websiite uf zu Ihrem Account transferiere?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Wähled Sie s Team zum däm Websiite transferiert werde söll." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Übertraged Sie d Websiite Eigetümerrecht uf Ihre Account oder uf es anders Team" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Usglösts Ereigniss" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Bnutzer glöscht." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Siite agluegt" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Bsuecher us " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " nutzt " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " uf " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/de-DE.json b/public/intl/messages/de-DE.json new file mode 100644 index 0000000..c78dcf5 --- /dev/null +++ b/public/intl/messages/de-DE.json @@ -0,0 +1,2210 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Zugangscode" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Aktionen" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Aktivitätsverlauf" + } + ], + "label.add": [ + { + "type": 0, + "value": "Hinzufügen" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Board hinzufügen" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Beschreibung hinzufügen" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Mitglied hinzufügen" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Schritt hinzufügen" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Website hinzufügen" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partnerprogramm" + } + ], + "label.after": [ + { + "type": 0, + "value": "Nach" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alle" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Gesamter Zeitraum" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analysen" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Anwenden" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Zuordnung" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Sehen Sie, wie Nutzer mit Ihrem Marketing interagieren und was zu Konversionen führt." + } + ], + "label.average": [ + { + "type": 0, + "value": "Durchschnitt" + } + ], + "label.back": [ + { + "type": 0, + "value": "Zurück" + } + ], + "label.before": [ + { + "type": 0, + "value": "Vor" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Absprungrate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Aufschlüsselung" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampagnen" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Abbrechen" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Passwort ändern" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanäle" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Städte" + } + ], + "label.city": [ + { + "type": 0, + "value": "Stadt" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Alles löschen" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Gruppe" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Vergleichen" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Daten vergleichen" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Bestätigen" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Passwort wiederholen" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Enthält" + } + ], + "label.content": [ + { + "type": 0, + "value": "Inhalt" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Weiter" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konversionsrate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konversionsschritt" + } + ], + "label.count": [ + { + "type": 0, + "value": "Anzahl" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Länder" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Erstellen" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Bericht erstellen" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Team erstellen" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Benutzer erstellen" + } + ], + "label.created": [ + { + "type": 0, + "value": "Erstellt" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Erstellt von" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Währung" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuell" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Derzeitiges Passwort" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Benutzerdefinierter Bereich" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Übersicht" + } + ], + "label.data": [ + { + "type": 0, + "value": "Daten" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datumsbereich" + } + ], + "label.day": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Voreingestellter Datumsbereich" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Löschen" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Bericht löschen" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Team löschen" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Benutzer löschen" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Website löschen" + } + ], + "label.description": [ + { + "type": 0, + "value": "Beschreibung" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Gerät" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Geräte" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direkt" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Verwerfen" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Eindeutige ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Enthält nicht" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Nicht enthalten" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Existiert nicht" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Absprung" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Bearbeiten" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Dashboard bearbeiten" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Mitglied bearbeiten" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Freigabe-URL aktivieren" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Schlussschritt" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Eingangs-URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Ereignis" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Ereignisdaten" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Ereignisname" + } + ], + "label.events": [ + { + "type": 0, + "value": "Ereignisse" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existiert" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Ausgangs-URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falsch" + } + ], + "label.field": [ + { + "type": 0, + "value": "Feld" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Felder" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombiniert" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Rohdaten" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Erster Klick" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Erstmalig gesehen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Trichter" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Verstehen Sie die Konversions- und Absprungrate Ihrer Nutzer." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Ziel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ziele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Verfolgen Sie Ihre Ziele für Seitenaufrufe und Ereignisse." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Größer als" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Größer oder gleich" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Gruppiert" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Enthält" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Einblick" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Einblicke" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Vertiefen Sie sich mit Hilfe von Segmenten und Filtern in Ihre Daten." + } + ], + "label.is": [ + { + "type": 0, + "value": "Ist" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Ist falsch" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Ist nicht" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Ist nicht gesetzt" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Ist gesetzt" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Ist wahr" + } + ], + "label.join": [ + { + "type": 0, + "value": "Beitreten" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Team beitreten" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Reise" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Verstehen Sie, wie Nutzer auf Ihrer Website navigieren." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Reisen" + } + ], + "label.language": [ + { + "type": 0, + "value": "Sprache" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Sprachen" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Letzter Klick" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Letzten " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Tage" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Letzten " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Stunden" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Letzten " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Monate" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Zuletzt gesehen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Verlassen" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Team verlassen" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Kleiner als" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Kleiner oder gleich" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Anmelden" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Abmelden" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Verwalten" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Verwaltung" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Erweitern" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Mitglied" + } + ], + "label.members": [ + { + "type": 0, + "value": "Mitglieder" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Handy" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mehr" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mein Account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Meine Websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Name" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Neues Passwort" + } + ], + "label.none": [ + { + "type": 0, + "value": "Keine" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organische Suche" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organisches Shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organisches Social Media" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organisches Video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Andere" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Übersicht" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Besitzer" + } + ], + "label.page": [ + { + "type": 0, + "value": "Seite" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Seite " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " von " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Seitenaufrufe" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Seitentitel" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Seiten" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Bezahlte Anzeigen" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Bezahlte Suche" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Bezahltes Shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Bezahltes Social Media" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Bezahltes Video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Passwort" + } + ], + "label.path": [ + { + "type": 0, + "value": "Pfad" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Pfade" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixel" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Betrieben durch " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Vorherig" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Vorherige Periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Vorheriges Jahr" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Eigenschaften" + } + ], + "label.property": [ + { + "type": 0, + "value": "Eigenschaft" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Abfragen" + } + ], + "label.query": [ + { + "type": 0, + "value": "Abfrage" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Abfrageparameter" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Echtzeit" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Empfehlung" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Übermittler" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Übermittler" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Aktualisieren" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Erneuern" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regionen" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Verbleibend" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Entfernen" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Mitglied entfernen" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Berichte" + } + ], + "label.required": [ + { + "type": 0, + "value": "Erforderlich" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Zurücksetzen" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Statistik zurücksetzen" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Erhalt" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Messen Sie die Verweildauer auf Ihrer Website, indem Sie verfolgen, wie oft die Nutzer zurückkehren." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Umsatz" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Haben Sie einen Blick auf Ihre Umsätze im Laufe der Zeit." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rolle" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Abfrage starten" + } + ], + "label.save": [ + { + "type": 0, + "value": "Speichern" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Bildschirmauflösungen" + } + ], + "label.search": [ + { + "type": 0, + "value": "Suche" + } + ], + "label.select": [ + { + "type": 0, + "value": "Auswählen" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Datum auswählen" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Filter auswählen" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rolle auswählen" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Website auswählen" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sitzung" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Sitzungsdaten" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sitzungen" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Einstellungen" + } + ], + "label.share": [ + { + "type": 0, + "value": "Teilen" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Freigabe-URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Ein Tag" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Quellen" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Startschritt" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Schritte" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Summe" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Stichworte" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team-ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team-Manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team-Mitglied" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Name des Teams" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team-Eigentümer" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team-Einstellungen" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Nur für Team-Mitglieder sichtbar" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team-Websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Bedingungen" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Thema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Diesen Monat" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Diese Woche" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Dieses Jahr" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zeitzone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Titel" + } + ], + "label.today": [ + { + "type": 0, + "value": "Heute" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Schaubilder umschalten" + } + ], + "label.total": [ + { + "type": 0, + "value": "Gesamt" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Datensätze insgesamt" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Tracking Code" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transaktionen" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Übertragung" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Website übertragen" + } + ], + "label.true": [ + { + "type": 0, + "value": "Wahr" + } + ], + "label.type": [ + { + "type": 0, + "value": "Typ" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Einzigartig" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Einzigartige Besucher" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Einzigartige Kunden" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Unbekannt" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Unbenannt" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Benutzer" + } + ], + "label.username": [ + { + "type": 0, + "value": "Benutzername" + } + ], + "label.users": [ + { + "type": 0, + "value": "Benutzer" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Tracken Sie Ihre Kampagnen mit UTM Parametern." + } + ], + "label.value": [ + { + "type": 0, + "value": "Wert" + } + ], + "label.view": [ + { + "type": 0, + "value": "Anzeigen" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Details anzeigen" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Nur ansehen" + } + ], + "label.views": [ + { + "type": 0, + "value": "Aufrufe" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Aufrufe pro Besuch" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Durchschn. Besuchszeit" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Besucher" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Besuche" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website-ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Fenster" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Gestern" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Schreibe " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in die Box zur bestätigung." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "aktiver Besucher" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "aktive Besucher" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Gesammelte Daten" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Sind Sie sich sicher, " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zu löschen?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Sind Sie sicher, dass die " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " verlassen möchten?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Sind Sie sicher, " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zu entfernen?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Sind Sie sicher, dass Sie die Statistiken von " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zurücksetzen wollen?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Ein Team zu löschen, wird auch alle Team-Websites löschen." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Alle zugehörigen Daten werden ebenfalls gelöscht." + } + ], + "message.error": [ + { + "type": 0, + "value": "Es ist ein Fehler aufgetreten." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " auf " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Zu den Einstellungen" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Falsches Passwort oder Benutzername." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ungültige Domain" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimale Länge von " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " Zeichen" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Eine neue Version von Umami ist verfügbar: " + }, + { + "type": 1, + "value": "version" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Keine Daten vorhanden." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Es sind keine Ereignisdaten verfügbar." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwörter stimmen nicht überein" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Keine Ergebnisse gefunden." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Diesem Team sind keine Websites zugeordnet." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Bisher wurden keine Teams erstellt." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Hier gibt es keine Benutzer." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Es ist keine Website vorhanden." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Seite nicht gefunden." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Um diese Website zurückzusetzen, geben Sie zur Bestätigung " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in das Feld unten ein." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Alle Daten für diese Website werden gelöscht, jedoch bleibt der Tracking Code bestehen." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Erfolgreich gespeichert." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Die Statistiken Ihrer Website sind unter folgender URL öffentlich zugänglich:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Sie sind bereits Mitglied des Teams." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team nicht gefunden." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites können von jedem im Team eingesehen werden." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Tracking Code" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Diese Website zu Ihrem Account transferieren?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Wählen Sie ein Team aus, zu dem die Website transferiert werden soll." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Übertragen Sie die Eigentümerrechte zu Ihrem Account oder einem anderen Team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Ereignis ausgelöst" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Benutzer gelöscht." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Seite besucht" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Besucher aus " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " benutzt " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " auf " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/el-GR.json b/public/intl/messages/el-GR.json new file mode 100644 index 0000000..f43e2fd --- /dev/null +++ b/public/intl/messages/el-GR.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Ενέργειες" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Προσθήκη ιστότοπου" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Διαχειριστής" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "All" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "All time" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "Πίσω" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Ποσοστό αναπήδησης" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Προγράμματα περιήγησης" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Ακύρωση" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Αλλαγή κωδικού" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Επιβεβαίωση κωδικού" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Χώρες" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Τωρινός κωδικός πρόσβασης" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Προσαρμοσμένο εύρος" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Πίνακας" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Εύρος ημερομηνιών" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Προεπιλεγμένο εύρος ημερομηνιών" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Διαγραφή" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Διαγραφή ιστότοπου" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Σταθερός υπολογιστής" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Συσκευές" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Dismiss" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Τομέας" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Επεξεργασία" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Ενεργοποίηση κοινής χρήσης URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "Γεγονότα" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Σε συνδυασμό" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Ακατέργαστο" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Λάπτοπ" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Τελευταίες " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ημέρες" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Τελευταίες " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ώρες" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Είσοδος" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Αποσύνδεση" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Κινητό" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Περισσότερα" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Όνομα" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Νέος κωδικός" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Προβολές σελίδας" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Σελίδες" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Κωδικός" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Με την υποστήριξη του " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Προφίλ" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realtime" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Παραπομπές" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Ανανέωση" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Απαιτείται" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Επαναφορά" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Αποθήκευση" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Ρυθμίσεις" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Κοινοποίηση διεύθυνσης URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Ημερήσια" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Τάμπλετ" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Αυτο το μήνα" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Αυτή την εβδομάδα" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Αυτή την χρονιά" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Ζώνη ώρας" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Σήμερα" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Κωδικός παρακολούθησης" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Μοναδικοί επισκέπτες" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Άγνωστο" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Όνομα χρήστη" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Λεπτομέρειες" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Προβολές" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Μέσος χρόνος επίσκεψης" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Επισκέπτες" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Ιστότοποι" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ενεργοί " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "επισκέπτης" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "επισκέπτες" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": ";" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Όλα τα σχετικά δεδομένα θα διαγραφούν επίσης." + } + ], + "message.error": [ + { + "type": 0, + "value": "Κάτι πήγε στραβά." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Μεταβείτε στις ρυθμίσεις" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Εσφαλμένο όνομα χρήστη / κωδικός πρόσβασης." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Μη έγκυρος τομέας" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Δεν υπάρχουν διαθέσιμα δεδομένα." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Οι κωδικοί πρόσβασης δεν ταιριάζουν" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Δεν έχετε ρυθμίσει κανένα ιστότοπο." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Η σελίδα δεν βρέθηκε." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Αποθηκεύτηκε επιτυχώς." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Αυτό είναι το κοινόχρηστο URL για το " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Κωδικός παρακολούθησης" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitor from " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " using " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/en-GB.json b/public/intl/messages/en-GB.json new file mode 100644 index 0000000..406a1ee --- /dev/null +++ b/public/intl/messages/en-GB.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Actions" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Add website" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "All" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "All time" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "Back" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce rate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsers" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancel" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Change password" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirm password" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Countries" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Current password" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Custom range" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dashboard" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Date range" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Default date range" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Delete" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Delete website" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Devices" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Dismiss" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Edit" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Enable share URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "Events" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combined" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Raw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " days" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hours" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Login" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "More" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Name" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "New password" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Page views" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pages" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Password" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profile" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realtime" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Refresh" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Required" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reset" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Save" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Settings" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Share URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Single day" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "This month" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "This week" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "This year" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Timezone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Today" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Tracking code" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unique visitors" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Unknown" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Username" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "View details" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Views" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitors" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " current " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitor" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitors" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Are you sure you want to delete " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are you sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "All associated data will be deleted as well." + } + ], + "message.error": [ + { + "type": 0, + "value": "Something went wrong." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Go to settings" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Incorrect username/password." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Invalid domain" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "No data available." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwords don't match" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "You don't have any websites configured." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Page not found." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Saved successfully." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "This is the publicly shared URL for " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Tracking code" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitor from " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " using " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/en-US.json b/public/intl/messages/en-US.json new file mode 100644 index 0000000..cdb78cd --- /dev/null +++ b/public/intl/messages/en-US.json @@ -0,0 +1,2228 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Actions" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Add website" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Admin" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "All" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "All time" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "Back" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce rate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsers" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancel" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Change password" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirm password" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Countries" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Current password" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Custom range" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dashboard" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Date range" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Default date range" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Delete" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Delete website" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Devices" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Dismiss" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Edit" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Enable share URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry page" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "Events" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit page" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combined" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Raw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " days" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hours" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Login" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Maximize" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "More" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Name" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "New password" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Page views" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pages" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Password" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profile" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realtime" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Refresh" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Required" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reset" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset website" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue data and how users are spending." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Save" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Settings" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Share URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Single day" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "This month" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "This week" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "This year" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Timezone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Today" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Tracking code" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unique visitors" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Unknown" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Username" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "View details" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Views" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitors" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " current " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitor" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitors" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Are you sure you want to delete " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are you sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "All website data will be deleted." + } + ], + "message.error": [ + { + "type": 0, + "value": "Something went wrong." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Go to settings" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Incorrect username and/or password." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Invalid domain. Do not include http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "No data available." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwords do not match." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "You do not have any websites configured." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Page not found" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your settings will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Saved." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Your website stats are publicly available at the following URL:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "To track stats for this website, place the following code in the " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " section of your HTML." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitor from " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " using " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/es-ES.json b/public/intl/messages/es-ES.json new file mode 100644 index 0000000..cde98b2 --- /dev/null +++ b/public/intl/messages/es-ES.json @@ -0,0 +1,2228 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Código de acceso" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Acciones" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Registro de actividad" + } + ], + "label.add": [ + { + "type": 0, + "value": "Añadir" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Añadir tablero" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Añadir descripción" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Añadir miembro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Añadir paso" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Nuevo sitio web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrador" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliado" + } + ], + "label.after": [ + { + "type": 0, + "value": "Después" + } + ], + "label.all": [ + { + "type": 0, + "value": "Todos" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Todos los tiempos" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analíticas" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aplicar" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribución" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Vea cómo los usuarios interactúan con su marketing y qué impulsa las conversiones." + } + ], + "label.average": [ + { + "type": 0, + "value": "Media" + } + ], + "label.back": [ + { + "type": 0, + "value": "Atrás" + } + ], + "label.before": [ + { + "type": 0, + "value": "Antes" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Tableros" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Porcentaje de rebote" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Desglose" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Navegador" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navegadores" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campañas" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancelar" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Cambiar contraseña" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canales" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Ciudades" + } + ], + "label.city": [ + { + "type": 0, + "value": "Ciudad" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Limpiar todo" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Comparar fechas" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmar" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmar contraseña" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contiene" + } + ], + "label.content": [ + { + "type": 0, + "value": "Contenido" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuar" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversión" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Tasa de conversión" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Paso de conversión" + } + ], + "label.count": [ + { + "type": 0, + "value": "Contar" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Países" + } + ], + "label.country": [ + { + "type": 0, + "value": "País" + } + ], + "label.create": [ + { + "type": 0, + "value": "Crear" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Crear informe" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Crear equipo" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Crear usuario" + } + ], + "label.created": [ + { + "type": 0, + "value": "Creado" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creado por" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Moneda" + } + ], + "label.current": [ + { + "type": 0, + "value": "Actual" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Contraseña actual" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Intervalo personalizado" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Panel de control" + } + ], + "label.data": [ + { + "type": 0, + "value": "Datos" + } + ], + "label.date": [ + { + "type": 0, + "value": "Fecha" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Intervalo de fechas" + } + ], + "label.day": [ + { + "type": 0, + "value": "Día" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Intervalo por defecto" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Eliminar" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Eliminar reporte" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Eliminar equipo" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Eliminar usuario" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Eliminar sitio" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descripción" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Escritorio" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalles" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispositivo" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositivos" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Directo" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Cerrar" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distinto" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "No contiene" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "No incluye" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "No existe" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Dominio" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Abandono" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Editar" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Editar panel" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Editar miembro" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Habilitar compartir URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Paso final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL de entrada" + } + ], + "label.event": [ + { + "type": 0, + "value": "Evento" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Datos de evento" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nombre del evento" + } + ], + "label.events": [ + { + "type": 0, + "value": "Eventos" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existe" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL de salida" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falso" + } + ], + "label.field": [ + { + "type": 0, + "value": "Campo" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Campos" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtro" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinado" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "En crudo" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtros" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primer clic" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Primera vez visto" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Embudo" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Comprender conversión y abandono de usuarios." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Embudos" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Objetivo" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Objetivos" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Realice un seguimiento de sus objetivos de páginas vistas y eventos." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Mayor que" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Mayor que o igual a" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Agrupado" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nombre de host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Incluye" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Perspectiva" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Perspectivas" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Profundice en sus datos mediante el uso de segmentos y filtros." + } + ], + "label.is": [ + { + "type": 0, + "value": "Es igual a" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Es falso" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "No es igual a" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "No está establecido" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Está establecido" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Es verdadero" + } + ], + "label.join": [ + { + "type": 0, + "value": "Unir" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Unirse al equipo" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Viaje" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Comprenda cómo los usuarios navegan por su sitio web." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Viajes" + } + ], + "label.language": [ + { + "type": 0, + "value": "Idioma" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Idiomas" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portátil" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Último clic" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " días" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Últimas " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " horas" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " meses" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Visto por última vez" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Abandonar" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Abandonar equipo" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Menor que" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Menor que o igual a" + } + ], + "label.links": [ + { + "type": 0, + "value": "Enlaces" + } + ], + "label.login": [ + { + "type": 0, + "value": "Iniciar sesión" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Cerrar sesión" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Administrar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Gerente" + } + ], + "label.max": [ + { + "type": 0, + "value": "Máximo" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expandir" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medio" + } + ], + "label.member": [ + { + "type": 0, + "value": "Miembro" + } + ], + "label.members": [ + { + "type": 0, + "value": "Miembros" + } + ], + "label.min": [ + { + "type": 0, + "value": "Mínimo" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Móvil" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modelo" + } + ], + "label.more": [ + { + "type": 0, + "value": "Más" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mi cuenta" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mis sitios web" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nombre" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nueva contraseña" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ninguno" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "registro" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "registros" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Búsqueda orgánica" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Compras orgánicas" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social orgánico" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Video orgánico" + } + ], + "label.os": [ + { + "type": 0, + "value": "Sistema" + } + ], + "label.other": [ + { + "type": 0, + "value": "Otro" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Resumen" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Propietario" + } + ], + "label.page": [ + { + "type": 0, + "value": "Página" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Página " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " de " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Vistas" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Título de página" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Páginas" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Anuncios pagados" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Búsqueda pagada" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Compras pagadas" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social pagado" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Video pagado" + } + ], + "label.password": [ + { + "type": 0, + "value": "Contraseña" + } + ], + "label.path": [ + { + "type": 0, + "value": "Ruta" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Rutas" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Píxeles" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Analíticas de " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Periodo anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Año anterior" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Perfil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Propiedades" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propiedad" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Consultas" + } + ], + "label.query": [ + { + "type": 0, + "value": "Consulta" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parámetros de consulta" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Tiempo real" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referencia" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referido" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referido desde" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Actualizar" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerar" + } + ], + "label.region": [ + { + "type": 0, + "value": "Región" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regiones" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Restante" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Quitar" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Eliminar miembro" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Informes" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obligatorio" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reiniciar" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reiniciar analíticas" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retención" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Medir la frecuencia con la que los usuarios vuelven a tu sitio web." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Ganancias" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Analice sus ganancias a lo largo del tiempo." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Propiedad de ganancias" + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Ejecutar consulta" + } + ], + "label.save": [ + { + "type": 0, + "value": "Guardar" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Pantallas" + } + ], + "label.search": [ + { + "type": 0, + "value": "Buscar" + } + ], + "label.select": [ + { + "type": 0, + "value": "Seleccionar" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Seleccionar fecha" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Seleccionar filtro" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Seleccionar rol" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Seleccionar sitio web" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesión" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesiones" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Ajustes" + } + ], + "label.share": [ + { + "type": 0, + "value": "Compartir" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Compartir URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Un solo día" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Fuentes" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Paso inicial" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pasos" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tableta" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etiqueta" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etiquetas" + } + ], + "label.team": [ + { + "type": 0, + "value": "Equipo" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID del equipo" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Jefe de equipo" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Miembro del equipo" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nombre del equipo" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Admin. del equipo" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Configuración del equipo" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Vista solo del equipo" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Sitios web del equipo" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Equipos" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Términos" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Este mes" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Esta semana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Este año" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zona horaria" + } + ], + "label.title": [ + { + "type": 0, + "value": "Título" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hoy" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Alternar gráficas" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total de registros" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Código de rastreo" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transacciones" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir sitio web" + } + ], + "label.true": [ + { + "type": 0, + "value": "Verdadero" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tipo" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Único" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitantes únicos" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clientes únicos" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Desconocida" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Sin título" + } + ], + "label.update": [ + { + "type": 0, + "value": "Actualizar" + } + ], + "label.user": [ + { + "type": 0, + "value": "Usuario" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "Propiedad de usuario" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nombre de usuario" + } + ], + "label.users": [ + { + "type": 0, + "value": "Usuarios" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Realice un seguimiento de sus campañas a través de parámetros UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Valor" + } + ], + "label.view": [ + { + "type": 0, + "value": "Visualizar" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Ver detalles" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Ver sólo" + } + ], + "label.views": [ + { + "type": 0, + "value": "Vistas" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vistas por visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tiempo promedio de visita" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitantes" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visitas" + } + ], + "label.website": [ + { + "type": 0, + "value": "Sitio web" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID del sitio web" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Sitios web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Ventana" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Ayer" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Escriba " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " en el cuadro a continuación para confirmar." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "activo" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "activos" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Datos obtenidos" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "¿Seguro que quieres eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "¿Seguro que quieres abandonar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "¿Estás seguro de que desea eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "¿Seguro que quieres BORRAR las analíticas de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Al eliminar un equipo, también se eliminarán todos los sitios web del equipo." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Toda la información relacionada será eliminada." + } + ], + "message.error": [ + { + "type": 0, + "value": "Algo falló." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " en " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ir a la configuración" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nombre de usuario o contraseña incorrectos." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Dominio inválido" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Longitud mínima de " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caracteres" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Una nueva versión de Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " está disponible" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "No hay información disponible." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No hay datos de eventos disponibles." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Las contraseñas no coinciden" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No se encontraron resultados." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Este equipo no tiene ningún sitio web configurado." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "No has creado ningún equipo." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "No hay usuarios." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "No tienes ningún sitio web configurado." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Página no encontrada" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Para reiniciar este sitio web, escribe " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " a continuación para confirmar." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Todas las estadísticas de esta página serán eliminadas, pero el código de rastreo permanecerá intacto." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Guardado" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Esta es la URL pública para " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Ya eres miembro de este equipo." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Equipo no encontrado." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Las analíticas de tus sitios web pueden ser vistas por cualquier miembro del equipo." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Código de rastreo" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "¿Transferir este sitio web a su cuenta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Seleccione el equipo al que transferir este sitio web." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Seleccione el equipo al que transferir este sitio web." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Evento lanzado" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Usuario eliminado." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Página vista" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitante desde " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " usando " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " en " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/es-MX.json b/public/intl/messages/es-MX.json new file mode 100644 index 0000000..9dc4b4c --- /dev/null +++ b/public/intl/messages/es-MX.json @@ -0,0 +1,1460 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Código de acceso" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Acciones" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Registro de actividad" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Nuevo sitio web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrador" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "Todos" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Todos los tiempos" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analíticas" + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tiempo promedio de visita" + } + ], + "label.back": [ + { + "type": 0, + "value": "Atrás" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Porcentaje de rebote" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navegadores" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancelar" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Cambiar contraseña" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Ciudades" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Limpiar todo" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmar" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmar contraseña" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuar" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Países" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Crear equipo" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Crear usuario" + } + ], + "label.created": [ + { + "type": 0, + "value": "Creado" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Contraseña actual" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Intervalo personalizado" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Panel de control" + } + ], + "label.data": [ + { + "type": 0, + "value": "Datos" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Intervalo de fechas" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Intervalo por defecto" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Eliminar" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Eliminar team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Eliminar usuario" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Eliminar sitio" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Escritorio" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalles" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositivos" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Ignorar" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Dominio" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Editar" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Editar panel" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Habilitar compartir URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Evento" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.events": [ + { + "type": 0, + "value": "Eventos" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinado" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Personalizado" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.join": [ + { + "type": 0, + "value": "Unir" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Unir a equipo" + } + ], + "label.language": [ + { + "type": 0, + "value": "Idioma" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Idiomas" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portátil" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " días" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Últimas " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " horas" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Abandonar" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Abandonar equipo" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.login": [ + { + "type": 0, + "value": "Iniciar sesión" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Cerrar sesión" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.members": [ + { + "type": 0, + "value": "Miembros" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Móvil" + } + ], + "label.more": [ + { + "type": 0, + "value": "Más" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nombre" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nueva contraseña" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ninguno" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Propietario" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Vistas" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Páginas" + } + ], + "label.password": [ + { + "type": 0, + "value": "Contraseña" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Analíticas de " + }, + { + "type": 1, + "value": "name" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Perfil" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Consultas" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parámetros de petición" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Tiempo real" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referido desde" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Actualizar" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerar" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regiones" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Quitar" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obligatorio" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reiniciar" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reiniciar estadísticas" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Guardar" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Pantallas" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Seleccionar sitio web" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesiones" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Configuraciones" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Compartir URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Día" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tableta" + } + ], + "label.team": [ + { + "type": 0, + "value": "Equipo" + } + ], + "label.team-guest": [ + { + "type": 0, + "value": "Invitado de equipo" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID de equipo" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Miembro de equipo" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Admin. del equipo" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Equipos" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Este mes" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Esta semana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Este año" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zona horaria" + } + ], + "label.title": [ + { + "type": 0, + "value": "Título" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hoy" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Alternar gráficas" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Código de rastreo" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitantes únicos" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Desconocida" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.url": [ + { + "type": 0, + "value": "URL" + } + ], + "label.urls": [ + { + "type": 0, + "value": "URLs" + } + ], + "label.user": [ + { + "type": 0, + "value": "Usuario" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nombre de usuario" + } + ], + "label.users": [ + { + "type": 0, + "value": "Usuarios" + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "Visualizar" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Ver detalles" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Vistas" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitantes" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID del sitio web" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Sitios" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Ayer" + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "activo" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "activos" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "¿Seguro que quieres eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "¿Seguro que quieres abandonar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "¿Seguro que quieres BORRAR las analíticas de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-account": [ + { + "type": 0, + "value": "To delete this account, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.delete-website": [ + { + "type": 0, + "value": "To delete this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Toda la información relacionada será eliminada." + } + ], + "message.error": [ + { + "type": 0, + "value": "Algo falló." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " en " + }, + { + "type": 1, + "value": "url" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ir a la configuración" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nombre de usuario o contraseña incorrectos." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Dominio inválido" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Longitud mínima de " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caracteres" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "No hay información disponible." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Las contraseñas no coinciden" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Este equipo no tiene ningún sitio web configurado." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "No has creado ningún equipo." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "No hay usuarios." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "No tienes ningún sitio configurado." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Página no encontrada" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Todas las estadísticas de esta página serán eliminadas, pero el código de rastreo permanecerá intacto." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Guardado." + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Esta es la URL compartida públicamente para " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Ya eres miembro de este equipo." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Equipo no encontrado." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Las analíticas de tus sitios pueden verse por cualquier miembro del equipo." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Código de rastreo" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Usuario eliminado." + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitante desde " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " usando " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " en " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/fa-IR.json b/public/intl/messages/fa-IR.json new file mode 100644 index 0000000..7610a7b --- /dev/null +++ b/public/intl/messages/fa-IR.json @@ -0,0 +1,2202 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "کد دسترسی" + } + ], + "label.actions": [ + { + "type": 0, + "value": "اقدامات" + } + ], + "label.activity": [ + { + "type": 0, + "value": "فعالیت" + } + ], + "label.add": [ + { + "type": 0, + "value": "افزودن" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "افزودن برد" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "افزودن توضیحات" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "افزودن عضو" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "افزودن قدم" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "افزودن وب‌سایت" + } + ], + "label.admin": [ + { + "type": 0, + "value": "مدیر" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "همکار فروش" + } + ], + "label.after": [ + { + "type": 0, + "value": "بعد" + } + ], + "label.all": [ + { + "type": 0, + "value": "همه" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "تمامی زمان‌ها" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "تجزیه و تحلیل" + } + ], + "label.apply": [ + { + "type": 0, + "value": "اعمال" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "انتساب" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "ببینید کاربران چگونه با بازاریابی شما تعامل دارند و چه چیزی باعث تبدیل می‌شود." + } + ], + "label.average": [ + { + "type": 0, + "value": "میانگین" + } + ], + "label.back": [ + { + "type": 0, + "value": "بازگشت" + } + ], + "label.before": [ + { + "type": 0, + "value": "قبل از" + } + ], + "label.boards": [ + { + "type": 0, + "value": "بردها" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "نرخ ریزش" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "تفکیک" + } + ], + "label.browser": [ + { + "type": 0, + "value": "مرورگر" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "مرورگرها" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "کمپین‌ها" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "انصراف" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "تغییر رمز" + } + ], + "label.channels": [ + { + "type": 0, + "value": "کانال‌ها" + } + ], + "label.cities": [ + { + "type": 0, + "value": "شهرها" + } + ], + "label.city": [ + { + "type": 0, + "value": "شهر" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "پاک کردن همه" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "گروه" + } + ], + "label.compare": [ + { + "type": 0, + "value": "مقایسه" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "مقایسه تاریخ‌ها" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "تأیید" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "تأیید رمز" + } + ], + "label.contains": [ + { + "type": 0, + "value": "شامل" + } + ], + "label.content": [ + { + "type": 0, + "value": "محتوا" + } + ], + "label.continue": [ + { + "type": 0, + "value": "ادامه" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "تبدیل" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "نرخ تبدیل" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "گام تبدیل" + } + ], + "label.count": [ + { + "type": 0, + "value": "تعداد" + } + ], + "label.countries": [ + { + "type": 0, + "value": "کشورها" + } + ], + "label.country": [ + { + "type": 0, + "value": "کشور" + } + ], + "label.create": [ + { + "type": 0, + "value": "ایجاد" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "ایجاد گزارش" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "ایجاد تیم" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "ایجاد کاربر" + } + ], + "label.created": [ + { + "type": 0, + "value": "ایجاد شد" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "ایجاد شده توسط" + } + ], + "label.currency": [ + { + "type": 0, + "value": "واحد پول" + } + ], + "label.current": [ + { + "type": 0, + "value": "فعلی" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "رمز فعلی" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "محدوده‌ی دلخواه" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "داشبورد" + } + ], + "label.data": [ + { + "type": 0, + "value": "داده" + } + ], + "label.date": [ + { + "type": 0, + "value": "تاریخ" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "محدوده‌ی تاریخ" + } + ], + "label.day": [ + { + "type": 0, + "value": "روز" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "محدوده‌ی پیش‌فرض تاریخ" + } + ], + "label.delete": [ + { + "type": 0, + "value": "حذف" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "حذف گزارش" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "حذف تیم" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "حذف کاربر" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "حذف وب‌سایت" + } + ], + "label.description": [ + { + "type": 0, + "value": "توضیحات" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "دسکتاپ" + } + ], + "label.details": [ + { + "type": 0, + "value": "جزئیات" + } + ], + "label.device": [ + { + "type": 0, + "value": "دستگاه" + } + ], + "label.devices": [ + { + "type": 0, + "value": "دستگاه‌ها" + } + ], + "label.direct": [ + { + "type": 0, + "value": "مستقیم" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "رد کردن" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "شناسه یکتا" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "شامل نمی‌شود" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "شامل نمی‌شود" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "وجود ندارد" + } + ], + "label.domain": [ + { + "type": 0, + "value": "دامنه" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "رها کردن" + } + ], + "label.edit": [ + { + "type": 0, + "value": "ویرایش" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "ویرایش داشبورد" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "ویرایش عضو" + } + ], + "label.email": [ + { + "type": 0, + "value": "ایمیل" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "فعال کردن اشتراک گذاری آدرس اینترنتی" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "قدم پایانی" + } + ], + "label.entry": [ + { + "type": 0, + "value": "آدرس اینترنتی ورودی" + } + ], + "label.event": [ + { + "type": 0, + "value": "رویداد" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "داده‌های رویداد" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "نام رویداد" + } + ], + "label.events": [ + { + "type": 0, + "value": "رویدادها" + } + ], + "label.exists": [ + { + "type": 0, + "value": "وجود دارد" + } + ], + "label.exit": [ + { + "type": 0, + "value": "آدرس اینترنتی خروجی" + } + ], + "label.false": [ + { + "type": 0, + "value": "نادرست" + } + ], + "label.field": [ + { + "type": 0, + "value": "فیلد" + } + ], + "label.fields": [ + { + "type": 0, + "value": "فیلد‌ها" + } + ], + "label.filter": [ + { + "type": 0, + "value": "فیلتر" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "ترکیب شده" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "خام" + } + ], + "label.filters": [ + { + "type": 0, + "value": "فیلترها" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "اولین کلیک" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "اولین بار دیده شده" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "فانل" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "نرخ تبدیل و رها کردن کاربران را درک کنید." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "قیف‌ها" + } + ], + "label.goal": [ + { + "type": 0, + "value": "هدف" + } + ], + "label.goals": [ + { + "type": 0, + "value": "اهداف" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "اهداف خود را برای بازدید از صفحه و رویدادها دنبال کنید." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "بزرگ‌تر از" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "بزرگ‌تر یا مساوی" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "گروه‌بندی شده" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "نام میزبان" + } + ], + "label.includes": [ + { + "type": 0, + "value": "شامل می‌شود" + } + ], + "label.insight": [ + { + "type": 0, + "value": "بینش" + } + ], + "label.insights": [ + { + "type": 0, + "value": "بینش" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "با استفاده از بخش‌ها و فیلترها، در داده‌های خود عمیق‌تر شوید." + } + ], + "label.is": [ + { + "type": 0, + "value": "برابر است با" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "نادرست است" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "برابر نیست با" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "تعیین نشده" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "تعیین شده" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "درست است" + } + ], + "label.join": [ + { + "type": 0, + "value": "پیوستن" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "پیوستن به تیم" + } + ], + "label.journey": [ + { + "type": 0, + "value": "مسیر" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "درک کنید که کاربران چگونه در وب‌سایت شما حرکت می کنند." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "مسیرها" + } + ], + "label.language": [ + { + "type": 0, + "value": "زبان" + } + ], + "label.languages": [ + { + "type": 0, + "value": "زبان‌ها" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "لپ‌تاپ" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "آخرین کلیک" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " روز گذشته" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ساعت گذشته" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ماه گذشته" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "آخرین بار دیده شده" + } + ], + "label.leave": [ + { + "type": 0, + "value": "ترک کردن" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "ترک تیم" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "کمتر از" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "کمتر یا مساوی" + } + ], + "label.links": [ + { + "type": 0, + "value": "لینک‌ها" + } + ], + "label.login": [ + { + "type": 0, + "value": "ورود" + } + ], + "label.logout": [ + { + "type": 0, + "value": "خروج" + } + ], + "label.manage": [ + { + "type": 0, + "value": "مدیریت" + } + ], + "label.manager": [ + { + "type": 0, + "value": "مدیر" + } + ], + "label.max": [ + { + "type": 0, + "value": "حداکثر" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "گسترش" + } + ], + "label.medium": [ + { + "type": 0, + "value": "متوسط" + } + ], + "label.member": [ + { + "type": 0, + "value": "عضو" + } + ], + "label.members": [ + { + "type": 0, + "value": "اعضا" + } + ], + "label.min": [ + { + "type": 0, + "value": "حداقل" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "موبایل" + } + ], + "label.model": [ + { + "type": 0, + "value": "مدل" + } + ], + "label.more": [ + { + "type": 0, + "value": "بیشتر" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "حساب کاربری من" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "وب‌سایت‌های من" + } + ], + "label.name": [ + { + "type": 0, + "value": "نام" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "رمز جدید" + } + ], + "label.none": [ + { + "type": 0, + "value": "هیچ" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "تایید" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "جستجوی ارگانیک" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "خرید ارگانیک" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "شبکه اجتماعی ارگانیک" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "ویدیوی ارگانیک" + } + ], + "label.os": [ + { + "type": 0, + "value": "سیستم عامل" + } + ], + "label.other": [ + { + "type": 0, + "value": "سایر" + } + ], + "label.overview": [ + { + "type": 0, + "value": "بررسی کلی" + } + ], + "label.owner": [ + { + "type": 0, + "value": "مالک" + } + ], + "label.page": [ + { + "type": 0, + "value": "صفحه" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "صفحه " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " از " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "بازدید صفحه" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "عنوان صفحه" + } + ], + "label.pages": [ + { + "type": 0, + "value": "صفحه‌ها" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "تبلیغات پولی" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "جستجوی پولی" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "خرید پولی" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "شبکه اجتماعی پولی" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "ویدیوی پولی" + } + ], + "label.password": [ + { + "type": 0, + "value": "رمز" + } + ], + "label.path": [ + { + "type": 0, + "value": "مسیر" + } + ], + "label.paths": [ + { + "type": 0, + "value": "مسیرها" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "پیکسل‌ها" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "قدرت گرفته توسط " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "قبلی" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "دوره‌ی قبل" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "سال قبل" + } + ], + "label.profile": [ + { + "type": 0, + "value": "پروفایل" + } + ], + "label.properties": [ + { + "type": 0, + "value": "ویژگی‌ها" + } + ], + "label.property": [ + { + "type": 0, + "value": "ویژگی" + } + ], + "label.queries": [ + { + "type": 0, + "value": "کوئری‌ها" + } + ], + "label.query": [ + { + "type": 0, + "value": "کوئری" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "پارامترهای کوئری" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "آمار زنده" + } + ], + "label.referral": [ + { + "type": 0, + "value": "ارجاع" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "ارجاع دهنده" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "ارجاع دهندگان" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "به‌روزرسانی" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "تولید مجدد" + } + ], + "label.region": [ + { + "type": 0, + "value": "منطقه" + } + ], + "label.regions": [ + { + "type": 0, + "value": "مناطق" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "باقی‌مانده" + } + ], + "label.remove": [ + { + "type": 0, + "value": "حذف" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "حذف عضو" + } + ], + "label.reports": [ + { + "type": 0, + "value": "گزارش‌ها" + } + ], + "label.required": [ + { + "type": 0, + "value": "ضروری" + } + ], + "label.reset": [ + { + "type": 0, + "value": "بازنشانی" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "بازنشانی وب‌سایت" + } + ], + "label.retention": [ + { + "type": 0, + "value": "نرخ بازگشت" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "چسبندگی وب‌سایت خود را با دنبال کردن تعداد دفعات بازگشت کاربران اندازه‌گیری کنید." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "درآمد" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "به درآمد خود در طول زمان نگاه کنید." + } + ], + "label.role": [ + { + "type": 0, + "value": "نقش" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "اجرای کوئری" + } + ], + "label.save": [ + { + "type": 0, + "value": "ذخیره" + } + ], + "label.screens": [ + { + "type": 0, + "value": "صفحه" + } + ], + "label.search": [ + { + "type": 0, + "value": "جستجو" + } + ], + "label.select": [ + { + "type": 0, + "value": "انتخاب" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "انتخاب تاریخ" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "انتخاب فیلتر" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "انتخاب نقش" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "انتخاب وب‌سایت" + } + ], + "label.session": [ + { + "type": 0, + "value": "نشست" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "داده‌های نشست" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "نشست‌ها" + } + ], + "label.settings": [ + { + "type": 0, + "value": "تنظیمات" + } + ], + "label.share": [ + { + "type": 0, + "value": "اشتراک‌گذاری" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "به اشتراک گذاری آدرس اینترنتی" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "یک روز" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "منابع" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "قدم شروع" + } + ], + "label.steps": [ + { + "type": 0, + "value": "قدم‌ها" + } + ], + "label.sum": [ + { + "type": 0, + "value": "جمع" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "تبلت" + } + ], + "label.tag": [ + { + "type": 0, + "value": "برچسب" + } + ], + "label.tags": [ + { + "type": 0, + "value": "برچسب‌ها" + } + ], + "label.team": [ + { + "type": 0, + "value": "تیم" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "شناسه تیم" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "مدیر تیم" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "عضو تیم" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "نام تیم" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "مالک تیم" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "تنظیمات تیم" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "فقط مشاهده‌ی تیم" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "وب‌سایت‌های تیم" + } + ], + "label.teams": [ + { + "type": 0, + "value": "تیم‌ها" + } + ], + "label.terms": [ + { + "type": 0, + "value": "شرایط" + } + ], + "label.theme": [ + { + "type": 0, + "value": "تم" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "این ماه" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "این هفته" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "امسال" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "منطقه‌ی زمانی" + } + ], + "label.title": [ + { + "type": 0, + "value": "عنوان" + } + ], + "label.today": [ + { + "type": 0, + "value": "امروز" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "نمایش / عدم نمایش نمودارها" + } + ], + "label.total": [ + { + "type": 0, + "value": "جمع" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "جمع رکوردها" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "کد رهگیری" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "تراکنش‌ها" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "انتقال" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "انتقال وب‌سایت" + } + ], + "label.true": [ + { + "type": 0, + "value": "درست" + } + ], + "label.type": [ + { + "type": 0, + "value": "نوع" + } + ], + "label.unique": [ + { + "type": 0, + "value": "یکتا" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "بازدیدکننده‌های یکتا" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "مشتریان یکتا" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "ناشناخته" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "بدون عنوان" + } + ], + "label.update": [ + { + "type": 0, + "value": "به‌روزرسانی" + } + ], + "label.user": [ + { + "type": 0, + "value": "کاربر" + } + ], + "label.username": [ + { + "type": 0, + "value": "نام کاربری" + } + ], + "label.users": [ + { + "type": 0, + "value": "کاربران" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "با استفاده از پارامترهای UTM، کمپین‌های خود را بررسی کنید." + } + ], + "label.value": [ + { + "type": 0, + "value": "مقدار" + } + ], + "label.view": [ + { + "type": 0, + "value": "مشاهده" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "مشاهده‌ی جزئیات" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "فقط مشاهده" + } + ], + "label.views": [ + { + "type": 0, + "value": "بازدید" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "نمایش‌ها در هر بازدید" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "میانگین زمان بازدید" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "بازدیدکننده" + } + ], + "label.visits": [ + { + "type": 0, + "value": "بازدیدها" + } + ], + "label.website": [ + { + "type": 0, + "value": "وب‌سایت" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "شناسه وب‌سایت" + } + ], + "label.websites": [ + { + "type": 0, + "value": "وب‌سایت‌ها" + } + ], + "label.window": [ + { + "type": 0, + "value": "پنجره" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "دیروز" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "برای تأیید این عملیات، لطفاً " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " را تایپ کنید." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " فعلی " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "یک" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "از میان" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "داده‌های جمع‌آوری شده" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "آیا مطمئن هستید می‌خواهید " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " را حذف کنید؟" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "آیا مطمئن هستید می‌خواهید از " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " خارج شوید؟" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "آیا مطمئن هستید می‌خواهید " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " را حذف کنید؟" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "آیا مطمئن هستید می‌خواهید " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " را بازنشانی کنید؟" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "با حذف تیم، تمامی وب‌سایت‌های تیم هم حذف خواهند شد." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "همه‌ی داده‌های وب‌سایت هم حذف خواهد شد." + } + ], + "message.error": [ + { + "type": 0, + "value": "مشکلی پیش آمده است." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " در " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "رفتن به تنظیمات" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "نام کاربری / رمز نادرست است." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "دامنه نامعتبر است." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "حداقل طول " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " کاراکتر است." + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "نسخه‌ی جدیدی از Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " در دسترس است." + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "اطلاعاتی موجود نیست." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "هیچ داده‌ای برای این رویداد وجود ندارد." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "رمزها یکسان نیستند" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "نتیجه‌ای یافت نشد." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "هیچ وب‌سایتی برای این تیم وجود ندارد." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "شما هیچ تیمی را ایجاد نکرده‌اید." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "هیچ کاربری وجود ندارد." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "شما هیچ وب‌سایتی را پیکربندی نکرده‌اید." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "صفحه یافت نشد." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "برای بازنشانی وب‌سایت، لطفاً " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " را تایپ کنید." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "تمامی آمارهای این وب‌سایت حذف خواهد شد اما کدهای رهگیری بدون تغییر باقی می‌ماند." + } + ], + "message.saved": [ + { + "type": 0, + "value": "ذخیره شد." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "آمار وب‌سایت شما به صورت عمومی در آدرس زیر قابل مشاهده است." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "شما از قبل عضو این تیم هستید." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "تیم یافت نشد." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "وب‌سایت‌ها توسط تمامی اعضای تیم قابل مشاهده هستند." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "کد رهگیری" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "آیا می‌خواهید این وب‌سایت را به حساب خود منتقل کنید؟" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "تیم مورد نظر را برای انتقال وب‌سایت انتخاب کنید." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "مالکیت وب‌سایت را به حساب خودت یا یک تیم دیگر منتقل کنید." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "رویداد فعال شده" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "کاربر حذف شد." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "صفحه مشاهده شد" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "بازدیدکننده از کشور " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " با مروگر " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " در " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/fi-FI.json b/public/intl/messages/fi-FI.json new file mode 100644 index 0000000..7e2b92f --- /dev/null +++ b/public/intl/messages/fi-FI.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Pääsykoodi" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Toiminnat" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Toimintaloki" + } + ], + "label.add": [ + { + "type": 0, + "value": "Lisää" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Lisää taulu" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Lisää kuvaus" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Lisää jäsen" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Lisää vaihe" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Lisää verkkosivu" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Järjestelmänvalvoja" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Kumppani" + } + ], + "label.after": [ + { + "type": 0, + "value": "Jälkeen" + } + ], + "label.all": [ + { + "type": 0, + "value": "Kaikki" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Alusta lähtien" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytiikka" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Käytä" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribuutio" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Katso, miten käyttäjät ovat vuorovaikutuksessa markkinointisi kanssa ja mikä johtaa konversioihin." + } + ], + "label.average": [ + { + "type": 0, + "value": "Keskiarvo" + } + ], + "label.back": [ + { + "type": 0, + "value": "Takaisin" + } + ], + "label.before": [ + { + "type": 0, + "value": "Ennen" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Taulut" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Välitön poistuminen" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Erittele" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Selain" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Selaimet" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanjat" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Peruuta" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Vaihda salasana" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanavat" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Kaupungit" + } + ], + "label.city": [ + { + "type": 0, + "value": "Kaupunki" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Tyhjennä kaikki" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohortti" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Vertaa" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Vertaa päivämääriä" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Vahvista" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Vahvista salasana" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Sisältö" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Jatka" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konversio" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konversioprosentti" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konversiovaihe" + } + ], + "label.count": [ + { + "type": 0, + "value": "Lukumäärä" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Maat" + } + ], + "label.country": [ + { + "type": 0, + "value": "Maa" + } + ], + "label.create": [ + { + "type": 0, + "value": "Luo" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Luo raportti" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Luo tiimi" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Luo käyttäjä" + } + ], + "label.created": [ + { + "type": 0, + "value": "Luotu" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Luonut" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuutta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Nykyinen" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Nykyinen salasana" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Mukautettu ajanjakso" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Ohjauspaneeli" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Päivämäärä" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Ajanjakso" + } + ], + "label.day": [ + { + "type": 0, + "value": "Päivä" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Oletusajanjakso" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Poista" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Poista raportti" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Poista tiimi" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Poista käyttäjä" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Poista verkkosivu" + } + ], + "label.description": [ + { + "type": 0, + "value": "Kuvaus" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Pöytäkone" + } + ], + "label.details": [ + { + "type": 0, + "value": "Tiedot" + } + ], + "label.device": [ + { + "type": 0, + "value": "Laite" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Laitteet" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Suora" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Hylkää" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Yksilöllinen ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Ei sisällä" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Ei sisällä" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Ei ole olemassa" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Verkkotunnus" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Poistuminen" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Muokkaa" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Muokkaa ohjauspaneelia" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Muokkaa jäsentä" + } + ], + "label.email": [ + { + "type": 0, + "value": "Sähköposti" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Ota jakamisen URL-osoite käyttöön" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Loppuvaihe" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Tulo-URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Tapahtuma" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Tapahtumatiedot" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Tapahtuman nimi" + } + ], + "label.events": [ + { + "type": 0, + "value": "Tapahtumat" + } + ], + "label.exists": [ + { + "type": 0, + "value": "On olemassa" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Poistumis-URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Epätosi" + } + ], + "label.field": [ + { + "type": 0, + "value": "Kenttä" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Kentät" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Yhdistetty" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Käsittelemätön" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Suodattimet" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Ensimmäinen klikkaus" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Ensimmäinen havainto" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Suppilo" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Ymmärrä käyttäjien konversio- ja poistumisprosentti." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Suppilot" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Tavoite" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Tavoitteet" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Seuraa sivun katselujen ja tapahtumien tavoitteitasi." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Suurempi kuin" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Suurempi tai yhtä suuri kuin" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Ryhmitelty" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Isäntänimi" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Sisältää" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Oivallus" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Oivallukset" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Sukella syvemmälle tietoihisi käyttämällä segmenttejä ja suodattimia." + } + ], + "label.is": [ + { + "type": 0, + "value": "On" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "On epätosi" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Ei ole" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Ei asetettu" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Asetettu" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "On tosi" + } + ], + "label.join": [ + { + "type": 0, + "value": "Liity" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Liity tiimiin" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Polku" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Ymmärrä, miten käyttäjät navigoivat sivustollasi." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Polut" + } + ], + "label.language": [ + { + "type": 0, + "value": "Kieli" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Kielet" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Kannettava tietokone" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Viimeinen klikkaus" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Viimeisimmät " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " päivää" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Viimeisimmät " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " tuntia" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Viimeiset " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " kuukautta" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Viimeksi nähty" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Poistu" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Poistu tiimistä" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Vähemmän kuin" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Vähemmän tai yhtä suuri kuin" + } + ], + "label.links": [ + { + "type": 0, + "value": "Linkit" + } + ], + "label.login": [ + { + "type": 0, + "value": "Kirjaudu sisään" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Kirjaudu ulos" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Hallinnoi" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Päällikkö" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maksimi" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Laajenna" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Keskitaso" + } + ], + "label.member": [ + { + "type": 0, + "value": "Jäsen" + } + ], + "label.members": [ + { + "type": 0, + "value": "Jäsenet" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimi" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Puhelin" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Lisää" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Oma tili" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Omat verkkosivut" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nimi" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Uusi salasana" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ei mitään" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "tietue" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "tietuetta" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Orgaaninen haku" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Orgaaninen ostaminen" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Orgaaninen sosiaalinen" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Orgaaninen video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Muu" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Yleiskatsaus" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Omistaja" + } + ], + "label.page": [ + { + "type": 0, + "value": "Sivu" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Sivu " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " / " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Sivun näyttökerrat" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Sivun otsikko" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Sivut" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Maksetut mainokset" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Maksettu haku" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Maksettu ostaminen" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Maksettu sosiaalinen" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Maksettu video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Salasana" + } + ], + "label.path": [ + { + "type": 0, + "value": "Polku" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Polut" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pikselit" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Voimanlähteenä " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profiili" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Ominaisuudet" + } + ], + "label.property": [ + { + "type": 0, + "value": "Ominaisuus" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Kyselyt" + } + ], + "label.query": [ + { + "type": 0, + "value": "Kysely" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Kyselyn parametrit" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Juuri nyt" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Viittaus" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Viittaajat" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Päivitä" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Jäljellä" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Vaaditaan" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Nollaa" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Nollaa tilastot" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Tulot" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Katso tulosi ajan mittaan." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Tallenna" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Näytöt" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Valitse suodatin" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Istunto" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Istuntotiedot" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Asetukset" + } + ], + "label.share": [ + { + "type": 0, + "value": "Jaa" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Jaa URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Yksi päivä" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Lähteet" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Aloitusvaihe" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Vaiheet" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tabletti" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tunniste" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tunnisteet" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Tiimin asetukset" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Ehdot" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Teema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Tämä kuukausi" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Tämä viikko" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Tämä vuosi" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Aikavyöhyke" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Tänään" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Kytke kaaviot päälle/pois" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Seurantakoodi" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Yksittäiset kävijät" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Tuntematon" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Käyttäjänimi" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Katso tiedot" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Näyttökerrat" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Keskimääräinen vierailuaika" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Vierailijat" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Verkkosivut" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "vierailija" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "vierailijaa" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Haluatko varmasti poistaa sivuston " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Haluatko varmasti poistaa sivuston " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " tilastot?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Kaikki siihen liittyvät tiedot poistetaan." + } + ], + "message.error": [ + { + "type": 0, + "value": "Jotain meni pieleen." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Mene asetuksiin" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Väärä käyttäjänimi/salasana." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Virheellinen verkkotunnus" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Tietoja ei ole käytettävissä." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Salasanat eivät täsmää" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Sinulla ei ole määritettyjä verkkosivustoja." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Sivua ei löydetty." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Kaikki sivuston tilastot poistetaan, mutta seurantakoodi pysyy muuttumattomana." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Tallennettu onnistuneesti." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Tämä on julkisesti jaettu URL sivustolle " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Seurantakoodi" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Vierailija maasta " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " selaimella " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " laitteella " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/fo-FO.json b/public/intl/messages/fo-FO.json new file mode 100644 index 0000000..9c04826 --- /dev/null +++ b/public/intl/messages/fo-FO.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Aðgangskoda" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Gerðir" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Legg afturat" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Legg borð afturat" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Legg lýsing afturat" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Legg lim afturat" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Legg stig afturat" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Legg heimasíðu afturat" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Fyrisitari" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Samband" + } + ], + "label.after": [ + { + "type": 0, + "value": "Eftir" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alt" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Allur tíðin" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Greining" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Nýt" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Áseting" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Síggj hvussu brúkarar samskifta við marknaðarføringina og hvat førir til umvendingar." + } + ], + "label.average": [ + { + "type": 0, + "value": "Miðal" + } + ], + "label.back": [ + { + "type": 0, + "value": "Aftur" + } + ], + "label.before": [ + { + "type": 0, + "value": "Áðrenn" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Borð" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce prosenttal" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Sundurgreining" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Kagi" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Kagar" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Herferðir" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Strika" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Skift loyniorð" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Rásir" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Býir" + } + ], + "label.city": [ + { + "type": 0, + "value": "Býur" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Tøm alt" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Bólkur" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Samanber" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Samanber dato" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Staðfest" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Vátta loyniorð" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Inniheldur" + } + ], + "label.content": [ + { + "type": 0, + "value": "Innihald" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Halt fram" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Umvending" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Umvendingarprosent" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Umvendingarstigur" + } + ], + "label.count": [ + { + "type": 0, + "value": "Tal" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Lond" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Stovna" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Stovna frágreiðing" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Stovna lið" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Stovna brúkara" + } + ], + "label.created": [ + { + "type": 0, + "value": "Stovnaður" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Stovnaður av" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Gjaldoyra" + } + ], + "label.current": [ + { + "type": 0, + "value": "Núverandi" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Núverandi loyniorð" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Tillaga spenni" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Yvirlitsskíggi" + } + ], + "label.data": [ + { + "type": 0, + "value": "Dáta" + } + ], + "label.date": [ + { + "type": 0, + "value": "Dato" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Vel dato" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dagur" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Forsett dato" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Sletta" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Strika frágreiðing" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Strika lið" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Strika brúkara" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Sletta heimasíðu" + } + ], + "label.description": [ + { + "type": 0, + "value": "Lýsing" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Borðtelda" + } + ], + "label.details": [ + { + "type": 0, + "value": "Nærri upplýsingar" + } + ], + "label.device": [ + { + "type": 0, + "value": "Tól" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Tóleindir" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Beinleiðis" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Lat fara" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Sermerkt ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Inniheldur ikki" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Er ikki við" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Er ikki til" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Økisnavn" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Ger broyting" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Ritstjórna yvirlitsskíggja" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Ritstjórna lim" + } + ], + "label.email": [ + { + "type": 0, + "value": "Teldupostur" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Virkja deili leinki" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Endastigur" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Inngangs URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Tiltak" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Tiltaksdata" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Tiltaksnavn" + } + ], + "label.events": [ + { + "type": 0, + "value": "Hendingar/tiltøk" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Er til" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Útgangs URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falskt" + } + ], + "label.field": [ + { + "type": 0, + "value": "Øki" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Øki" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Sía" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Samansett" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Óviðgjørt" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Síur" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Fyrsta trýst" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Fyrst sæddur" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Traktari" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Fá yvirlit yvir umvendingar og fráfall hjá brúkarum." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Traktarar" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Mál" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Mál" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Fylg við málum fyri síðuvísingar og tiltøk." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Størri enn" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Størri ella javnt" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Bólkað" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Vertnavn" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inniheldur" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Innlit" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Innlit" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Fá meira innlit í tínar dátur við at brúka bólkar og síur." + } + ], + "label.is": [ + { + "type": 0, + "value": "Er" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Er falskt" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Er ikki" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Er ikki sett" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Er sett" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Er satt" + } + ], + "label.join": [ + { + "type": 0, + "value": "Luttak" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Luttak í liði" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Ferð" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Fá yvirlit yvir hvussu brúkarar ferðast á heimasíðuni." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Ferðir" + } + ], + "label.language": [ + { + "type": 0, + "value": "Mál" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Mál" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Fartelda" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Seinasta trýst" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Seinastu " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dagarnar" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Seinastu " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " tímarnar" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Seinastu " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mánaðirnar" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Síðst sæddur" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Far burtur" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Far úr liði" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Minni enn" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Minni ella javnt" + } + ], + "label.links": [ + { + "type": 0, + "value": "Leinkjur" + } + ], + "label.login": [ + { + "type": 0, + "value": "Rita inn" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Rita út" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Stýra" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Stjóri" + } + ], + "label.max": [ + { + "type": 0, + "value": "Mest" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Víðka" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Miðal" + } + ], + "label.member": [ + { + "type": 0, + "value": "Limur" + } + ], + "label.members": [ + { + "type": 0, + "value": "Limir" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minst" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Telefon" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Meira" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mín konto" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mínar heimasíður" + } + ], + "label.name": [ + { + "type": 0, + "value": "Navn" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nýtt loyniorð" + } + ], + "label.none": [ + { + "type": 0, + "value": "Eingin" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organisk leiting" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organisk keyp" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organisk sosial miðla" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organisk video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Annað" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Yvirlit" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Eigari" + } + ], + "label.page": [ + { + "type": 0, + "value": "Síða" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Síða " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " av " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Opnaðar síðir" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Síðuheiti" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Síðir" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Goldnar lýsingar" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Goldin leiting" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Goldið keyp" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Goldin sosial miðla" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Goldið video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Loyniorð" + } + ], + "label.path": [ + { + "type": 0, + "value": "Leið" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Leiðir" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pikslur" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Rikið av " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Fyrra" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Fyrra tíðarskeið" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Fyrra ár" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Vangi" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Eginleikar" + } + ], + "label.property": [ + { + "type": 0, + "value": "Eginleiki" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Fyrispurningar" + } + ], + "label.query": [ + { + "type": 0, + "value": "Fyrispurningur" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Fyrispurningsparametrar" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Beinleiðis" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Ávísing" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Ávísari" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Framsendingar" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Dagfør" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Endurskapa" + } + ], + "label.region": [ + { + "type": 0, + "value": "Øki" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Øki" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Eftir" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Fjern" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Fjern lim" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Frágreiðingar" + } + ], + "label.required": [ + { + "type": 0, + "value": "Kravið" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Nulstilla" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Nulstilla heimasíðu" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Hald" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mát hvussu ofta brúkarar koma aftur á tína síðu." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Inntøka" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Fá yvirlit yvir inntøku yvir tíð." + } + ], + "label.role": [ + { + "type": 0, + "value": "Leiklutur" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Koyr fyrispurning" + } + ], + "label.save": [ + { + "type": 0, + "value": "Goym" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Skíggjar" + } + ], + "label.search": [ + { + "type": 0, + "value": "Leita" + } + ], + "label.select": [ + { + "type": 0, + "value": "Vel" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Vel dato" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Vel síu" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Vel leiklut" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Vel heimasíðu" + } + ], + "label.session": [ + { + "type": 0, + "value": "Seta" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Setudáta" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Setur" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Stillingar" + } + ], + "label.share": [ + { + "type": 0, + "value": "Deil" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Deil leinku" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Einkultur dagur" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Keldur" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Byrjanarstigur" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Stig" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Samanlagt" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Teldil" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Merki" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Merki" + } + ], + "label.team": [ + { + "type": 0, + "value": "Lið" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Lið ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Liðleiðari" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Liðlimur" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Liðnavn" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Liðeigari" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Liðstillingar" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Bert til at síggja lið" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Lið heimasíður" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Lið" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Treytir" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Evni" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Hendan mánan" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Hesa vikuna" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Hetta árið" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Tíðarsona" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Í dag" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Spori kota" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Einsýna vitjanir" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Ókent" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Brúkaranavn" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Vís frágreiðing" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Sýningar" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Miðal vitjurnartíð " + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Vitjandi" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Heimasíður" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " í løtuni " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "vitjandi" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": " vitjandi " + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Ert tú sikkur at tú ynskir at strika " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Øll data ið er knýtt at verður eisini strika." + } + ], + "message.error": [ + { + "type": 0, + "value": "Okkurt bleiv gali." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Far til stillingar" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Skeivt brúkaranavn/loyniorð." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ógilt økisnavn" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Einki data tøk." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Loyniorðini eru ikki eins" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Tú hevur ongar heimasíður stillaða til." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Síðan bleiv ikki funnin." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Goymt." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Hettar er tann almenna leinkan av " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Spori kota" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Vitjandi frá " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " brúkar " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " á " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/fr-FR.json b/public/intl/messages/fr-FR.json new file mode 100644 index 0000000..d190ec1 --- /dev/null +++ b/public/intl/messages/fr-FR.json @@ -0,0 +1,2206 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Code d'accès" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Actions" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Journal d'activité" + } + ], + "label.add": [ + { + "type": 0, + "value": "Ajouter" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Ajouter un tableau" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Ajouter une description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Ajouter un membre" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Ajouter une étape" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Ajouter un site" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrateur" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliation" + } + ], + "label.after": [ + { + "type": 0, + "value": "Après" + } + ], + "label.all": [ + { + "type": 0, + "value": "Tout" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Toutes les données" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytique" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Appliquer" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Découvrez comment les utilisateurs s'engagent avec votre marketing et ce qui génère des conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Moyenne" + } + ], + "label.back": [ + { + "type": 0, + "value": "Retour" + } + ], + "label.before": [ + { + "type": 0, + "value": "Avant" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Tableaux" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Taux de rebond" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Répartition" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Navigateur" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navigateurs" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campagnes" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Annuler" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Changer le mot de passe" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canaux" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Villes" + } + ], + "label.city": [ + { + "type": 0, + "value": "Ville" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Réinitialiser" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparer" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Comparer les dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmer" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmation du mot de passe" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contient" + } + ], + "label.content": [ + { + "type": 0, + "value": "Contenu" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuer" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Taux de conversion" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Étape de conversion" + } + ], + "label.count": [ + { + "type": 0, + "value": "Compte" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Pays" + } + ], + "label.country": [ + { + "type": 0, + "value": "Pays" + } + ], + "label.create": [ + { + "type": 0, + "value": "Créer" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Créer un rapport" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Créer une équipe" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Créer un utilisateur" + } + ], + "label.created": [ + { + "type": 0, + "value": "Créé" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Créé par" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Devise" + } + ], + "label.current": [ + { + "type": 0, + "value": "Actuel" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Mot de passe actuel" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Période personnalisée" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Tableau de bord" + } + ], + "label.data": [ + { + "type": 0, + "value": "Données" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Période" + } + ], + "label.day": [ + { + "type": 0, + "value": "Jour" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Période par défaut" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Supprimer" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Supprimer le rapport" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Supprimer l'équipe" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Supprimer l'utilisateur" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Supprimer le site" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Ordinateur" + } + ], + "label.details": [ + { + "type": 0, + "value": "Détails" + } + ], + "label.device": [ + { + "type": 0, + "value": "Appareil" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Appareils" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Ignorer" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distinct" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Ne contient pas" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "N'inclut pas" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "N'existe pas" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domaine" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Abandons" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Modifier" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Modifier le tableau de bord" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Modifier le membre" + } + ], + "label.email": [ + { + "type": 0, + "value": "E-mail" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Activer l'URL de partage" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Étape de fin" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Chemin d'entrée" + } + ], + "label.event": [ + { + "type": 0, + "value": "Évènement" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Données d'évènements" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nom de l'évènement" + } + ], + "label.events": [ + { + "type": 0, + "value": "Évènements" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existe" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Chemin de sortie" + } + ], + "label.false": [ + { + "type": 0, + "value": "Faux" + } + ], + "label.field": [ + { + "type": 0, + "value": "Champ" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Champs" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtrer" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combiné" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Brut" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtres" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Premier clic" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Vu pour la première fois" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Entonnoir" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Comprenez les taux de conversions et d'abandons des utilisateurs." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Entonnoirs" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Objectif" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Objectifs" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Suivez vos objectifs en matière de pages vues et d'événements." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Supérieur à" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Supérieur ou égal à" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Groupé" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nom d'hôte" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inclut" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Aperçu" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Aperçus" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Analysez précisément vos données en utilisant des segments et des filtres." + } + ], + "label.is": [ + { + "type": 0, + "value": "Est" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Est faux" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "N'est pas" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "N'est pas défini" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Est défini" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Est vrai" + } + ], + "label.join": [ + { + "type": 0, + "value": "Rejoindre" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Rejoindre une équipe" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Parcours" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Comprennez comment les utilisateurs naviguent sur votre site." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Parcours" + } + ], + "label.language": [ + { + "type": 0, + "value": "Langue" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Langues" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portable" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Dernier clic" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " derniers jours" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dernières heures" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " derniers mois" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Vu pour la dernière fois" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Quitter" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Quitter l'équipe" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Inférieur à" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Inférieur ou égal à" + } + ], + "label.links": [ + { + "type": 0, + "value": "Liens" + } + ], + "label.login": [ + { + "type": 0, + "value": "Connexion" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Déconnexion" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Gérer" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Gestionnaire" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Développer" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Moyen" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membre" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membres" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Téléphone" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modèle" + } + ], + "label.more": [ + { + "type": 0, + "value": "Plus" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mon compte" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mes sites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nom" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nouveau mot de passe" + } + ], + "label.none": [ + { + "type": 0, + "value": "Aucun" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "enregistrement" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "enregistrements" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Recherche organique" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Achat organique" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Réseau social organique" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Vidéo organique" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Autre" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Vue d'ensemble" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Propriétaire" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " sur " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Pages vues" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Titre de page" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pages" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Publicités payantes" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Recherche payante" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Achat payant" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Réseau social payant" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Vidéo payante" + } + ], + "label.password": [ + { + "type": 0, + "value": "Mot de passe" + } + ], + "label.path": [ + { + "type": 0, + "value": "Chemin" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Chemins" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Propulsé par " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Précédent" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Période précédente" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Année précédente" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Propriétés" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propriété" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Requêtes" + } + ], + "label.query": [ + { + "type": 0, + "value": "Requête" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Paramètres de requête" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Temps réel" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Référent" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Site référent" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Sites référents" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Rafraîchir" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Régénérer" + } + ], + "label.region": [ + { + "type": 0, + "value": "Région" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Régions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Restant" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Retirer" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Retirer le membre" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Rapports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Requis" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Réinitialiser" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Réinitialiser les statistiques" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Rétention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mesurez l'attractivité de votre site en suivant la fréquence de retour des utilisateurs." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenus" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Consultez vos revenus au fil du temps." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rôle" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Exécuter la requête" + } + ], + "label.save": [ + { + "type": 0, + "value": "Enregistrer" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Écrans" + } + ], + "label.search": [ + { + "type": 0, + "value": "Rechercher" + } + ], + "label.select": [ + { + "type": 0, + "value": "Sélectionner" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Choisir une période" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Sélectionner un filtre" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Choisir un rôle" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Choisir un site" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Données de session" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Paramètres" + } + ], + "label.share": [ + { + "type": 0, + "value": "Partager" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL de partage" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Journée" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Étape de départ" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Étapes" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Somme" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablette" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Étiquette" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Étiquettes" + } + ], + "label.team": [ + { + "type": 0, + "value": "Équipe" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID d'équipe" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Manager de l'équipe" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Membre de l'équipe" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nom de l'équipe" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Propriétaire de l'équipe" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Vue d'équipe uniquement" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Sites d'équipes" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Équipes" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Mots clés" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Thème" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Ce mois" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Cette semaine" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Cette année" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Fuseau horaire" + } + ], + "label.title": [ + { + "type": 0, + "value": "Titre" + } + ], + "label.today": [ + { + "type": 0, + "value": "Aujourd'hui" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Afficher/Masquer les graphiques" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Nombre d'enregistrements" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Code de suivi" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transférer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transférer le site" + } + ], + "label.true": [ + { + "type": 0, + "value": "Vrai" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visiteurs uniques" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clients uniques" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Inconnu" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Sans titre" + } + ], + "label.update": [ + { + "type": 0, + "value": "Modifier" + } + ], + "label.user": [ + { + "type": 0, + "value": "Utilisateur" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nom d'utilisateur" + } + ], + "label.users": [ + { + "type": 0, + "value": "Utilisateurs" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Suivez vos campagnes via les paramètres UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Valeur" + } + ], + "label.view": [ + { + "type": 0, + "value": "Voir" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Voir les détails" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Consultation" + } + ], + "label.views": [ + { + "type": 0, + "value": "Vues" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vues par visite" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Temps de visite" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visiteurs" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visites" + } + ], + "label.website": [ + { + "type": 0, + "value": "Site" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID de site" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Sites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Fenêtre" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Hier" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Taper " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " ci-dessous pour confirmer." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visiteur" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visiteurs" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " actuellement" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Donnée collectée" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Êtes-vous sûr de vouloir supprimer " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Êtes-vous sûr de vouloir quitter " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Êtes-vous sûr de vouloir retirer " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Êtes-vous sûr de vouloir réinitialiser les statistiques de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Supprimer une équipe supprimera aussi tous les sites de cette équipe." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Toutes les données associées seront supprimées." + } + ], + "message.error": [ + { + "type": 0, + "value": "Un problème est survenu." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " sur " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Aller aux paramètres" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nom d'utilisateur/Mot de passe incorrect." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domaine invalide" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Taille minimale de " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caractères" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Une nouvelle version d'Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " est disponible !" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Aucune donnée disponible." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Aucune donnée d'événement disponible." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Les mots de passe ne correspondent pas" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Aucun résultat n'a été trouvé." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Cette équipe n'a aucun site." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Vous n'avez pas créé d'équipe." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Aucun utilisateur." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Vous n'avez pas configuré de site." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Page non trouvée." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Pour réinitialiser ce site, taper " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " ci-dessous pour confirmer." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Toutes les statistiques pour ce site seront supprimées, mais votre code de suivi restera intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Enregistré." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Les statistiques de votre site sont accessibles publiquement sur cette URL :" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Vous êtes déjà membre de cette équipe." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Équipe non trouvée." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Les sites peuvent être vus par tout utilisateur dans l'équipe." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Code de suivi" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transférer ce site sur votre compte ?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Choisir l'équipe à laquelle transférer ce site." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transférer la propriété du site sur votre compte ou à une autre équipe." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Évènement déclenché" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Utilisateur supprimé." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Page vue" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visiteur de " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " utilisant " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " sur " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ga-ES.json b/public/intl/messages/ga-ES.json new file mode 100644 index 0000000..d0e3d52 --- /dev/null +++ b/public/intl/messages/ga-ES.json @@ -0,0 +1,2230 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Código de acceso" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Accións" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Rexistro de actividade" + } + ], + "label.add": [ + { + "type": 0, + "value": "Engadir" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Engadir taboleiro" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Engadir descrición" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Engadir membro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Engadir paso" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Engadir sitio web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrador/a" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliado" + } + ], + "label.after": [ + { + "type": 0, + "value": "Despois" + } + ], + "label.all": [ + { + "type": 0, + "value": "Todo" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Sempre" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analíticas" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aplicar" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribución" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Vexa como os usuarios interactúan co seu márketing e que impulsa as conversións." + } + ], + "label.average": [ + { + "type": 0, + "value": "Media" + } + ], + "label.back": [ + { + "type": 0, + "value": "Atrás" + } + ], + "label.before": [ + { + "type": 0, + "value": "Antes" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Taboleiros" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Proporción de rebote" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Desglose" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Navegador" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navegadores" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campañas" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancelar" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Mudar contrasinal" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canles" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cidades" + } + ], + "label.city": [ + { + "type": 0, + "value": "Cidade" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Limpar todo" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Comparar datas" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmar" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmar contrasinal" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contén" + } + ], + "label.content": [ + { + "type": 0, + "value": "Contido" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuar" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversión" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Taxa de conversión" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Paso de conversión" + } + ], + "label.count": [ + { + "type": 0, + "value": "Reconto" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Países" + } + ], + "label.country": [ + { + "type": 0, + "value": "País" + } + ], + "label.create": [ + { + "type": 0, + "value": "Crear" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Crear informe" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Crear equipo" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Crear usuario" + } + ], + "label.created": [ + { + "type": 0, + "value": "Creado" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creado por" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Moeda" + } + ], + "label.current": [ + { + "type": 0, + "value": "Actual" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Contrasinal actual" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Rango personalizado" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Taboleiro" + } + ], + "label.data": [ + { + "type": 0, + "value": "Datos" + } + ], + "label.date": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Rango temporal" + } + ], + "label.day": [ + { + "type": 0, + "value": "Día" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Rango temporal por defecto" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Eliminar" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Eliminar reporte" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Eliminar equipo" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Eliminar usuario" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Eliminar sitio web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descripción" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Escritorio" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalles" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispositivo" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositivos" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Directo" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Desbotar" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distinto" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Non contén" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Non inclúe" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Non existe" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Dominio" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Disminución" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Editar" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Editar taboleiro" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Editar membro" + } + ], + "label.email": [ + { + "type": 0, + "value": "Correo electrónico" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Activar URL de compartición" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Paso final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL de entrada" + } + ], + "label.event": [ + { + "type": 0, + "value": "Evento" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Datos do evento" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nome do evento" + } + ], + "label.events": [ + { + "type": 0, + "value": "Eventos" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existe" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL de saída" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falso" + } + ], + "label.field": [ + { + "type": 0, + "value": "Campo" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Campos" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtro" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinado" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Crú" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtros" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primeiro clic" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Primeira visita" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funil" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Entende a taxa de conversión e de abandono dos usuarios." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funís" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Obxectivo" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Obxectivos" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Segue os teus obxectivos de visualizacións de páxinas e eventos." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Maior que" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Maior ou igual que" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Agrupado" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nome do host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inclúe" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Información" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Informacións" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Afonda nos teus datos usando segmentos e filtros." + } + ], + "label.is": [ + { + "type": 0, + "value": "É" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "É falso" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Non é" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Non está establecido" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Está establecido" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "É verdadeiro" + } + ], + "label.join": [ + { + "type": 0, + "value": "Unirse" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Unirse ao equipo" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Traxectoria" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Entende como os usuarios navegan polo teu sitio web." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Traxectorias" + } + ], + "label.language": [ + { + "type": 0, + "value": "Idioma" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Idiomas" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portátil" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Último clic" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " días" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Últimas " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " horas" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " meses" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Última visita" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Deixar" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Deixar o equipo" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Menor que" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Menor ou igual que" + } + ], + "label.links": [ + { + "type": 0, + "value": "Ligazóns" + } + ], + "label.login": [ + { + "type": 0, + "value": "Acceder" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Pechar sesión" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Xestionar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Xestor" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expandir" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medio" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membro" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membros" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Móbil" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modelo" + } + ], + "label.more": [ + { + "type": 0, + "value": "Máis" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "A miña conta" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Os meus sitios web" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nome" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Novo contrasinal" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ningún" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Busca orgánica" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Compra orgánica" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social orgánico" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Vídeo orgánico" + } + ], + "label.os": [ + { + "type": 0, + "value": "Sistema operativo" + } + ], + "label.other": [ + { + "type": 0, + "value": "Outro" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Resumo" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Propietario/a" + } + ], + "label.page": [ + { + "type": 0, + "value": "Páxina" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Páxina " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " de " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Vistas de páxinas" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Título da páxina" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Páxinas" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Anuncios de pago" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Busca de pago" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Compra de pago" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social de pago" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Vídeo de pago" + } + ], + "label.password": [ + { + "type": 0, + "value": "Contrasinal" + } + ], + "label.path": [ + { + "type": 0, + "value": "Ruta" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Rutas" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Píxeles" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Funciona grazas a " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Periodo anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Ano anterior" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Perfil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Propiedades" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propiedade" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Peticións" + } + ], + "label.query": [ + { + "type": 0, + "value": "Petición" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parámetros da petición" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Agora mesmo" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referencia" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Orixe" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Orixes" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Actualizar" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Rexenerar" + } + ], + "label.region": [ + { + "type": 0, + "value": "Rexión" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Rexións" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Restante" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Eliminar" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Eliminar membro" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reportes" + } + ], + "label.required": [ + { + "type": 0, + "value": "Requerido" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Restablecer" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Para restablecer este sitio web, escriba " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " na caixa de texto de embaixo para confirmar." + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retención" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mide a fidelidade dos usuarios ao teu sitio web seguindo a frecuencia coa que volven." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Ingresos" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Consulta os teus ingresos ao longo do tempo." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Executar petición" + } + ], + "label.save": [ + { + "type": 0, + "value": "Gardar" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Pantallas" + } + ], + "label.search": [ + { + "type": 0, + "value": "Buscar" + } + ], + "label.select": [ + { + "type": 0, + "value": "Seleccionar" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Seleccionar data" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Seleccionar filtro" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Seleccionar rol" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Seleccionar sitio web" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesión" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Datos da sesión" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesións" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Axustes" + } + ], + "label.share": [ + { + "type": 0, + "value": "Compartir" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Compartir URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Un só día" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Fontes" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pasos" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tableta" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etiqueta" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etiquetas" + } + ], + "label.team": [ + { + "type": 0, + "value": "Equipo" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID do equipo" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Xestor do equipo" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Membro do equipo" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nome do equipo" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Propietario do equipo" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Axustes do equipo" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Equipo de só lectura" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Sitios web do equipo" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Equipos" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termos" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Decorado" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Este mes" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Esta semana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Este ano" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zona horaria" + } + ], + "label.title": [ + { + "type": 0, + "value": "Título" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hoxe" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Activación das gráficas" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Rexistros totais" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Código de seguemento" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transaccións" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir sitio web" + } + ], + "label.true": [ + { + "type": 0, + "value": "Verdadeiro" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tipo" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Único" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitas únicas" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clientes únicos" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Descoñecido" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Sen título" + } + ], + "label.update": [ + { + "type": 0, + "value": "Actualizar" + } + ], + "label.user": [ + { + "type": 0, + "value": "Usuario" + } + ], + "label.username": [ + { + "type": 0, + "value": "Identificador" + } + ], + "label.users": [ + { + "type": 0, + "value": "Usuarios" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Segue as túas campañas a través dos parámetros UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Valor" + } + ], + "label.view": [ + { + "type": 0, + "value": "Vista" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Ver detalles" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Só lectura" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visualizacións" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Visualizacións por visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo medio de visita" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitantes" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visitas" + } + ], + "label.website": [ + { + "type": 0, + "value": "Sitio web" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID do sitio web" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Sitios web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Ventá" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Onte" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Escribe " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " na caixa de embaixo para confirmar." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " actual " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitante" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitantes" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Datos recopilados" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Estás seguro/a de que queres eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Estás seguro/a de que queres deixar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Estás seguro/a de que queres eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Estás seguro/a de querer restablecer as estatísticas de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Eliminar un equipo tamén eliminará tódolos sitios web do equipo." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Tamén serán borrados tódolos datos asociados." + } + ], + "message.error": [ + { + "type": 0, + "value": "Houbo un fallo." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " en " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ir aos axustes" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Credenciais incorrectas." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Dominio non válido" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Lonxitude mínima de " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caracteres" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Unha nova versión de Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " está dispoñible!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Sen datos dispoñibles." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Sen datos de eventos dispoñibles." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Non concordan os contrasinais" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Non se atoparon resultados." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Este equipo non ten ningún sitio web." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Non creaches ningún equipo." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Non hai usuarios." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Non tes sitios web configurados." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Páxina non atopada." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Para restablecer este sitio web, escriba " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " na caixa de embaixo para confirmar." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Vanse eliminar tódalas estatísticas deste sitio web, pero o código de seguimento permanecerá sen cambios." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Gardouse correctamente." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Este é o URL da compartición pública de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Xa es membro do equipo." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Equipo non atopado." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Os sitios web poden ser vistos por calquera membro do equipo." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Código de seguimento" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transferir este sitio web á túa conta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selecciona o equipo ao que transferir este sitio web." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transferir propiedade do sitio web á túa conta ou a outro equipo." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Activou o evento" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Usuario eliminado." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Páxina vista" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitante desde " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " usando " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " en " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/he-IL.json b/public/intl/messages/he-IL.json new file mode 100644 index 0000000..8c73d0f --- /dev/null +++ b/public/intl/messages/he-IL.json @@ -0,0 +1,2206 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "קוד גישה" + } + ], + "label.actions": [ + { + "type": 0, + "value": "פעולות" + } + ], + "label.activity": [ + { + "type": 0, + "value": "יומן פעילות" + } + ], + "label.add": [ + { + "type": 0, + "value": "הוסף" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "הוסף לוח" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "הוסף תיאור" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "הוסף חבר" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "הוסף שלב" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "הוספת אתר" + } + ], + "label.admin": [ + { + "type": 0, + "value": "מנהל" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "שותף" + } + ], + "label.after": [ + { + "type": 0, + "value": "אחרי" + } + ], + "label.all": [ + { + "type": 0, + "value": "הכל" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "כל הזמנים" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "אנליטיקה" + } + ], + "label.apply": [ + { + "type": 0, + "value": "החל" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "שיוך" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "צפה כיצד משתמשים מתקשרים עם השיווק שלך ומה מניע המרות." + } + ], + "label.average": [ + { + "type": 0, + "value": "ממוצע" + } + ], + "label.back": [ + { + "type": 0, + "value": "חזרה" + } + ], + "label.before": [ + { + "type": 0, + "value": "לפני" + } + ], + "label.boards": [ + { + "type": 0, + "value": "לוחות" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "שיעור נטישה" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "פירוט" + } + ], + "label.browser": [ + { + "type": 0, + "value": "דפדפן" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "דפדפנים" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "קמפיינים" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "ביטול" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "שינוי סיסמה" + } + ], + "label.channels": [ + { + "type": 0, + "value": "ערוצים" + } + ], + "label.cities": [ + { + "type": 0, + "value": "ערים" + } + ], + "label.city": [ + { + "type": 0, + "value": "עיר" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "נקה הכל" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "קבוצה" + } + ], + "label.compare": [ + { + "type": 0, + "value": "השווה" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "השווה תאריכים" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "אשר" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "אישור סיסמה" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "תוכן" + } + ], + "label.continue": [ + { + "type": 0, + "value": "המשך" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "המרה" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "שיעור המרה" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "שלב המרה" + } + ], + "label.count": [ + { + "type": 0, + "value": "ספירה" + } + ], + "label.countries": [ + { + "type": 0, + "value": "מדינות" + } + ], + "label.country": [ + { + "type": 0, + "value": "מדינה" + } + ], + "label.create": [ + { + "type": 0, + "value": "צור" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "צור דוח" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "צור צוות" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "צור משתמש" + } + ], + "label.created": [ + { + "type": 0, + "value": "נוצר" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "נוצר על ידי" + } + ], + "label.currency": [ + { + "type": 0, + "value": "מטבע" + } + ], + "label.current": [ + { + "type": 0, + "value": "נוכחי" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "סיסמה נוכחית" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "טווח מותאם" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "דשבורד" + } + ], + "label.data": [ + { + "type": 0, + "value": "נתונים" + } + ], + "label.date": [ + { + "type": 0, + "value": "תאריך" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "טווח תאריכים" + } + ], + "label.day": [ + { + "type": 0, + "value": "יום" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "טווח תאריכים בברירת מחדל" + } + ], + "label.delete": [ + { + "type": 0, + "value": "הסרה" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "מחק דוח" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "מחק צוות" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "מחק משתמש" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "הסרת אתר" + } + ], + "label.description": [ + { + "type": 0, + "value": "תיאור" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "מחשב שולחני" + } + ], + "label.details": [ + { + "type": 0, + "value": "פרטים" + } + ], + "label.device": [ + { + "type": 0, + "value": "מכשיר" + } + ], + "label.devices": [ + { + "type": 0, + "value": "מכשירים" + } + ], + "label.direct": [ + { + "type": 0, + "value": "ישיר" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "שיחרור" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "מזהה ייחודי" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "לא מכיל" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "לא כולל" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "לא קיים" + } + ], + "label.domain": [ + { + "type": 0, + "value": "דומיין" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "עזיבה" + } + ], + "label.edit": [ + { + "type": 0, + "value": "עריכה" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "ערוך לוח מחוונים" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "ערוך חבר" + } + ], + "label.email": [ + { + "type": 0, + "value": "אימייל" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "הפעלת URL שיתוף" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "שלב סיום" + } + ], + "label.entry": [ + { + "type": 0, + "value": "כתובת כניסה" + } + ], + "label.event": [ + { + "type": 0, + "value": "אירוע" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "נתוני אירוע" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "שם האירוע" + } + ], + "label.events": [ + { + "type": 0, + "value": "אירועים" + } + ], + "label.exists": [ + { + "type": 0, + "value": "קיים" + } + ], + "label.exit": [ + { + "type": 0, + "value": "כתובת יציאה" + } + ], + "label.false": [ + { + "type": 0, + "value": "שקר" + } + ], + "label.field": [ + { + "type": 0, + "value": "שדה" + } + ], + "label.fields": [ + { + "type": 0, + "value": "שדות" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "משותף" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "גולמי" + } + ], + "label.filters": [ + { + "type": 0, + "value": "מסננים" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "קליק ראשון" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "נראה לראשונה" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "משפך" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "הבן את שיעור ההמרה והעזיבה של המשתמשים." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "משפכים" + } + ], + "label.goal": [ + { + "type": 0, + "value": "מטרה" + } + ], + "label.goals": [ + { + "type": 0, + "value": "מטרות" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "עקוב אחרי המטרות שלך לצפיות בדף ואירועים." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "גדול מ-" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "גדול או שווה ל-" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "מקובץ" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "שם מארח" + } + ], + "label.includes": [ + { + "type": 0, + "value": "כולל" + } + ], + "label.insight": [ + { + "type": 0, + "value": "תובנה" + } + ], + "label.insights": [ + { + "type": 0, + "value": "תובנות" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "צלול עמוק יותר לנתונים שלך באמצעות פילוחים ומסננים." + } + ], + "label.is": [ + { + "type": 0, + "value": "הוא" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "הוא שקר" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "אינו" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "לא הוגדר" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "הוגדר" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "הוא אמת" + } + ], + "label.join": [ + { + "type": 0, + "value": "הצטרף" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "הצטרף לצוות" + } + ], + "label.journey": [ + { + "type": 0, + "value": "מסע" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "הבן כיצד משתמשים מנווטים באתר שלך." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "מסעות" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "לפטופ" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "קליק אחרון" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ימים אחרונים" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " שעות אחרונות" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " חודשים אחרונים" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "נראה לאחרונה" + } + ], + "label.leave": [ + { + "type": 0, + "value": "עזוב" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "עזוב צוות" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "פחות מ-" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "פחות או שווה ל-" + } + ], + "label.links": [ + { + "type": 0, + "value": "קישורים" + } + ], + "label.login": [ + { + "type": 0, + "value": "התחברות" + } + ], + "label.logout": [ + { + "type": 0, + "value": "התנתקות" + } + ], + "label.manage": [ + { + "type": 0, + "value": "נהל" + } + ], + "label.manager": [ + { + "type": 0, + "value": "מנהל" + } + ], + "label.max": [ + { + "type": 0, + "value": "מקסימום" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "הרחב" + } + ], + "label.medium": [ + { + "type": 0, + "value": "בינוני" + } + ], + "label.member": [ + { + "type": 0, + "value": "חבר" + } + ], + "label.members": [ + { + "type": 0, + "value": "חברים" + } + ], + "label.min": [ + { + "type": 0, + "value": "מינימום" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "מובייל" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "עוד" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "החשבון שלי" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "האתרים שלי" + } + ], + "label.name": [ + { + "type": 0, + "value": "שם" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "סיסמה חדשה" + } + ], + "label.none": [ + { + "type": 0, + "value": "ללא" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "רשומה" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "רשומות" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "חיפוש אורגני" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "קניות אורגניות" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "רשת חברתית אורגנית" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "וידאו אורגני" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "אחר" + } + ], + "label.overview": [ + { + "type": 0, + "value": "סקירה כללית" + } + ], + "label.owner": [ + { + "type": 0, + "value": "בעלים" + } + ], + "label.page": [ + { + "type": 0, + "value": "דף" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "דף " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " מתוך " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "צפיות בדפים" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "דפים" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "מודעות בתשלום" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "חיפוש בתשלום" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "קניות בתשלום" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "רשת חברתית בתשלום" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "וידאו בתשלום" + } + ], + "label.password": [ + { + "type": 0, + "value": "סיסמה" + } + ], + "label.path": [ + { + "type": 0, + "value": "נתיב" + } + ], + "label.paths": [ + { + "type": 0, + "value": "נתיבים" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "פיקסלים" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "פרופיל" + } + ], + "label.properties": [ + { + "type": 0, + "value": "מאפיינים" + } + ], + "label.property": [ + { + "type": 0, + "value": "מאפיין" + } + ], + "label.queries": [ + { + "type": 0, + "value": "שאילתות" + } + ], + "label.query": [ + { + "type": 0, + "value": "שאילתה" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "פרמטרי שאילתה" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "זמן אמת" + } + ], + "label.referral": [ + { + "type": 0, + "value": "הפניה" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "מפנים" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "רענון" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "נותר" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "נדרש" + } + ], + "label.reset": [ + { + "type": 0, + "value": "איפוס" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "הכנסה" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "בדוק את ההכנסות שלך לאורך זמן." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "שמירה" + } + ], + "label.screens": [ + { + "type": 0, + "value": "מסכים" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "בחר מסנן" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "סשן" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "נתוני סשן" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "הגדרות" + } + ], + "label.share": [ + { + "type": 0, + "value": "שתף" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "שיתוף URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "יום בודד" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "מקורות" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "שלב התחלה" + } + ], + "label.steps": [ + { + "type": 0, + "value": "שלבים" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "טאבלט" + } + ], + "label.tag": [ + { + "type": 0, + "value": "תגית" + } + ], + "label.tags": [ + { + "type": 0, + "value": "תגיות" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "הגדרות צוות" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "תנאים" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "החודש" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "השבוע" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "השנה" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "אזור זמן" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "היום" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "קוד מעקב" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "מבקרים ייחודיים" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "לא ידוע" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "שם משתמש" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "פרטים נוספים" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "צפיות" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "זמן ביקור ממוצע" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "מבקרים" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "אתרים" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " נוכחיים " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "מבקר" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "מבקרים" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "האם באמת למחוק את " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "כל המידע המקושר יימחק" + } + ], + "message.error": [ + { + "type": 0, + "value": "משהו השתבש" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "להדרותג" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "שם משתמש או סיסמה לא נכונים" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "דומיין לא תקין" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "אין מידע זמין" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "סיסמאות לא תואמות" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "לא מוגדרים אתרים" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "דף לא נמצא" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "נשמר בהצלחה" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "זהו URL ציבורי עבור " + }, + { + "type": 1, + "value": "target" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "קוד מעקב" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "מבקר ממדינת " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " משתמבש בדפדפן " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " ב-" + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/hi-IN.json b/public/intl/messages/hi-IN.json new file mode 100644 index 0000000..493ff99 --- /dev/null +++ b/public/intl/messages/hi-IN.json @@ -0,0 +1,2214 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "पहुंच कोड" + } + ], + "label.actions": [ + { + "type": 0, + "value": "कार्य" + } + ], + "label.activity": [ + { + "type": 0, + "value": "गतिविधि लॉग" + } + ], + "label.add": [ + { + "type": 0, + "value": "जोडो" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "बोर्ड जोड़ें" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "विवरण लिखें" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "सदस्य जोड़ें" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "चरण जोड़ें" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "वेबसाइट" + } + ], + "label.admin": [ + { + "type": 0, + "value": "प्रशासक" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "संबद्ध" + } + ], + "label.after": [ + { + "type": 0, + "value": "बाद में" + } + ], + "label.all": [ + { + "type": 0, + "value": "सब" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "सभी समय" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "विश्लेषण" + } + ], + "label.apply": [ + { + "type": 0, + "value": "लागू करें" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "अर्पण" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "देखें कि उपयोगकर्ता आपके विपणन के साथ कैसे जुड़ते हैं और क्या रूपांतरण को प्रेरित करता है।" + } + ], + "label.average": [ + { + "type": 0, + "value": "औसत" + } + ], + "label.back": [ + { + "type": 0, + "value": "पीछे" + } + ], + "label.before": [ + { + "type": 0, + "value": "पहले" + } + ], + "label.boards": [ + { + "type": 0, + "value": "बोर्ड्स" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "उछाल दर" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "विभाजन" + } + ], + "label.browser": [ + { + "type": 0, + "value": "ब्राउज़र" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "वेब ब्राउज़र" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "अभियान" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "रद्द करें" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "पासवर्ड बदलें" + } + ], + "label.channels": [ + { + "type": 0, + "value": "चैनल" + } + ], + "label.cities": [ + { + "type": 0, + "value": "शहर" + } + ], + "label.city": [ + { + "type": 0, + "value": "शहर" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "सभी साफ करें" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "समूह" + } + ], + "label.compare": [ + { + "type": 0, + "value": "तुलना करें" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "तिथियों की तुलना करें" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "पुष्टि करें" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "पासवर्ड की पुष्टि कीजिये" + } + ], + "label.contains": [ + { + "type": 0, + "value": "शामिल है" + } + ], + "label.content": [ + { + "type": 0, + "value": "सामग्री" + } + ], + "label.continue": [ + { + "type": 0, + "value": "जारी रखें" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "रूपांतरण" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "रूपांतरण दर" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "रूपांतरण चरण" + } + ], + "label.count": [ + { + "type": 0, + "value": "गिनती" + } + ], + "label.countries": [ + { + "type": 0, + "value": "देश" + } + ], + "label.country": [ + { + "type": 0, + "value": "देश" + } + ], + "label.create": [ + { + "type": 0, + "value": "बनाएँ" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "रिपोर्ट बनाएं" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "टीम बनाएं" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "उपयोगकर्ता बनाएं" + } + ], + "label.created": [ + { + "type": 0, + "value": "बनाया गया" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "द्वारा बनाया गया" + } + ], + "label.currency": [ + { + "type": 0, + "value": "मुद्रा" + } + ], + "label.current": [ + { + "type": 0, + "value": "वर्तमान" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "वर्तमान पासवर्ड" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "कस्टम रेंज" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "नियंत्रण-पट्ट" + } + ], + "label.data": [ + { + "type": 0, + "value": "डेटा" + } + ], + "label.date": [ + { + "type": 0, + "value": "तिथि" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "तिथि सीमा" + } + ], + "label.day": [ + { + "type": 0, + "value": "दिन" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "डिफ़ॉल्ट तिथि सीमा" + } + ], + "label.delete": [ + { + "type": 0, + "value": "खाता हटाएं" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "रिपोर्ट हटाएं" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "टीम हटाएं" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "उपयोगकर्ता हटाएं" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "वेबसाइट हटाएं" + } + ], + "label.description": [ + { + "type": 0, + "value": "विवरण" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "डेस्कटॉप" + } + ], + "label.details": [ + { + "type": 0, + "value": "विवरण" + } + ], + "label.device": [ + { + "type": 0, + "value": "डिवाइस" + } + ], + "label.devices": [ + { + "type": 0, + "value": "उपकरण" + } + ], + "label.direct": [ + { + "type": 0, + "value": "प्रत्यक्ष" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "खारिज कीजिये" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "अद्वितीय आईडी" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "शामिल नहीं है" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "शामिल नहीं है" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "मौजूद नहीं है" + } + ], + "label.domain": [ + { + "type": 0, + "value": "डोमेन" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "संपादित करें" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "डैशबोर्ड संपादित करें" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "सदस्य संपादित करें" + } + ], + "label.email": [ + { + "type": 0, + "value": "ईमेल" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "शेयर URL सक्षम करें" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "अंतिम चरण" + } + ], + "label.entry": [ + { + "type": 0, + "value": "प्रवेश URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "घटना" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "घटना डेटा" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "घटना नाम" + } + ], + "label.events": [ + { + "type": 0, + "value": "स्पर्धाएँ" + } + ], + "label.exists": [ + { + "type": 0, + "value": "मौजूद है" + } + ], + "label.exit": [ + { + "type": 0, + "value": "निकास URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "गलत" + } + ], + "label.field": [ + { + "type": 0, + "value": "फ़ील्ड" + } + ], + "label.fields": [ + { + "type": 0, + "value": "फ़ील्ड्स" + } + ], + "label.filter": [ + { + "type": 0, + "value": "फ़िल्टर" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "संयुक्त" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "रॉ" + } + ], + "label.filters": [ + { + "type": 0, + "value": "फ़िल्टर" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "पहला क्लिक" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "पहली बार देखा गया" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "फनल" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "उपयोगकर्ताओं की रूपांतरण और ड्रॉप-ऑफ दर को समझें।" + } + ], + "label.funnels": [ + { + "type": 0, + "value": "फनल्स" + } + ], + "label.goal": [ + { + "type": 0, + "value": "लक्ष्य" + } + ], + "label.goals": [ + { + "type": 0, + "value": "लक्ष्य" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "पृष्ठदृश्यों और घटनाओं के लिए अपने लक्ष्यों को ट्रैक करें।" + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "से अधिक" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "से अधिक या बराबर" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "समूहित" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "होस्टनाम" + } + ], + "label.includes": [ + { + "type": 0, + "value": "शामिल है" + } + ], + "label.insight": [ + { + "type": 0, + "value": "अंतर्दृष्टि" + } + ], + "label.insights": [ + { + "type": 0, + "value": "अंतर्दृष्टियाँ" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "सेगमेंट और फ़िल्टर का उपयोग करके अपने डेटा में गहराई से जाएं।" + } + ], + "label.is": [ + { + "type": 0, + "value": "है" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "गलत है" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "नहीं है" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "सेट नहीं है" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "सेट है" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "सही है" + } + ], + "label.join": [ + { + "type": 0, + "value": "शामिल हों" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "टीम में शामिल हों" + } + ], + "label.journey": [ + { + "type": 0, + "value": "यात्रा" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "समझें कि उपयोगकर्ता आपकी वेबसाइट पर कैसे नेविगेट करते हैं।" + } + ], + "label.journeys": [ + { + "type": 0, + "value": "यात्राएँ" + } + ], + "label.language": [ + { + "type": 0, + "value": "भाषा" + } + ], + "label.languages": [ + { + "type": 0, + "value": "भाषाएँ" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "लैपटॉप" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "अंतिम क्लिक" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "पिछले " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " दिन" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "पिछले " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " घंटे" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "पिछले " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " महीने" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "अंतिम बार देखा गया" + } + ], + "label.leave": [ + { + "type": 0, + "value": "छोड़ें" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "टीम छोड़ें" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "से कम" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "से कम या बराबर" + } + ], + "label.links": [ + { + "type": 0, + "value": "लिंक" + } + ], + "label.login": [ + { + "type": 0, + "value": "लॉग इन" + } + ], + "label.logout": [ + { + "type": 0, + "value": "लॉग आउट" + } + ], + "label.manage": [ + { + "type": 0, + "value": "प्रबंधित करें" + } + ], + "label.manager": [ + { + "type": 0, + "value": "प्रबंधक" + } + ], + "label.max": [ + { + "type": 0, + "value": "अधिकतम" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "विस्तार करें" + } + ], + "label.medium": [ + { + "type": 0, + "value": "मध्यम" + } + ], + "label.member": [ + { + "type": 0, + "value": "सदस्य" + } + ], + "label.members": [ + { + "type": 0, + "value": "सदस्यगण" + } + ], + "label.min": [ + { + "type": 0, + "value": "न्यूनतम" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "मोबाइल फोन" + } + ], + "label.model": [ + { + "type": 0, + "value": "मॉडल" + } + ], + "label.more": [ + { + "type": 0, + "value": "और" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "मेरा खाता" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "मेरी वेबसाइट्स" + } + ], + "label.name": [ + { + "type": 0, + "value": "नाम" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "नया पासवर्ड" + } + ], + "label.none": [ + { + "type": 0, + "value": "कोई नहीं" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "ऑर्गेनिक खोज" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "ऑर्गेनिक खरीदारी" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "ऑर्गेनिक सोशल" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "ऑर्गेनिक वीडियो" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "अन्य" + } + ], + "label.overview": [ + { + "type": 0, + "value": "सारांश" + } + ], + "label.owner": [ + { + "type": 0, + "value": "मालिक" + } + ], + "label.page": [ + { + "type": 0, + "value": "पृष्ठ" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "पृष्ठ " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " का " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "पृष्ठ दृश्य" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "पृष्ठ शीर्षक" + } + ], + "label.pages": [ + { + "type": 0, + "value": "पृष्ठों" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "पेड विज्ञापन" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "पेड खोज" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "पेड खरीदारी" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "पेड सोशल" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "पेड वीडियो" + } + ], + "label.password": [ + { + "type": 0, + "value": "पासवर्ड" + } + ], + "label.path": [ + { + "type": 0, + "value": "पथ" + } + ], + "label.paths": [ + { + "type": 0, + "value": "पथ" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "पिक्सेल" + } + ], + "label.powered-by": [ + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " द्वारा संचालित" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "प्रोफ़ाइल" + } + ], + "label.properties": [ + { + "type": 0, + "value": "गुण" + } + ], + "label.property": [ + { + "type": 0, + "value": "गुण" + } + ], + "label.queries": [ + { + "type": 0, + "value": "प्रश्न" + } + ], + "label.query": [ + { + "type": 0, + "value": "प्रश्न" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "प्रश्न पैरामीटर" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "वास्तव काल" + } + ], + "label.referral": [ + { + "type": 0, + "value": "संदर्भ" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "संदर्भकर्ता" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "सन्दर्भदाता" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "रिफ्रेश" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "पुनः उत्पन्न करें" + } + ], + "label.region": [ + { + "type": 0, + "value": "क्षेत्र" + } + ], + "label.regions": [ + { + "type": 0, + "value": "क्षेत्र" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "शेष" + } + ], + "label.remove": [ + { + "type": 0, + "value": "हटाएं" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "सदस्य हटाएं" + } + ], + "label.reports": [ + { + "type": 0, + "value": "रिपोर्ट्स" + } + ], + "label.required": [ + { + "type": 0, + "value": "अपेक्षित" + } + ], + "label.reset": [ + { + "type": 0, + "value": "रीसेट" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "आँकड़े रीसेट करें" + } + ], + "label.retention": [ + { + "type": 0, + "value": "पुनः आगमन" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "यह मापें कि उपयोगकर्ता कितनी बार आपकी वेबसाइट पर लौटते हैं।" + } + ], + "label.revenue": [ + { + "type": 0, + "value": "राजस्व" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "समय के साथ अपने राजस्व को देखें।" + } + ], + "label.role": [ + { + "type": 0, + "value": "भूमिका" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "प्रश्न चलाएँ" + } + ], + "label.save": [ + { + "type": 0, + "value": "सहेजें" + } + ], + "label.screens": [ + { + "type": 0, + "value": "स्क्रीन" + } + ], + "label.search": [ + { + "type": 0, + "value": "खोजें" + } + ], + "label.select": [ + { + "type": 0, + "value": "चुनें" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "तिथि चुनें" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "फ़िल्टर चुनें" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "भूमिका चुनें" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "वेबसाइट चुनें" + } + ], + "label.session": [ + { + "type": 0, + "value": "सत्र" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "सत्र डेटा" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "सत्र" + } + ], + "label.settings": [ + { + "type": 0, + "value": "समायोजन" + } + ], + "label.share": [ + { + "type": 0, + "value": "साझा करें" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "यूआरएल साझा करें" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "एक दिन" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "स्रोत" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "प्रारंभिक चरण" + } + ], + "label.steps": [ + { + "type": 0, + "value": "चरण" + } + ], + "label.sum": [ + { + "type": 0, + "value": "योग" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "टैबलेट" + } + ], + "label.tag": [ + { + "type": 0, + "value": "टैग" + } + ], + "label.tags": [ + { + "type": 0, + "value": "टैग्स" + } + ], + "label.team": [ + { + "type": 0, + "value": "टीम" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "टीम आईडी" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "टीम प्रबंधक" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "टीम सदस्य" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "टीम नाम" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "टीम मालिक" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "टीम सेटिंग्स" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "केवल टीम देखें" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "टीम वेबसाइट्स" + } + ], + "label.teams": [ + { + "type": 0, + "value": "टीमें" + } + ], + "label.terms": [ + { + "type": 0, + "value": "शर्तें" + } + ], + "label.theme": [ + { + "type": 0, + "value": "थीम" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "इस महीने" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "इस सप्ताह" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "इस साल" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "समय क्षेत्र" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "आज" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "ट्रैकिंग कोड" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "अद्वितीय आगंतुकों" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "अज्ञात" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "उपयोगकर्ता नाम" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "विवरण देखें" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "दृश्य" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "औसत दृश्य समय" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "आगंतुकों" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "वेबसाइटों" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " मौजूद " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "आगंतुक" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "आगंतुकों" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "क्या आप वाकई में " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " हटाना चाहते हैं?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "सभी संबद्ध डेटा को भी हटा दिया जाएगा।" + } + ], + "message.error": [ + { + "type": 0, + "value": "कुछ गलत हो गया।" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "समायोजन में जाइए" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "ग़लत उपयोगकर्ता नाम / पासवर्ड।" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "अमान्य डोमेन" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "कोई डेटा उपलब्ध नहीं है।" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "पासवर्ड मेल नहीं खाते" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "आपके पास कोई वेबसाइट कॉन्फ़िगर नहीं है।" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "पृष्ठ नहीं मिला।" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "सफलतापूर्वक संचित कर लिया गया है।" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "यह " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " के लिए सार्वजनिक रूप से साझा किया गया URL है।" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "ट्रैकिंग कोड" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " का आगंतुक, जो " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " का उपयोग करता है, " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " यन्त्र पर" + } + ] +} diff --git a/public/intl/messages/hr-HR.json b/public/intl/messages/hr-HR.json new file mode 100644 index 0000000..a6ad750 --- /dev/null +++ b/public/intl/messages/hr-HR.json @@ -0,0 +1,2236 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Pristupni kod" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Akcije" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Dnevnik aktivnosti" + } + ], + "label.add": [ + { + "type": 0, + "value": "Dodaj" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Dodaj ploču" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Dodaj opis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Dodaj člana" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Dodaj korak" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Dodaj web stranicu" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Nakon" + } + ], + "label.all": [ + { + "type": 0, + "value": "Sve" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Svo vrijeme" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitika" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Primijeni" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribucija" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Pogledajte kako korisnici komuniciraju s vašim marketingom i što dovodi do konverzija." + } + ], + "label.average": [ + { + "type": 0, + "value": "Prosjek" + } + ], + "label.back": [ + { + "type": 0, + "value": "Natrag " + } + ], + "label.before": [ + { + "type": 0, + "value": "Prije" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Ploče" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Stopa napuštanja" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Raspad" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Preglednik" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Preglednici" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanje" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Odustani" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Promijeni lozinku" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanali" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Gradovi" + } + ], + "label.city": [ + { + "type": 0, + "value": "Grad" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Očisti sve" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorta" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Usporedi" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Usporedi datume" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potvrdi" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potvrdi lozinku" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Sadržaj" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Nastavi" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konverzija" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Stopa konverzije" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Korak konverzije" + } + ], + "label.count": [ + { + "type": 0, + "value": "Broj" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Countries" + } + ], + "label.country": [ + { + "type": 0, + "value": "Država" + } + ], + "label.create": [ + { + "type": 0, + "value": "Kreiraj" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Kreiraj izvještaj" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Kreiraj tim" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Kreiraj korisnika" + } + ], + "label.created": [ + { + "type": 0, + "value": "Kreirano" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Kreirao" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Trenutno" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Trenutna lozinka" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Prilagođeni raspon" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Nadzorna ploča" + } + ], + "label.data": [ + { + "type": 0, + "value": "Podaci" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Raspon datuma" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dan" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Zadani datumski raspon" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Obriši" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Obriši izvještaj" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Obriši tim" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Obriši korisnika" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Obriši web stranicu" + } + ], + "label.description": [ + { + "type": 0, + "value": "Opis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Stolno računalo" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalji" + } + ], + "label.device": [ + { + "type": 0, + "value": "Uređaj" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Uređaji" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direktno" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Odbaci" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Jedinstveni ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Ne sadrži" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Ne uključuje" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Ne postoji" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domena" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Odlazak" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Uredi" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Uredi nadzornu ploču" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Uredi člana" + } + ], + "label.email": [ + { + "type": 0, + "value": "E-mail" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Omogući dijeljenje poveznice" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Završni korak" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Ulazni URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Događaj" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Podaci događaja" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Naziv događaja" + } + ], + "label.events": [ + { + "type": 0, + "value": "Events" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Postoji" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Izlazni URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Netočno" + } + ], + "label.field": [ + { + "type": 0, + "value": "Polje" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Polja" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combined" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Raw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filteri" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Prvi klik" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Prvi put viđeno" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Lijevak" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Razumite stopu konverzije i odlaska korisnika." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Ljevci" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cilj" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ciljevi" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Pratite svoje ciljeve za prikaze stranica i događaje." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Veće od" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Veće ili jednako" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grupirano" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Naziv hosta" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Uključuje" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Uvid" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Uvidi" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dublje analizirajte svoje podatke pomoću segmenata i filtera." + } + ], + "label.is": [ + { + "type": 0, + "value": "Je" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Je netočno" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nije" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nije postavljeno" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Postavljeno" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Je točno" + } + ], + "label.join": [ + { + "type": 0, + "value": "Pridruži se" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Pridruži se timu" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Putovanje" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Razumite kako korisnici navigiraju vašom web stranicom." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Putovanja" + } + ], + "label.language": [ + { + "type": 0, + "value": "Jezik" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Zadnji klik" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dana" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " sati" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mjeseci" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Zadnji put viđeno" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Napusti" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Napusti tim" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Manje od" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Manje ili jednako" + } + ], + "label.links": [ + { + "type": 0, + "value": "Poveznice" + } + ], + "label.login": [ + { + "type": 0, + "value": "Prijava" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Odjava" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Upravljaj" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Upravitelj" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maksimum" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Proširi" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Srednje" + } + ], + "label.member": [ + { + "type": 0, + "value": "Član" + } + ], + "label.members": [ + { + "type": 0, + "value": "Članovi" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimum" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Više" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Moj račun" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Moje web stranice" + } + ], + "label.name": [ + { + "type": 0, + "value": "Ime" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nova lozinka" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nijedan" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "zapis" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "zapisa" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organsko pretraživanje" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organska kupovina" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organska društvena mreža" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organski videozapis" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Ostalo" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Pregled" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Vlasnik" + } + ], + "label.page": [ + { + "type": 0, + "value": "Stranica" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Stranica " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " od " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Page views" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pages" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Plaćeni oglasi" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Plaćeno pretraživanje" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Plaćena kupovina" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Plaćena društvena mreža" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Plaćeni videozapis" + } + ], + "label.password": [ + { + "type": 0, + "value": "Lozinka" + } + ], + "label.path": [ + { + "type": 0, + "value": "Putanja" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Putanje" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pikseli" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Svojstva" + } + ], + "label.property": [ + { + "type": 0, + "value": "Svojstvo" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Upiti" + } + ], + "label.query": [ + { + "type": 0, + "value": "Upit" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametri upita" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Stvarno vrijeme" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Preporuka" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Osvježi" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Preostalo" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Potrebna" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Resetirati" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Resetirati web stranicu" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Prihod" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Pogledajte svoj prihod tijekom vremena." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Spremi" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekrani" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Odaberi filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesija" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Podaci sesije" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Postavke" + } + ], + "label.share": [ + { + "type": 0, + "value": "Podijeli" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Podijeli poveznicu" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Jedan dan" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Izvori" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Početni korak" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Koraci" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Oznaka" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Oznake" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Postavke tima" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Pojmovi" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Ovaj mjesec" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Ovaj tjedan" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Ova godina" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Vremenska zona" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Danas" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kod za praćenje" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unique visitors" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Nepoznato" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Korisničko ime" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Pogledaj detalje" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Views" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitors" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Web stranice" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Jučer" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Trenutno " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "posjetitelj" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "posjetitelja" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Jeste li sigurni da želite obrisati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Jeste li sigurni da želite resetirati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistiku?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "All website data will be deleted." + } + ], + "message.error": [ + { + "type": 0, + "value": "Something went wrong." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Idi u postavke" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Neispravno korisničke ime/lozinka." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Invalid domain. Do not include http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nema dostupnih podataka." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwords do not match." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "You do not have any websites configured." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Stranica nije pronađena." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your settings will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Saved." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Ovo je javno dijeljena poveznica za " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "To track stats for this website, place the following code in the " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " section of your HTML." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitor from " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " using " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/hu-HU.json b/public/intl/messages/hu-HU.json new file mode 100644 index 0000000..3a228f8 --- /dev/null +++ b/public/intl/messages/hu-HU.json @@ -0,0 +1,2226 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Hozzáférési kód" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Műveletek" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Tevékenységnapló" + } + ], + "label.add": [ + { + "type": 0, + "value": "Hozzáadás" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Tábla hozzáadása" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Leírás hozzáadása" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Tag hozzáadása" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Lépés hozzáadása" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Weboldal hozzáadása" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Adminisztrátor" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Után" + } + ], + "label.all": [ + { + "type": 0, + "value": "Összes" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Minden időszak" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitika" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Alkalmaz" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribúció" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Nézze meg, hogyan lépnek kapcsolatba a felhasználók a marketingjével, és mi vezet konverzióhoz." + } + ], + "label.average": [ + { + "type": 0, + "value": "Átlag" + } + ], + "label.back": [ + { + "type": 0, + "value": "Vissza" + } + ], + "label.before": [ + { + "type": 0, + "value": "Előtt" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Táblák" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Visszafordulási arány" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Bontás" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Böngésző" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Böngészők" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampányok" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Mégsem" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Jelszó módosítása" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Csatornák" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Városok" + } + ], + "label.city": [ + { + "type": 0, + "value": "Város" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Összes törlése" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorsz" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Összehasonlít" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Dátumok összehasonlítása" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Megerősít" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Jelszó megerősítése" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Tartalom" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Folytatás" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konverzió" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konverziós arány" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konverziós lépés" + } + ], + "label.count": [ + { + "type": 0, + "value": "Darabszám" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Országok" + } + ], + "label.country": [ + { + "type": 0, + "value": "Ország" + } + ], + "label.create": [ + { + "type": 0, + "value": "Létrehozás" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Jelentés létrehozása" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Csapat létrehozása" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Felhasználó létrehozása" + } + ], + "label.created": [ + { + "type": 0, + "value": "Létrehozva" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Létrehozta" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Pénznem" + } + ], + "label.current": [ + { + "type": 0, + "value": "Jelenlegi" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Jelenlegi jelszó" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Egyedi tartomány" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Áttekintés" + } + ], + "label.data": [ + { + "type": 0, + "value": "Adat" + } + ], + "label.date": [ + { + "type": 0, + "value": "Dátum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Időintervallum" + } + ], + "label.day": [ + { + "type": 0, + "value": "Nap" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Alapértelmezett időintervallum" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Eltávolítás" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Jelentés törlése" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Csapat törlése" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Felhasználó törlése" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Weboldal eltávolítása" + } + ], + "label.description": [ + { + "type": 0, + "value": "Leírás" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Asztali számítógép" + } + ], + "label.details": [ + { + "type": 0, + "value": "Részletek" + } + ], + "label.device": [ + { + "type": 0, + "value": "Eszköz" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Eszközök" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Közvetlen" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Mellőzés" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Egyedi azonosító" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Nem tartalmazza" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Nem tartalmazza" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Nem létezik" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Lemorzsolódás" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Módosítás" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Irányítópult szerkesztése" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Tag szerkesztése" + } + ], + "label.email": [ + { + "type": 0, + "value": "E-mail" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "URL-megosztás engedélyezése" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Befejező lépés" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Belépési URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Esemény" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Eseményadatok" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Esemény neve" + } + ], + "label.events": [ + { + "type": 0, + "value": "Események" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Létezik" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Kilépési URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Hamis" + } + ], + "label.field": [ + { + "type": 0, + "value": "Mező" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Mezők" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Összevont" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Nyers" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Szűrők" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Első kattintás" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Első megtekintés" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Tölcsér" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Értse meg a felhasználók konverziós és lemorzsolódási arányát." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Tölcsérek" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cél" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Célok" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Kövesse nyomon a céljait oldalmegtekintések és események alapján." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Nagyobb mint" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Nagyobb vagy egyenlő" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Csoportosítva" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hosztnév" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Tartalmazza" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Betekintés" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Betekintések" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Merüljön el mélyebben az adataiban szegmensek és szűrők használatával." + } + ], + "label.is": [ + { + "type": 0, + "value": "Az" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Hamis" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nem az" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nincs beállítva" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Beállítva" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Igaz" + } + ], + "label.join": [ + { + "type": 0, + "value": "Csatlakozás" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Csatlakozás a csapathoz" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Út" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Értse meg, hogyan navigálnak a felhasználók a weboldalán." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Utak" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Utolsó kattintás" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Legutóbbi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " nap" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Legutóbbi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " óra" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Utolsó " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hónap" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Utoljára látva" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Kilépés" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Csapat elhagyása" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Kevesebb mint" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Kevesebb vagy egyenlő" + } + ], + "label.links": [ + { + "type": 0, + "value": "Linkek" + } + ], + "label.login": [ + { + "type": 0, + "value": "Bejelentkezés" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Kijelentkezés" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Kezelés" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Menedzser" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maximum" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Kibontás" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Közepes" + } + ], + "label.member": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.members": [ + { + "type": 0, + "value": "Tagok" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimum" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Telefon" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Bővebben" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Saját fiók" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Saját weboldalak" + } + ], + "label.name": [ + { + "type": 0, + "value": "Név" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Új jelszó" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nincs" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "rekord" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "rekord" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organikus keresés" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organikus vásárlás" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organikus közösségi" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organikus videó" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Egyéb" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Áttekintés" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Tulajdonos" + } + ], + "label.page": [ + { + "type": 0, + "value": "Oldal" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Oldal " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " / " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Oldalmegtekintések" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Oldalak" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Fizetett hirdetések" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Fizetett keresés" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Fizetett vásárlás" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Fizetett közösségi" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Fizetett videó" + } + ], + "label.password": [ + { + "type": 0, + "value": "Jelszó" + } + ], + "label.path": [ + { + "type": 0, + "value": "Útvonal" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Útvonalak" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixelek" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Működteti az " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Tulajdonságok" + } + ], + "label.property": [ + { + "type": 0, + "value": "Tulajdonság" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Lekérdezések" + } + ], + "label.query": [ + { + "type": 0, + "value": "Lekérdezés" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Lekérdezési paraméterek" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Valós idejű" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Hivatkozás" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Hivatkozók" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Frissítés" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Hátralévő" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Kötelező" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Visszaállítás" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Bevétel" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Tekintse meg bevételeit az idő múlásával." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Mentés" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Képernyők" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Szűrő kiválasztása" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Munkamenet" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Munkamenet adatai" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Beállítások" + } + ], + "label.share": [ + { + "type": 0, + "value": "Megosztás" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL megosztása" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Egy nap" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Források" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Kezdő lépés" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Lépések" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Táblagép" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Címke" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Címkék" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Csapat beállításai" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Kifejezések" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Ezen hónap" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Ezen hét" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Ezen év" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Időzóna" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Ma" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Követési kód" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Egyedi látogatók" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Ismeretlen" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Felhasználónév" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Részletek" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Megtekintések" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Átlagos látogatási idő" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Látogatók" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Weboldalak" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "látogató" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "latógató" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " jelenleg" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Biztos, hogy törölni szeretnéd " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " elemet?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Minden társított adat törlésre kerül." + } + ], + "message.error": [ + { + "type": 0, + "value": "Valami baj történt." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Tovább a beállításokhoz" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Érvénytelen felhasználónév/jelszó." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Érvénytelen domain" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nincs rendelkezésre álló adat." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "A jelszavak nem egyeznek" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Még nem állítottál be egyetlen weboldalt sem." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Oldal nem található." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Sikeres mentés." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " nyilvánosan megosztott URL címe." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Követési kód" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Látógató " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " területéről, " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " eszközön, " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " böngészőből." + } + ] +} diff --git a/public/intl/messages/id-ID.json b/public/intl/messages/id-ID.json new file mode 100644 index 0000000..1dad740 --- /dev/null +++ b/public/intl/messages/id-ID.json @@ -0,0 +1,2186 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Kode akses" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Aksi" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Catatan aktivitas" + } + ], + "label.add": [ + { + "type": 0, + "value": "Tambah" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Tambah papan" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Tambah deskripsi" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Tambah anggota" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Tambah langkah" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Tambah situs web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Pengelola" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliasi" + } + ], + "label.after": [ + { + "type": 0, + "value": "Setelah" + } + ], + "label.all": [ + { + "type": 0, + "value": "Semua" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Semua waktu" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitik" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Terapkan" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribusi" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Lihat bagaimana pengguna berinteraksi dengan pemasaran Anda dan apa yang mendorong konversi." + } + ], + "label.average": [ + { + "type": 0, + "value": "Rata-rata" + } + ], + "label.back": [ + { + "type": 0, + "value": "Kembali" + } + ], + "label.before": [ + { + "type": 0, + "value": "Sebelum" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Papan" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Rasio pentalan" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Rincian" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Peramban" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Peramban" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanye" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Batal" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Ganti kata sandi" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Saluran" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Kota" + } + ], + "label.city": [ + { + "type": 0, + "value": "Kota" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Hapus semua" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kelompok" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Bandingkan" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Bandingkan tanggal" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Konfirmasi" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Konfirmasi kata sandi" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Mengandung" + } + ], + "label.content": [ + { + "type": 0, + "value": "Konten" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Lanjutkan" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konversi" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Tingkat konversi" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Langkah konversi" + } + ], + "label.count": [ + { + "type": 0, + "value": "Jumlah" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Negara" + } + ], + "label.country": [ + { + "type": 0, + "value": "Negara" + } + ], + "label.create": [ + { + "type": 0, + "value": "Buat" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Buat laporan" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Buat tim" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Buat pengguna" + } + ], + "label.created": [ + { + "type": 0, + "value": "Dibuat" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Dibuat oleh" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Mata uang" + } + ], + "label.current": [ + { + "type": 0, + "value": "Saat ini" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Kata sandi sekarang" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Rentang khusus" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dasbor" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Tanggal" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Rentang tanggal" + } + ], + "label.day": [ + { + "type": 0, + "value": "Hari" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Rentang tanggal bawaan" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Hapus" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Hapus laporan" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Hapus tim" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Hapus pengguna" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Hapus situs web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Deskripsi" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detail" + } + ], + "label.device": [ + { + "type": 0, + "value": "Perangkat" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Perangkat" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Langsung" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Tutup" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID unik" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Tidak mengandung" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Tidak termasuk" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Tidak ada" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Penurunan" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Sunting" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Sunting dasbor" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Sunting anggota" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Aktifkan URL berbagi" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Langkah akhir" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL masuk" + } + ], + "label.event": [ + { + "type": 0, + "value": "Peristiwa" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Data peristiwa" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nama peristiwa" + } + ], + "label.events": [ + { + "type": 0, + "value": "Peristiwa" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Ada" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Salah" + } + ], + "label.field": [ + { + "type": 0, + "value": "Kolom" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Kolom" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Gabungan" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Mentah" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Klik pertama" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Pertama kali dilihat" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Pahami tingkat konversi dan penurunan pengguna." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Corong" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Tujuan" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Tujuan" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Lacak tujuan Anda untuk tampilan halaman dan peristiwa." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Lebih dari" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Lebih dari atau sama dengan" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Dikelompokkan" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nama host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Termasuk" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Wawasan" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Wawasan" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Jelajahi data Anda lebih dalam dengan menggunakan segmen dan filter." + } + ], + "label.is": [ + { + "type": 0, + "value": "Adalah" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Salah" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Bukan" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Tidak diatur" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Diatur" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Benar" + } + ], + "label.join": [ + { + "type": 0, + "value": "Gabung" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Gabung tim" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Perjalanan" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Pahami bagaimana pengguna menavigasi situs web Anda." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Perjalanan" + } + ], + "label.language": [ + { + "type": 0, + "value": "Bahasa" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Bahasa" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Klik terakhir" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hari terakhir" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " jam terakhir" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " bulan terakhir" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Terakhir kali dilihat" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Keluar" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Keluar dari tim" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Kurang dari" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Kurang dari atau sama dengan" + } + ], + "label.links": [ + { + "type": 0, + "value": "Tautan" + } + ], + "label.login": [ + { + "type": 0, + "value": "Masuk" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Keluar" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Kelola" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manajer" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maksimum" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Perluas" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Sedang" + } + ], + "label.member": [ + { + "type": 0, + "value": "Anggota" + } + ], + "label.members": [ + { + "type": 0, + "value": "Anggota" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimum" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Ponsel" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Lebih banyak" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Akun saya" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Situs web saya" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nama" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Kata sandi baru" + } + ], + "label.none": [ + { + "type": 0, + "value": "Tidak ada" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "catatan" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "catatan" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Pencarian organik" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Belanja organik" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Sosial organik" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Video organik" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Lainnya" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Tinjauan umum" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Pemilik" + } + ], + "label.page": [ + { + "type": 0, + "value": "Halaman" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Halaman " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " dari " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Tampilan halaman" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Judul halaman" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Halaman" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Iklan berbayar" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Pencarian berbayar" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Belanja berbayar" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Sosial berbayar" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Video berbayar" + } + ], + "label.password": [ + { + "type": 0, + "value": "Kata sandi" + } + ], + "label.path": [ + { + "type": 0, + "value": "Jalur" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Jalur" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Piksel" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Didukung oleh " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Sebelumnya" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Periode sebelumnya" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Tahun lalu" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properti" + } + ], + "label.property": [ + { + "type": 0, + "value": "Properti" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Kueri" + } + ], + "label.query": [ + { + "type": 0, + "value": "Kueri" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parameter kueri" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Waktu nyata" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Rujukan" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Perujuk" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Perujuk" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Segarkan" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Buat ulang" + } + ], + "label.region": [ + { + "type": 0, + "value": "Wilayah" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Wilayah" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Tersisa" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Hapus" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Hapus anggota" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Laporan" + } + ], + "label.required": [ + { + "type": 0, + "value": "Wajib" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Atur ulang" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Atur ulang statistik" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retensi" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Ukur daya tarik situs web Anda dengan melacak seberapa sering pengguna kembali." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Pendapatan" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Lihat pendapatan Anda seiring waktu." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Simpan" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Layar" + } + ], + "label.search": [ + { + "type": 0, + "value": "Cari" + } + ], + "label.select": [ + { + "type": 0, + "value": "Pilih" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Pilih tanggal" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Pilih filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Pilih role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Pilih situs web" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesi" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Data sesi" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesi" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Pengaturan" + } + ], + "label.share": [ + { + "type": 0, + "value": "Bagikan" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Bagikan URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Sehari" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sumber" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Langkah awal" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Langkah" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.team": [ + { + "type": 0, + "value": "Tim" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID tim" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Pengelola tim" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Anggota tim" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nama tim" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Pemilik tim" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Pengaturan tim" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Situs web tim" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Tim" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Ketentuan" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Bulan ini" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Minggu ini" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Tahun ini" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zona waktu" + } + ], + "label.title": [ + { + "type": 0, + "value": "Judul" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hari ini" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Buka grafik" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total baris" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kode lacak" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transaksi" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer situs web" + } + ], + "label.true": [ + { + "type": 0, + "value": "Benar" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tipe" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unik" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Pengunjung unik" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Kustomer unik" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Tidak diketahui" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Tanpa judul" + } + ], + "label.update": [ + { + "type": 0, + "value": "Perbarui" + } + ], + "label.user": [ + { + "type": 0, + "value": "Pengguna" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nama pengguna" + } + ], + "label.users": [ + { + "type": 0, + "value": "Pengguna" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Lacak kampanye Anda melalui parameter UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Nilai" + } + ], + "label.view": [ + { + "type": 0, + "value": "Lihat" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Lihat Detil" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Hanya melihat" + } + ], + "label.views": [ + { + "type": 0, + "value": "Tampilan" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Tampilan per kunjungan" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Waktu kunjungan rata-rata" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Pengunjung" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Kunjungan" + } + ], + "label.website": [ + { + "type": 0, + "value": "Situs web" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID situs web" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Situs web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Kemarin" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Ketik " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " pada kotak di bawah untuk mengonfirmasi." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " pengunjung saat ini" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Data dikumpulkan" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Apakah kamu yakin ingin menghapus " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Apakah Anda yakin ingin meninggalkan " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Apakah Anda yakin ingin menghapus " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Anda yakin ingin mengatur ulang statistik " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Menghapus tim juga akan menghapus semua situs web yang terkait." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Semua data terkait juga akan dihapus." + } + ], + "message.error": [ + { + "type": 0, + "value": "Ada yang salah." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Pergi ke pengaturan" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nama pengguna/kata sandi salah." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domain tidak valid" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimal " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " karakter" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Versi baru dari Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " telah tersedia!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Tidak ada data." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Tidak ada data peristiwa" + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Kata sandi tidak cocok" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Tidak ada hasil yang ditemukan." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Tim ini tidak memiliki situs web." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Anda belum membuat tim." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Tidak ada pengguna." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Anda tidak memiliki situs web yang dikonfigurasi." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Halaman tidak ditemukan." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Untuk mengatur ulang situs web ini, ketik " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " pada kotak di bawah untuk mengonfirmasi." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Semua statistik pada situs web ini akan dihapus, tetapi kode lacak akan tetap terpasang" + } + ], + "message.saved": [ + { + "type": 0, + "value": "Berhasil disimpan." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Ini adalah URL yang dibagikan secara publik untuk " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Anda sudah menjadi anggota tim ini." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Tim tidak ditemukan." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Situs web dapat dilihat oleh semua anggota tim." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Kode lacak" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer situs web ini ke akun Anda?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Pilih tim tujuan untuk mentransfer situs web ini." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer kepemilikan situs web ke akun Anda atau tim lain" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Peristiwa terjadi" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Pengguna telah dihapus." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Halaman dilihat" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Pengunjung dari " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " dengan " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " di " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "os" + } + ] +} diff --git a/public/intl/messages/it-IT.json b/public/intl/messages/it-IT.json new file mode 100644 index 0000000..40cac07 --- /dev/null +++ b/public/intl/messages/it-IT.json @@ -0,0 +1,2226 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Codice di accesso" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Azioni" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Registro attività" + } + ], + "label.add": [ + { + "type": 0, + "value": "Aggiungi" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Aggiungi bacheca" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Aggiungi descrizione" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Aggiungi membro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Aggiungi passaggio" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Aggiungi sito" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Amministratore" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliato" + } + ], + "label.after": [ + { + "type": 0, + "value": "Dopo" + } + ], + "label.all": [ + { + "type": 0, + "value": "Tutto" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Sempre" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitica" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Applica" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribuzione" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Scopri come gli utenti interagiscono con il tuo marketing e cosa genera conversioni." + } + ], + "label.average": [ + { + "type": 0, + "value": "Media" + } + ], + "label.back": [ + { + "type": 0, + "value": "Indietro" + } + ], + "label.before": [ + { + "type": 0, + "value": "Prima" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Bacheche" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Frequenza di rimbalzo" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Dettaglio" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campagne" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Annulla" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Modifica password" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canali" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Città" + } + ], + "label.city": [ + { + "type": 0, + "value": "Città" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Cancella tutto" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Coorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Confronta" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Confronta date" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Conferma" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Conferma password" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Contenuto" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continua" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversione" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Tasso di conversione" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Passaggio di conversione" + } + ], + "label.count": [ + { + "type": 0, + "value": "Conteggio" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Nazioni" + } + ], + "label.country": [ + { + "type": 0, + "value": "Paese" + } + ], + "label.create": [ + { + "type": 0, + "value": "Crea" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Crea rapporto" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Crea team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Crea utente" + } + ], + "label.created": [ + { + "type": 0, + "value": "Creato" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creato da" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Attuale" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Password attuale" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Personalizzato" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Pannello di Controllo" + } + ], + "label.data": [ + { + "type": 0, + "value": "Dati" + } + ], + "label.date": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Periodo" + } + ], + "label.day": [ + { + "type": 0, + "value": "Giorno" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Periodo standard" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Elimina" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Elimina rapporto" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Elimina team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Elimina utente" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Elimina sito" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descrizione" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Dettagli" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispositivo" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositivi" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Diretto" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Scarta" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distinto" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Non contiene" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Non include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Non esiste" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Dominio" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Abbandono" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Modifica" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Modifica pannello di controllo" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Modifica membro" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Abilita URL di condivisione" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Passaggio finale" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL di ingresso" + } + ], + "label.event": [ + { + "type": 0, + "value": "Evento" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dati evento" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nome evento" + } + ], + "label.events": [ + { + "type": 0, + "value": "Eventi" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Esiste" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL di uscita" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falso" + } + ], + "label.field": [ + { + "type": 0, + "value": "Campo" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Campi" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Aggregati" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Raw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtri" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primo clic" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Prima visualizzazione" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Comprendi il tasso di conversione e di abbandono degli utenti." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Obiettivo" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Obiettivi" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Tieni traccia dei tuoi obiettivi per visualizzazioni di pagina ed eventi." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Maggiore di" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Maggiore o uguale a" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Raggruppato" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nome host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Include" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Approfondimento" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Approfondimenti" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Analizza più a fondo i tuoi dati utilizzando segmenti e filtri." + } + ], + "label.is": [ + { + "type": 0, + "value": "È" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "È falso" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Non è" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Non impostato" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Impostato" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "È vero" + } + ], + "label.join": [ + { + "type": 0, + "value": "Unisciti" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Unisciti al team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Percorso" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Comprendi come gli utenti navigano nel tuo sito web." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Percorsi" + } + ], + "label.language": [ + { + "type": 0, + "value": "Lingua" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Lingue" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portatile" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Ultimo clic" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Ultimi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " giorni" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Ultime " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ore" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Ultimi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mesi" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Ultima visualizzazione" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Lascia" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Lascia il team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Meno di" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Meno o uguale a" + } + ], + "label.links": [ + { + "type": 0, + "value": "Link" + } + ], + "label.login": [ + { + "type": 0, + "value": "Accedi" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Esci" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Gestisci" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Massimo" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Espandi" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medio" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membro" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membri" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimo" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Cellulare" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Dettagli" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Il mio account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "I miei siti" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nome" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nuova password" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nessuno" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Ricerca organica" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Acquisto organico" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social organico" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Video organico" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Altro" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Proprietario" + } + ], + "label.page": [ + { + "type": 0, + "value": "Pagina" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Visualizzazioni di pagina" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pagine" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Annunci a pagamento" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Ricerca a pagamento" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Acquisto a pagamento" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social a pagamento" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Video a pagamento" + } + ], + "label.password": [ + { + "type": 0, + "value": "Password" + } + ], + "label.path": [ + { + "type": 0, + "value": "Percorso" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Percorsi" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixel" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profilo" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Proprietà" + } + ], + "label.property": [ + { + "type": 0, + "value": "Proprietà" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametri query" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Tempo reale" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referente" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Ricarica" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Rimanente" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obbligatorio" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reset" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Resetta le statistiche" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Ricavi" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Consulta i tuoi ricavi nel tempo." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Salva" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Schermi" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Seleziona filtro" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Dati sessione" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Impostazioni" + } + ], + "label.share": [ + { + "type": 0, + "value": "Condividi" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Condividi link" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Singolo giorno" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Fonti" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etichetta" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etichette" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Impostazioni team" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termini" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Questo mese" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Questa settimana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Quest'anno" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Fuso orario" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Oggi" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Apri/Chiudi i grafici" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Codice di tracking" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitatori unici" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Sconosciuto" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nome utente" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Vedi dettagli" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visualizzazioni" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo medio di visita" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitatori" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Siti web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Ieri" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitatore" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitatori" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " online" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Sei sicuro di voler eliminare " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Sei sicuro di voler azzerare le statistiche di " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Saranno eliminati anche tutti i dati associati." + } + ], + "message.error": [ + { + "type": 0, + "value": "Si è verificato un errore." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Vai alle impostazioni" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Username o password non corretti." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Dominio non valido" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nessun dato disponibile." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Le password non corrispondono" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Non hai ancora configurato alcun sito." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Pagina non trovata" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Tutte le statistiche verranno cancellate per questo sito, ma il tuo codice di tracciamento rimarrà invariato." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Salvato!" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Questo è l'URL di condivisione per " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Codice di tracking" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Utenti da " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " tramite " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " su " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ja-JP.json b/public/intl/messages/ja-JP.json new file mode 100644 index 0000000..9b7b2e7 --- /dev/null +++ b/public/intl/messages/ja-JP.json @@ -0,0 +1,2212 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "アクセスコード" + } + ], + "label.actions": [ + { + "type": 0, + "value": "アクション" + } + ], + "label.activity": [ + { + "type": 0, + "value": "アクティビティログ" + } + ], + "label.add": [ + { + "type": 0, + "value": "追加" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "ボードを追加" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "説明を追加" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "メンバーの追加" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "ステップを追加" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Webサイトの追加" + } + ], + "label.admin": [ + { + "type": 0, + "value": "管理者" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "アフィリエイト" + } + ], + "label.after": [ + { + "type": 0, + "value": "直後" + } + ], + "label.all": [ + { + "type": 0, + "value": "すべて" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "すべての時間帯" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "アナリティクス" + } + ], + "label.apply": [ + { + "type": 0, + "value": "適用" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "アトリビューション" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "ユーザーがあなたのマーケティングにどのように関与し、何がコンバージョンを促進するかを確認します。" + } + ], + "label.average": [ + { + "type": 0, + "value": "平均" + } + ], + "label.back": [ + { + "type": 0, + "value": "戻る" + } + ], + "label.before": [ + { + "type": 0, + "value": "直前" + } + ], + "label.boards": [ + { + "type": 0, + "value": "ボード" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "直帰率" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "故障" + } + ], + "label.browser": [ + { + "type": 0, + "value": "ブラウザ" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "ブラウザ" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "キャンペーン" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "キャンセル" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "パスワードの変更" + } + ], + "label.channels": [ + { + "type": 0, + "value": "チャンネル" + } + ], + "label.cities": [ + { + "type": 0, + "value": "都市" + } + ], + "label.city": [ + { + "type": 0, + "value": "都市" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "すべてクリア" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "コホート" + } + ], + "label.compare": [ + { + "type": 0, + "value": "比較" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "日付を比較" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "確認" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "パスワード(確認)" + } + ], + "label.contains": [ + { + "type": 0, + "value": "コンテンツ" + } + ], + "label.content": [ + { + "type": 0, + "value": "コンテンツ" + } + ], + "label.continue": [ + { + "type": 0, + "value": "続ける" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "コンバージョン" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "コンバージョン率" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "コンバージョンステップ" + } + ], + "label.count": [ + { + "type": 0, + "value": "回数" + } + ], + "label.countries": [ + { + "type": 0, + "value": "国名" + } + ], + "label.country": [ + { + "type": 0, + "value": "国" + } + ], + "label.create": [ + { + "type": 0, + "value": "作成" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "レポートの作成" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "チームの作成" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "ユーザーの作成" + } + ], + "label.created": [ + { + "type": 0, + "value": "作成されました" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "作成者" + } + ], + "label.currency": [ + { + "type": 0, + "value": "通貨" + } + ], + "label.current": [ + { + "type": 0, + "value": "現在" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "現在のパスワード" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "範囲指定" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "ダッシュボード" + } + ], + "label.data": [ + { + "type": 0, + "value": "データ" + } + ], + "label.date": [ + { + "type": 0, + "value": "日付" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "期間" + } + ], + "label.day": [ + { + "type": 0, + "value": "日" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "デフォルトの期間" + } + ], + "label.delete": [ + { + "type": 0, + "value": "削除" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "レポートの削除" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "チームの削除" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "ユーザーの削除" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Webサイトの削除" + } + ], + "label.description": [ + { + "type": 0, + "value": "説明" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "デスクトップ" + } + ], + "label.details": [ + { + "type": 0, + "value": "詳細情報" + } + ], + "label.device": [ + { + "type": 0, + "value": "デバイス" + } + ], + "label.devices": [ + { + "type": 0, + "value": "デバイス" + } + ], + "label.direct": [ + { + "type": 0, + "value": "ダイレクト" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "却下" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "識別ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "を含まない" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "含まない" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "存在しない" + } + ], + "label.domain": [ + { + "type": 0, + "value": "ドメイン" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "切り捨て" + } + ], + "label.edit": [ + { + "type": 0, + "value": "編集" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "ダッシュボードの編集" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "メンバーの編集" + } + ], + "label.email": [ + { + "type": 0, + "value": "メール" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "共有URLを有効にする" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "最終ステップ" + } + ], + "label.entry": [ + { + "type": 0, + "value": "訪問時のURL" + } + ], + "label.event": [ + { + "type": 0, + "value": "イベント" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "イベントデータ" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "イベント名" + } + ], + "label.events": [ + { + "type": 0, + "value": "イベント" + } + ], + "label.exists": [ + { + "type": 0, + "value": "存在する" + } + ], + "label.exit": [ + { + "type": 0, + "value": "退出時のURL" + } + ], + "label.false": [ + { + "type": 0, + "value": "偽" + } + ], + "label.field": [ + { + "type": 0, + "value": "フィールド" + } + ], + "label.fields": [ + { + "type": 0, + "value": "フィールド" + } + ], + "label.filter": [ + { + "type": 0, + "value": "フィルター" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "結合" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "RAW" + } + ], + "label.filters": [ + { + "type": 0, + "value": "フィルター" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "最初のクリック" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "初回ログイン" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "ファネル" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "ユーザーのコンバージョン率と離脱率を分析します。" + } + ], + "label.funnels": [ + { + "type": 0, + "value": "ファネル" + } + ], + "label.goal": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "ページビューとイベントの目標を追跡します。" + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "超過" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "以上" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "グループ化" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "ホスト名" + } + ], + "label.includes": [ + { + "type": 0, + "value": "含む" + } + ], + "label.insight": [ + { + "type": 0, + "value": "インサイト" + } + ], + "label.insights": [ + { + "type": 0, + "value": "インサイト" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "セグメントとフィルタを使用して、データをさらに詳しく分析します。" + } + ], + "label.is": [ + { + "type": 0, + "value": "に等しい" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "偽である" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "に等しくない" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "未設定" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "設定済み" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "真である" + } + ], + "label.join": [ + { + "type": 0, + "value": "参加" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "チームに参加" + } + ], + "label.journey": [ + { + "type": 0, + "value": "ジャーニー" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "ユーザーがWebサイト内をどのように移動するかを把握します。" + } + ], + "label.journeys": [ + { + "type": 0, + "value": "ジャーニー" + } + ], + "label.language": [ + { + "type": 0, + "value": "言語" + } + ], + "label.languages": [ + { + "type": 0, + "value": "言語" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "ノートPC" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "最後のクリック" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "過去" + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "日間" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "過去" + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "時間" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "過去" + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "月間" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "最終ログイン" + } + ], + "label.leave": [ + { + "type": 0, + "value": "離脱" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "チームを離脱" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "未満" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "以下" + } + ], + "label.links": [ + { + "type": 0, + "value": "リンク" + } + ], + "label.login": [ + { + "type": 0, + "value": "ログイン" + } + ], + "label.logout": [ + { + "type": 0, + "value": "ログアウト" + } + ], + "label.manage": [ + { + "type": 0, + "value": "管理" + } + ], + "label.manager": [ + { + "type": 0, + "value": "管理者" + } + ], + "label.max": [ + { + "type": 0, + "value": "最大" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "展開" + } + ], + "label.medium": [ + { + "type": 0, + "value": "メディア" + } + ], + "label.member": [ + { + "type": 0, + "value": "メンバー" + } + ], + "label.members": [ + { + "type": 0, + "value": "メンバー" + } + ], + "label.min": [ + { + "type": 0, + "value": "最小" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "携帯電話" + } + ], + "label.model": [ + { + "type": 0, + "value": "モデル" + } + ], + "label.more": [ + { + "type": 0, + "value": "もっと見る" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "マイアカウント" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "マイWebサイト" + } + ], + "label.name": [ + { + "type": 0, + "value": "名前" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "新しいパスワード" + } + ], + "label.none": [ + { + "type": 0, + "value": "なし" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "オーガニック検索" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "オーガニックショッピング" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "オーガニックソーシャル" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "オーガニックビデオ" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "その他" + } + ], + "label.overview": [ + { + "type": 0, + "value": "概要" + } + ], + "label.owner": [ + { + "type": 0, + "value": "所有者" + } + ], + "label.page": [ + { + "type": 0, + "value": "ページ" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "ページ " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": "/" + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "閲覧数" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "ページタイトル" + } + ], + "label.pages": [ + { + "type": 0, + "value": "ページ" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "有料広告" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "有料検索" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "有料ショッピング" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "有料ソーシャル" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "有料ビデオ" + } + ], + "label.password": [ + { + "type": 0, + "value": "パスワード" + } + ], + "label.path": [ + { + "type": 0, + "value": "パス" + } + ], + "label.paths": [ + { + "type": 0, + "value": "パス" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "ピクセル" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "以前" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "前期" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "前年" + } + ], + "label.profile": [ + { + "type": 0, + "value": "プロフィール" + } + ], + "label.properties": [ + { + "type": 0, + "value": "プロパティ" + } + ], + "label.property": [ + { + "type": 0, + "value": "プロパティ" + } + ], + "label.queries": [ + { + "type": 0, + "value": "クエリ" + } + ], + "label.query": [ + { + "type": 0, + "value": "クエリ" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "クエリパラメーター" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "リアルタイム" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "リファラー" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "リファラー" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "更新" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "再生成" + } + ], + "label.region": [ + { + "type": 0, + "value": "地域" + } + ], + "label.regions": [ + { + "type": 0, + "value": "地域" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "残り" + } + ], + "label.remove": [ + { + "type": 0, + "value": "削除" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "メンバーの削除" + } + ], + "label.reports": [ + { + "type": 0, + "value": "レポート" + } + ], + "label.required": [ + { + "type": 0, + "value": "必須" + } + ], + "label.reset": [ + { + "type": 0, + "value": "リセット" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Webサイトをリセットする" + } + ], + "label.retention": [ + { + "type": 0, + "value": "リテンション" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "ユーザーの再訪問回数を記録して、Webサイトのリテンション率を計測します。" + } + ], + "label.revenue": [ + { + "type": 0, + "value": "レベニュー" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "時間あたりの売上高を確認します。" + } + ], + "label.role": [ + { + "type": 0, + "value": "ロール" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "クエリ実行" + } + ], + "label.save": [ + { + "type": 0, + "value": "保存" + } + ], + "label.screens": [ + { + "type": 0, + "value": "画面サイズ" + } + ], + "label.search": [ + { + "type": 0, + "value": "検索" + } + ], + "label.select": [ + { + "type": 0, + "value": "選択" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "日付を選択" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "フィルターを選択" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "ロールを選択" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Webサイトを選択" + } + ], + "label.session": [ + { + "type": 0, + "value": "セッション" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "セッションデータ" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "セッション" + } + ], + "label.settings": [ + { + "type": 0, + "value": "設定" + } + ], + "label.share": [ + { + "type": 0, + "value": "共有" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "共有URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "一日" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "ソース" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "最初のステップ" + } + ], + "label.steps": [ + { + "type": 0, + "value": "ステップ" + } + ], + "label.sum": [ + { + "type": 0, + "value": "合計" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "タブレット" + } + ], + "label.tag": [ + { + "type": 0, + "value": "タグ" + } + ], + "label.tags": [ + { + "type": 0, + "value": "タグ" + } + ], + "label.team": [ + { + "type": 0, + "value": "チーム" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "チームID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "チーム管理者" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "チームメンバー" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "チーム名" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "チームオーナー" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "チーム設定" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "チーム表示のみ" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "チームのWebサイト" + } + ], + "label.teams": [ + { + "type": 0, + "value": "チーム" + } + ], + "label.terms": [ + { + "type": 0, + "value": "利用規約" + } + ], + "label.theme": [ + { + "type": 0, + "value": "テーマ" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "今月" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "今週" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "今年" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "タイムゾーン" + } + ], + "label.title": [ + { + "type": 0, + "value": "タイトル" + } + ], + "label.today": [ + { + "type": 0, + "value": "今日" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "グラフを切り替える" + } + ], + "label.total": [ + { + "type": 0, + "value": "累計" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "総記録数" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "トラッキングコード" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "トランザクション" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "移管" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Webサイトの移管" + } + ], + "label.true": [ + { + "type": 0, + "value": "真" + } + ], + "label.type": [ + { + "type": 0, + "value": "種別" + } + ], + "label.unique": [ + { + "type": 0, + "value": "ユニーク" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "ユニーク訪問者数" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "ユニーク顧客数" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "不明" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "無題" + } + ], + "label.update": [ + { + "type": 0, + "value": "更新" + } + ], + "label.user": [ + { + "type": 0, + "value": "ユーザー" + } + ], + "label.username": [ + { + "type": 0, + "value": "ユーザー名" + } + ], + "label.users": [ + { + "type": 0, + "value": "ユーザー" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "UTMパラメーターを使用してキャンペーンを追跡します。" + } + ], + "label.value": [ + { + "type": 0, + "value": "値" + } + ], + "label.view": [ + { + "type": 0, + "value": "表示" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "詳細を表示" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "表示のみ" + } + ], + "label.views": [ + { + "type": 0, + "value": "表示" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "訪問あたりの閲覧数" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "平均滞在時間" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "訪問者" + } + ], + "label.visits": [ + { + "type": 0, + "value": "訪問数" + } + ], + "label.website": [ + { + "type": 0, + "value": "Webサイト" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "WebサイトID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Webサイト" + } + ], + "label.window": [ + { + "type": 0, + "value": "ウィンドウ" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "昨日" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "承認する場合は、下のフォームに「" + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "」と入力してください。" + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "アクティブな訪問者" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "アクティブな訪問者" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "収集されたデータ" + } + ], + "message.confirm-delete": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "を削除してもよろしいですか?" + } + ], + "message.confirm-leave": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "から離脱してもよろしいですか?" + } + ], + "message.confirm-remove": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "を削除してもよろしいですか?" + } + ], + "message.confirm-reset": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "をリセットしてもよろしいですか?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "チームを削除すると、そのチームが管理しているWebサイトもすべて削除されます。" + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Webサイトのデータがすべて削除されます。" + } + ], + "message.error": [ + { + "type": 0, + "value": "未知のエラーが発生しました。" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "url" + }, + { + "type": 0, + "value": "の" + }, + { + "type": 1, + "value": "event" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "設定に移動する" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "ユーザー名またはパスワードが間違っています。" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "無効なドメインです。http/httpsを含めないでください。" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "最小文字数は" + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": "文字です" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Umamiの新しいバージョン" + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "が利用可能です!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "データがありません。" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "イベントデータがありません。" + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "パスワードが一致しません。" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "結果が見つかりません。" + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "このチームにはWebサイトがありません。" + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "チームを作成していません。" + } + ], + "message.no-users": [ + { + "type": 0, + "value": "ユーザーが存在しません。" + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Webサイトが設定されていません。" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "ページが見つかりません" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "このWebサイトをリセットするには、下のフォームに「" + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "」と入力してください。" + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "このWebサイトの統計情報はすべて削除されますが、設定はそのまま残ります。" + } + ], + "message.saved": [ + { + "type": 0, + "value": "保存されました。" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "あなたのWebサイトの統計情報は次のURLで公開されています:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "あなたはすでにチームのメンバーです。" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "チームが見つかりません。" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Webサイトはチーム内の誰でも見ることができます。" + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "このWebサイトの統計情報を追跡するには、HTMLの" + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": "セクションに以下のコードを記述します。" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "このWebサイトをあなたのアカウントに移管しますか?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "このWebサイトを移管するチームを選択してください。" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Webサイトの所有権を自分のアカウントまたは別のチームへ移管します。" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "トリガーされたイベント" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "ユーザーが削除されました。" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "閲覧されたページ" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": "(" + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": ")で" + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": "を使用している" + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": "からの訪問者" + } + ] +} diff --git a/public/intl/messages/km-KH.json b/public/intl/messages/km-KH.json new file mode 100644 index 0000000..d769a86 --- /dev/null +++ b/public/intl/messages/km-KH.json @@ -0,0 +1,2212 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "កូដចូលប្រើ" + } + ], + "label.actions": [ + { + "type": 0, + "value": "សកម្មភាព" + } + ], + "label.activity": [ + { + "type": 0, + "value": "កំណត់ហេតុ​សកម្មភាព" + } + ], + "label.add": [ + { + "type": 0, + "value": "បង្កើតបន្ថែម" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "បន្ថែមក្តារ" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "បន្ថែមពិពណ៌នា" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "បន្ថែមសមាជិក" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "បន្ថែមជំហាន" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "បន្ថែមគេហទំព័រ" + } + ], + "label.admin": [ + { + "type": 0, + "value": "អ្នកគ្រប់គ្រង" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "ដៃគូ" + } + ], + "label.after": [ + { + "type": 0, + "value": "បន្ទាប់" + } + ], + "label.all": [ + { + "type": 0, + "value": "ទាំងអស់" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "គ្រប់ពេល" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "វិភាគ" + } + ], + "label.apply": [ + { + "type": 0, + "value": "អនុវត្ត" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "ការបញ្ជាក់" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "មើលថាប្រើប្រាស់របស់អ្នកធ្វើអ្វីជាមួយទីផ្សាររបស់អ្នក និងអ្វីជាហេតុបណ្តាលឲ្យមានការបម្លែង។" + } + ], + "label.average": [ + { + "type": 0, + "value": "ជាមធ្យម" + } + ], + "label.back": [ + { + "type": 0, + "value": "ថយក្រោយ" + } + ], + "label.before": [ + { + "type": 0, + "value": "មុន" + } + ], + "label.boards": [ + { + "type": 0, + "value": "ក្តារ" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "ចំនួនវិលត្រឡប់" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "បំបែកលម្អិត" + } + ], + "label.browser": [ + { + "type": 0, + "value": "កម្មវិធីរុករក" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "កម្មវិធី" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "យុទ្ធនាការ" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "បោះបង់" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "ផ្លាស់ប្តូរពាក្យសម្ងាត់" + } + ], + "label.channels": [ + { + "type": 0, + "value": "ឆានែល" + } + ], + "label.cities": [ + { + "type": 0, + "value": "ទីក្រុង" + } + ], + "label.city": [ + { + "type": 0, + "value": "ទីក្រុង" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "លុបចេញទាំងអស់" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "ក្រុម" + } + ], + "label.compare": [ + { + "type": 0, + "value": "ប្រៀបធៀប" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "ប្រៀបធៀបទិន្នន័យថ្ងៃខែ" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "បញ្ជាក់" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "បញ្ជាក់ពាក្យសម្ងាត់" + } + ], + "label.contains": [ + { + "type": 0, + "value": "មាន" + } + ], + "label.content": [ + { + "type": 0, + "value": "មាតិកា" + } + ], + "label.continue": [ + { + "type": 0, + "value": "បន្ត" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "ការបម្លែង" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "អត្រាបម្លែង" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "ជំហានបម្លែង" + } + ], + "label.count": [ + { + "type": 0, + "value": "ចំនួន" + } + ], + "label.countries": [ + { + "type": 0, + "value": "ប្រទេស" + } + ], + "label.country": [ + { + "type": 0, + "value": "ប្រទេស" + } + ], + "label.create": [ + { + "type": 0, + "value": "បង្កើត" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "បង្កើតរបាយការណ៍" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "បង្កើតក្រុម" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "បង្កើតអ្នកប្រើប្រាស់" + } + ], + "label.created": [ + { + "type": 0, + "value": "បង្កើតនៅ" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "បង្កើតដោយ" + } + ], + "label.currency": [ + { + "type": 0, + "value": "រូបិយប័ណ្ណ" + } + ], + "label.current": [ + { + "type": 0, + "value": "បច្ចុប្បន្ន" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "ពាក្យសម្ងាត់បច្ចុប្បន្ន" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "កំណត់ដោយខ្លួនឯង" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "ផ្ទាំងគ្រប់គ្រង" + } + ], + "label.data": [ + { + "type": 0, + "value": "ទិន្នន័យ" + } + ], + "label.date": [ + { + "type": 0, + "value": "កាលបរិច្ឆេទ" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "ចន្លោះកាលបរិច្ឆេទ" + } + ], + "label.day": [ + { + "type": 0, + "value": "ថ្ងៃ" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "ចន្លោះកាលបរិច្ឆេទដើម" + } + ], + "label.delete": [ + { + "type": 0, + "value": "លុប" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "លុបរបាយការណ៍" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "លុបក្រុម" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "លុបអ្នកប្រើប្រាស់" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "លុបគេហទំព័រ" + } + ], + "label.description": [ + { + "type": 0, + "value": "ការពិពណ៌នា" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "កុំព្យូទ័រលើតុ" + } + ], + "label.details": [ + { + "type": 0, + "value": "ព័ត៌មានលម្អិត" + } + ], + "label.device": [ + { + "type": 0, + "value": "ឧបករណ៍" + } + ], + "label.devices": [ + { + "type": 0, + "value": "ឧបករណ៍" + } + ], + "label.direct": [ + { + "type": 0, + "value": "ផ្ទាល់" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "រំសាយ" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "លេខសម្គាល់ពិសេស" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "មិនមាន" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "មិនរួមបញ្ចូល" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "មិនមានទេ" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "កែប្រែ" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "កែផ្ទាំងគ្រប់គ្រង" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "កែព័ត៌មានសមាជិក" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "បើកការចែករំលែក URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "បញ្ចប់ជំហាន" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL ចូល" + } + ], + "label.event": [ + { + "type": 0, + "value": "ព្រឹត្តិការណ៍" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "ទិន្នន័យព្រឹត្តិការណ៍" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "ឈ្មោះព្រឹត្តិការណ៍" + } + ], + "label.events": [ + { + "type": 0, + "value": "ព្រឹត្តិការណ៍" + } + ], + "label.exists": [ + { + "type": 0, + "value": "មាន" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL ចេញ" + } + ], + "label.false": [ + { + "type": 0, + "value": "មិនពិត" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "ចម្រោះ" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "រួមបញ្ចូលគ្នា" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "ដើម" + } + ], + "label.filters": [ + { + "type": 0, + "value": "ចម្រោះ" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "ចុចដំបូង" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "ផ្លូវបង្ហាញ" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "ផ្លូវបង្ហាញ" + } + ], + "label.goal": [ + { + "type": 0, + "value": "គោលដៅ" + } + ], + "label.goals": [ + { + "type": 0, + "value": "គោលដៅ" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "តាមដានគោលដៅរបស់អ្នកសម្រាប់ pageviews និង events។" + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "ធំជាង" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "ធំជាងឬស្មើ" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "បានដាក់ជាក្រុម" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "ឈ្មោះម៉ាស៊ីន" + } + ], + "label.includes": [ + { + "type": 0, + "value": "រួមបញ្ចូល" + } + ], + "label.insight": [ + { + "type": 0, + "value": "ការយល់ដឹង" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "គឺ" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "មិនពិត" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "មិនមែន" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "មិនបានកំណត់" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "បានកំណត់" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "ពិត" + } + ], + "label.join": [ + { + "type": 0, + "value": "ចូលរួម" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "ចូលក្រុម" + } + ], + "label.journey": [ + { + "type": 0, + "value": "​ដំណើរ" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "ស្វែងយល់ពីការប្រើប្រាស់គេហទំព័ររបស់អតិថិជនអ្នក។" + } + ], + "label.journeys": [ + { + "type": 0, + "value": "ដំណើរ" + } + ], + "label.language": [ + { + "type": 0, + "value": "ភាសា" + } + ], + "label.languages": [ + { + "type": 0, + "value": "ភាសា" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "កុំព្យូទ័រយួរដៃ" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "ចុចចុងក្រោយ" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ថ្ងៃចុងក្រោយ" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ម៉ោងចុងក្រោយ" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ខែចុងក្រោយ" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "ចាកចេញ" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "ចេញពីក្រុម" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "តិច​ជាង" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "តិចជាង ឬស្មើ" + } + ], + "label.links": [ + { + "type": 0, + "value": "តំណភ្ជាប់" + } + ], + "label.login": [ + { + "type": 0, + "value": "Login" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "គ្រប់គ្រង" + } + ], + "label.manager": [ + { + "type": 0, + "value": "អ្នកគ្រប់គ្រង" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "ពង្រីក" + } + ], + "label.medium": [ + { + "type": 0, + "value": "មធ្យម" + } + ], + "label.member": [ + { + "type": 0, + "value": "សមាជិក" + } + ], + "label.members": [ + { + "type": 0, + "value": "សមាជិក" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "ទូរស័ព្ទចល័ត" + } + ], + "label.model": [ + { + "type": 0, + "value": "ម៉ូដែល" + } + ], + "label.more": [ + { + "type": 0, + "value": "បន្ថែម" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "គណនី​របស់ខ្ញុំ" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "គេហទំព័ររបស់ខ្ញុំ" + } + ], + "label.name": [ + { + "type": 0, + "value": "ឈ្មោះ" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "ពាក្យសម្ងាត់​ថ្មី" + } + ], + "label.none": [ + { + "type": 0, + "value": "គ្មាន" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "ស្វែងរកធម្មជាតិ" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "ការទិញធម្មជាតិ" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "សង្គមធម្មជាតិ" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "វីដេអូធម្មជាតិ" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "ផ្សេងទៀត" + } + ], + "label.overview": [ + { + "type": 0, + "value": "ទិដ្ឋភាពរួម" + } + ], + "label.owner": [ + { + "type": 0, + "value": "ម្ចាស់" + } + ], + "label.page": [ + { + "type": 0, + "value": "ទំព័រ" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "ទំព័រទី " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " នៃ " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "អ្នកមើលទំព័រ" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "ចំណងជើងទំព័រ" + } + ], + "label.pages": [ + { + "type": 0, + "value": "ទំព័រ" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "ផ្សាយពាណិជ្ជកម្មបង់ប្រាក់" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "ស្វែងរកបង់ប្រាក់" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "ទិញបង់ប្រាក់" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "សង្គមបង់ប្រាក់" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "វីដេអូបង់ប្រាក់" + } + ], + "label.password": [ + { + "type": 0, + "value": "ពាក្យសម្ងាត់​" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "ភីកសែល" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "ដំណើរការដោយ " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "មុន" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "មួយរយៈពេលមុន" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "ឆ្នាំ​មុន" + } + ], + "label.profile": [ + { + "type": 0, + "value": "គណនី" + } + ], + "label.properties": [ + { + "type": 0, + "value": "លក្ខណៈពិសេស" + } + ], + "label.property": [ + { + "type": 0, + "value": "លក្ខណៈពិសេស" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "ប៉ារ៉ាម៉ែត្រ Query" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "ឥលូវនេះ" + } + ], + "label.referral": [ + { + "type": 0, + "value": "ការបញ្ជូន" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "អ្នកណែនាំ" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "អ្នកណែនាំ" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "ផ្ទុកឡើងវិញ" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "តំបន់" + } + ], + "label.regions": [ + { + "type": 0, + "value": "តំបន់" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "នៅសល់" + } + ], + "label.remove": [ + { + "type": 0, + "value": "លុប" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "លុបសមាជិកក្រុម" + } + ], + "label.reports": [ + { + "type": 0, + "value": "របាយការណ៍" + } + ], + "label.required": [ + { + "type": 0, + "value": "ទាមទារ" + } + ], + "label.reset": [ + { + "type": 0, + "value": "កែសម្រួល" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "ដើម្បីកែគេហទំព័រនេះឡើងវិញ សូមសរសេរ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " នៅក្នុងប្រអប់ខាងក្រោមដើម្បីបញ្ជាក់។" + } + ], + "label.retention": [ + { + "type": 0, + "value": "ការរក្សាទុក" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "មុខងារ" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "រក្សាទុក" + } + ], + "label.screens": [ + { + "type": 0, + "value": "ប្រភេទឧបករណ៍" + } + ], + "label.search": [ + { + "type": 0, + "value": "ស្វែងរក" + } + ], + "label.select": [ + { + "type": 0, + "value": "ជ្រើសរើស" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "ជ្រើសរើសកាលបរិច្ឆេទ" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "ជ្រើសរើសតម្រង" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "ជ្រើសរើសមុខងារ" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "ជ្រើសរើសគេហទំព័រ" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "ទិន្នន័យសម័យ" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "ការកំណត់" + } + ], + "label.share": [ + { + "type": 0, + "value": "ចែករំលែក" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "ចែករំលែក URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "ថ្ងៃតែមួយ" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "ប្រភព" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "ជំហានចាប់ផ្តើម" + } + ], + "label.steps": [ + { + "type": 0, + "value": "ជំហាន" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "ថេប្លេត" + } + ], + "label.tag": [ + { + "type": 0, + "value": "ស្លាក" + } + ], + "label.tags": [ + { + "type": 0, + "value": "ស្លាក" + } + ], + "label.team": [ + { + "type": 0, + "value": "ក្រុម" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID ក្រុម" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "អ្នកគ្រប់គ្រងក្រុម" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "សមាជិកក្រុម" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "ឈ្មោះក្រុម" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "ម្ចាស់ក្រុម" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "ការកំណត់ក្រុម" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "គេហទំព័ររបស់ក្រុម" + } + ], + "label.teams": [ + { + "type": 0, + "value": "ក្រុម" + } + ], + "label.terms": [ + { + "type": 0, + "value": "លក្ខខណ្ឌ" + } + ], + "label.theme": [ + { + "type": 0, + "value": "រូបរាង" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "ខែនេះ" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "ស​ប្តា​ហ៍​នេះ" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "ឆ្នាំ​នេះ" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "តំបន់ម៉ោង" + } + ], + "label.title": [ + { + "type": 0, + "value": "ចំណងជើង" + } + ], + "label.today": [ + { + "type": 0, + "value": "ថ្ងៃនេះ" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "បិទ/បើកតារាង" + } + ], + "label.total": [ + { + "type": 0, + "value": "សរុប" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "កំណត់ត្រាសរុប" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "លេខកូដតាមដាន" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "ការផ្ទេរ" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "ការផ្ទេរគេហទំព័រ" + } + ], + "label.true": [ + { + "type": 0, + "value": "ពិត" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "អ្នកចូលមើលម្នាក់ៗ" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "មិនស្គាល់" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "គ្មានចំណងជើង" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "អ្នកប្រើប្រាស់" + } + ], + "label.username": [ + { + "type": 0, + "value": "ឈ្មោះ​អ្នកប្រើប្រាស់" + } + ], + "label.users": [ + { + "type": 0, + "value": "អ្នកប្រើប្រាស់" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "តាមដានយុទ្ធនាការរបស់អ្នកតាមរយៈប៉ារ៉ាម៉ែត្រ UTM។" + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "មើលព័ត៌មានលម្អិត" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "បានតែមើលប៉ុណ្ណោះ" + } + ], + "label.views": [ + { + "type": 0, + "value": "អ្នកចូលមើល" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "រយៈពេលទស្សនា" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "អ្នកទស្សនា" + } + ], + "label.visits": [ + { + "type": 0, + "value": "ទស្សនា" + } + ], + "label.website": [ + { + "type": 0, + "value": "គេហទំព័រ" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID គេហទំព័រ" + } + ], + "label.websites": [ + { + "type": 0, + "value": "គេហទំព័រ" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "ម្សិលមិញ" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "សសេរ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " នៅក្នុងប្រអប់ខាងក្រោមដើម្បីបញ្ជាក់។" + } + ], + "message.active-users": [ + { + "type": 0, + "value": "មានអ្នកមើល " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " នាក់ ឥលូវនេះ" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "ទិន្នន័យដែលបានប្រមូលទុក" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "តើអ្នកប្រាកដថាចង់លុប " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ទេ?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "តើអ្នកប្រាកដថាចង់ចាកចេញ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ទេ?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "តើអ្នកប្រាកដថាចង់លុប " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ទេ?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "តើអ្នកប្រាកដថាចង់កំណត់ស្ថិតិរបស់ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ឡើងវិញទេ?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "ពេលលុបក្រុម គេហទំព័ររបស់ក្រុមក៏នឹងត្រូវលប់ចោលទាំងអស់ផងដែរ។" + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "ទិន្នន័យរបស់គេហទំព័រទាំងអស់នឹងត្រូវលុបចោល។" + } + ], + "message.error": [ + { + "type": 0, + "value": "មាន​អ្វីមួយ​មិន​ប្រក្រតី។" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "ការកំណត់" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domain មិន​ត្រឹមត្រូវ" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "តិចបំផុតដែលមានអក្សរ " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " តួអក្សរ" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Version ថ្មីនៃ Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " អាចប្រើប្រាស់បានហើយ!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "មិនមានទិន្នន័យ។" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "មិនមានទិន្នន័យព្រឹត្តិការណ៍ទេ។" + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ។" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "មិនមានលទ្ធផល។" + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "ក្រុមនេះមិនមានគេហទំព័រទេ។" + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "អ្នកមិនទាន់បានបង្កើតក្រុមណាមួយទេ។" + } + ], + "message.no-users": [ + { + "type": 0, + "value": "មិនមានអ្នកប្រើប្រាស់ទេ។" + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "អ្នកមិនទាន់បានដាក់គេហទំព័រណាមួយចូលទេ។" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "រកមិនឃើញទំព័រ។" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "ដើម្បីកែគេហទំព័រនេះឡើងវិញ សូមសរសេរ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " នៅក្នុងប្រអប់ខាងក្រោមដើម្បីបញ្ជាក់។" + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "ស្ថិតិទាំងអស់សម្រាប់គេហទំព័រនេះនឹងត្រូវបានលុប ប៉ុន្តែកូដតាមដានរបស់អ្នកនឹងនៅដដែល។" + } + ], + "message.saved": [ + { + "type": 0, + "value": "រក្សាទុកដោយជោគជ័យ។" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "នេះគឺជា URL ដែលអាចចែករំលែកជាសាធារណៈបានសម្រាប់ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "។" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "អ្នកគឺជាសមាជិកនៃក្រុមរួចហើយ។" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "រកក្រុមមិនឃើញទេ។" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "គេហទំព័រនេះអាចមើលបានតែសមាជិកក្រុមតែប៉ុណ្ណោះ" + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "ដើម្បីតាមដានស្ថិតិសម្រាប់គេហទំព័រអ្នក សូមដាក់កូដខាងក្រោមទៅក្នុងផ្នែក " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " នៃ HTML របស់អ្នក។" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "ផ្ទេរគេហទំព័រនេះទៅគណនីរបស់អ្នក។?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "ជ្រើសក្រុមដែរត្រូវផ្ទេរគេហទំព័រនេះទៅ។" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "ផ្ទេរកម្មសិទ្ធិគេហទំព័រទៅគណនីរបស់អ្នក ឬក្រុមផ្សេងទៀត។" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "អ្នកប្រើប្រាស់ត្រូវបានលុបចោល។" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "ទំព័រដែលបានមើល" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "អ្នកមើលពីប្រទេស " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " ប្រើប្រាស់កម្មវិធី " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " លើឧបករណ៍ " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ko-KR.json b/public/intl/messages/ko-KR.json new file mode 100644 index 0000000..239aa6c --- /dev/null +++ b/public/intl/messages/ko-KR.json @@ -0,0 +1,2168 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "액세스 코드" + } + ], + "label.actions": [ + { + "type": 0, + "value": "동작" + } + ], + "label.activity": [ + { + "type": 0, + "value": "활동" + } + ], + "label.add": [ + { + "type": 0, + "value": "추가" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "보드 추가" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "설명 추가" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "멤버 추가" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "단계 추가" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "웹사이트 추가" + } + ], + "label.admin": [ + { + "type": 0, + "value": "관리자" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "제휴사" + } + ], + "label.after": [ + { + "type": 0, + "value": "이후" + } + ], + "label.all": [ + { + "type": 0, + "value": "전체" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "전체 시간" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "분석" + } + ], + "label.apply": [ + { + "type": 0, + "value": "적용" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "기여도" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "사용자가 마케팅에 어떻게 반응하고 전환을 유도하는지 확인하세요." + } + ], + "label.average": [ + { + "type": 0, + "value": "평균" + } + ], + "label.back": [ + { + "type": 0, + "value": "뒤로" + } + ], + "label.before": [ + { + "type": 0, + "value": "이전" + } + ], + "label.boards": [ + { + "type": 0, + "value": "보드" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "이탈률" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "세부 사항" + } + ], + "label.browser": [ + { + "type": 0, + "value": "브라우저" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "브라우저" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "캠페인" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "취소" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "비밀번호 변경" + } + ], + "label.channels": [ + { + "type": 0, + "value": "채널" + } + ], + "label.cities": [ + { + "type": 0, + "value": "도시" + } + ], + "label.city": [ + { + "type": 0, + "value": "도시" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "모두 지우기" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "코호트" + } + ], + "label.compare": [ + { + "type": 0, + "value": "비교" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "날짜 비교" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "확인" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "비밀번호 확인" + } + ], + "label.contains": [ + { + "type": 0, + "value": "포함" + } + ], + "label.content": [ + { + "type": 0, + "value": "콘텐츠" + } + ], + "label.continue": [ + { + "type": 0, + "value": "계속" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "전환" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "전환율" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "전환 단계" + } + ], + "label.count": [ + { + "type": 0, + "value": "수" + } + ], + "label.countries": [ + { + "type": 0, + "value": "국가" + } + ], + "label.country": [ + { + "type": 0, + "value": "국가" + } + ], + "label.create": [ + { + "type": 0, + "value": "만들기" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "보고서 만들기" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "팀 만들기" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "사용자 만들기" + } + ], + "label.created": [ + { + "type": 0, + "value": "생성됨" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "작성자" + } + ], + "label.currency": [ + { + "type": 0, + "value": "통화" + } + ], + "label.current": [ + { + "type": 0, + "value": "현재" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "현재 비밀번호" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "범위 지정" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "대시보드" + } + ], + "label.data": [ + { + "type": 0, + "value": "데이터" + } + ], + "label.date": [ + { + "type": 0, + "value": "날짜" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "날짜 범위" + } + ], + "label.day": [ + { + "type": 0, + "value": "일" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "기본 날짜 범위" + } + ], + "label.delete": [ + { + "type": 0, + "value": "삭제" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "보고서 삭제" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "팀 삭제" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "사용자 삭제" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "웹사이트 삭제" + } + ], + "label.description": [ + { + "type": 0, + "value": "설명" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "데스크톱" + } + ], + "label.details": [ + { + "type": 0, + "value": "세부 정보" + } + ], + "label.device": [ + { + "type": 0, + "value": "기기" + } + ], + "label.devices": [ + { + "type": 0, + "value": "기기" + } + ], + "label.direct": [ + { + "type": 0, + "value": "직접" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "무시하기" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "고유 ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "포함하지 않음" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "포함하지 않음" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "존재하지 않음" + } + ], + "label.domain": [ + { + "type": 0, + "value": "도메인" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "이탈" + } + ], + "label.edit": [ + { + "type": 0, + "value": "편집" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "대시보드 편집" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "멤버 편집" + } + ], + "label.email": [ + { + "type": 0, + "value": "이메일" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "URL 공유 활성화" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "마지막 단계" + } + ], + "label.entry": [ + { + "type": 0, + "value": "입장 URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "이벤트" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "이벤트 데이터" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "이벤트 이름" + } + ], + "label.events": [ + { + "type": 0, + "value": "이벤트" + } + ], + "label.exists": [ + { + "type": 0, + "value": "존재함" + } + ], + "label.exit": [ + { + "type": 0, + "value": "퇴장 URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "거짓" + } + ], + "label.field": [ + { + "type": 0, + "value": "필드" + } + ], + "label.fields": [ + { + "type": 0, + "value": "필드" + } + ], + "label.filter": [ + { + "type": 0, + "value": "필터" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "합쳐 보기" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "전체 보기" + } + ], + "label.filters": [ + { + "type": 0, + "value": "필터" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "첫 클릭" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "첫 접속" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "퍼널" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "사용자 전환율 및 이탈률을 살펴보세요." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "퍼널" + } + ], + "label.goal": [ + { + "type": 0, + "value": "목표" + } + ], + "label.goals": [ + { + "type": 0, + "value": "목표" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "페이지 조회 및 이벤트 목표를 추적합니다." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "이상" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "이상" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "그룹화됨" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "호스트명" + } + ], + "label.includes": [ + { + "type": 0, + "value": "포함" + } + ], + "label.insight": [ + { + "type": 0, + "value": "인사이트" + } + ], + "label.insights": [ + { + "type": 0, + "value": "인사이트" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "세그먼트 및 필터를 사용하여 데이터를 더 자세히 살펴보세요." + } + ], + "label.is": [ + { + "type": 0, + "value": "해당" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "거짓임" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "해당하지 않음" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "설정되지 않음" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "설정됨" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "참임" + } + ], + "label.join": [ + { + "type": 0, + "value": "가입하기" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "팀 가입하기" + } + ], + "label.journey": [ + { + "type": 0, + "value": "여정" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "사용자가 웹사이트를 탐색하는 경로를 살펴보세요." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "여정" + } + ], + "label.language": [ + { + "type": 0, + "value": "언어" + } + ], + "label.languages": [ + { + "type": 0, + "value": "언어" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "노트북" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "마지막 클릭" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "지난 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "일" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "지난 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "시간" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "지난 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "개월" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "마지막 접속" + } + ], + "label.leave": [ + { + "type": 0, + "value": "떠나기" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "팀 떠나기" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "미만" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "이하" + } + ], + "label.links": [ + { + "type": 0, + "value": "링크" + } + ], + "label.login": [ + { + "type": 0, + "value": "로그인" + } + ], + "label.logout": [ + { + "type": 0, + "value": "로그아웃" + } + ], + "label.manage": [ + { + "type": 0, + "value": "관리" + } + ], + "label.manager": [ + { + "type": 0, + "value": "관리자" + } + ], + "label.max": [ + { + "type": 0, + "value": "최대" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "확장" + } + ], + "label.medium": [ + { + "type": 0, + "value": "미디엄" + } + ], + "label.member": [ + { + "type": 0, + "value": "멤버" + } + ], + "label.members": [ + { + "type": 0, + "value": "멤버" + } + ], + "label.min": [ + { + "type": 0, + "value": "최소" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "모바일" + } + ], + "label.model": [ + { + "type": 0, + "value": "모델" + } + ], + "label.more": [ + { + "type": 0, + "value": "더 보기" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "내 계정" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "내 웹사이트" + } + ], + "label.name": [ + { + "type": 0, + "value": "이름" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "새 비밀번호" + } + ], + "label.none": [ + { + "type": 0, + "value": "없음" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "개 레코드" + } + ], + "label.ok": [ + { + "type": 0, + "value": "확인" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "자연 검색" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "자연 쇼핑" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "자연 소셜" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "자연 비디오" + } + ], + "label.os": [ + { + "type": 0, + "value": "운영 체제" + } + ], + "label.other": [ + { + "type": 0, + "value": "기타" + } + ], + "label.overview": [ + { + "type": 0, + "value": "개요" + } + ], + "label.owner": [ + { + "type": 0, + "value": "소유자" + } + ], + "label.page": [ + { + "type": 0, + "value": "페이지" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "페이지 " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": "/" + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "페이지 조회" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "페이지 제목" + } + ], + "label.pages": [ + { + "type": 0, + "value": "페이지" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "유료 광고" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "유료 검색" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "유료 쇼핑" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "유료 소셜" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "유료 비디오" + } + ], + "label.password": [ + { + "type": 0, + "value": "비밀번호" + } + ], + "label.path": [ + { + "type": 0, + "value": "패스" + } + ], + "label.paths": [ + { + "type": 0, + "value": "패스" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "픽셀" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "이전" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "이전 기간" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "이전 연도" + } + ], + "label.profile": [ + { + "type": 0, + "value": "프로필" + } + ], + "label.properties": [ + { + "type": 0, + "value": "속성" + } + ], + "label.property": [ + { + "type": 0, + "value": "속성" + } + ], + "label.queries": [ + { + "type": 0, + "value": "쿼리" + } + ], + "label.query": [ + { + "type": 0, + "value": "쿼리" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "쿼리 매개 변수" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "실시간" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "리퍼러" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "리퍼러" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "새로 고침" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "다시 생성" + } + ], + "label.region": [ + { + "type": 0, + "value": "지역" + } + ], + "label.regions": [ + { + "type": 0, + "value": "지역" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "남음" + } + ], + "label.remove": [ + { + "type": 0, + "value": "제거" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "멤버 제거" + } + ], + "label.reports": [ + { + "type": 0, + "value": "보고서" + } + ], + "label.required": [ + { + "type": 0, + "value": "필수" + } + ], + "label.reset": [ + { + "type": 0, + "value": "초기화" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "웹사이트 초기화" + } + ], + "label.retention": [ + { + "type": 0, + "value": "리텐션" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "사용자가 얼마나 자주 돌아오는지를 추적하여 웹사이트의 리텐션을 측정하세요." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "수익" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "시간대별 수익을 살펴보세요." + } + ], + "label.role": [ + { + "type": 0, + "value": "역할" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "쿼리 실행" + } + ], + "label.save": [ + { + "type": 0, + "value": "저장" + } + ], + "label.screens": [ + { + "type": 0, + "value": "화면" + } + ], + "label.search": [ + { + "type": 0, + "value": "검색" + } + ], + "label.select": [ + { + "type": 0, + "value": "선택" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "날짜 선택" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "필터 선택" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "역할 선택" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "웹사이트 선택" + } + ], + "label.session": [ + { + "type": 0, + "value": "세션" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "세션 데이터" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "세션" + } + ], + "label.settings": [ + { + "type": 0, + "value": "설정" + } + ], + "label.share": [ + { + "type": 0, + "value": "공유" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "공유 URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "하루" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "소스" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "시작 단계" + } + ], + "label.steps": [ + { + "type": 0, + "value": "단계" + } + ], + "label.sum": [ + { + "type": 0, + "value": "합계" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "태블릿" + } + ], + "label.tag": [ + { + "type": 0, + "value": "태그" + } + ], + "label.tags": [ + { + "type": 0, + "value": "태그" + } + ], + "label.team": [ + { + "type": 0, + "value": "팀" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "팀 ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "팀 관리자" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "팀 멤버" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "팀 이름" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "팀 소유자" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "팀 설정" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "팀 보기 전용" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "팀 웹사이트" + } + ], + "label.teams": [ + { + "type": 0, + "value": "팀" + } + ], + "label.terms": [ + { + "type": 0, + "value": "약관" + } + ], + "label.theme": [ + { + "type": 0, + "value": "테마" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "이번 달" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "이번 주" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "올해" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "표준 시간대" + } + ], + "label.title": [ + { + "type": 0, + "value": "제목" + } + ], + "label.today": [ + { + "type": 0, + "value": "오늘" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "차트 전환" + } + ], + "label.total": [ + { + "type": 0, + "value": "합계" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "전체 레코드" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "추적 코드" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "거래" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "전송" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "웹사이트 전송" + } + ], + "label.true": [ + { + "type": 0, + "value": "참" + } + ], + "label.type": [ + { + "type": 0, + "value": "유형" + } + ], + "label.unique": [ + { + "type": 0, + "value": "고유" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "고유 방문자" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "고유 고객" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "알 수 없음" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "제목 없음" + } + ], + "label.update": [ + { + "type": 0, + "value": "업데이트" + } + ], + "label.user": [ + { + "type": 0, + "value": "사용자" + } + ], + "label.username": [ + { + "type": 0, + "value": "사용자 이름" + } + ], + "label.users": [ + { + "type": 0, + "value": "사용자" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "UTM 매개변수를 통해 캠페인을 추적하세요." + } + ], + "label.value": [ + { + "type": 0, + "value": "값" + } + ], + "label.view": [ + { + "type": 0, + "value": "보기" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "자세히 보기" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "보기 전용" + } + ], + "label.views": [ + { + "type": 0, + "value": "조회" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "방문당 조회" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "방문 시간" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "방문자" + } + ], + "label.visits": [ + { + "type": 0, + "value": "방문" + } + ], + "label.website": [ + { + "type": 0, + "value": "웹사이트" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "웹사이트 ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "웹사이트" + } + ], + "label.window": [ + { + "type": 0, + "value": "창" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "어제" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "확인을 위해 아래 상자에 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "을(를) 입력하세요." + } + ], + "message.active-users": [ + { + "type": 0, + "value": "현재 방문자 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "명" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "수집된 데이터" + } + ], + "message.confirm-delete": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "을(를) 삭제하시겠습니까?" + } + ], + "message.confirm-leave": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "을(를) 떠나시겠습니까?" + } + ], + "message.confirm-remove": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "을(를) 제거하시겠습니까?" + } + ], + "message.confirm-reset": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "을(를) 초기화하시겠습니까?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "팀을 삭제하면 팀에 등록된 모든 웹사이트도 삭제됩니다." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "관련된 모든 데이터가 삭제됩니다." + } + ], + "message.error": [ + { + "type": 0, + "value": "문제가 발생했습니다." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " - " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "설정으로 이동" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "사용자 이름 또는 비밀번호를 잘못 입력했습니다." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "잘못된 도메인입니다. http/https를 포함하지 마세요." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "최소 " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": "자여야 합니다" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Umami의 새 버전 " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "을(를) 사용할 수 있습니다!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "사용할 수 있는 데이터가 없습니다." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "사용할 수 있는 이벤트 데이터가 없습니다." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "비밀번호가 일치하지 않습니다." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "결과를 찾을 수 없습니다." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "팀에 웹사이트가 없습니다." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "만든 팀이 없습니다." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "사용자가 없습니다." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "설정된 웹사이트가 없습니다." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "페이지를 찾을 수 없음" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "이 웹사이트를 초기화하려면 아래 상자에 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "을(를) 입력하세요." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "이 웹사이트의 모든 통계가 삭제되지만 설정은 그대로 유지됩니다." + } + ], + "message.saved": [ + { + "type": 0, + "value": "저장했습니다." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "아래 링크를 통해 웹사이트의 통계를 누구나 볼 수 있습니다." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "이미 팀 멤버입니다." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "팀을 찾을 수 없습니다." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "웹사이트는 팀 멤버 누구나 볼 수 있습니다." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "이 웹사이트의 통계를 추적하려면 다음 코드를 HTML의 " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " 부분에 추가하세요." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "이 웹사이트를 당신의 계정으로 전송하시겠습니까?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "이 웹사이트를 전송받을 팀을 선택하세요." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "웹사이트 소유권을 계정이나 다른 팀으로 전송합니다." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "트리거된 이벤트" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "사용자를 삭제했습니다." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "조회한 페이지" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": "에서 " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": "을(를) 사용하는 " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": "의 방문자" + } + ] +} diff --git a/public/intl/messages/lt-LT.json b/public/intl/messages/lt-LT.json new file mode 100644 index 0000000..c71d675 --- /dev/null +++ b/public/intl/messages/lt-LT.json @@ -0,0 +1,2347 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Prieigos kodas" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Veiksmai" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Veiklos žurnalas" + } + ], + "label.add": [ + { + "type": 0, + "value": "Pridėti" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Pridėti lentą" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Pridėti aprašymą" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Pridėti narį" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Pridėti žingsnį" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Pridėti svetainę" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partneris" + } + ], + "label.after": [ + { + "type": 0, + "value": "Po" + } + ], + "label.all": [ + { + "type": 0, + "value": "Visi" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Visas laikotarpis" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitika" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Taikyti" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Priskyrimas" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Žiūrėkite, kaip naudotojai įsitraukia į jūsų rinkodarą ir kas lemia konversijas." + } + ], + "label.average": [ + { + "type": 0, + "value": "Vidurkis" + } + ], + "label.back": [ + { + "type": 0, + "value": "Atgal" + } + ], + "label.before": [ + { + "type": 0, + "value": "Prieš" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Lentos" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Atmetimo rodiklis" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Išskaidymas" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Naršyklė" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Naršyklės" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanijos" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Atšaukti" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Pakeisti slaptažodį" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanalai" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Miestai" + } + ], + "label.city": [ + { + "type": 0, + "value": "Miestas" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Išvalyti visus" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorta" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Palyginti" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Palyginti datas" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Patvirtinti" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Patvirtinti slaptažodį" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Turi" + } + ], + "label.content": [ + { + "type": 0, + "value": "Turinys" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Tęsti" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konversija" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konversijos rodiklis" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konversijos žingsnis" + } + ], + "label.count": [ + { + "type": 0, + "value": "Skaičius" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Šalys" + } + ], + "label.country": [ + { + "type": 0, + "value": "Šalis" + } + ], + "label.create": [ + { + "type": 0, + "value": "Sukurti" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Kurti ataskaitą" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Sukurti komandą" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Sukurti vartotoją" + } + ], + "label.created": [ + { + "type": 0, + "value": "Sukurta" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Sukūrė" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valiuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Dabartinis" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Dabartinis slaptažodis" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Pasirinktinis intervalas" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Švieslentė" + } + ], + "label.data": [ + { + "type": 0, + "value": "Duomenys" + } + ], + "label.date": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Laikotarpis" + } + ], + "label.day": [ + { + "type": 0, + "value": "Diena" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Numatytasis laikotarpis" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Ištrinti" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Ištrinti ataskaitą" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Ištrinti komandą" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Ištrinti vartotoją" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Ištrinti svetainę" + } + ], + "label.description": [ + { + "type": 0, + "value": "Aprašymas" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Stalinis kompiuteris" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalės" + } + ], + "label.device": [ + { + "type": 0, + "value": "Įrenginys" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Įrenginiai" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Tiesioginis" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Gerai" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Unikalus ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Neturi" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Neįtraukia" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Neegzistuoja" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domenas" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Atsitraukimas" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Redaguoti" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Redaguoti švieslentę" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Redaguoti narį" + } + ], + "label.email": [ + { + "type": 0, + "value": "El. paštas" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Įjungti bendrinimą su nuoroda" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Paskutinis žingsnis" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Įėjimo URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Įvykis" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Įvykių duomenys" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Įvykio pavadinimas" + } + ], + "label.events": [ + { + "type": 0, + "value": "Įvykiai" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Egzistuoja" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Išėjimo URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Netiesa" + } + ], + "label.field": [ + { + "type": 0, + "value": "Laukelis" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Laukeliai" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtruoti" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinuoti" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Neapdoroti" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtrai" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Pirmas paspaudimas" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Pirmą kartą matyta" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Piltuvas" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Supraskite naudotojų konversijos ir atsitraukimo rodiklius." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Piltuvai" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Tikslas" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Tikslai" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Sekite savo tikslus puslapių peržiūroms ir įvykiams." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Daugiau nei" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Daugiau arba lygu" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grupuota" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Pagrindinis kompiuteris" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Įtraukia" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Įžvalga" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Įžvalgos" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Pasinerkite giliau į savo duomenis naudodami segmentus ir filtrus." + } + ], + "label.is": [ + { + "type": 0, + "value": "Yra" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Yra netiesa" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nėra" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nenurodyta" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Nustatyta" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Yra tiesa" + } + ], + "label.join": [ + { + "type": 0, + "value": "Prisijungti" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Prisijungti į komandą" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Kelionė" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Sužinokite, kaip naudotojai naršo jūsų svetainėje." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Kelionės" + } + ], + "label.language": [ + { + "type": 0, + "value": "Kalba" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Kalbos" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Nešiojamas kompiuteris" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Paskutinis paspaudimas" + } + ], + "label.last-days": [ + { + "offset": 0, + "options": { + "=0": { + "value": [ + { + "type": 0, + "value": "Paskutinės " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " dienų" + } + ] + }, + "one": { + "value": [ + { + "type": 0, + "value": "Paskutinė diena" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "Paskutinės " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " dienos" + } + ] + }, + "zero": { + "value": [ + { + "type": 0, + "value": "Paskutinės " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " dienų" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.last-hours": [ + { + "offset": 0, + "options": { + "=0": { + "value": [ + { + "type": 0, + "value": "Paskutinės " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " valandų" + } + ] + }, + "one": { + "value": [ + { + "type": 0, + "value": "Paskutinė " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " valanda" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "Paskutinės " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " valandos" + } + ] + }, + "zero": { + "value": [ + { + "type": 0, + "value": "Paskutinės " + }, + { + "type": 7 + }, + { + "type": 0, + "value": " valandų" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Paskutiniai " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mėnesiai" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Paskutinį kartą matyta" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Išeiti" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Išeiti iš komandos" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Mažiau nei" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Mažiau arba lygu" + } + ], + "label.links": [ + { + "type": 0, + "value": "Nuorodos" + } + ], + "label.login": [ + { + "type": 0, + "value": "Prisijungti" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Atsijungti" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Tvarkyti" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Vadovas" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maksimumas" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Išplėsti" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Vidutinis" + } + ], + "label.member": [ + { + "type": 0, + "value": "Narys" + } + ], + "label.members": [ + { + "type": 0, + "value": "Nariai" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimumas" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobilusis" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modelis" + } + ], + "label.more": [ + { + "type": 0, + "value": "Daugiau" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mano paskyra" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mano svetainės" + } + ], + "label.name": [ + { + "type": 0, + "value": "Pavadinimas" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Naujas slaptažodis" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nėra" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organinė paieška" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organinis apsipirkimas" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organinis socialinis" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organinis vaizdo įrašas" + } + ], + "label.os": [ + { + "type": 0, + "value": "Operacinės sistemos" + } + ], + "label.other": [ + { + "type": 0, + "value": "Kita" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Apžvalga" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Savininkas" + } + ], + "label.page": [ + { + "type": 0, + "value": "Puslapis" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Puslapis " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " iš " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Puslapių peržiūros" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Puslapio pavadinimas" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Puslapiai" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Mokama reklama" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Mokama paieška" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Mokamas apsipirkimas" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Mokamas socialinis" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Mokamas vaizdo įrašas" + } + ], + "label.password": [ + { + "type": 0, + "value": "Slaptažodis" + } + ], + "label.path": [ + { + "type": 0, + "value": "Kelias" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Keliai" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pikseliai" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Ankstesnis" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Ankstesnis laikotarpis" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Ankstesni metai" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profilis" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Savybės" + } + ], + "label.property": [ + { + "type": 0, + "value": "Savybė" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Užklausos" + } + ], + "label.query": [ + { + "type": 0, + "value": "Užklausa" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Užklausų parametrai" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realiuoju laiku" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Persiuntimas" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Persiuntėjas" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Persiuntėjai" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Atnaujinti" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Sugeneruoti iš naujo" + } + ], + "label.region": [ + { + "type": 0, + "value": "Regionas" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regionai" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Likę" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Pašalinti" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Pašalinti narį" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Ataskaitos" + } + ], + "label.required": [ + { + "type": 0, + "value": "Reikalinga" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Atstatyti" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Atstatyti statistikos duomenis" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Išlaikymas" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Išmatuokite, kaip dažnai naudotojai grįžta į jūsų svetainę." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Pajamos" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Peržiūrėkite savo pajamas laikui bėgant." + } + ], + "label.role": [ + { + "type": 0, + "value": "Vaidmuo" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Vykdyti užklausą" + } + ], + "label.save": [ + { + "type": 0, + "value": "Išsaugoti" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekranai" + } + ], + "label.search": [ + { + "type": 0, + "value": "Ieškoti" + } + ], + "label.select": [ + { + "type": 0, + "value": "Pasirinkti" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Pasirinkti laikotarpį" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Pasirinkti filtrą" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Pasirinkti rolę" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Pasirinkti svetainę" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesija" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Sesijos duomenys" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesijos" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Nustatymai" + } + ], + "label.share": [ + { + "type": 0, + "value": "Dalintis" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Pasidalinti nuoroda" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Viena diena" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Šaltiniai" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Pradžios žingsnis" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Žingsniai" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Planšetė" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Žyma" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Žymos" + } + ], + "label.team": [ + { + "type": 0, + "value": "Komanda" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Komandos ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Komandos vadovas" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Komandos narys" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Komandos pavadinimas" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Komandos savininkas" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Komandos nustatymai" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Tik peržiūra" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Komandos svetainės" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Komandos" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Sąlygos" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Spalvų tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Šis mėnuo" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Ši savaitė" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Šie metai" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Laiko zona" + } + ], + "label.title": [ + { + "type": 0, + "value": "Pavadinimas" + } + ], + "label.today": [ + { + "type": 0, + "value": "Šiandien" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Rodyti / slėpti grafikus" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Sekimo kodas" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Perleisti" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Perleisti svetainę" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unikalūs lankytojai" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Nežinoma" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Be pavadinimo" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Vartotojas" + } + ], + "label.username": [ + { + "type": 0, + "value": "Vartotojo vardas" + } + ], + "label.users": [ + { + "type": 0, + "value": "Vartotojai" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "Atidaryti" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Peržiūrėti detaliau" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Tik peržiūrėti" + } + ], + "label.views": [ + { + "type": 0, + "value": "Peržiūros" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Vidutinė vizito trukmė" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Lankytojai" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Svetainė" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Svetainės ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Svetainės" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Vakar" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Įrašykite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " žemiau, kad patvirtintumėte." + } + ], + "message.active-users": [ + { + "offset": 0, + "options": { + "=0": { + "value": [ + { + "type": 7 + }, + { + "type": 0, + "value": " aktyvių vartotojų" + } + ] + }, + "one": { + "value": [ + { + "type": 7 + }, + { + "type": 0, + "value": " aktyvus vartotojas" + } + ] + }, + "other": { + "value": [ + { + "type": 7 + }, + { + "type": 0, + "value": " aktyvūs vartotojai" + } + ] + }, + "zero": { + "value": [ + { + "type": 7 + }, + { + "type": 0, + "value": " aktyvių vartotojų" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Ar esate tikri, jog norite ištrinti svetainę " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Ar esate tikri, jog norite palikti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ar esate tikri, jog norite ištrinti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are esate tikri, jog norite atstatyti svetainės " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " statistikos duomenis?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Ištrinant komandą bus ištrintos ir visos komandos svetainės." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Visi susiję duomenys taip pat bus ištrinti." + } + ], + "message.error": [ + { + "type": 0, + "value": "Kažkas įvyko ne taip." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Eiti į nustatymus" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Neteisingas vartotojo vardas/slaptažodis." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Klaidingas domenas" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Reikia bent " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " simbolių" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Išleista nauja 'Umami' " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " versija!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nėra jokių duomenų." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Jokių duomenų apie įvykius nėra." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Slaptažodžiai nesutampa" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Jokių rezultatų nerasta." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Ši komanda neturi jokių svetainių." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Jūs nesate sukūrę jokių komandų." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Nėra jokių vartotojų." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Jūs nesate susikonfiguravę jokių svetainių." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Puslapis nerastas." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Kad atstatyti šią svetainę, įrašykite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " žemiau, kad patvirtintumėte." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Visi šios svetainės statistikos duomenys bus ištrinti, bet sekimo kodas išliks nepaliestas." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Sėkmingai išsaugota." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Tai yra viešai prieinama " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " nuoroda (URL)." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Jūs jau esate šios komandos narys." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Komanda nerasta." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Svetaines gali peržiūrėti bet kas iš šios komandos." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Sekimo kodas" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Perduoti šią svetainę į jūsų paskyrą?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Pasirinkite komandą, kuriai norite perduoti šią svetainę." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Perduoti svetainės nuosavybę į savo paskyrą arba kitą komandą." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Vartotojas ištrintas." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Lankytojas iš " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": ", naudojantis " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " sistemoje " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/mn-MN.json b/public/intl/messages/mn-MN.json new file mode 100644 index 0000000..dcc965c --- /dev/null +++ b/public/intl/messages/mn-MN.json @@ -0,0 +1,2236 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Хандалтын код" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Үйлдлүүд" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Үйл ажиллагааны бүртгэл" + } + ], + "label.add": [ + { + "type": 0, + "value": "Нэмэх" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Самбар нэмэх" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Тайлбар нэмэх" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Гишүүн нэмэх" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Алхам нэмэх" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Веб нэмэх" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Админ" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Харьяа" + } + ], + "label.after": [ + { + "type": 0, + "value": "Хойно" + } + ], + "label.all": [ + { + "type": 0, + "value": "Бүх" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Бүх цаг үеийн" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Аналитик" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Хэрэглэх" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Холбогдол" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Хэрэглэгчид таны маркетингт хэрхэн оролцож, ямар зүйлс хөрвүүлэлтэд нөлөөлж байгааг хараарай." + } + ], + "label.average": [ + { + "type": 0, + "value": "Дундаж" + } + ], + "label.back": [ + { + "type": 0, + "value": "Буцах" + } + ], + "label.before": [ + { + "type": 0, + "value": "Өмнө" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Самбарууд" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Нэг хуудас үзээд гарсан" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Задаргаа" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Хөтөч" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Хөтөч" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Аянууд" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Цуцлах" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Нууц үг солих" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Суваг" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Хотууд" + } + ], + "label.city": [ + { + "type": 0, + "value": "Хот" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Бүгдийг арилгах" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Бүлэг" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Харьцуулах" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Огноо харьцуулах" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Батлах" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Шинэ нууц үгээ давтах" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Агуулах" + } + ], + "label.content": [ + { + "type": 0, + "value": "Агуулга" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Үргэлжлүүлэх" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Хөрвүүлэлт" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Хөрвүүлэлтийн хувь" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Хөрвүүлэлтийн алхам" + } + ], + "label.count": [ + { + "type": 0, + "value": "Тоо" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Улс" + } + ], + "label.country": [ + { + "type": 0, + "value": "Улс" + } + ], + "label.create": [ + { + "type": 0, + "value": "Үүсгэх" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Тайлан үүсгэх" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Баг үүсгэх" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Хэрэглэгч үүсгэх" + } + ], + "label.created": [ + { + "type": 0, + "value": "Үүсгэсэн" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Үүсгэсэн" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Валют" + } + ], + "label.current": [ + { + "type": 0, + "value": "Одоогийн" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Ашиглаж буй нууц үг" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Дурын хугацаа" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Хянах самбар" + } + ], + "label.data": [ + { + "type": 0, + "value": "Өгөгдөл" + } + ], + "label.date": [ + { + "type": 0, + "value": "Огноо" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Хугацааны муж" + } + ], + "label.day": [ + { + "type": 0, + "value": "Өдөр" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Өгөгдмөл хугацааны муж" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Устгах" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Тайлан устгах" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Баг устгах" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Хэрэглэгч устгах" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Веб устгах" + } + ], + "label.description": [ + { + "type": 0, + "value": "Тайлбар" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Суурин компьютер" + } + ], + "label.details": [ + { + "type": 0, + "value": "Мэдээлэл" + } + ], + "label.device": [ + { + "type": 0, + "value": "Төхөөрөмж" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Төхөөрөмж" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Шууд" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Үл хэрэгсэх" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Ялгаатай ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Агуулахгүй" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Агуулаагүй" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Байхгүй" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Домэйн" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Уналт" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Засах" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Хянах самбар засах" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Гишүүн засах" + } + ], + "label.email": [ + { + "type": 0, + "value": "Имэйл" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Хуваалцах холбоос идэвхжүүлэх" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Төгсгөлийн алхам" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Орох зам" + } + ], + "label.event": [ + { + "type": 0, + "value": "Үйлдэл" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Үйлдлийн өгөгдөл" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Үйлдлийн нэр" + } + ], + "label.events": [ + { + "type": 0, + "value": "Үйлдэл" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Байгаа" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Гарах зам" + } + ], + "label.false": [ + { + "type": 0, + "value": "Худал" + } + ], + "label.field": [ + { + "type": 0, + "value": "Талбар" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Талбар" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Шүүлтүүр" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Нэгтгэсэн" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Түүхий" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Шүүлтүүр" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Эхний даралт" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Анх харсан" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Цутгал" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Хэрэглэгчдийн шилжилт, уналтын хэмжээг шинжлэх." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Цутгалууд" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Зорилго" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Зорилго" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Хуудас үзсэн болон үйлдлийн зорилгыг мөрдөх." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Их" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Их буюу тэнцүү" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Бүлэглэсэн" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Хост нэр" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Агуулсан" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Ойлголт" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Шинжлэх" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Өгөгдлөө хэсэгчлэн хуваах, шүүх байдлаар задлан шинжлэх." + } + ], + "label.is": [ + { + "type": 0, + "value": "Бол" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Худал байна" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Биш" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Утга оноогоогүй" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Утга оноосон" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Үнэн байна" + } + ], + "label.join": [ + { + "type": 0, + "value": "Нэгдэх" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Багт нэгдэх" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Аялал" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Хэрэглэгчид таны цахим хуудсаар хэрхэн шилжиж явсныг шинжлэх." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Аялалууд" + } + ], + "label.language": [ + { + "type": 0, + "value": "Хэл" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Хэл" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Зөөврийн компьютер" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Сүүлийн даралт" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Сүүлийн " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " хоног" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Сүүлийн " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " цаг" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Сүүлийн " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " сар" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Сүүлд харагдсан" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Гарах" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Багаас гарах" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Бага" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Бага буюу тэнцүү" + } + ], + "label.links": [ + { + "type": 0, + "value": "Холбоосууд" + } + ], + "label.login": [ + { + "type": 0, + "value": "Нэвтрэх" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Гарах" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Удирдах" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Удирдагч" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Өргөтгөх" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Дунд" + } + ], + "label.member": [ + { + "type": 0, + "value": "Гишүүн" + } + ], + "label.members": [ + { + "type": 0, + "value": "Гишүүд" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Утас" + } + ], + "label.model": [ + { + "type": 0, + "value": "Загвар" + } + ], + "label.more": [ + { + "type": 0, + "value": "Цааш" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Миний бүртгэл" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Миний вебүүд" + } + ], + "label.name": [ + { + "type": 0, + "value": "Нэр" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Шинэ нууц үг" + } + ], + "label.none": [ + { + "type": 0, + "value": "Байхгүй" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "бичлэг" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "бичлэг" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "ЗА" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Байгалийн хайлт" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Байгалийн дэлгүүр" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Байгалийн сошиал" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Байгалийн видео" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Бусад" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Тойм" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Эзэмшигч" + } + ], + "label.page": [ + { + "type": 0, + "value": "Хуудас" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Хуудас " + }, + { + "type": 1, + "value": "total" + }, + { + "type": 0, + "value": "-с " + }, + { + "type": 1, + "value": "current" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Хуудас үзсэн" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Хуудасны гарчиг" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Хуудас" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Төлбөртэй зар" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Төлбөртэй хайлт" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Төлбөртэй дэлгүүр" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Төлбөртэй сошиал" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Төлбөртэй видео" + } + ], + "label.password": [ + { + "type": 0, + "value": "Нууц үг" + } + ], + "label.path": [ + { + "type": 0, + "value": "Зам" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Зам" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Пиксел" + } + ], + "label.powered-by": [ + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " дээр суурилсан" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Өмнөх" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Өмнөх үе" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Өмнөх жил" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Бүртгэл" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Шинж чанар" + } + ], + "label.property": [ + { + "type": 0, + "value": "Шинж чанар" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Query-нүүд" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query параметр" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Яг одоо" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Чиглүүлэгч" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Чиглүүлэгч" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Сэргээх" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Дахин үүсгэх" + } + ], + "label.region": [ + { + "type": 0, + "value": "Бүс" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Бүсүүд" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Үлдсэн" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Устгах" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Гишүүн хасах" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Тайлан" + } + ], + "label.required": [ + { + "type": 0, + "value": "Шаардлагатай" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Дахин эхлүүлэх" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Тоон үзүүлэлтийг дахин эхлүүлэх" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Барилт" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Хэрэглэгчид таны веб рүү дахин хандах буюу хэрэглэгчдээ хэр тогтоож буйг хэмжих." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Орлого" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Цаг хугацааны туршид орлогын өөрчлөлтийг харах." + } + ], + "label.role": [ + { + "type": 0, + "value": "Эрх" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Query ажиллуулах" + } + ], + "label.save": [ + { + "type": 0, + "value": "Хадгалах" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Дэлгэц" + } + ], + "label.search": [ + { + "type": 0, + "value": "Хайх" + } + ], + "label.select": [ + { + "type": 0, + "value": "Сонгох" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Огноо сонгох" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Шүүлтүүр сонгох" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Веб сонгох" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Сессийн өгөгдөл" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Тохиргоо" + } + ], + "label.share": [ + { + "type": 0, + "value": "Хуваалцах" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Хуваалцах холбоос" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Нэг өдөр" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Эх сурвалжууд" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Эхлэх алхам" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Алхам" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Нийлбэр" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Таблет" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Таг" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Тагууд" + } + ], + "label.team": [ + { + "type": 0, + "value": "Баг" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Багийн ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Багийн удирдагч" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Багийн гишүүн" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Багийн нэр" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Багийн эзэмшигч" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Багийн тохиргоо" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Багийн вебүүд" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Багууд" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Нөхцөл" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Загвар" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Энэ сар" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Энэ долоо хоног" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Энэ жил" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Цагийн бүс" + } + ], + "label.title": [ + { + "type": 0, + "value": "Гарчиг" + } + ], + "label.today": [ + { + "type": 0, + "value": "Өнөөдөр" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Графикийг харуулах/нуух" + } + ], + "label.total": [ + { + "type": 0, + "value": "Нийт" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Нийт мөрийн тоо" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Мөрдөх код" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Шилжүүлэх" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Вебийг шилжүүлэх" + } + ], + "label.true": [ + { + "type": 0, + "value": "Үнэн" + } + ], + "label.type": [ + { + "type": 0, + "value": "Төрөл" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Давхардаагүй" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Зочин" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Давтагдаагүй зочин" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Тодорхойгүй" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Гарчиггүй" + } + ], + "label.update": [ + { + "type": 0, + "value": "Шинэчлэх" + } + ], + "label.user": [ + { + "type": 0, + "value": "Хэрэглэгч" + } + ], + "label.username": [ + { + "type": 0, + "value": "Хэрэглэгчийн нэр" + } + ], + "label.users": [ + { + "type": 0, + "value": "Хэрэглэгчид" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "UTM параметраар кампанит ажлаа мөрдөх." + } + ], + "label.value": [ + { + "type": 0, + "value": "Утга" + } + ], + "label.view": [ + { + "type": 0, + "value": "Харах" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Дэлгэрүүлж харах" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Зөвхөн үзэх" + } + ], + "label.views": [ + { + "type": 0, + "value": "Үзсэн" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Зочдын хуудас үзсэн тоо" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Зочилсон дундаж хугацаа" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Зочин" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Зочилсон" + } + ], + "label.website": [ + { + "type": 0, + "value": "Веб" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Вебийн ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Вебүүд" + } + ], + "label.window": [ + { + "type": 0, + "value": "Цонх" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Өчигдөр" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Доорх хэсэгт " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " гэж бичин баталгаажуулна уу." + } + ], + "message.active-users": [ + { + "type": 0, + "value": "одоо " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "зочин" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "зочин" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " байна" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Цуглуулсан өгөгдөл" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Та " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "-г устгахдаа итгэлтэй байна уу?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Та " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "-с гарахдаа итгэлтэй байна уу?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Та " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "-г устгахдаа итгэлтэй байна уу?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Та " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "-н тоон үзүүлэлтүүдийг устгахдаа итгэлтэй байна уу?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Баг устгах нь мөн түүнд харъяалагдах вебүүдийг устгах болно." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Энэ вебтэй холбоотой бүх өгөгдөл устах болно." + } + ], + "message.error": [ + { + "type": 0, + "value": "Ямар нэг зүйл буруу боллоо." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "url" + }, + { + "type": 0, + "value": "-д " + }, + { + "type": 1, + "value": "event" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Тохиргоо руу очих" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Буруу хэрэглэгчийн нэр/нууц үг." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Буруу домэйн" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Хамгийн багадаа " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " тэмдэгт" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Umami-н шинэ хувилбар " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " гарсан байна!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Өгөгдөл алга." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Үйлдлийн өгөгдөл алга." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Нууц үг тохирохгүй байна." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Ямар ч үр дүн олдсонгүй." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Энэ багт ямар ч веб алга." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Та ямар ч баг үүсгээгүй байна." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Хэрэглэгч байхгүй байна." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Та ямар нэгэн веб тохируулаагүй байна." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Хуудас олдсонгүй." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Тоон үзүүлэлтийг дахин эхлүүлэхийн тулд доорх хэсэгт " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " гэж бичиж, баталгаажуулна уу." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Энэ вебийн бүх тоон үзүүлэлтүүдийг устгах болно. Гэхдээ мөрдөх код хэвээрээ үлдэнэ." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Хадгалсан." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Таны вебийн тоон үзүүлэлтүүд доорх URL дээр нийтэд харагдах болно:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Та аль хэдийн энэ багийн гишүүн болсон байна." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Баг олдсонгүй." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Вебийг багийн бүх гишүүд үзэж болно." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Энэ вебийн хандалтуудыг мөрдөхийн тулд доорх кодыг HTML-нхээ " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " хэсэгт байрлуулна уу." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Энэ вебийг өөрийн бүртгэл рүү шилжүүлэх үү?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Энэ вебийг шилжүүлж авах багийг сонгоно уу." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Энэ вебийг өөрийн бүртгэл рүү эсвэл багт шилжүүлж авах." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Өдөөсөн үйлдэл" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Хэрэглэгч устсан." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Үзсэн хуудас" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " улсаас " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " дээр " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " хөтөч ашиглан орсон" + } + ] +} diff --git a/public/intl/messages/ms-MY.json b/public/intl/messages/ms-MY.json new file mode 100644 index 0000000..a2fdd5b --- /dev/null +++ b/public/intl/messages/ms-MY.json @@ -0,0 +1,2214 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Aksi" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Tambah laman web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Pentadbir" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "Semua" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "All time" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "Kembali" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Kadar lantunan" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Pelayar web" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Batal" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Tukar kata laluan" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Sahkan kata laluan" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Negara" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Kata laluan semasa" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Julat khas" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Papan pemuka" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Julat tarikh" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Julat tarikh lalai" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Padam" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Padam laman web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Peranti" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Ketepikan" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domain" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Edit" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Aktifkan url berkongsi" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "Peristiwa" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Digabungkan" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Mentah" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hari lepas" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " jam lepas" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Log masuk" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Log keluar" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Telefon bimbit" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Lebih banyak lagi" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nama" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Kata laluan baru" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Paparan halaman" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Halaman" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Kata laluan" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Disediakan oleh " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Siaran langsung" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Perujuk" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Muat semula" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Diperlukan" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Tetapkan semula" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Simpan" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Tetapan" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Kongsikan URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Satu hari" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Bulan ini" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Minggu ini" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Tahun ini" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zon masa" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hari ini" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kod penjejakan" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Pelawat unik" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Tidak diketahui" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nama pengguna" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Lihat butiran" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Lawatan" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Purata tempoh masa lawatan" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Pelawat" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Laman web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " semasa " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "pelawat" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "pelawat" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Pastikah anda ingin memadam " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Semua data yang berkaitan juga akan dihapuskan." + } + ], + "message.error": [ + { + "type": 0, + "value": "Ada yang tidak kena." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Pergi ke tetapan" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Pengguna/kata laluan tidak betul." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domain tidak sah" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Tiada data yang boleh didapati." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Kata laluan tidak sepadan" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Anda tidak ada sebarang laman web yang telah dikonfigurasikan." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Halaman tidak dijumpai." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Berjaya disimpan." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Ini adalah URL berkongsi untuk " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Kod penjejakan" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Pelawat dari " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " mengguna " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " pada " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/my-MM.json b/public/intl/messages/my-MM.json new file mode 100644 index 0000000..74c9909 --- /dev/null +++ b/public/intl/messages/my-MM.json @@ -0,0 +1,2202 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "ဝင်ခွင့်ကုဒ်" + } + ], + "label.actions": [ + { + "type": 0, + "value": "လုပ်ဆောင်ချက်များ" + } + ], + "label.activity": [ + { + "type": 0, + "value": "လုပ်ဆောင်ချက်စာရင်း" + } + ], + "label.add": [ + { + "type": 0, + "value": "ထပ်ထည့်မည်" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "အကြောင်းအရာဖော်ပြချက် ထည့်မည်" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ်ထည့်မည်" + } + ], + "label.admin": [ + { + "type": 0, + "value": "အက်ဒမင်" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "ပြီးနောက်" + } + ], + "label.all": [ + { + "type": 0, + "value": "အားလုံး" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "အချိန်အစမှအခုထိ" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "အန်နလစ်တစ်" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "ပျမ်းမျှ" + } + ], + "label.back": [ + { + "type": 0, + "value": "နောက်သို့" + } + ], + "label.before": [ + { + "type": 0, + "value": "မတိုင်မီ" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce နှုန်း" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "ခွဲခြမ်းစိတ်ဖြာမှု" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "ဝက်ဘ်ဘရောင်ဇာများ" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "မလုပ်တော့ပါ" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "စကားဝှက် ပြောင်းမည်" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "မြို့များ" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "အားလုံးကိုဖျက်မည်" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "အတည်ပြုသည်" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "စကားဝှက်အတည်ပြုသည်" + } + ], + "label.contains": [ + { + "type": 0, + "value": "ပါဝင်သည်" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "ဆက်သွားမည်" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "နိုင်ငံများ" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "ရီပို့လုပ်မည်" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Team ပြုလုပ်မည်" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "အသုံးပြုသူထည့်မည်" + } + ], + "label.created": [ + { + "type": 0, + "value": "ပြုလုပ်ပြီးသော" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "လက်ရှိစကားဝှက်" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "အချိန်အပိုင်းအခြားရွေးရန်" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "ဒက်ရှ်ဘုတ်" + } + ], + "label.data": [ + { + "type": 0, + "value": "ဒေတာ" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "ရက်အပိုင်းအခြား" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "ပုံသေ ရက်အပိုင်းအခြား" + } + ], + "label.delete": [ + { + "type": 0, + "value": "ဖျက်မည်" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Team ကိုဖျက်မည်" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "အသုံးပြုသူကိုဖျက်မည်" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ်ကိုဖျက်မည်" + } + ], + "label.description": [ + { + "type": 0, + "value": "ရှင်းပြချက်" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "စားပွဲတင်ကွန်ပျူတာ" + } + ], + "label.details": [ + { + "type": 0, + "value": "အသေးစိတ်" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "အသုံးပြုသည့် ကိရိယာများ" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "ပိတ်ပါ" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "မပါဝင်ပါ" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "ဒိုမိန်း" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "ပြုပြင်မည်" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "ဒက်ရှ်ဘုတ်ကို ပြုပြင်မည်" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "ဝေငှခြင်းကိုလင့်ကို ဖွင့်မည်" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "အဖြစ်အပျက်" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "အဖြစ်အပျက် ဒေတာ" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "အဖြစ်အပျက်များ" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "မှားသည်" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field အမည်" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Field အမည်များ" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "ပေါင်းစပ်ပြီး" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "အရှိအတိုင်း" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filter များ" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "ဖန်နယ်" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "ထက်ပို၍ကြီးသည်" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "ထက်ပို၍ကြီးသည်သို့မဟုတ်တူသည်" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "အသေးစိတ်သိမြင်နိုင်ရန်" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "ဝင်မည်" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "အသင်းဝင်မည်" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "ဘာသာစကား" + } + ], + "label.languages": [ + { + "type": 0, + "value": "ဘာသာစကားများ" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "လက်တော့ပ်" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "လွန်ခဲ့သော " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ရက်က" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "လွန်ခဲ့သော " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " နာရီက" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "ထွက်မည်" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "အသင်းမှထွက်မည်" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "ထက်ပို၍ငယ်သည်" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "ထက်ပို၍ငယ်သည်သို့မဟုတ်တူသည်" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "လော့ဂ်အင်" + } + ], + "label.logout": [ + { + "type": 0, + "value": "လော့ဂ်အောက်လုပ်မည်" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "အများဆုံး" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "အဖွဲ့ဝင်များ" + } + ], + "label.min": [ + { + "type": 0, + "value": "အနည်းဆုံး" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "မိုဘိုင်း" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "နောက်ထပ်" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "အမည်" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "စကားဝှက်အသစ်" + } + ], + "label.none": [ + { + "type": 0, + "value": "မရှိပါ" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "ကွန်ပျူတာလည်ပတ်မှုစနစ်" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "အပေါ်ယံမြင်ကွင်း" + } + ], + "label.owner": [ + { + "type": 0, + "value": "ပိုင်ဆိုင်သူ" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "ဝင်ရောက်ကြည့်ရှုသူ" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "စာမျက်နှာများ" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "စကားဝှက်" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " ထောက်ပံ့သည်" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "ပရိုဖိုင်း" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries (ကွာရီများ)" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query (ကွာရီ)" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters (ကွာရီပါရာမီတာများ)" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "အချိန်နှင့်တပြေးညီ" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "ရည်ညွှန်းမှုများ" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Refresh လုပ်မည်" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "ပြန်ထုတ်မည်" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "ဒေသများ" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "ဖျက်မည်" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "တင်ပြမှုများ" + } + ], + "label.required": [ + { + "type": 0, + "value": "လိုအပ်သည်" + } + ], + "label.reset": [ + { + "type": 0, + "value": "ပြန်စမည်" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ်ဒေတာကိုဖျက်မည်" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "အခန်းကဏ္ဍ" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Query ကိုလုပ်ဆောင်မည်" + } + ], + "label.save": [ + { + "type": 0, + "value": "သိမ်းဆည်းမည်" + } + ], + "label.screens": [ + { + "type": 0, + "value": "မြင်ကွင်းများ" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "ရက်ရွေးပါ" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "ဝဘက်ဘ်ဆိုဒ်ရွေးပါ" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "ဆက်ရှင်များ" + } + ], + "label.settings": [ + { + "type": 0, + "value": "ဆက်တင်များ" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL ကိုရှဲမည်" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "တစ်ရက်အတွင်း" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "ပေါင်းလဒ်" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "တက်ဘလက်" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "အသင်း" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "အသင်း အိုင်ဒီ" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "အသင်းဝင်" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "အသင်းကိုပိုင်ဆိုင်သူ" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "အသင်းများ" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme (အပြင်အဆင်)" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "ယခုလ" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "ယခုအပတ်" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "ယခုနှစ်" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "အချိန်ဇုန်" + } + ], + "label.title": [ + { + "type": 0, + "value": "ခေါင်းစဥ်" + } + ], + "label.today": [ + { + "type": 0, + "value": "ယနေ့" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "ဇယားများကို အဖွင့်အပိတ်လုပ်မည်" + } + ], + "label.total": [ + { + "type": 0, + "value": "စုစုပေါင်း" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "မှတ်တမ်းစုစုပေါင်း" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "ထရက်လုပ်သည့် ကုဒ်" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "မှန်သည်" + } + ], + "label.type": [ + { + "type": 0, + "value": "အမျိုးအစား" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "ဝင်ရောက်သူ (ထပ်ခြင်းမရှိ)" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "မသိသော" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "ခေါင်းစဉ်မရှိ" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "အသုံးပြုသူ" + } + ], + "label.username": [ + { + "type": 0, + "value": "အသုံးပြုသူအမည်" + } + ], + "label.users": [ + { + "type": 0, + "value": "အသုံးပြုသူများ" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "တန်ဖိုး" + } + ], + "label.view": [ + { + "type": 0, + "value": "ဝင်ရောက်ကြည့်ရှုမှု" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "အသေးစိတ်ကို ကြည့်ရှုမည်" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "ဝင်ရောက်ကြည့်ရှုမှုများသာ" + } + ], + "label.views": [ + { + "type": 0, + "value": "ဝင်ရောက်ကြည့်ရှုမှုများ" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "ဝဘက်ဘ်ဆိုဒ်တွင် ပျမ်းမျှကုန်ဆုံးချိန်" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "ဝင်ရောက်ကြည့်ရှုသူများ" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ်" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ် အိုင်ဒီ" + } + ], + "label.websites": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ်များ" + } + ], + "label.window": [ + { + "type": 0, + "value": "ဝင်းဒိုး" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "မနေ့က" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " လက်ရှိအသုံးပြုနေသူ " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "ယောက်" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "ယောက်" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ကို ဖျက်ရန် သေချာပါသလား?" + } + ], + "message.confirm-leave": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ကို ထွက်ရန် သေချာပါသလား?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ကို ဖျက်၍ပြန်စလုပ်ရန် သေချာပါသလား?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ် ဒေတာအကုန် ဖျက်မည်" + } + ], + "message.error": [ + { + "type": 0, + "value": "မှားယွင်းမှုတစ်ခု ရှိသွားပါသည်" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "url" + }, + { + "type": 0, + "value": " တွင် " + }, + { + "type": 1, + "value": "event" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "ဆက်တင်သို့ သွားရန်" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "အသုံးပြုသူအမည် သို့မဟုတ် စကားဝှက် မှားနေသည်" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "ဒိုမိန်း မမှန်ပါ http/https. မပါရပါ" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "အနည်းဆုံး " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " character ရှိရမည်" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "အူမာမီ " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " အသစ်ထွက်နေပါပြီ" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "ဒေတာ မရှိပါ" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "အဖြစ်အပျက်ဒေတာ မရှိပါ" + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "စကားဝှက် မှားနေသည်" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "ရလဒ်မရှိပါ" + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "ဤအသင်းတွင် ဝက်ဘ်ဆိုက်မရှိသေးပါ" + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "အသင်း မပြုလုပ်ရသေးပါ" + } + ], + "message.no-users": [ + { + "type": 0, + "value": "အသုံးပြုသူ မရှိသေးပါ" + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "ဝက်ဘ်ဆိုဒ်တစ်ခုမှ မထည့်ရသေးပါ" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "ဤစာမျက်နှာသည် မရှိပါ" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "ဤ ဝက်ဘ်ဆိုဒ်ဒေတာကိုဖျက်၍ ပြန်စလုပ်ရန် အောက်တွင် " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " ကို ရိုက်ထည့်ပေးပါ" + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "ဤဝက်ဘ်ဆိုဒ်က စာရင်းအချက်အလက်များကို ဖျက်မည်၊ ဆက်တင်ဒေတာများ မပါပါ" + } + ], + "message.saved": [ + { + "type": 0, + "value": "မှတ်သားပြီး" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "သင့်ဝက်ဆိုဒ်ဘ်၏ စာရင်းအချက်အလက်များကို အောက်ပါ URL တွင် ဝင်ရောက်ကြည့်ရှုနိုင်သည်" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "ဤအသင်းတွင် ဝင်ပြီးသားဖြစ်နေသည်" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "အသင်း မရှိပါ" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "ဤဝက်ဘ်ဆိုဒ်များကို အသင်းထဲမှ လူတိုင်းဝင်ကြည့်နိုင်သည်" + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "ဤဝက်ဘ်ဆိုဒ်၏ ဒေတာကိုကောက်ခံရန် အောက်ပါ code ကို သင်၏ HTML တွင်ထည့်ပါ" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "အသုံးပြုသူ ဖျက်ပြီးပါပြီ" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " မှ " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " ဖြင့် " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " တွင် ဝင်ရောက်ကြည့်ရှုသူ" + } + ] +} diff --git a/public/intl/messages/nb-NO.json b/public/intl/messages/nb-NO.json new file mode 100644 index 0000000..34f7c97 --- /dev/null +++ b/public/intl/messages/nb-NO.json @@ -0,0 +1,2226 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Tilgangskode" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Handlinger" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Aktivitetslogg" + } + ], + "label.add": [ + { + "type": 0, + "value": "Legg til" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Legg til tavle" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Legg til beskrivelse" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Legg til bruker" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Legg til steg" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Legg til nettsted" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Tilknyttet" + } + ], + "label.after": [ + { + "type": 0, + "value": "Etter" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alle" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Noensinne" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analyse" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Bruk" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribusjon" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Se hvordan brukere engasjerer seg i markedsføringen din og hva som driver konverteringer." + } + ], + "label.average": [ + { + "type": 0, + "value": "Gjennomsnnitt" + } + ], + "label.back": [ + { + "type": 0, + "value": "Tilbake" + } + ], + "label.before": [ + { + "type": 0, + "value": "Før" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Tavler" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Avvisningsfrekvens" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Nedbrytning" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Nettleser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Nettlesere" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanjer" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Avvis" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Bytt passord" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanaler" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Byer" + } + ], + "label.city": [ + { + "type": 0, + "value": "By" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Tøm alle" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Sammenlign" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Sammenlign datoer" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Bekreft" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Godkjenn passord" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Inneholder" + } + ], + "label.content": [ + { + "type": 0, + "value": "Innhold" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Fortsett" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konvertering" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konverteringsrate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konverteringssteg" + } + ], + "label.count": [ + { + "type": 0, + "value": "Antall" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Land" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Opprett" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Opprett rapport" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Opprett team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Opprett bruker" + } + ], + "label.created": [ + { + "type": 0, + "value": "Opprettet" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Opprettet av" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Nåværende" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Nåværende passord" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Egendefinert utvalg" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dashbord" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Dato" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datointervall" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dag" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Standard datoperiode" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Slett" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Slett rapport" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Slett team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Slett bruker" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Slett nettstedet" + } + ], + "label.description": [ + { + "type": 0, + "value": "Beskrivelse" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Stasjonær" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detaljer" + } + ], + "label.device": [ + { + "type": 0, + "value": "Enhet" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Enheter" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direkte" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Avbryt" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Unik ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Innholder ikke" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Inkluderer ikke" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Eksisterer ikke" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domene" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Rediger" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Rediger dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Rediger bruker" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Aktiver delings-URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Avslutt steg" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Inngangs-URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Hendelse" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Hendelsesdata" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Hendelsesnavn" + } + ], + "label.events": [ + { + "type": 0, + "value": "Hendelser" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Eksisterer" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Utgangs-URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Usant" + } + ], + "label.field": [ + { + "type": 0, + "value": "Felt" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Felt" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinert" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Rå" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Første klikk" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Først sett" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Trakt" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Forstå konverteringen og drop-off frafallsfrekvens av brukere." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Trakter" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Spor dine mål for sidevisninger og hendelser." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Mer enn" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Mer enn eller lik" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Gruppert" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Vertsnavn" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inkluderer" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Innsikt" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Innsikt" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dykk dypere i din data ved bruk av segmentering og filtre." + } + ], + "label.is": [ + { + "type": 0, + "value": "Er" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Er usant" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Er ikke" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Er ikke satt" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Er satt" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Er sant" + } + ], + "label.join": [ + { + "type": 0, + "value": "Bli med" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Bli med i teamet" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Reise" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Forstå hvordan brukerene navigerer gjennom din side." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Reiser" + } + ], + "label.language": [ + { + "type": 0, + "value": "Språk" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Språk" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Bærbar" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Siste klikk" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Siste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dager" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Siste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " timer" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Sist sett" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Forlat" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Forlat team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Mindre enn" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Mindre enn eller lik" + } + ], + "label.links": [ + { + "type": 0, + "value": "Lenker" + } + ], + "label.login": [ + { + "type": 0, + "value": "Logg inn" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logg ut" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Administrer" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maks" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Utvid" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Bruker" + } + ], + "label.members": [ + { + "type": 0, + "value": "Brukere" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobiltelefon" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modell" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mer" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Min konto" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mine nettsider" + } + ], + "label.name": [ + { + "type": 0, + "value": "Navn" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nytt passord" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ingen" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organisk søk" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organisk handel" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organisk sosial" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organisk video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Annet" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Oversikt" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Eier" + } + ], + "label.page": [ + { + "type": 0, + "value": "Side" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Side " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " av " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Sidevisninger" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Sidetittel" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Sider" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Betalte annonser" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Betalt søk" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Betalt handel" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Betalt sosial" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Betalt video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Passord" + } + ], + "label.path": [ + { + "type": 0, + "value": "Sti" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Stier" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Piksler" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Drevet av " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Forrige" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Forrige periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Forrige år" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Egenskaper" + } + ], + "label.property": [ + { + "type": 0, + "value": "Egenskap" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Forspørsler" + } + ], + "label.query": [ + { + "type": 0, + "value": "Forespørsel" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Forespørsel parametere" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Sanntid" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Henviser" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Henvisere" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Oppdater" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerer" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regioner" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Gjenstår" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Fjern" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Fjern bruker" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Rapporter" + } + ], + "label.required": [ + { + "type": 0, + "value": "Påkrevd" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Nullstill" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Nullstill statistikk" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retensjon" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mål nettstedets klebrighet ved å spore hvor ofte brukere kommer tilbake." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Inntenker" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Se på inntektene dine over tid." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rolle" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Kjør spørring" + } + ], + "label.save": [ + { + "type": 0, + "value": "Lagre" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Skjermer" + } + ], + "label.search": [ + { + "type": 0, + "value": "Søk" + } + ], + "label.select": [ + { + "type": 0, + "value": "Velg" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Velg dato" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Velg filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Velg rolle" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Velg nettsted" + } + ], + "label.session": [ + { + "type": 0, + "value": "Økt" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Øktdata" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Økter" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Innstillinger" + } + ], + "label.share": [ + { + "type": 0, + "value": "Del" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Del URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Enkeltdag" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Kilder" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Starttrinn" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Trinn" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Nettbrett" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tagg" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tagger" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team-ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Teamadministrator" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Teammedlem" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Teamnavn" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Teameier" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Teaminnstillinger" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team (kun visning)" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team-nettsteder" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Team" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Vilkår" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Denne måneden" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Denne uka" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "I år" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Tidssone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Tittel" + } + ], + "label.today": [ + { + "type": 0, + "value": "I dag" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Veksle grafer" + } + ], + "label.total": [ + { + "type": 0, + "value": "Totalt" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Totalt antall oppføringer" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Sporingskode" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transaksjoner" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Overfør" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Overfør nettsted" + } + ], + "label.true": [ + { + "type": 0, + "value": "Sant" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unike" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unike besøkende" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unike kunder" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Ukjent" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Uten tittel" + } + ], + "label.update": [ + { + "type": 0, + "value": "Oppdater" + } + ], + "label.user": [ + { + "type": 0, + "value": "Bruker" + } + ], + "label.username": [ + { + "type": 0, + "value": "Brukernavn" + } + ], + "label.users": [ + { + "type": 0, + "value": "Brukere" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Spor kampanjene dine via UTM-parametre." + } + ], + "label.value": [ + { + "type": 0, + "value": "Verdi" + } + ], + "label.view": [ + { + "type": 0, + "value": "Vis" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Vis detaljer" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Kun visning" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visninger" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Visninger per besøk" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Gjennomsnittlig besøkstid" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Besøkende" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Besøk" + } + ], + "label.website": [ + { + "type": 0, + "value": "Nettsted" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Nettsted-ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Nettsteder" + } + ], + "label.window": [ + { + "type": 0, + "value": "Vindu" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "I går" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Skriv " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " i feltet nedenfor for å bekrefte." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "besøkende" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "besøkende" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " nå" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Innsamlede data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Er du sikker på at du vil slette " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Er du sikker på at du vil forlate " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Er du sikker på at du vil fjerne " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Er du sikker på at du vil nullstille statistikken til " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Å slette et team vil også slette alle teamets nettsteder." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Alle tilknyttede data vil også bli slettet." + } + ], + "message.error": [ + { + "type": 0, + "value": "Noe gikk galt." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " på " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Gå til innstillinger" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Ugyldig brukernavn/passord." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ugyldig domene" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimumslengde på " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " tegn" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "En ny versjon av Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " er tilgjengelig!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Ingen data tilgjengelig." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Ingen hendelsesdata er tilgjengelig." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passordene er ikke like" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Ingen resultater funnet." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Dette teamet har ingen nettsteder." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Du har ikke opprettet noen team." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Ingen brukere." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Du har ikke satt opp noen nettsteder." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Siden ble ikke funnet." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "For å nullstille dette nettstedet, skriv " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " i feltet nedenfor for å bekrefte." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistikk for dette nettstedet vil bli slettet, men sporingskoden forblir uberørt." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Lagret!" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Dette er den offentlige delings-URL-en for " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Du er allerede medlem av teamet." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Teamet ble ikke funnet." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Nettsteder kan vises av alle på teamet." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Sporingskode" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Overfør dette nettstedet til kontoen din?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Velg teamet du vil overføre dette nettstedet til." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Overfør eierskapet til nettstedet til din konto eller et annet team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Utløst hendelse" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Bruker slettet." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Vist side" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Besøkende fra " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " med " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " på " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/nl-NL.json b/public/intl/messages/nl-NL.json new file mode 100644 index 0000000..1c13666 --- /dev/null +++ b/public/intl/messages/nl-NL.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Toegangscode" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Acties" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activiteiten logboek" + } + ], + "label.add": [ + { + "type": 0, + "value": "Toevoegen" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Bord toevoegen" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Omschrijving toevoegen" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Lid toevoegen" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Stap toevoegen" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Website koppelen" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Na" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alles" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Onbeperkt" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analyse" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Toepassen" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Toewijzing" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Bekijk hoe gebruikers omgaan met je marketing en wat conversies stimuleert." + } + ], + "label.average": [ + { + "type": 0, + "value": "Gemiddelde" + } + ], + "label.back": [ + { + "type": 0, + "value": "Terug" + } + ], + "label.before": [ + { + "type": 0, + "value": "Voor" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Borden" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bouncepercentage" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Opsplitsen" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsers" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campagnes" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Annuleren" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Wachtwoord wijzigen" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanalen" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Steden" + } + ], + "label.city": [ + { + "type": 0, + "value": "Stad" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Filters wissen" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Vergelijken" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Datums vergelijken" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Bevestigen" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Wachtwoord bevestigen" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Bevat" + } + ], + "label.content": [ + { + "type": 0, + "value": "Inhoud" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Doorgaan" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversie" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversieratio" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversiestap" + } + ], + "label.count": [ + { + "type": 0, + "value": "Aantal" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Landen" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Aanmaken" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Rapport aanmaken" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Team aanmaken" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Gebruiker maken" + } + ], + "label.created": [ + { + "type": 0, + "value": "Gemaakt" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Gemaakt Door" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Huidig" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Huidig wachtwoord" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Aangepast bereik" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Overzicht" + } + ], + "label.data": [ + { + "type": 0, + "value": "Gegevens" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datumbereik" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dag" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Standaard bereik" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Verwijderen" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Rapport verwijderen" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Team verwijderen" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Gebruiker verwijderen" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Website verwijderen" + } + ], + "label.description": [ + { + "type": 0, + "value": "Beschrijving" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Computer" + } + ], + "label.details": [ + { + "type": 0, + "value": "Informatie" + } + ], + "label.device": [ + { + "type": 0, + "value": "Apparaat" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Apparaten" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Negeren" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Uniek ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Bevat geen" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Bevat niet" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Bestaat niet" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domein" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Uitval" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Bewerken" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Dashboard aanpassen" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Gebruiker aanpassen" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Sta delen via openbare URL toe" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Gebeurtenis" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Datum gebeurtenis" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Gebeurtenisnaam" + } + ], + "label.events": [ + { + "type": 0, + "value": "Gebeurtenissen" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Bestaat" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Onwaar" + } + ], + "label.field": [ + { + "type": 0, + "value": "Veld" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Velden" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Gecombineerd" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Ruw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Eerste klik" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Ontdek de conversie- en uitvalpercentages van gebruikers." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Trechters" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Doel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Doelen" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Volg je doelen voor paginaweergaven en gebeurtenissen." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Groter dan" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Groter of gelijk aan" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Gegroepeerd" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostnaam" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Bevat" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Inzicht" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Inzichten" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Verken je gegevens verder door segmenten en filters te gebruiken." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is onwaar" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is niet" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is niet ingesteld" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is ingesteld" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is waar" + } + ], + "label.join": [ + { + "type": 0, + "value": "Lid worden" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Word lid van een team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Reis" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Begrijp hoe gebruikers door je website navigeren." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Reizen" + } + ], + "label.language": [ + { + "type": 0, + "value": "Taal" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Talen" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Laatste klik" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Laatste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dagen" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Laatste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " uur" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Laatste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " maanden" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Laatst gezien" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Verlaten" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Verlaat team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Minder dan" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Minder of gelijk aan" + } + ], + "label.links": [ + { + "type": 0, + "value": "Koppelingen" + } + ], + "label.login": [ + { + "type": 0, + "value": "Inloggen" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Uitloggen" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Beheren" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Uitvouwen" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Gebruiker" + } + ], + "label.members": [ + { + "type": 0, + "value": "Gebruikers" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobiel" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Toon meer" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mijn profiel" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mijn websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Naam" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nieuw wachtwoord" + } + ], + "label.none": [ + { + "type": 0, + "value": "Geen" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organisch zoeken" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organisch winkelen" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organisch sociaal" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organische video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Overig" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overzicht" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Eigenaar" + } + ], + "label.page": [ + { + "type": 0, + "value": "Pagina" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Pagina " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " van " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Paginaweergaven" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Pagina titel" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pagina's" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Betaalde advertenties" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Betaald zoeken" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Betaald winkelen" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Betaald sociaal" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Betaalde video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Wachtwoord" + } + ], + "label.path": [ + { + "type": 0, + "value": "Pad" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paden" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "mogelijk gemaakt door " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Vorige" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Vorige periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Vorig jaar" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profiel" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Eigenschappen" + } + ], + "label.property": [ + { + "type": 0, + "value": "Eigenschap" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Parameters" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "URL-parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Actueel" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Verwijzing" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Verwijzers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Vernieuwen" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Opnieuw genereren" + } + ], + "label.region": [ + { + "type": 0, + "value": "Regio" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regio's" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Resterend" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Verwijderen" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Gebruiker verwijderen" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Rapporten" + } + ], + "label.required": [ + { + "type": 0, + "value": "Verplicht" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Opnieuw instellen" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Statistieken opnieuw instellen" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retentie" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Meet de retentie van je website door door bij te houden hoe vaak gebruikers terugkeren." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Omzet" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Bekijk je omzet in de loop van de tijd." + } + ], + "label.role": [ + { + "type": 0, + "value": "Gebruikersrol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Query uitvoeren" + } + ], + "label.save": [ + { + "type": 0, + "value": "Opslaan" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Schermen" + } + ], + "label.search": [ + { + "type": 0, + "value": "Zoeken" + } + ], + "label.select": [ + { + "type": 0, + "value": "Selecteer" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Datum selecteren" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Filter selecteren" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rol selecteren" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Website selecteren" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sessie" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Sessiegegevens" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessies" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Instellingen" + } + ], + "label.share": [ + { + "type": 0, + "value": "Delen" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL delen" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Enkele dag" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Bronnen" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Startstap" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Stappen" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Som" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Label" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Labels" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Teamleider" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Teamlid" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Teamnaam" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Teameigenaar" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Teaminstellingen" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team alleen lezen" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Voorwaarden" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Thema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Deze maand" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Deze week" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Dit jaar" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Tijdzone" + } + ], + "label.title": [ + { + "type": 0, + "value": "Titel" + } + ], + "label.today": [ + { + "type": 0, + "value": "Vandaag" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Grafieken tonen/verbergen" + } + ], + "label.total": [ + { + "type": 0, + "value": "Totaal" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Totaal records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Volgcode" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "Waar" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unieke bezoekers" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Onbekend" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Ongetiteld" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Gebruiker" + } + ], + "label.username": [ + { + "type": 0, + "value": "Gebruikersnaam" + } + ], + "label.users": [ + { + "type": 0, + "value": "Gebruikers" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Waarde" + } + ], + "label.view": [ + { + "type": 0, + "value": "Weergave" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Meer details" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Alleen inzien" + } + ], + "label.views": [ + { + "type": 0, + "value": "Weergaven" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Gemiddelde bezoektijd" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Bezoekers" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Gisteren" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Typ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in het veld hieronder om te bevestigen." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " actieve " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "bezoeker" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "bezoekers" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Weet je zeker dat je " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " wilt verwijderen?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Weet je zeker dat je " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " wilt verlaten?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Weet je zeker dat je " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " wilt verwijderen?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Weet je zeker dat je de statistieken van " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " opnieuw wilt instellen?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Als een team wordt verwijderd, worden ook alle websites van dat team verwijderd." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Alle verwante gegevens zullen ook verwijderd worden." + } + ], + "message.error": [ + { + "type": 0, + "value": "Er is iets misgegaan." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " op " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Naar instellingen" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Incorrecte gebruikersnaam/wachtwoord." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ongeldig domein" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimale lengte van " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " tekens" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Een nieuwe versie van Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is beschikbaar!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Geen gegevens beschikbaar." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Geen gegevens over de gebeurtenis beschikbaar." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Wachtwoorden komen niet overeen" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Geen resultaten gevonden." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Er zijn geen websites gekoppeld aan dit team." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Er zijn nog geen teams aangemaakt." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Er zijn geen gebruikers." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Je hebt geen websites ingesteld." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Pagina niet gevonden." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Typ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in het veld hieronder om te bevestigen dat je de website wilt resetten." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Alle bijhorende statistieken van deze website worden verwijderd, maar jouw volgcode blijft gelden." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Opslaan succesvol." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Met deze URL kan " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " openbaar gedeeld worden." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Je bent al lid van het team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team niet gevonden." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites kunnen door iedereen in het team worden bekeken." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Volgcode" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Deze website toevoegen aan je account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selecteer het team om deze website aan toe te voegen." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Draag het eigenaarschap van de website over naar jouw account, of een ander team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Getriggerde gebeurtenis" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Gebruiker verwijderd" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Bekeken pagina" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Bezoeker uit " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " met " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " op een " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/pl-PL.json b/public/intl/messages/pl-PL.json new file mode 100644 index 0000000..9078964 --- /dev/null +++ b/public/intl/messages/pl-PL.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Kod dostępu" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Działania" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Dziennik aktywności" + } + ], + "label.add": [ + { + "type": 0, + "value": "Dodaj" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Dodaj tablicę" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Dodaj opis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Dodaj członka" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Dodaj krok" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Dodaj witrynę" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Po" + } + ], + "label.all": [ + { + "type": 0, + "value": "Wszystkie" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Cały czas" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analityka" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Zastosuj" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atrybucja" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Zobacz, jak użytkownicy angażują się w Twoją reklamę i co napędza konwersje." + } + ], + "label.average": [ + { + "type": 0, + "value": "Średnia" + } + ], + "label.back": [ + { + "type": 0, + "value": "Powrót" + } + ], + "label.before": [ + { + "type": 0, + "value": "Przed" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Tablice" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Współczynnik odrzuceń" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Rozbicie" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Przeglądarka" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Przeglądarki" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanie" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Anuluj" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Zmień hasło" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanały" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Miasta" + } + ], + "label.city": [ + { + "type": 0, + "value": "Miasto" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Wyczyść wszystko" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorta" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Porównaj" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Porównaj daty" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potwierdź" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potwierdź hasło" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Zawiera" + } + ], + "label.content": [ + { + "type": 0, + "value": "Treść" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Kontynuuj" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konwersja" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Wskaźnik konwersji" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Etap konwersji" + } + ], + "label.count": [ + { + "type": 0, + "value": "Liczba" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Kraje" + } + ], + "label.country": [ + { + "type": 0, + "value": "Państwo" + } + ], + "label.create": [ + { + "type": 0, + "value": "Utwórz" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Utwórz raport" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Utwórz zespół" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Utwórz użytkownika" + } + ], + "label.created": [ + { + "type": 0, + "value": "Utworzony" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Utworzony przez" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Waluta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktualny" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Aktualne hasło" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Zakres niestandardowy" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Panel" + } + ], + "label.data": [ + { + "type": 0, + "value": "Dane" + } + ], + "label.date": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Zakres dat" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dzień" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Domyślny zakres dat" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Usuń" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Usuń raport" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Usuń zespół" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Usuń użytkownika" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Usuń witrynę" + } + ], + "label.description": [ + { + "type": 0, + "value": "Opis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Komputer" + } + ], + "label.details": [ + { + "type": 0, + "value": "Szczegóły" + } + ], + "label.device": [ + { + "type": 0, + "value": "Urządzenie" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Urządzenia" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Bezpośredni" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Odrzuć" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Unikalny ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Nie zawiera" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Nie zawiera" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Nie istnieje" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domena" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Odpływ" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Edytuj" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edytuj panel" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edytuj członka" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Włącz udostępnianie adresu URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Krok końcowy" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Zdarzenie" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dane zdarzenia" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nazwa zdarzenia" + } + ], + "label.events": [ + { + "type": 0, + "value": "Zdarzenia" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Istnieje" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL wyjściowy" + } + ], + "label.false": [ + { + "type": 0, + "value": "Fałsz" + } + ], + "label.field": [ + { + "type": 0, + "value": "Pole" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Pola" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtruj" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Połączone" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Surowe dane" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtry" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Pierwsze kliknięcie" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Lejek" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Zrozum wskaźniki konwersji i odpływu użytkowników." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Lejki" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Cele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Większe niż" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Większe niż lub równe" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grupowane" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nazwa hosta" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Zawiera" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Wgląd" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Analiza" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Poznaj lepiej swoje dane, korzystając z segmentów i filtrów." + } + ], + "label.is": [ + { + "type": 0, + "value": "Równe" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Jest fałszem" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nie jest równe" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nieustawione" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Ustawione" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Jest prawdą" + } + ], + "label.join": [ + { + "type": 0, + "value": "Dołącz" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Dołącz do zespołu" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Droga" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Zrozum, w jaki sposób użytkownicy poruszają się po Twojej witrynie." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Drogi" + } + ], + "label.language": [ + { + "type": 0, + "value": "Język" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Języki" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Ostatnie kliknięcie" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Ostatnie " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dni" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Ostatnie " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " godzin" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Ostatnie " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " miesięcy" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Ostatnio widziany" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Opuść" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Opuść zespół" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Mniejsze niż" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Mniejsze niż lub równe" + } + ], + "label.links": [ + { + "type": 0, + "value": "Linki" + } + ], + "label.login": [ + { + "type": 0, + "value": "Zaloguj się" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Wyloguj" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maks" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Rozwiń" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Członek" + } + ], + "label.members": [ + { + "type": 0, + "value": "Członkowie" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Smartfon" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Więcej" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Moje konto" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Moje witryny" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nazwa" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nowe hasło" + } + ], + "label.none": [ + { + "type": 0, + "value": "Brak" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "rekord" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "rekordy" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Wyszukiwanie organiczne" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Zakupy organiczne" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organiczne social media" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organiczne wideo" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Inne" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Przegląd" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Właściciel" + } + ], + "label.page": [ + { + "type": 0, + "value": "Strona" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Strona " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " z " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Wyświetlenia strony" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Tytuł strony" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Strony" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Reklamy płatne" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Płatne wyszukiwanie" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Płatne zakupy" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Płatne social media" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Płatne wideo" + } + ], + "label.password": [ + { + "type": 0, + "value": "Hasło" + } + ], + "label.path": [ + { + "type": 0, + "value": "Ścieżka" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Ścieżki" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Piksele" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Obsługiwane przez " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Poprzedni" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Poprzedni okres" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Poprzedni rok" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Właściwości" + } + ], + "label.property": [ + { + "type": 0, + "value": "Właściwość" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Zapytania" + } + ], + "label.query": [ + { + "type": 0, + "value": "Zapytanie" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametry zapytania" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Czas rzeczywisty" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Polecenie" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Źródło odsyłające" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Źródła odsyłające" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Odśwież" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Wygeneruj ponownie" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regiony" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Pozostało" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Usuń" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Usuń członka" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Raporty" + } + ], + "label.required": [ + { + "type": 0, + "value": "Wymagany" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Zresetuj" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Zresetuj statystyki" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retencja" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mierz przyciągającą siłę swojej strony internetowej, śledząc, jak często użytkownicy powracają." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Przychód" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Sprawdź swoje przychody w czasie." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rola" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Uruchom zapytanie" + } + ], + "label.save": [ + { + "type": 0, + "value": "Zapisz" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekrany" + } + ], + "label.search": [ + { + "type": 0, + "value": "Szukaj" + } + ], + "label.select": [ + { + "type": 0, + "value": "Wybierz" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Wybierz datę" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Wybierz filtr" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Wybierz rolę" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Wybierz witrynę" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesja" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Dane sesji" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesje" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Ustawienia" + } + ], + "label.share": [ + { + "type": 0, + "value": "Udostępnij" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Udostępnij adres URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "W tym dniu" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Źródła" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Krok startowy" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Kroki" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tagi" + } + ], + "label.team": [ + { + "type": 0, + "value": "Zespół" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID zespołu" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Menedżer zespołu" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Członek zespołu" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nazwa zespołu" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Właściciel zespołu" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Ustawienia zespołu" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Tylko do odczytu dla zespołu" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Witryny zespołu" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Zespoły" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Warunki" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Motyw" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "W tym miesiącu" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "W tym tygodniu" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "W tym roku" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Strefa czasowa" + } + ], + "label.title": [ + { + "type": 0, + "value": "Tytuł" + } + ], + "label.today": [ + { + "type": 0, + "value": "Dzisiaj" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Przełącz wykresy" + } + ], + "label.total": [ + { + "type": 0, + "value": "W sumie" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Suma rekordów" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kod śledzenia" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "Prawda" + } + ], + "label.type": [ + { + "type": 0, + "value": "Typ" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unikalne" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unikalni odwiedzający" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Nieznany" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Bez tytułu" + } + ], + "label.update": [ + { + "type": 0, + "value": "Aktualizuj" + } + ], + "label.user": [ + { + "type": 0, + "value": "Użytkownik" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nazwa użytkownika" + } + ], + "label.users": [ + { + "type": 0, + "value": "Użytkownicy" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Śledź swoje kampanie za pomocą parametrów UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Wartość" + } + ], + "label.view": [ + { + "type": 0, + "value": "Zobacz" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Pokaż szczegóły" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Tylko do odczytu" + } + ], + "label.views": [ + { + "type": 0, + "value": "Wyświetlenia" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Widoków na wizytę" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Średni czas wizyty" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Odwiedzający" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Wizyty" + } + ], + "label.website": [ + { + "type": 0, + "value": "Witryna" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID witryny" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Witryny" + } + ], + "label.window": [ + { + "type": 0, + "value": "Okno" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Wczoraj" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Wpisz " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": ", aby potwierdzić." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " aktualnie " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "odwiedzający" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "odwiedzających" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Zebrane dane" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Czy na pewno chcesz usunąć " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Czy na pewno chcesz opuścić " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Czy na pewno chcesz usunąć " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Czy na pewno chcesz zresetować statystyki " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Usunięcie zespołu usunie wszystkie jego witryny." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Wszystkie powiązane dane również zostaną usunięte." + } + ], + "message.error": [ + { + "type": 0, + "value": "Coś poszło nie tak." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Przejdź do ustawień" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nieprawidłowa nazwa użytkownika lub hasło." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Nieprawidłowa witryna" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimalna długość " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " znaków" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Nowa wersja Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " jest dostępna!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Brak dostępnych danych." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Brak dostępnych danych o zdarzeniach." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Hasła się nie zgadzają" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Nie znaleziono wyników." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Ten zespół nie ma żadnych witryn internetowych." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Nie stworzyłeś żadnych zespołów." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Nie ma żadnych użytkowników." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nie masz skonfigurowanych żadnych witryn internetowych." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Strona nie znaleziona." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Aby zresetować tę witrynę, wpisz " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " w polu poniżej, aby potwierdzić." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Wszystkie statystyki tej witryny zostaną usunięte, ale kod śledzenia pozostanie nienaruszony." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Zapisano pomyślnie." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "To jest publicznie udostępniany adres URL dla " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Jesteś już członkiem zespołu." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Nie znaleziono zespołu." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Strony internetowe mogą być przeglądane przez każdego członka zespołu." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Kod śledzenia" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Czy przenieść tę witrynę do Twoje konta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Wybierz zespół, do którego chcesz przenieść tę witrynę." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Przenieś własność witryny na swoje konto lub do innego zespołu." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Zdarzenie wyzwalające" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Użytkownik usunięty." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Obejrzana strona" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Odwiedzający z " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " używa " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/pt-BR.json b/public/intl/messages/pt-BR.json new file mode 100644 index 0000000..d99a332 --- /dev/null +++ b/public/intl/messages/pt-BR.json @@ -0,0 +1,2206 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Código de acesso" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Ações do usuário" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Registro de atividades" + } + ], + "label.add": [ + { + "type": 0, + "value": "Adicionar" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Adicionar quadro" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Adicionar descrição" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Adicionar membro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adicionar etapa" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Adicionar site" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrador" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliado" + } + ], + "label.after": [ + { + "type": 0, + "value": "Depois" + } + ], + "label.all": [ + { + "type": 0, + "value": "Todos" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Todos os períodos" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Análise" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aplicar" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribuição" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Veja como os usuários interagem com seu marketing e o que impulsiona conversões." + } + ], + "label.average": [ + { + "type": 0, + "value": "Média" + } + ], + "label.back": [ + { + "type": 0, + "value": "Voltar" + } + ], + "label.before": [ + { + "type": 0, + "value": "Antes" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Quadros" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Taxa de rejeição" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Detalhamento" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Navegador" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navegadores" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campanhas" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancelar" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Alterar senha" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canais" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cidades" + } + ], + "label.city": [ + { + "type": 0, + "value": "Cidade" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Limpar tudo" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Comparar datas" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmar" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmar senha" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contém" + } + ], + "label.content": [ + { + "type": 0, + "value": "Conteúdo" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuar" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversão" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Taxa de conversão" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Etapa de conversão" + } + ], + "label.count": [ + { + "type": 0, + "value": "Contagem" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Países" + } + ], + "label.country": [ + { + "type": 0, + "value": "País" + } + ], + "label.create": [ + { + "type": 0, + "value": "Criar" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Criar relatório" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Criar equipe" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Criar usuário" + } + ], + "label.created": [ + { + "type": 0, + "value": "Criado" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Criado por" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Moeda" + } + ], + "label.current": [ + { + "type": 0, + "value": "Atual" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Senha atual" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Período personalizado" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Painel" + } + ], + "label.data": [ + { + "type": 0, + "value": "Dados" + } + ], + "label.date": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Período" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dia" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Período padrão" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Excluir" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Excluir relatório" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Excluir equipe" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Excluir usuário" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Excluir site" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descrição" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Computador" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalhes" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispositivo" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositivos" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direto" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Fechar" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distinto" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Não contém" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Não inclui" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Não existe" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domínio" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Abandono" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Editar" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Editar painel" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Editar membro" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Ativar link para compartilhar" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Evento" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dados do evento" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nome do evento" + } + ], + "label.events": [ + { + "type": 0, + "value": "Tipos de eventos" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existe" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Não" + } + ], + "label.field": [ + { + "type": 0, + "value": "Campo" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Campos" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtro" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinado" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Bruto" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtros" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primeiro clique" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funil" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Entenda a taxa de conversão e abandono dos seus usuários." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funis" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Meta" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Metas" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Acompanhe suas metas para visualizações de página e eventos." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Maior que" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Maior ou igual a" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Agrupado" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nome do host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inclui" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Explore seus dados em mais detalhes usando filtros" + } + ], + "label.is": [ + { + "type": 0, + "value": "É igual a" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "É falso" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Não é igual a" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Não definido" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Definido" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "É verdadeiro" + } + ], + "label.join": [ + { + "type": 0, + "value": "Participar" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Participar da equipe" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Jornada" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Entenda como os usuários navegam pelo seu site." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Jornadas" + } + ], + "label.language": [ + { + "type": 0, + "value": "Idioma" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Idiomas" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Notebook" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Último clique" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dias" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Últimas " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " horas" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " meses" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Última visualização" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Sair" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Sair da equipe" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Menor que" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Menor ou igual a" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "Entrar" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Sair" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Gerenciar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Máximo" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expandir" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Médio" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membro" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membros" + } + ], + "label.min": [ + { + "type": 0, + "value": "Mínimo" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Celular" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modelo" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mais" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Minha conta" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Meus sites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nome" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nova senha" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nenhum" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "registro" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "registros" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Busca orgânica" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Compras orgânicas" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social orgânico" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Vídeo orgânico" + } + ], + "label.os": [ + { + "type": 0, + "value": "Sistema operacional" + } + ], + "label.other": [ + { + "type": 0, + "value": "Outro" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Visão geral" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Proprietário" + } + ], + "label.page": [ + { + "type": 0, + "value": "Página" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Página " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " de " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Visualizações de página" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Título" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Páginas" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Anúncios pagos" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Busca paga" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Compras pagas" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social pago" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Vídeo pago" + } + ], + "label.password": [ + { + "type": 0, + "value": "Senha" + } + ], + "label.path": [ + { + "type": 0, + "value": "Caminho" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Caminhos" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Desenvolvido por " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Período anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Ano anterior" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Perfil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Propriedades" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propriedade" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Consultas" + } + ], + "label.query": [ + { + "type": 0, + "value": "Consulta" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parâmetros da consulta" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Tempo real" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referência" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referência" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referências" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Atualizar" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Gerar novamente" + } + ], + "label.region": [ + { + "type": 0, + "value": "Estado" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Estados" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Restante" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remover" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remover membro" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Relatórios" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obrigatório" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Redefinir" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Redefinir dados" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retenção" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Avalie a fidelidade dos seus usuários medindo a frequência com que eles retornam." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Receita" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Veja sua receita ao longo do tempo." + } + ], + "label.role": [ + { + "type": 0, + "value": "Função" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Executar consulta" + } + ], + "label.save": [ + { + "type": 0, + "value": "Salvar" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Tamanhos de tela" + } + ], + "label.search": [ + { + "type": 0, + "value": "Pesquisar" + } + ], + "label.select": [ + { + "type": 0, + "value": "Selecionar" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Selecionar data" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Selecionar filtro" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Selecionar função" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Selecionar site" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sessão" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Dados da sessão" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessões" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Configurações" + } + ], + "label.share": [ + { + "type": 0, + "value": "Compartilhar" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Link para compartilhar" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Apenas um dia" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Fontes" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Etapas" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Soma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Equipe" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID da equipe" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Gerente da equipe" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Membro da equipe" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nome da equipe" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Proprietário da equipe" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Configurações da equipe" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Apenas visualização da equipe" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Sites da equipe" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Equipes" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termos" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Este mês" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Esta semana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Este ano" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Fuso horário" + } + ], + "label.title": [ + { + "type": 0, + "value": "Título" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hoje" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Alternar gráficos" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total de registros" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Código de rastreamento" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir site" + } + ], + "label.true": [ + { + "type": 0, + "value": "Sim" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tipo" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Únicos" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitantes únicos" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Desconhecido" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Sem título" + } + ], + "label.update": [ + { + "type": 0, + "value": "Atualizar" + } + ], + "label.user": [ + { + "type": 0, + "value": "Usuário" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nome de usuário" + } + ], + "label.users": [ + { + "type": 0, + "value": "Usuários" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Acompanhe suas campanhas de publicidade através de parâmetros UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Valor" + } + ], + "label.view": [ + { + "type": 0, + "value": "Visualizar" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Ver mais" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Somente visualização" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visualizações" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Visualizações por visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo médio de visita" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitantes" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visitas" + } + ], + "label.website": [ + { + "type": 0, + "value": "Site" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID do site" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Sites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Janela" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Ontem" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Digite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " na caixa abaixo para confirmar." + } + ], + "message.active-users": [ + { + "type": 0, + "value": " Atualmente " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " usuários ativos" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Tem certeza de que deseja excluir " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Tem certeza de que deseja sair de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Tem certeza que deseja remover " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Tem certeza que deseja redefinir os dados de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Excluir a equipe também excluirá todos os sites da equipe." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Todos os dados relacionados serão excluídos." + } + ], + "message.error": [ + { + "type": 0, + "value": "Ocorreu um erro." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " em " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ir para as configurações" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nome de usuário ou senha incorretos." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domínio inválido" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "A senha deve ter no mínimo " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caracteres" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Uma nova versão " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " do Umami está disponível!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Não há dados disponíveis." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Não há eventos disponíveis." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "As senhas não coincidem." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Nenhum resultado encontrado." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Esta equipe não possui sites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Você ainda não criou nenhuma equipe." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Não há usuários." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Você ainda não configurou nenhum site." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Página não encontrada." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Se você tiver certeza de que deseja redefinir este site, digite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " na caixa de entrada abaixo para confirmar." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Todos os dados estatísticos deste site serão excluídos, mas seu código de rastreamento permanecerá o mesmo." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Salvo com sucesso." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Este é o link para compartilhar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Você já é membro desta equipe." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Equipe não encontrada." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Qualquer membro da equipe pode visualizar os sites." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Código de rastreamento" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transferir este site para sua conta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selecione para qual equipe deseja transferir este site." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfira a propriedade do site para sua conta ou para outra equipe." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Evento disparado" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Usuário excluído." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Página visualizada" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitante de " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " usando o navegador " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " em um " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " com sistema operacional " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": "." + } + ] +} diff --git a/public/intl/messages/pt-PT.json b/public/intl/messages/pt-PT.json new file mode 100644 index 0000000..630b8a9 --- /dev/null +++ b/public/intl/messages/pt-PT.json @@ -0,0 +1,2226 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Código de acesso" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Ações" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Registo de atividade" + } + ], + "label.add": [ + { + "type": 0, + "value": "Adicionar" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Adicionar quadro" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Adicionar descrição" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Adicionar membro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adicionar passo" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Adicionar website" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrador" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliado" + } + ], + "label.after": [ + { + "type": 0, + "value": "Depois" + } + ], + "label.all": [ + { + "type": 0, + "value": "Todos" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Todo o tempo" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Análise" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aplicar" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribuição" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Veja como os utilizadores interagem com o seu marketing e o que impulsiona conversões." + } + ], + "label.average": [ + { + "type": 0, + "value": "Média" + } + ], + "label.back": [ + { + "type": 0, + "value": "Voltar" + } + ], + "label.before": [ + { + "type": 0, + "value": "Antes" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Quadros" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Taxa de rejeição" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Detalhamento" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Navegador" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Navegadores" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campanhas" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Cancelar" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Alterar senha" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canais" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cidades" + } + ], + "label.city": [ + { + "type": 0, + "value": "Cidade" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Limpar tudo" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohorte" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Comparar datas" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirmar" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmar senha" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Conteúdo" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversão" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Taxa de conversão" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Passo de conversão" + } + ], + "label.count": [ + { + "type": 0, + "value": "Contagem" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Países" + } + ], + "label.country": [ + { + "type": 0, + "value": "País" + } + ], + "label.create": [ + { + "type": 0, + "value": "Criar" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Criar relatório" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Criar equipa" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Criar utilizador" + } + ], + "label.created": [ + { + "type": 0, + "value": "Criado" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Criado por" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Moeda" + } + ], + "label.current": [ + { + "type": 0, + "value": "Atual" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Senha atual" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Intervalo personalizado" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Painel" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Intervalo de datas" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dia" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Intervalo de datas predefinido" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Eliminar" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Eliminar relatório" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Eliminar equipa" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Eliminar utilizador" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Eliminar website" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descrição" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Computador" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalhes" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispositivo" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispositivos" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direto" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Ignorar" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "ID distinto" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Não contém" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Não inclui" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Não existe" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domínio" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Editar" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Editar painel" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Editar membro" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Ativar link de partilha" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Passo final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL de entrada" + } + ], + "label.event": [ + { + "type": 0, + "value": "Evento" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dados do evento" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nome do evento" + } + ], + "label.events": [ + { + "type": 0, + "value": "Eventos" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existe" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL de saída" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falso" + } + ], + "label.field": [ + { + "type": 0, + "value": "Campo" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Campos" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtro" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinado" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Dados brutos" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtros" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primeiro clique" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Primeira visualização" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funil" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Compreenda a taxa de conversão e abandono dos utilizadores." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funis" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Objetivo" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Objetivos" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Acompanhe os seus objetivos para visualizações de página e eventos." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Maior que" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Maior ou igual a" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Agrupado" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nome do host" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inclui" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "É" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "É falso" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Não é" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Não definido" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Definido" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "É verdadeiro" + } + ], + "label.join": [ + { + "type": 0, + "value": "Juntar-se" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Juntar-se à equipa" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Jornada" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Compreenda como os utilizadores navegam no seu website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Jornadas" + } + ], + "label.language": [ + { + "type": 0, + "value": "Língua" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Línguas" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Portátil" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Último clique" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dias" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Últimas " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " horas" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " meses" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Última visualização" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Sair" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Sair da equipa" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Menor que" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Menor ou igual a" + } + ], + "label.links": [ + { + "type": 0, + "value": "Ligações" + } + ], + "label.login": [ + { + "type": 0, + "value": "Iniciar sessão" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Sair" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Gerir" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Gestor" + } + ], + "label.max": [ + { + "type": 0, + "value": "Máximo" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expandir" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Médio" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membro" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membros" + } + ], + "label.min": [ + { + "type": 0, + "value": "Mínimo" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Telemóvel" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modelo" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mais" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "A minha conta" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Os meus websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nome" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nova senha" + } + ], + "label.none": [ + { + "type": 0, + "value": "Nenhum" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Pesquisa orgânica" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Compras orgânicas" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social orgânico" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Vídeo orgânico" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Outro" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Proprietário" + } + ], + "label.page": [ + { + "type": 0, + "value": "Página" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Visualizações da página" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Páginas" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Anúncios pagos" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Pesquisa paga" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Compras pagas" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social pago" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Vídeo pago" + } + ], + "label.password": [ + { + "type": 0, + "value": "Senha" + } + ], + "label.path": [ + { + "type": 0, + "value": "Caminho" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Caminhos" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Píxeis" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Distribuído por " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Período anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Ano anterior" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Perfil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Propriedades" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propriedade" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Tempo real" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referência" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referenciadores" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Atualizar" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Restante" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obrigatório" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Repor" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Repor estatísticas" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Receita" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Veja a sua receita ao longo do tempo." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Guardar" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Selecionar filtro" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sessão" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Dados da sessão" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Definições" + } + ], + "label.share": [ + { + "type": 0, + "value": "Partilhar" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Partilhar link" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Dia único" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Fontes" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etiqueta" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etiquetas" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Gestor de equipa" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Definições da equipa" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termos" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Este mês" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Esta semana" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Este ano" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Fuso horário" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hoje" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Alternar gráficos" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Código de rastreamento" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Visitantes únicos" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Desconhecido" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nome de utilizador" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Ver detalhes" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visualizações" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo médio de visita" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitantes" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Websites" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "visitante" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "visitantes" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " neste momento" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Tem a certeza que pretende eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Tem a certeza que pretende restaurar as estatísticas de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Todos os dados associados também serão eliminados." + } + ], + "message.error": [ + { + "type": 0, + "value": "Ocorreu um erro." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ir para as definições" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nome de utilizador/senha incorretos." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domínio inválido" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Sem dados disponíveis." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "As senhas não coincidem" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Não tens nenhum website configurado." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Página não encontrada." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Todas as estatísticas deste site serão eliminadas, mas o seu código de rastreamento permanecerá intacto." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Guardado com sucesso." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Este é o link de partilha público para " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Código de rastreamento" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitante de " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " a usar " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " no " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "os" + } + ] +} diff --git a/public/intl/messages/ro-RO.json b/public/intl/messages/ro-RO.json new file mode 100644 index 0000000..d434c0b --- /dev/null +++ b/public/intl/messages/ro-RO.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Cod de access" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Acțiuni" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Jurnal de activități" + } + ], + "label.add": [ + { + "type": 0, + "value": "Adaugă" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Adaugă panou" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Adaugă descriere" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Adaugă membru" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adaugă pas" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Adaugă site web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Afiliat" + } + ], + "label.after": [ + { + "type": 0, + "value": "După" + } + ], + "label.all": [ + { + "type": 0, + "value": "Toate" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Pentru tot timpul" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analiză" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Aplică" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atribuire" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Vezi cum utilizatorii interacționează cu marketingul tău și ce determină conversiile." + } + ], + "label.average": [ + { + "type": 0, + "value": "Mediu" + } + ], + "label.back": [ + { + "type": 0, + "value": "Înapoi" + } + ], + "label.before": [ + { + "type": 0, + "value": "Înainte" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Panouri" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Rata de respingere" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Detaliat" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsere" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campanii" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Anulează" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Schimbare parolă" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Canale" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Orașe" + } + ], + "label.city": [ + { + "type": 0, + "value": "Oraș" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Șterge tot" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohortă" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compară" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compară datele" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Confirmare parolă" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Conține" + } + ], + "label.content": [ + { + "type": 0, + "value": "Conținut" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continuă" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversie" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Rată de conversie" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Pas de conversie" + } + ], + "label.count": [ + { + "type": 0, + "value": "Număr" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Țări" + } + ], + "label.country": [ + { + "type": 0, + "value": "Țară" + } + ], + "label.create": [ + { + "type": 0, + "value": "Crează" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Crează report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Crează echipă" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Crează utilizator" + } + ], + "label.created": [ + { + "type": 0, + "value": "Creat" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creat de" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Monedă" + } + ], + "label.current": [ + { + "type": 0, + "value": "Curent" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Parola curentă" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Interval personalizat" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Tablou de bord" + } + ], + "label.data": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date": [ + { + "type": 0, + "value": "Dată" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Interval" + } + ], + "label.day": [ + { + "type": 0, + "value": "Zi" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Interval implicit" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Șterge" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Șterge raport" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Șterge echipă" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Șterge utilizator" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Șterge site web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Descriere" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalii" + } + ], + "label.device": [ + { + "type": 0, + "value": "Dispozitiv" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Dispozitive" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Renunță" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Nu conține" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Nu include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Nu există" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domeniu" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Rată de abandon" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Editare" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Editare tablou de bord" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Editare membru" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Activare adresă URL de distribuire" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Pas final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL de intrare" + } + ], + "label.event": [ + { + "type": 0, + "value": "Eveniment" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Date despre eveniment" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Nume eveniment" + } + ], + "label.events": [ + { + "type": 0, + "value": "Evenimente" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Există" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL de ieșire" + } + ], + "label.false": [ + { + "type": 0, + "value": "Fals" + } + ], + "label.field": [ + { + "type": 0, + "value": "Câmp" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Câmpuri" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtru" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combinat" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Brut" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtre" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Primul click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Văzut pentru prima dată" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Parcursul utilizatorului" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Înțelege rata de conversie și rata de abandon a utilizatorilor." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Parcursuri" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Obiectiv" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Obiective" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Urmărește obiectivele de vizualizări și evenimente." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Mai mare decât" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Mai mare sau egal cu" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grupat" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Nume gazdă" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Include" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Perspectivă" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Perspective" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Aprofundează datele utilizând segmente și filtre." + } + ], + "label.is": [ + { + "type": 0, + "value": "Este" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Este fals" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nu este" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nu este setat" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Este setat" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Este adevărat" + } + ], + "label.join": [ + { + "type": 0, + "value": "Alătură-te" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Alătură-te echipei" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Traseu" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Înțelege cum navighează vizitatorii prin website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Trasee" + } + ], + "label.language": [ + { + "type": 0, + "value": "Limbă" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Limbi" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Ultimul click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Ultimele " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " zile" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Ultimele " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ore" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Ultimele " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " luni" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Văzut ultima dată" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Părăsește" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Părăsește echipa" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Mai puțin decât" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Mai puțin sau egal cu" + } + ], + "label.links": [ + { + "type": 0, + "value": "Linkuri" + } + ], + "label.login": [ + { + "type": 0, + "value": "Autentificare" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Ieșire din cont" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Administrează" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Extinde" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Mediu" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membru" + } + ], + "label.members": [ + { + "type": 0, + "value": "Membri" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobil" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mai mult" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Contul meu" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Website-ul meu" + } + ], + "label.name": [ + { + "type": 0, + "value": "Nume" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Parolă nouă" + } + ], + "label.none": [ + { + "type": 0, + "value": "Niciunul" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "înregistrare" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "înregistrări" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Căutare organică" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Cumpărături organice" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Social organic" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Video organic" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Altul" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Vedere de ansamblu" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Titular" + } + ], + "label.page": [ + { + "type": 0, + "value": "Pagină" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Pagina " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " din " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Vizualizări de pagină" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Titlul paginii" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pagini" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Reclame plătite" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Căutare plătită" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Cumpărături plătite" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Social plătit" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Video plătit" + } + ], + "label.password": [ + { + "type": 0, + "value": "Parolă" + } + ], + "label.path": [ + { + "type": 0, + "value": "Rută" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Rute" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixeli" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Cu sprijinul " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Perioda anterioară" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Anul anterior" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Proprietăți" + } + ], + "label.property": [ + { + "type": 0, + "value": "Proprietate" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Interogări" + } + ], + "label.query": [ + { + "type": 0, + "value": "Interogare" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametri de interogare" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Timp real" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Proveniență" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Site-uri de proveniență" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Reîmprospătare" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerează" + } + ], + "label.region": [ + { + "type": 0, + "value": "Regiune" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regiuni" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Rămas" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Îndepărtează" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Îndepărtează membru" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Rapoarte" + } + ], + "label.required": [ + { + "type": 0, + "value": "Obligatoriu" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Resetează" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Resetează statisticile pentru site" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retenție" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Măsoară atractivitatea site-ului tău prin urmărirea frecvenței cu care utilizatorii se întorc." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Venit" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Urmărește venitul în timp." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Execută interogarea" + } + ], + "label.save": [ + { + "type": 0, + "value": "Salvează" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ecrane" + } + ], + "label.search": [ + { + "type": 0, + "value": "Căutare" + } + ], + "label.select": [ + { + "type": 0, + "value": "Selectează" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Selectează data" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Selectează filtru" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Selectează rolul" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Selectează website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesiune" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Date sesiune" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesiuni" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Setări" + } + ], + "label.share": [ + { + "type": 0, + "value": "Partajează" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Partajare URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "O singură zi" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Surse" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Pas de început" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pași" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sumă" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tabletă" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etichetă" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etichete" + } + ], + "label.team": [ + { + "type": 0, + "value": "Echipă" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID Echipă" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Manager echipă" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Membru echipă" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Nume echipă" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Titular echipă" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Setări echipă" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Doar vizualizare echipă" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Website-uri echipă" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Echipă" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Termeni" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Temă" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Această lună" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Această săptămână" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Acest an" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Fus orar" + } + ], + "label.title": [ + { + "type": 0, + "value": "Titlu" + } + ], + "label.today": [ + { + "type": 0, + "value": "Astăzi" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Schimbă graficele" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total înregistrări" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Cod de urmărire" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Tranzacții" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "Adevărat" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tip" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unici" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Vizitatori unici" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clienți unici" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Necunoscut" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Fără titlu" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Utilizator" + } + ], + "label.username": [ + { + "type": 0, + "value": "Nume utilizator" + } + ], + "label.users": [ + { + "type": 0, + "value": "Utilizatori" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Urmărește campaniile tale cu parametri UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Valoare" + } + ], + "label.view": [ + { + "type": 0, + "value": "Vizualizare" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Vizualizare detalii" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Doar vizualizare" + } + ], + "label.views": [ + { + "type": 0, + "value": "Vizualizări" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vizualizări per vizită" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Timp mediu de vizitare" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Vizitatori" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Vizite" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID Website" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Site-uri web" + } + ], + "label.window": [ + { + "type": 0, + "value": "Fereastră" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Ieri" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Scrie " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " în câmpul de mai jos pentru a confirma." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "vizitator activ" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "vizitatori activi" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Date colectate" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Ești sigur că vrei să ștergi " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Ești sigur că vrei să părăsești " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ești sigur că vrei să ștergi " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Ești sigur că vrei să resetezi statisticile pentru " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Ștergerea unei echipe va șterge și toate website-urile echipei." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Toate datele asociate vor fi șterse, de asemenea." + } + ], + "message.error": [ + { + "type": 0, + "value": "Ceva n-a mers bine." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " la " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Mergi la Setări" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nume utilizator / parolă incorecte." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Domeniul nu este valid" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Lungimea minimă este de " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " caractere" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "O nouă versiune de Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " este disponibilă!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nicio informație disponibilă." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Nu sunt disponibile date legate de eveniment." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Parolele nu se potrivesc" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Nu a fost găsit niciun rezultat." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Echipa aceasta nu are niciun website." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Nu ai creat nicio echipă." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Nu există utilizatori." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nu ai niciun site web configurat." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Pagina nu a fost găsită." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Pentru a reseta acest website, scrie " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " În câmpul de mai jos pentru a confirma." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Toate statisticile pentru acest site web vor fi șterse, dar codul de urmărire va rămâne intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Salvat cu succes." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Aceasta este adresa URL de partajare pentru " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Deja ești membru al acestei echipe." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Echipa nu a fost găsită." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Site-urile web pot fi vizualizate de către oricare membru al echipei." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Cod de urmărire" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Vrei să transferi acest website pe contul tău?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selectează echipa căreia vrei să îi transferi site-ul." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transferă titulatura site-ului către tine sau către o altă echipă." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Eveniment declanșat" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Utilizator șters." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Pagină vizualizată" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Vizitator din " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " folosind " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " pe " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ru-RU.json b/public/intl/messages/ru-RU.json new file mode 100644 index 0000000..b4bf8a2 --- /dev/null +++ b/public/intl/messages/ru-RU.json @@ -0,0 +1,2190 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Код доступа" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Действия" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Журнал активности" + } + ], + "label.add": [ + { + "type": 0, + "value": "Добавить" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Добавить доску" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Добавить описание" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Добавить участника" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Добавить шаг" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Добавить сайт" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Администратор" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Партнер" + } + ], + "label.after": [ + { + "type": 0, + "value": "После" + } + ], + "label.all": [ + { + "type": 0, + "value": "Все" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Все время" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Аналитика" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Применить" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Атрибуция" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Посмотрите, как пользователи взаимодействуют с вашим маркетингом и что приводит к конверсиям." + } + ], + "label.average": [ + { + "type": 0, + "value": "Средний" + } + ], + "label.back": [ + { + "type": 0, + "value": "Назад" + } + ], + "label.before": [ + { + "type": 0, + "value": "До" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Доски" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Отказы" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Авария" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Браузер" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Браузеры" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Кампании" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Отменить" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Изменить пароль" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Каналы" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Города" + } + ], + "label.city": [ + { + "type": 0, + "value": "Город" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Очистить все" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Когорта" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Сравнить" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Сравнить даты" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Подтвердить" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Подтвердить пароль" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Содержит" + } + ], + "label.content": [ + { + "type": 0, + "value": "Контент" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Продолжить" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Конверсия" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Коэффициент конверсии" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Шаг конверсии" + } + ], + "label.count": [ + { + "type": 0, + "value": "Считать" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Страны" + } + ], + "label.country": [ + { + "type": 0, + "value": "Страна" + } + ], + "label.create": [ + { + "type": 0, + "value": "Создать" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Создать отчет" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Создать команду" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Создать пользователя" + } + ], + "label.created": [ + { + "type": 0, + "value": "Создано" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Создано" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Валюта" + } + ], + "label.current": [ + { + "type": 0, + "value": "Текущий" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Текущий пароль" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Другой период" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Информационная панель" + } + ], + "label.data": [ + { + "type": 0, + "value": "Данные" + } + ], + "label.date": [ + { + "type": 0, + "value": "Дата" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Диапазон дат" + } + ], + "label.day": [ + { + "type": 0, + "value": "День" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Диапазон дат по-умолчанию" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Удалить" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Удалить отчет" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Удалить команду" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Удалить пользователя" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Удалить сайт" + } + ], + "label.description": [ + { + "type": 0, + "value": "Описание" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Настольный компьютер" + } + ], + "label.details": [ + { + "type": 0, + "value": "Подробности" + } + ], + "label.device": [ + { + "type": 0, + "value": "Устройство" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Устройства" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Отклонить" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Не содержит" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Не включает" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Не существует" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Домен" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Высадка" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Изменить" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Редактировать дашборд" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Редактировать участника" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Разрешить делиться ссылкой" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Конечный шаг" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL-адрес входа" + } + ], + "label.event": [ + { + "type": 0, + "value": "Событие" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Данные о событии" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Название события" + } + ], + "label.events": [ + { + "type": 0, + "value": "События" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Существует" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL-адрес выхода" + } + ], + "label.false": [ + { + "type": 0, + "value": "Ложь" + } + ], + "label.field": [ + { + "type": 0, + "value": "Поле" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Поля" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Фильтр" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Объединенные" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Сырые данные" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Фильтры" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Первый клик" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Первый вход" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Воронка" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Изучите коэффициент конверсии и ухода пользователей." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Воронки" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Цель" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Цели" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Отслеживайте свои цели по просмотрам страниц и событиям." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Больше, чем" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Больше или равно" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Группировано" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Имя хоста" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Включает" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Инсайт" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Информация" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Погрузитесь глубже в свои данные с помощью сегментов и фильтров." + } + ], + "label.is": [ + { + "type": 0, + "value": "Является" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Ложно" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Не установлен" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Не установлено" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Установлен" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Истинно" + } + ], + "label.join": [ + { + "type": 0, + "value": "Присоединиться" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Присоединиться к команде" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Поймите, как пользователи перемещаются по вашему сайту." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Пути" + } + ], + "label.language": [ + { + "type": 0, + "value": "Язык" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Языки" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Ноутбук" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Последний клик" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Последние " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " дней" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Последние " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " часа" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Последние " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " месяцев" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Последний вход" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Уйти" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Покинуть команду" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Меньше, чем" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Меньше или равно" + } + ], + "label.links": [ + { + "type": 0, + "value": "Ссылки" + } + ], + "label.login": [ + { + "type": 0, + "value": "Войти" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Выйти" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Управление" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Менеджер" + } + ], + "label.max": [ + { + "type": 0, + "value": "Максимум" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Развернуть" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Средний" + } + ], + "label.member": [ + { + "type": 0, + "value": "Участник" + } + ], + "label.members": [ + { + "type": 0, + "value": "Участники" + } + ], + "label.min": [ + { + "type": 0, + "value": "Минимум" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Смартфон" + } + ], + "label.model": [ + { + "type": 0, + "value": "Модель" + } + ], + "label.more": [ + { + "type": 0, + "value": "Больше" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Мой профиль" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Мои сайты" + } + ], + "label.name": [ + { + "type": 0, + "value": "Имя" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Новый пароль" + } + ], + "label.none": [ + { + "type": 0, + "value": "Не указано" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "запись" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "записи" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Органический поиск" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Органические покупки" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Органические соцсети" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Органическое видео" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Другое" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Обзор" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Владелец" + } + ], + "label.page": [ + { + "type": 0, + "value": "Страница" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Страница " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " из " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Просмотры страниц" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Название страницы" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Страницы" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Платная реклама" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Платный поиск" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Платные покупки" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Платные соцсети" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Платное видео" + } + ], + "label.password": [ + { + "type": 0, + "value": "Пароль" + } + ], + "label.path": [ + { + "type": 0, + "value": "Путь" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Пути" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Пиксели" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "На движке " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Предыдущий" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Предыдущий период" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Предыдущий год" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Профиль" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Свойства" + } + ], + "label.property": [ + { + "type": 0, + "value": "Свойство" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Запросы" + } + ], + "label.query": [ + { + "type": 0, + "value": "Запрос" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Параметры запроса" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Реальное время" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Реферер" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Источники" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Обновить" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Обновить" + } + ], + "label.region": [ + { + "type": 0, + "value": "Регион" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Регионы" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Осталось" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Удалить" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Удалить участника" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Отчеты" + } + ], + "label.required": [ + { + "type": 0, + "value": "Обязательное" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Сбросить" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Сбросить статистику" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Удержание" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Измерьте «прилипаемость» вашего сайта, отслеживая, как часто пользователи возвращаются на него." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Выручка" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Изучите свои доходы за определенное время." + } + ], + "label.role": [ + { + "type": 0, + "value": "Роль" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Выполнить запрос" + } + ], + "label.save": [ + { + "type": 0, + "value": "Сохранить" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Экраны" + } + ], + "label.search": [ + { + "type": 0, + "value": "Поиск" + } + ], + "label.select": [ + { + "type": 0, + "value": "Выберите" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Выберите дату" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Выберите фильтр" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Выберите роль" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Выбрать сайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Сессия" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Данные сессии" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Сессии" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Настройки" + } + ], + "label.share": [ + { + "type": 0, + "value": "Поделиться" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Поделиться ссылкой" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Один день" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Источники" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Начальный этап" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Шаги" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Сумма" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Планшет" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Тег" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Теги" + } + ], + "label.team": [ + { + "type": 0, + "value": "Команда" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID команды" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Менеджер команды" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Член команды" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Название команды" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Владелец команды" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Настройки команды" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Только командный просмотр" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Веб-сайты команды" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Команды" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Условия" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Тема" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Этот месяц" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Эта неделя" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Этот год" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Часовой пояс" + } + ], + "label.title": [ + { + "type": 0, + "value": "Заголовок" + } + ], + "label.today": [ + { + "type": 0, + "value": "Сегодня" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Показать/скрыть графики" + } + ], + "label.total": [ + { + "type": 0, + "value": "Всего" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Всего записей" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Код отслеживания" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Транзакции" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Передача" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Передать сайт" + } + ], + "label.true": [ + { + "type": 0, + "value": "Правда" + } + ], + "label.type": [ + { + "type": 0, + "value": "Тип" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Уникальный" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Уникальные посетители" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Уникальные клиенты" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Неизвестно" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Без названия" + } + ], + "label.update": [ + { + "type": 0, + "value": "Обновление" + } + ], + "label.user": [ + { + "type": 0, + "value": "Пользователь" + } + ], + "label.username": [ + { + "type": 0, + "value": "Имя пользователя" + } + ], + "label.users": [ + { + "type": 0, + "value": "Пользователи" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Отслеживайте свои кампании с помощью UTM-параметров." + } + ], + "label.value": [ + { + "type": 0, + "value": "Значение" + } + ], + "label.view": [ + { + "type": 0, + "value": "Просмотреть" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Посмотреть детали" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Только просмотр" + } + ], + "label.views": [ + { + "type": 0, + "value": "Просмотры" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Просмотров за посещение" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Среднее время посещения" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Посетители" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Посещения" + } + ], + "label.website": [ + { + "type": 0, + "value": "Сайт" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID сайта" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Сайты" + } + ], + "label.window": [ + { + "type": 0, + "value": "Окно" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Вчера" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Введите " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " в поле ниже, чтобы подтвердить." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " текущих посетителей" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Собранные данные" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Вы уверены, что хотите удалить " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Вы уверены, что хотите уйти " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Вы уверены, что хотите удалить " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Вы уверены, что хотите сбросить статистику " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "При удалении команды будут удалены и все ее веб-сайты." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Все связанные данные будут также удалены." + } + ], + "message.error": [ + { + "type": 0, + "value": "Что-то пошло не так." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Перейти к настройкам" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Неверное имя пользователя/пароль." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Некорректный домен" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Минимальная длина " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " символов" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Вышла новая версия Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Нет данных." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Данные о событиях отсутствуют." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Пароли не совпадают" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Результаты не найдены." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "У этой команды нет ни одного сайта." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Вы не создали ни одной команды." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Нет пользователей." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "У вас нет настроенных сайтов." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Страница не найдена." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Для сброса введите RESET" + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Вся статистика для этого сайта будет удалена, но ваш код отслеживания останется нетронутым." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Успешно сохранено." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Это публичная ссылка для " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Вы уже состоите в команде." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Команда не найдена." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Сайты могут просматривать все члены команды." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Код отслеживания" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Перенести этот сайт в свой прфоиль?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Выберите команду, которой нужно передать этот сайт." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Передайте право владения сайтом своей учетной записи или другой команде." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Запущенное событие" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Пользователь удален." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Просмотренная страница" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Посетитель из " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " используя " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/si-LK.json b/public/intl/messages/si-LK.json new file mode 100644 index 0000000..2dfa47f --- /dev/null +++ b/public/intl/messages/si-LK.json @@ -0,0 +1,2228 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Actions" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "වෙබ් අඩවිය එක් කරන්න" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "සියල්ල" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "හැම වෙලාවෙම" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "ආපසු" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce rate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browsers" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "අවලංගු කරන්න" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "මුරපදය වෙනස් කරන්න" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "මුරපදය සත්‍යාපනය කරන්න" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Countries" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "වත්මන් මුරපදය" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "අභිරුචි පරාසය" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "උපකරණ පුවරුව" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "දින පරාසය" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "පෙරනිමි දින පරාසය" + } + ], + "label.delete": [ + { + "type": 0, + "value": "මකන්න" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "වෙබ් අඩවිය මකන්න" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Devices" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "මගහරින්න" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "වසම" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "සංස්කරණය කරන්න" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "බෙදාගැනීමේ URL සබල කරන්න" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "සිදුවීම් දත්ත" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "Events" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Combined" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Raw" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "භාෂාව" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "අන්තිම " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " දින" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "අන්තිම " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " පැය" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "ලොග් වෙන්න" + } + ], + "label.logout": [ + { + "type": 0, + "value": "පිටවීම" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "තවත්" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "නම" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "අලුත් මුරපදය" + } + ], + "label.none": [ + { + "type": 0, + "value": "කිසිවක් නැත" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "හිමිකරු" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Page views" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Pages" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "මුරපදය" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "පැතිකඩ" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "තත්ය කාල" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "නැවුම් කරන්න" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "අවශ්‍යයි" + } + ], + "label.reset": [ + { + "type": 0, + "value": "යළි පිහිටුවන්න" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "සංඛ්යා ලේඛන නැවත සකසන්න" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "සුරකින්න" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "සැකසුම්" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "බෙදාගැනීමේ URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "තනි දවස" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "තේමාව" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "මෙ මාසය" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "මේ සතිය" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "මේ අවුරුද්ද" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "වේලා කලාපය" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "අද" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "ලුහුබැඳීමේ කේතය" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unique visitors" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "නොදනී" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "පරිශීලක නාමය" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "තොරතුරු පෙන්වන්න" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Views" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Visitors" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "වෙබ් අඩවි" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "ඊයේ" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " දැන් " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "අමුත්තා" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "අමුත්තන්" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " මකා දැමීම ගැන විශ්වාසද?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ට අදාල සංඛ්‍යාලේඛන නැවත පිහිටුවීමට අවශ්‍යද?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "All website data will be deleted." + } + ], + "message.error": [ + { + "type": 0, + "value": "Something went wrong." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "සැකසීම් වෙත යන්න" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "වැරදි පරිශීලක නාමය/මුරපදය." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Invalid domain. Do not include http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "පෙන්වීමට දත්ත නොමැත." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Passwords do not match." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "You do not have any websites configured." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "පිටුව හමු නොවීය." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your settings will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Saved." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "මේ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " සඳහා ප්‍රසිද්ධියේ බෙදාගත් URL එකයි." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "To track stats for this website, place the following code in the " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " section of your HTML." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Visitor from " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " using " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/sk-SK.json b/public/intl/messages/sk-SK.json new file mode 100644 index 0000000..a1f1158 --- /dev/null +++ b/public/intl/messages/sk-SK.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Prístupový kód" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Akcie" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Denník aktivít" + } + ], + "label.add": [ + { + "type": 0, + "value": "Pridať" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Pridať tabuľu" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Pridať popis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Pridať člena" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Pridať krok" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Pridať web" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrátor" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Po" + } + ], + "label.all": [ + { + "type": 0, + "value": "Všetko" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Celý čas" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytika" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Použiť" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Priradenie" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Pozrite sa, ako používatelia interagujú s vaším marketingom a čo vedie ku konverziám." + } + ], + "label.average": [ + { + "type": 0, + "value": "Priemer" + } + ], + "label.back": [ + { + "type": 0, + "value": "Späť" + } + ], + "label.before": [ + { + "type": 0, + "value": "Pred" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Tabule" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Okamžité opustenie" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Rozpis" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Prehliadač" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Prehliadač" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampane" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Zrušiť" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Zmeniť heslo" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanály" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Mestá" + } + ], + "label.city": [ + { + "type": 0, + "value": "Mesto" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Vymazať všetko" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohorta" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Porovnať" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Porovnať dátumy" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potvrdiť" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potvrdiť heslo" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Obsah" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konverzia" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Miera konverzie" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Krok konverzie" + } + ], + "label.count": [ + { + "type": 0, + "value": "Počet" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Zem" + } + ], + "label.country": [ + { + "type": 0, + "value": "Krajina" + } + ], + "label.create": [ + { + "type": 0, + "value": "Vytvoriť" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Vytvoriť správu" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Vytvoriť tím" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Vytvoriť používateľa" + } + ], + "label.created": [ + { + "type": 0, + "value": "Vytvorené" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Vytvoril" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Mena" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuálny" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Aktuálne heslo" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Vlastný rozsah" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Prehlad" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Obdobie" + } + ], + "label.day": [ + { + "type": 0, + "value": "Deň" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Predvolené obdobie" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Zmazať" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Zmazať správu" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Zmazať tím" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Zmazať používateľa" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Zmazať web" + } + ], + "label.description": [ + { + "type": 0, + "value": "Popis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Stolný počítač" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Zariadenie" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Zariadenie" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Priamy" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Odísť" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Jedinečné ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Neobsahuje" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Nezahŕňa" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Neexistuje" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Doména" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Upraviť" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Upraviť prehľad" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Upraviť člena" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Povoliť zdielanie URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Konečný krok" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Vstupná URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Udalosť" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dáta udalosti" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Názov udalosti" + } + ], + "label.events": [ + { + "type": 0, + "value": "Udalosti" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existuje" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Výstupná URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Nepravda" + } + ], + "label.field": [ + { + "type": 0, + "value": "Pole" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Polia" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinácie" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Nezpracované" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtre" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Prvé kliknutie" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Prvýkrát videné" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Lievik" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Pochopte mieru konverzie a odchodu používateľov." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Lieviky" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cieľ" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ciele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Sledujte svoje ciele pre zobrazenia stránok a udalosti." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Väčšie ako" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Väčšie alebo rovné" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Zoskupené" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Názov hostiteľa" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Zahŕňa" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Prehľad" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Je" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Je nepravda" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nie je" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nie je nastavené" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Nastavené" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Je pravda" + } + ], + "label.join": [ + { + "type": 0, + "value": "Pripojiť sa" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Pripojiť sa k tímu" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Cesta" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Pochopte, ako používatelia prechádzajú vaším webom." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Cesty" + } + ], + "label.language": [ + { + "type": 0, + "value": "Jazyk" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Jazyky" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Prenosný počítač" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Posledné kliknutie" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Posledných " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dní" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Posledných " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " hodín" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Posledných " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mesiacov" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Naposledy videné" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Odísť" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Opustiť tím" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Menej ako" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Menej alebo rovné" + } + ], + "label.links": [ + { + "type": 0, + "value": "Odkazy" + } + ], + "label.login": [ + { + "type": 0, + "value": "Prihlásiť" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Odhlásiť" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Spravovať" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manažér" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maximum" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Rozbaliť" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Stredný" + } + ], + "label.member": [ + { + "type": 0, + "value": "Člen" + } + ], + "label.members": [ + { + "type": 0, + "value": "Členovia" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimum" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobilný telefon" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Viac" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Môj účet" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Moje weby" + } + ], + "label.name": [ + { + "type": 0, + "value": "Meno" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nové heslo" + } + ], + "label.none": [ + { + "type": 0, + "value": "Žiadny" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organické vyhľadávanie" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organické nakupovanie" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organické sociálne siete" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organické video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Iné" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Stránka" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Zobrazenie stánok" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Stránky" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Platené reklamy" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Platené vyhľadávanie" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Platené nakupovanie" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Platené sociálne siete" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Platené video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Heslo" + } + ], + "label.path": [ + { + "type": 0, + "value": "Cesta" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Cesty" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixely" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Powered by " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Predchádzajúci" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Predchádzajúce obdobie" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Predchádzajúci rok" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Vlastnosti" + } + ], + "label.property": [ + { + "type": 0, + "value": "Vlastnosť" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Aktuálne" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Odporúčanie" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Odkazy" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Obnoviť" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Zostáva" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "Povinné" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Reset" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Príjem" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Pozrite si svoj príjem v priebehu času." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Uložiť" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Vybrať filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sedenie" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Dáta sedenia" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Nastavenia" + } + ], + "label.share": [ + { + "type": 0, + "value": "Zdieľať" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Zdielanie URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Jeden deň" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Zdroje" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Značka" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Značky" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Manažér tímu" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Nastavenia tímu" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Podmienky" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Tento mesiac" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Tento týždeň" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Tento rok" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Časová zóna" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "Dnes" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Sledovací kód" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Jedinečné návštevy" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Neznámý" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "Užívateľské meno" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Zobraziť detaily" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "Zobrazení" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Priemerný čas návštevy" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Návštevy" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Weby" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " aktuálne " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "návštevník" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "návštěvníci" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Naozaj zmazať " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Všetky príbuzné data budu tiež zmazané." + } + ], + "message.error": [ + { + "type": 0, + "value": "Niečo sa pokazilo." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ísť do nastavení" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nesprávné meno/heslo." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Neplatná doména" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Žiadne data." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Hesla se nezhodujú" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nemáte nastavený žiadny web." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Stránka sa nenašla." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Úspešne uložené." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Toto je zdielané URL pre " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Sledovací kód" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Návštevník z " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " s prehliadačom " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/sl-SI.json b/public/intl/messages/sl-SI.json new file mode 100644 index 0000000..9f168f4 --- /dev/null +++ b/public/intl/messages/sl-SI.json @@ -0,0 +1,2096 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Koda za dostop" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Dejanja" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Dnevnik dejavnosti" + } + ], + "label.add": [ + { + "type": 0, + "value": "Dodaj" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Dodaj tablo" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Dodaj opis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Dodaj člana" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Dodaj korak" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Dodaj spletno mesto" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Po" + } + ], + "label.all": [ + { + "type": 0, + "value": "Vsi" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Ves čas" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitika" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Uporabi" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Pripis" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Oglejte si, kako uporabniki sodelujejo z vašim marketingom in kaj spodbuja konverzije." + } + ], + "label.average": [ + { + "type": 0, + "value": "Povprečno" + } + ], + "label.back": [ + { + "type": 0, + "value": "Nazaj" + } + ], + "label.before": [ + { + "type": 0, + "value": "Pred" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Table" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Odbojna stopnja" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Razčlenitev" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Brskalnik" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Brskalniki" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanje" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Prekliči" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Zamenjaj geslo" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanali" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Mesta" + } + ], + "label.city": [ + { + "type": 0, + "value": "Mesto" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Počisti vse" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Primerjaj" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potrdi" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potrdi geslo" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Vsebuje" + } + ], + "label.content": [ + { + "type": 0, + "value": "Vsebina" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Nadaljuj" + } + ], + "label.count": [ + { + "type": 0, + "value": "Število" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Države" + } + ], + "label.country": [ + { + "type": 0, + "value": "Država" + } + ], + "label.create": [ + { + "type": 0, + "value": "Ustvari" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Ustvari poročilo" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Ustvari ekipo" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Ustvari uporabnika" + } + ], + "label.created": [ + { + "type": 0, + "value": "Ustvarjeno" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Ustvaril" + } + ], + "label.current": [ + { + "type": 0, + "value": "Trenutno" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Trenutno geslo" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Obdobje po meri" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Nadzorna plošča" + } + ], + "label.data": [ + { + "type": 0, + "value": "Podatki" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Časovno obdobje" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dan" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Privzeto časovno obdobje" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Izbriši" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Izbriši poročilo" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Izbriši ekipo" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Izbriši uporabnika" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Izbriši spletno mesto" + } + ], + "label.description": [ + { + "type": 0, + "value": "Opis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Namizni računalnik" + } + ], + "label.details": [ + { + "type": 0, + "value": "Podrobnosti" + } + ], + "label.device": [ + { + "type": 0, + "value": "Naprava" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Naprave" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Neposredno" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Prezri" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Unikatni ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Ne vsebuje" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Ne vključuje" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Ne obstaja" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domena" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Zapustitev" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Uredi" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Uredi nadzorno ploščo" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Uredi člana" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Omogoči povezavo za deljenje" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Končni korak" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Vstopni URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Dogodek" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Podatki dogodka" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Ime dogodka" + } + ], + "label.events": [ + { + "type": 0, + "value": "Dogodki" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Izhodni URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Napačno" + } + ], + "label.field": [ + { + "type": 0, + "value": "Polje" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Polja" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Skupaj" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Neobdelano" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtri" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Prvič viden" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Prodajni lijak" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Razumite stopnjo konverzije in osipa uporabnikov." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cilj" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Cilji" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Spremljajte svoje cilje za oglede strani in dogodke." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Večje od" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Večje ali enako kot" + } + ], + "label.host": [ + { + "type": 0, + "value": "Gostitelj" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Gostitelji" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Vpogled" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Poglobite se v podatke z uporabo segmentov in filtrov." + } + ], + "label.is": [ + { + "type": 0, + "value": "Je" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Je napačno" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Ni" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Ni nastavljeno" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Je nastavljeno" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Je res" + } + ], + "label.join": [ + { + "type": 0, + "value": "Pridruži se" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Pridruži se ekipi" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Uporabniška pot" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Razumite, kako uporabniki krmarijo po vašem spletnem mestu." + } + ], + "label.language": [ + { + "type": 0, + "value": "Jezik" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Jeziki" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Prenosni računalnik" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Zadnji klik" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dni" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ur" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mesecev" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Nazadnje viden" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Zapusti" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Zapusti ekipo" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Manjše kot" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Manjše ali enako kot" + } + ], + "label.links": [ + { + "type": 0, + "value": "Povezave" + } + ], + "label.login": [ + { + "type": 0, + "value": "Prijava" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Odjava" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Upravljaj" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Upravitelj" + } + ], + "label.max": [ + { + "type": 0, + "value": "Največ" + } + ], + "label.member": [ + { + "type": 0, + "value": "Član" + } + ], + "label.members": [ + { + "type": 0, + "value": "Člani" + } + ], + "label.min": [ + { + "type": 0, + "value": "Najmanj" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobilne naprave" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Več" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Moj račun" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Moja spletna mesta" + } + ], + "label.name": [ + { + "type": 0, + "value": "Ime" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Novo geslo" + } + ], + "label.none": [ + { + "type": 0, + "value": "Noben" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organsko iskanje" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organski nakupi" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organska družbena omrežja" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organski video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Drugo" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Pregled" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Lastnik" + } + ], + "label.page": [ + { + "type": 0, + "value": "Stran" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Stran " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " od " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Obiski strani" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Naslov strani" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Strani" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Plačani oglasi" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Plačano iskanje" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Plačani nakupi" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Plačana družbena omrežja" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Plačani video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Geslo" + } + ], + "label.path": [ + { + "type": 0, + "value": "Pot" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Poti" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Poganja " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Prejšnji" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Prejšnje obdobje" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Prejšnje leto" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Lastnosti" + } + ], + "label.property": [ + { + "type": 0, + "value": "Lastnost" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Poizvedbe" + } + ], + "label.query": [ + { + "type": 0, + "value": "Poizvedba" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Parametri poizvedbe" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "V živo" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Napoten" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Vir" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Viri" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Osveži" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Ponovno generiraj" + } + ], + "label.region": [ + { + "type": 0, + "value": "Regija" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regije" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Preostalo" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Odstrani" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Odstrani člana" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Poročila" + } + ], + "label.required": [ + { + "type": 0, + "value": "Zahtevano" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Ponastavi" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Ponastavi statistiko" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Ohranjanje uporabnikov" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Merite uporabnikovo zadržanost s sledenjem, kako pogosto se vračajo." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Prihodki" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Preglejte svoje prihodke skozi čas." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Lastnost prihodkov" + } + ], + "label.role": [ + { + "type": 0, + "value": "Vloga" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Izvedi poizvedbo" + } + ], + "label.save": [ + { + "type": 0, + "value": "Shrani" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Zasloni" + } + ], + "label.search": [ + { + "type": 0, + "value": "Išči" + } + ], + "label.select": [ + { + "type": 0, + "value": "Izberi" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Izberi datum" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Izberi vlogo" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Izberi spletno mesto" + } + ], + "label.session": [ + { + "type": 0, + "value": "Seja" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Seje" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Nastavitve" + } + ], + "label.share": [ + { + "type": 0, + "value": "Deli" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Deli povezavo" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "En dan" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Začetni korak" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Koraki" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Seštevek" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablični računalnik" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Oznaka" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Oznake" + } + ], + "label.team": [ + { + "type": 0, + "value": "Ekipa" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID ekipe" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Upravitelj ekipe" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Član ekipe" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Ime ekipe" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Lastnik ekipe" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Ekipa samo za ogled" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Spletna mesta ekipe" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Ekipe" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Pogoji" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Ta mesec" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Ta teden" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "To leto" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Časovni pas" + } + ], + "label.title": [ + { + "type": 0, + "value": "Naslov" + } + ], + "label.today": [ + { + "type": 0, + "value": "Danes" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Preklopi grafe" + } + ], + "label.total": [ + { + "type": 0, + "value": "Skupaj" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Skupni zapisi" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Koda za sledenje" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "Pravilno" + } + ], + "label.type": [ + { + "type": 0, + "value": "Vrsta" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unikatni" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unikatni obiskovalci" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Neznano" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Brez naslova" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Uporabnik" + } + ], + "label.username": [ + { + "type": 0, + "value": "Uporabniško ime" + } + ], + "label.users": [ + { + "type": 0, + "value": "Uporabniki" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Vrednost" + } + ], + "label.view": [ + { + "type": 0, + "value": "Poglej" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Poglej podrobnosti" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Samo ogledovanje" + } + ], + "label.views": [ + { + "type": 0, + "value": "Obiski" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Povprečni čas obiska" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Obiskovalci" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Spletno mesto" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID spletnega mesta" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Spletna mesta" + } + ], + "label.window": [ + { + "type": 0, + "value": "Okno" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Včeraj" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Za potrditev v spodnje polje vnesite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " trenutni " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "obiskovalec" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "obiskovalcev" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Zbrani podatki" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Ste prepričani, da želite izbrisati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Ste prepričani, da želite zapustiti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ali ste prepričani, da želite odstraniti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Ste prepričani, da želite ponastaviti statistiko " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Brisanje ekipe bo izbrisalo tudi vsa spletna mesta ekipe." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Izbrisani bodo tudi vsi pripadajoči podatki." + } + ], + "message.error": [ + { + "type": 0, + "value": "Nekaj je šlo narobe." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Pojdi v nastavitve" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Nepravilno uporabniško ime/geslo." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Neveljavna domena" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Najmanjša dolžina je " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " znakov" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Na voljo je nova verzija programa Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Podatki niso na voljo." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Podatki o dogodku niso na voljo." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Gesli se ne ujemata" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Rezultatov ni bilo mogoče najti." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Ta ekipa nima spletnih mest." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Niste še ustvarili nobene ekipe." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Ni uporabnikov." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nimate nastavljenih nobenih spletnih mest." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Stran ni bila najdena." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Za ponastavitev izbrisa tega spletnega mesta vnesite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " v spodnje polje." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Vse statistike za to spletno mesto bodo izbrisane, koda za sledenje pa bo ostala nespremenjena." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Uspešno shranjeno." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "To je javno dostopna povezava za " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Ste že član ekipe." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Ekipa ni bila najdena." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Spletne strani si lahko ogleda vsak član ekipe." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Koda za sledenje" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Želite prenesti to spletno mesto v svoj račun?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Izberite ekipo, na katero želite prenesti to spletno mesto." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Prenesite lastništvo spletnega mesta na svoj račun ali drugo ekipo." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Sprožen dogodek" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Uporabnik je izbrisan." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Ogledana stran" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Obiskovalec iz " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " uporablja " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Osip obiskovalcev" + } + ] +} diff --git a/public/intl/messages/sv-SE.json b/public/intl/messages/sv-SE.json new file mode 100644 index 0000000..684d445 --- /dev/null +++ b/public/intl/messages/sv-SE.json @@ -0,0 +1,2226 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Åtkomstkod" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Händelser" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Aktivitetslogg" + } + ], + "label.add": [ + { + "type": 0, + "value": "Lägg till" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Lägg till anslagstavla" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Lägg till beskrivning" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Lägg till medlem" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Lägg till steg" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Lägg till webbplats" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administratör" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Partner" + } + ], + "label.after": [ + { + "type": 0, + "value": "Efter" + } + ], + "label.all": [ + { + "type": 0, + "value": "Alla" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Sedan början" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Webbplats Analys" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Tillämpa" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribuering" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Se hur användare interagerar med din marknadsföring och vad som driver konverteringar." + } + ], + "label.average": [ + { + "type": 0, + "value": "Genomsnitt" + } + ], + "label.back": [ + { + "type": 0, + "value": "Tillbaka" + } + ], + "label.before": [ + { + "type": 0, + "value": "Före" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Anslagstavlor" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Avvisningsfrekvens" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Analys" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Webbläsare" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Webbläsare" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanjer" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Avbryt" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Byt lösenord" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanaler" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Städer" + } + ], + "label.city": [ + { + "type": 0, + "value": "Stad" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Rensa alla" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Jämför" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Jämför datum" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Bekräfta" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Bekräfta lösenord" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Innehåller" + } + ], + "label.content": [ + { + "type": 0, + "value": "Innehåll" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Fortsätt" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Konvertering" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Konverteringsfrekvens" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Konverteringssteg" + } + ], + "label.count": [ + { + "type": 0, + "value": "Antal" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Länder" + } + ], + "label.country": [ + { + "type": 0, + "value": "Land" + } + ], + "label.create": [ + { + "type": 0, + "value": "Skapa" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Skapa rapport" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Skapa team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Skapa användare" + } + ], + "label.created": [ + { + "type": 0, + "value": "Skapad" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Skapad av" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Valuta" + } + ], + "label.current": [ + { + "type": 0, + "value": "Nuvarande" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Nuvarande lösenord" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Anpassat urval" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Översikt" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Tidsperiod" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dag" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Standard datum-urval" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Radera" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Radera rapport" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Radera team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Radera användare" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Radera webbplats" + } + ], + "label.description": [ + { + "type": 0, + "value": "Beskrivning" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Stationär" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detaljer" + } + ], + "label.device": [ + { + "type": 0, + "value": "Enhet" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Enheter" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direkt" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Avbryt" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Unikt ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Innehåller inte" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Inkluderar inte" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Existerar inte" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domän" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Bortfall" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Redigera" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Redigera översikt" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Redigera medlem" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Aktivera delningslänk" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Slutsteg" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Ingångs-URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Händelse" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Händelsedata" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Händelsenamn" + } + ], + "label.events": [ + { + "type": 0, + "value": "Händelser" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Existerar" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Falskt" + } + ], + "label.field": [ + { + "type": 0, + "value": "Fält" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fältar" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinerade" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Rådata" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Första klicket" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Förstå omvandlingen och bortfallsfrekvensen för användare." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Trattar" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Följ dina mål för sidvisningar och händelser." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Större än" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Större än eller lika med" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grupperad" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Värdnamn" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Inkluderar" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insikt" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insikter" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dyk djupare in i din data genom att använda olika segment och filter." + } + ], + "label.is": [ + { + "type": 0, + "value": "Är" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Är falskt" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Är inte" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Är inte inställd" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Är inställd" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Är sant" + } + ], + "label.join": [ + { + "type": 0, + "value": "Gå med" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Gå med i team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Resa" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Förstå hur användare navigerar på din webbplats." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Resor" + } + ], + "label.language": [ + { + "type": 0, + "value": "Språk" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Språk" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Bärbar" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Sista klicket" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Senaste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dagarna" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Senaste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " timmarna" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Senaste " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " månaderna" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Senast sedd" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Lämna" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Lämna team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Mindre än" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Mindre än eller lika med" + } + ], + "label.links": [ + { + "type": 0, + "value": "Länkar" + } + ], + "label.login": [ + { + "type": 0, + "value": "Logga in" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logga ut" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expandera" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Medlem" + } + ], + "label.members": [ + { + "type": 0, + "value": "Medlemmar" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobil" + } + ], + "label.model": [ + { + "type": 0, + "value": "Modell" + } + ], + "label.more": [ + { + "type": 0, + "value": "Mer" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mitt konto" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mina webbplatser" + } + ], + "label.name": [ + { + "type": 0, + "value": "Namn" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nytt lösenord" + } + ], + "label.none": [ + { + "type": 0, + "value": "Ingen" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organisk sökning" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organisk shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organisk social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organisk video" + } + ], + "label.os": [ + { + "type": 0, + "value": "Operativsystem" + } + ], + "label.other": [ + { + "type": 0, + "value": "Annat" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Översikt" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Ägare" + } + ], + "label.page": [ + { + "type": 0, + "value": "Sida" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Sida " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " av " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Sidvisningar" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Sidtitel" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Sidor" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Betalda annonser" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Betald sökning" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Betald shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Betald social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Betald video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Lösenord" + } + ], + "label.path": [ + { + "type": 0, + "value": "Sökväg" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Sökvägar" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixlar" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Drivs av " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Föregående" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Föregående period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Föregående år" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Egenskaper" + } + ], + "label.property": [ + { + "type": 0, + "value": "Egenskap" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Frågor" + } + ], + "label.query": [ + { + "type": 0, + "value": "Fråga" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Frågeparametrar" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realtid" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Hänvisning" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Hänvisare" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Hänvisare" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Uppdatera" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Förnya" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regioner" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Återstår" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Ta bort" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Rapporter" + } + ], + "label.required": [ + { + "type": 0, + "value": "Krävs" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Återställ" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Återställ webbplats" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Mät din webbplats engagemang genom att följa hur ofta användare återvänder." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Intäkter" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Se dina intäkter över tid." + } + ], + "label.role": [ + { + "type": 0, + "value": "Roll" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Kör sökning" + } + ], + "label.save": [ + { + "type": 0, + "value": "Spara" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Upplösning" + } + ], + "label.search": [ + { + "type": 0, + "value": "Sök" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Välj datum" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Välj filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Välj webbplats" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Sessionsdata" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessioner" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Inställningar" + } + ], + "label.share": [ + { + "type": 0, + "value": "Dela" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Delningslänk" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "En dag" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Källor" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Summa" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Surfplatta" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tagg" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Taggar" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Teamledare" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team-medlem" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team namn" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team-ägare" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Teaminställningar" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team webbplatser" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Team" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Villkor" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Denna månad" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Denna vecka" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Detta år" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Tidszon" + } + ], + "label.title": [ + { + "type": 0, + "value": "Titel" + } + ], + "label.today": [ + { + "type": 0, + "value": "Idag" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Visa/göm grafer" + } + ], + "label.total": [ + { + "type": 0, + "value": "Totalt" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Totala poster" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Spårningskod" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "Sant" + } + ], + "label.type": [ + { + "type": 0, + "value": "Typ" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unikt" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Unika besökare" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Okänt" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Namnlös" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "Användare" + } + ], + "label.username": [ + { + "type": 0, + "value": "Användarnamn" + } + ], + "label.users": [ + { + "type": 0, + "value": "Användare" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Värde" + } + ], + "label.view": [ + { + "type": 0, + "value": "Visa" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Visa detaljer" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Endast visning" + } + ], + "label.views": [ + { + "type": 0, + "value": "Visningar" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Genomsnittlig besökstid" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Besökare" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Webbplats" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Webbplats ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Webbplatser" + } + ], + "label.window": [ + { + "type": 0, + "value": "Fönster" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Igår" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "besökare" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "besökare" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " just nu" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Är du säker på att du vill radera " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Är du säker på att du vill lämna " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Är du säker på att du vill återställa statistiken för " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "All tillhörande data kommer också att raderas." + } + ], + "message.error": [ + { + "type": 0, + "value": "Något gick fel." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " på " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Gå till inställningar" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Felaktigt användarnamn/lösenord." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Ogiltig domän" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minst " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " tecken" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "En ny version av Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " är tillgänglig!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Ingen data tillgänglig." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Ingen händelsedata är tillgänglig." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Lösenorden matchar inte" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Inga resultat hittades." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Det här teamet har inga webbplatser." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Du har inte skapat några team." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Det finns inga användare." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Du har inte konfigurerat några webbplatser." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Sidan kunde inte hittas." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "För att återställa webbplatsen, skriv " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " i rutan nedan." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistik för webbplatsen tas bort, men spårningskoden förblir oförändrad." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Sparat!" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Det här är den offentliga delningslänken för " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Du är redan medlem i teamet." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Teamet kunde inte hittas." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Webbplatserna kan ses av alla i teamet." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Spårningskod" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Användaren har raderats." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Besökare från " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " med " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " på " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ta-IN.json b/public/intl/messages/ta-IN.json new file mode 100644 index 0000000..6d36a11 --- /dev/null +++ b/public/intl/messages/ta-IN.json @@ -0,0 +1,2218 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "செயல்கள்" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "வலைத்தளத்தைச் சேர்க்க" + } + ], + "label.admin": [ + { + "type": 0, + "value": "நிர்வாகியைச் சேர்க்க" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "எல்லாம்" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "All time" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "பின்னால்" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "துள்ளல் விகிதம்" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "உலாவிகள்" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "ரத்துசெய்" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "கடவுச்சொல்லை மாற்று" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "கடவுச்சொல்லை உறுதிப்படுத்தவும்" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "நாடுகள்" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "தற்போதைய கடவுச்சொல்" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "தனிப்பயன் வேறுபாட்டெல்லை" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "முகப்பு" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "தேதி வரம்பு" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "இயல்புநிலை தேதி வரம்பு" + } + ], + "label.delete": [ + { + "type": 0, + "value": "அழி" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "வலைத்தளத்தை நீக்கு" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "மேசை கணினி" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "சாதனங்கள்" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "நீக்கு" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "கள முகவரி" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "திருத்துதல்" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "கள முகவரியை பகிரலாம்" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "நிகழ்வுகள்" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "ஒருங்கிணைந்த" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "மூல" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Languages" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "மடிக்கணினி" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "முந்தைய " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " நாட்கள்" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "முந்தைய " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " மணி" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "உள்நுழைய" + } + ], + "label.logout": [ + { + "type": 0, + "value": "வெளியேறு" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "கைபேசி" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "மேலும்" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "பெயர்" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "புதிய கடவுச்சொல்" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Owner" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "பக்க காட்சிகள்" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "பக்கங்கள்" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "கடவுச்சொல்" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " ஆல் இயக்கப்படுகிறது" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "சுயவிவரம்" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "தற்போதைய" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "குறிப்பிடுவோர்" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "புதுப்பிப்பு" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "தேவையானவை" + } + ], + "label.reset": [ + { + "type": 0, + "value": "மீட்டமை" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Reset statistics" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "சேமி" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "அமைப்புகள்" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "வலைத்தள களத்தைப் பகிரவும்" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "ஒரு நாள்" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "கையடக்க கணினி" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "இந்த மாதம்" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "இந்த வாரம்" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "இந்த வருடம்" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "நேர மண்டலம்" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "இன்று" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Toggle charts" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "கண்காணிப்பு குறியீடு" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "தனிப்பட்ட பார்வையாளர்கள்" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "தெரியாத" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "பயனர்பெயர்" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "விபரங்களை பார்" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "பார்வைகள்" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "சராசரி வருகை நேரம்" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "பார்வையாளர்கள்" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "வலைத்தளங்கள்" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " தற்போதைய " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "ஒன்று" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "மற்ற" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "நீங்கள் நிச்சயமாக " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " நீக்க விரும்புகிறீர்களா?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Are your sure you want to reset " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "'s statistics?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "தொடர்புடைய எல்லா தரவும் நீக்கப்படும்." + } + ], + "message.error": [ + { + "type": 0, + "value": "ஏதோ தவறு நடந்துவிட்டது." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "அமைப்புகளுக்குச் செல்லவும்" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "தவறான பயனர்பெயர் / கடவுச்சொல்." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "தவறான கள முகவரி" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "தரவு எதுவும் கிடைக்கவில்லை." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "இருக்கடவுச்சொல் பொருந்தவில்லை" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "உங்களிடம் எந்த வலைத்தளங்களும் கட்டமைக்கப்படவில்லை." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "பக்கம் கிடைக்கவில்லை." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + } + ], + "message.saved": [ + { + "type": 0, + "value": "வெற்றிகரமாக சேமிக்கப்பட்டது." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " இது பொதுவில் பகிரும் வலைத்தள முகவரி." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "கண்காணிப்பு குறியீடு" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": "வில் இருந்து பார்வையாளர் " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " ஐ " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": "லில் பயன்படுத்துகிறார்" + } + ] +} diff --git a/public/intl/messages/th-TH.json b/public/intl/messages/th-TH.json new file mode 100644 index 0000000..cf3e532 --- /dev/null +++ b/public/intl/messages/th-TH.json @@ -0,0 +1,2218 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "การกระทำ" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "เพิ่มเว็บไซต์" + } + ], + "label.admin": [ + { + "type": 0, + "value": "ผู้ดูแลระบบ" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "ทั้งหมด" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "ทุกช่วงเวลา" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "ย้อนกลับ" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "อัตราตีกลับ" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "เบราว์เซอร์" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "ยกเลิก" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "เปลี่ยนรหัสผ่าน" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "ยืนยันรหัสผ่าน" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "ประเทศ" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "รหัสผ่านปัจจุบัน" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "กำหนดช่วงเวลา" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "แดชบอร์ด" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "ตั้งแต่วันที่" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "ช่วงเวลา" + } + ], + "label.delete": [ + { + "type": 0, + "value": "ลบ" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "ลบเว็บไซต์" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "เดสก์ท็อป" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "อุปกรณ์" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "ยกเลิก" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "โดเมน" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "แก้ไข" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "เปิดใช้งานการแชร์ลิงก์" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "เหตุการณ์" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "ข้อมูลรวม" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "ข้อมูลดิบ" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "ภาษา" + } + ], + "label.languages": [ + { + "type": 0, + "value": "ภาษา" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "แล็ปท็อป" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " วันที่ผ่านมา" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ชั่วโมงที่ผ่านมา" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "เข้าสู่ระบบ" + } + ], + "label.logout": [ + { + "type": 0, + "value": "ออกจากระบบ" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "โทรศัพท์มือถือ" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "เพิ่มเติม" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "ชื่อ" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "รหัสผ่านใหม่" + } + ], + "label.none": [ + { + "type": 0, + "value": "ไม่ได้กำหนด" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "เจ้าของ" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "การเข้าชม" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "หน้าเพจ" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "รหัสผ่าน" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "ขับเคลื่อนโดย " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "โปรไฟล์" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "เรียลไทม์" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "แหล่งที่มา" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "รีเฟรช" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "ต้องการ" + } + ], + "label.reset": [ + { + "type": 0, + "value": "รีเซต" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "รีเซตข้อมูลสถิติ" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "บันทึก" + } + ], + "label.screens": [ + { + "type": 0, + "value": "ขนาดหน้าจอ" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "ตั้งค่า" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "แชร์ลิงก์" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "วันที่" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "แท็บเล็ต" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "ธีม" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "เดือนปัจจุบัน" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "สัปดาห์ปัจจุบัน" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "ปีปัจจุบัน" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "เขตเวลา" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "วันนี้" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "เปิด/ปิดแผนภูมิ" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "โค้ดสำหรับใช้ติดตาม" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "ผู้เข้าชม" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "ไม่รู้จัก" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "ชื่อผู้ใช้" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "แสดงรายละเอียด" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "การเข้าชม" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "ระยะเวลาเข้าชมเฉลี่ย" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "ผู้เข้าชม" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "เว็บไซต์" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 0, + "value": "มีผู้ใช้งาน " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "คนในขณะนี้" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "คนในขณะนี้" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "คุณแน่ใจหรือไม่ว่าต้องการลบ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "คุณแน่ใจหรือไม่ว่าต้องการรีเซตข้อมูลสถิติของ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "ข้อมูลที่เกี่ยวข้องทั้งหมดจะถูกลบ." + } + ], + "message.error": [ + { + "type": 0, + "value": "เกิดข้อผิดพลาด." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "ไปที่การตั้งค่า" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "โดเมนไม่ถูกต้อง" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "ไม่มีข้อมูล." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "รหัสผ่านไม่ตรงกัน" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "คุณยังไม่ได้ตั้งค่าเว็บไซต์ใด ๆ ไว้." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "ไม่พบหน้านี้." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "สถิติทั้งหมดสำหรับเว็บไซต์นี้จะถูกลบออก แต่โค้ดสำหรับใช้ติดตามของคุณจะยังคงอยู่เหมือนเดิม." + } + ], + "message.saved": [ + { + "type": 0, + "value": "บันทึกข้อมูลเรียบร้อย." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "นี่คือลิงก์ที่แชร์แบบสาธารณะสำหรับ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "โค้ดสำหรับใช้ติดตาม" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "ผู้เข้าชมจาก " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " กำลังใช้งานผ่าน " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " บน " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/tr-TR.json b/public/intl/messages/tr-TR.json new file mode 100644 index 0000000..f7774fc --- /dev/null +++ b/public/intl/messages/tr-TR.json @@ -0,0 +1,2178 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Erişim Kodu" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Hareketler" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Aktivite Kaydı" + } + ], + "label.add": [ + { + "type": 0, + "value": "Ekle" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Pano ekle" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Açıklama ekle" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Üye ekle" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adım ekle" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Web sitesi ekle" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Ortak" + } + ], + "label.after": [ + { + "type": 0, + "value": "Sonra" + } + ], + "label.all": [ + { + "type": 0, + "value": "Tümü" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Tüm zamanlar" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitik" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Uygula" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Atıf" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Kullanıcıların pazarlamanızla nasıl etkileşime girdiğini ve dönüşümleri neyin tetiklediğini görün." + } + ], + "label.average": [ + { + "type": 0, + "value": "Ortalama" + } + ], + "label.back": [ + { + "type": 0, + "value": "Geri" + } + ], + "label.before": [ + { + "type": 0, + "value": "Önce" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Panolar" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Tek sayfa ziyaret oranı" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Dağılım" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Tarayıcı" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Tarayıcılar" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Kampanyalar" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "İptal" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Şifre değiştir" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Kanallar" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Şehirler" + } + ], + "label.city": [ + { + "type": 0, + "value": "Şehir" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Hepsini temizle" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Kohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Karşılaştır" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Tarihleri karşılaştır" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Onayla" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Parolayı onayla" + } + ], + "label.contains": [ + { + "type": 0, + "value": "İçeriği" + } + ], + "label.content": [ + { + "type": 0, + "value": "İçerik" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Devam et" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Dönüşüm" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Dönüşüm oranı" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Dönüşüm adımı" + } + ], + "label.count": [ + { + "type": 0, + "value": "Adet" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Ülkeler" + } + ], + "label.country": [ + { + "type": 0, + "value": "Ülke" + } + ], + "label.create": [ + { + "type": 0, + "value": "Oluştur" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Rapor oluştur" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Takım oluştur" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Kullanıcı oluştur" + } + ], + "label.created": [ + { + "type": 0, + "value": "Oluşturuldu" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Tarafından oluşturldu" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Para birimi" + } + ], + "label.current": [ + { + "type": 0, + "value": "Mevcut" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Mevcut parola" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Özelleştirilmiş aralık" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Kontrol Paneli" + } + ], + "label.data": [ + { + "type": 0, + "value": "Veri" + } + ], + "label.date": [ + { + "type": 0, + "value": "Tarih" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Tarih aralığı" + } + ], + "label.day": [ + { + "type": 0, + "value": "Gün" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Varsayılan tarih aralığı" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Sil" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Rapor sil" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Takım sil" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Kullanıcı sil" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Web sitesini sil" + } + ], + "label.description": [ + { + "type": 0, + "value": "Açıklama" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Masaüstü" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detaylar" + } + ], + "label.device": [ + { + "type": 0, + "value": "Cihaz" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Cihazlar" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Doğrudan" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Reddet" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Benzersiz ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "İçermez" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "İçermiyor" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Mevcut değil" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Alan adı" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Bırakma" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Düzenle" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Kontrol panelini düzenle" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Üyeyi düzenle" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Anonim paylaşım URL'i aktif" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Olay" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Olay verisi" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Olay adı" + } + ], + "label.events": [ + { + "type": 0, + "value": "Olaylar" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Mevcut" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Yanlış" + } + ], + "label.field": [ + { + "type": 0, + "value": "Alan" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Alanlar" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtre" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Birleşik filtre" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Ham filtre" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtreler" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "İlk tıklama" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Huni" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Kullanıcıların dönüşüm ve ayrılma oranlarını anlayın." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Huniler" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Hedef" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Hedefler" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Sayfa görüntüleme ve olaylar için hedeflerinizi takip edin." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Büyüktür" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Büyük veya eşittir" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Gruplandırılmış" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Sunucu adı" + } + ], + "label.includes": [ + { + "type": 0, + "value": "İçerir" + } + ], + "label.insight": [ + { + "type": 0, + "value": "İçgörü" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Segmentleri ve filtreleri kullanarak verilerinizi derinlemesine inceleyin." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Yanlış" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Değil" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Ayarlanmamış" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Ayarlandı" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Doğru" + } + ], + "label.join": [ + { + "type": 0, + "value": "Katıl" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Takıma katıl" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Yolculuk" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Kullanıcıların sitenizde nasıl gezindiğini anlayın." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Yolculuklar" + } + ], + "label.language": [ + { + "type": 0, + "value": "Dil" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Diller" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Dizüstü" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Son tıklama" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Son " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " gün" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Son " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " saat" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Son " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ay" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Son görüldü" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Ayrıl" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Takımdan Ayrıl" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Küçüktür" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Küçük veya eşittir" + } + ], + "label.links": [ + { + "type": 0, + "value": "Bağlantılar" + } + ], + "label.login": [ + { + "type": 0, + "value": "Giriş Yap" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Çıkış Yap" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Yönet" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Genişlet" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Orta" + } + ], + "label.member": [ + { + "type": 0, + "value": "Üye" + } + ], + "label.members": [ + { + "type": 0, + "value": "Üyeler" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobil Cihaz" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "Detaylı göster" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Hesabım" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Web sitelerim" + } + ], + "label.name": [ + { + "type": 0, + "value": "İsim" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Yeni parola" + } + ], + "label.none": [ + { + "type": 0, + "value": "Yok" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "TAMAM" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organik arama" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organik alışveriş" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organik sosyal" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organik video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Diğer" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Genel bakış" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Sahibi" + } + ], + "label.page": [ + { + "type": 0, + "value": "Sayfa" + } + ], + "label.page-of": [ + { + "type": 1, + "value": "total" + }, + { + "type": 0, + "value": " sayfada " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " " + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Sayfa görünümü" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Sayfa başlığı" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Sayfalar" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Ücretli reklamlar" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Ücretli arama" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Ücretli alışveriş" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Ücretli sosyal" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Ücretli video" + } + ], + "label.password": [ + { + "type": 0, + "value": "Parola" + } + ], + "label.path": [ + { + "type": 0, + "value": "Yol" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Yollar" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pikseller" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Sağlayıcı: " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Önceki" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Önceki dönem" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Önceki yıl" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Özellikler" + } + ], + "label.property": [ + { + "type": 0, + "value": "Özellik" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Sorgular" + } + ], + "label.query": [ + { + "type": 0, + "value": "Sorgu" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Sorgu parametreleri" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Gerçek Zamanlı" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Yönlendirme" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Yönlendirenler" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Yenile" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Yeniden Oluştur" + } + ], + "label.region": [ + { + "type": 0, + "value": "Bölge" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Bölgeler" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Kalan" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Kaldır" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Üyeyi kaldır" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Raporlar" + } + ], + "label.required": [ + { + "type": 0, + "value": "Zorunlu alan" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Sıfırla" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "İstatistikleri sıfırla" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Geri dönüş" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Kullanıcıların ne sıklıkla geri döndüğünü takip ederek web sitenizin kalıcılığını ölçün." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Gelir" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Gelirinizi zaman içinde inceleyin." + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Sorgu çalıştır" + } + ], + "label.save": [ + { + "type": 0, + "value": "Kaydet" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekranlar" + } + ], + "label.search": [ + { + "type": 0, + "value": "Ara" + } + ], + "label.select": [ + { + "type": 0, + "value": "Seç" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Tarih seç" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Filtre seç" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rol seç" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Web sitesi seç" + } + ], + "label.session": [ + { + "type": 0, + "value": "Oturum" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Oturum verisi" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Ayarlar" + } + ], + "label.share": [ + { + "type": 0, + "value": "Paylaş" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Paylaşım adresi" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Tekil gün" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Kaynaklar" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Adımlar" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Toplam" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Etiket" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Etiketler" + } + ], + "label.team": [ + { + "type": 0, + "value": "Takım" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Takım ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Takım yöneticisi" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Takım üyesi" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Takım ismi" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Takım sahibi" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Takım ayarları" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Yalnızca ekip görünümü" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Takım web siteleri" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Takımlar" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Koşullar" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Tema" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Bu ay" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Bu hafta" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Bu yıl" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Zaman dilimi" + } + ], + "label.title": [ + { + "type": 0, + "value": "Başlık" + } + ], + "label.today": [ + { + "type": 0, + "value": "Bugün" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Grafikleri değiştir" + } + ], + "label.total": [ + { + "type": 0, + "value": "Toplam" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Toplam kayıt" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "İzleme kodu" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer web sitesi" + } + ], + "label.true": [ + { + "type": 0, + "value": "Doğru" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tip" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Benzersiz" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Tekil kullanıcı" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Bilinmeyen" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "İsimsiz" + } + ], + "label.update": [ + { + "type": 0, + "value": "Güncelle" + } + ], + "label.user": [ + { + "type": 0, + "value": "Kullanıcı" + } + ], + "label.username": [ + { + "type": 0, + "value": "Kullanıcı adı" + } + ], + "label.users": [ + { + "type": 0, + "value": "Kullanıcılar" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Kampanyalarınızı UTM parametreleri aracılığıyla takip edin." + } + ], + "label.value": [ + { + "type": 0, + "value": "Değer" + } + ], + "label.view": [ + { + "type": 0, + "value": "Görünüm" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Detayı incele" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Sadece görünüm" + } + ], + "label.views": [ + { + "type": 0, + "value": "Görüntüleme" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Ziyaret başına görüntüleme" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Ortalama ziyaret süresi" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Ziyaretçi" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Ziyaretler" + } + ], + "label.website": [ + { + "type": 0, + "value": "Web sitesi" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Web siteleri" + } + ], + "label.window": [ + { + "type": 0, + "value": "Pencere" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Dün" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Onaylamak için aşağıdaki kutuya " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " yazın." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " aktif ziyaretçi" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " kaydını silmek istediğinizden emin misiniz?" + } + ], + "message.confirm-leave": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " kaydından ayrılmak istediğinizden emin misiniz?" + } + ], + "message.confirm-remove": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " kaydını kaldırmak istediğinizden emin misiniz?" + } + ], + "message.confirm-reset": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " istatistiklerini sıfırlamak istediğinizden emin misiniz?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Bir takımı silmek tüm takım web sitelerini de silecektir." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "İlişkili tüm veriler de silinecektir." + } + ], + "message.error": [ + { + "type": 0, + "value": "Bir şeyler ters gitti!" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Ayarlara git" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Hatalı kullanıcı adı ya da parola." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Geçersiz alan adı" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " karakter uzunluğu" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Yeni versiyon Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " mevcut!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Henüz hiç veri yok." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Hiçbir olay verisi mevcut değil." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Parolalar uyuşmuyor" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Hiçbir sonuç bulunamadı." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Bu takımın herhangi bir web sitesi yok." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Herhangi bir takım oluşturmadınız." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Kullanıcı yok." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Henüz hiç web sitesi tanımlamadınız" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Sayfa bulunamadı." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Bu websitesini sıfılamak için aşağıdaki kutuya " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " yazın." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Bu web sitesi için tüm istatistikler silinecek, ancak izleme kodunuz bozulmadan kalacaktır." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Başarıyla kaydedildi." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " için kullanılabilir anonim paylaşım adresidir." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Zaten bu takımın üyesisiniz" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Takım bulunamadı" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Web siteleri takımdaki herkes tarafından görüntülenebilir." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "İzleme kodu" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Bu web sitesi hesbınıza aktarılsın mı?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Bu web sitesinin aktarılacağı takımı seçin." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Web sitesi sahipliğini hesabınıza veya başka bir takıma aktarın" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Tetiklenen olay" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Kullanıcı silindi." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Görüntülenen sayfa" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Yeni ziyaretçi: " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": ", " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": ", " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": ", " + }, + { + "type": 1, + "value": "browser" + } + ] +} diff --git a/public/intl/messages/uk-UA.json b/public/intl/messages/uk-UA.json new file mode 100644 index 0000000..d3a6dc7 --- /dev/null +++ b/public/intl/messages/uk-UA.json @@ -0,0 +1,2198 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Код доступу" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Дії" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Журнал" + } + ], + "label.add": [ + { + "type": 0, + "value": "Додати" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Додати дошку" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Додати опис" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Додати учасника" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Додати крок" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Додати сайт" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Адміністратор" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Партнер" + } + ], + "label.after": [ + { + "type": 0, + "value": "Після" + } + ], + "label.all": [ + { + "type": 0, + "value": "Всі" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Весь час" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Аналітика" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Застосувати" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Атрибуція" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "Дивіться, як користувачі взаємодіють з вашим маркетингом і що сприяє конверсіям." + } + ], + "label.average": [ + { + "type": 0, + "value": "Середній" + } + ], + "label.back": [ + { + "type": 0, + "value": "Назад" + } + ], + "label.before": [ + { + "type": 0, + "value": "До" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Дошки" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Показник відмов" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Розподіл" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Браузер" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Браузери" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Кампанії" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Відмінити" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Змінити пароль" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Канали" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Міста" + } + ], + "label.city": [ + { + "type": 0, + "value": "Місто" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Очистити все" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Когорта" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Порівняти" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Порівняти дати" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Підтвердити" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Підтвердити пароль" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Містить" + } + ], + "label.content": [ + { + "type": 0, + "value": "Вміст" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Продовжити" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Конверсія" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Рівень конверсії" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Крок конверсії" + } + ], + "label.count": [ + { + "type": 0, + "value": "Кількість" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Країни" + } + ], + "label.country": [ + { + "type": 0, + "value": "Країна" + } + ], + "label.create": [ + { + "type": 0, + "value": "Створити" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Створити звіт" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Створити команду" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Створити користувача" + } + ], + "label.created": [ + { + "type": 0, + "value": "Створено" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Створено" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Валюта" + } + ], + "label.current": [ + { + "type": 0, + "value": "Поточний" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Поточний пароль" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Довільний період" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Інформаційна панель" + } + ], + "label.data": [ + { + "type": 0, + "value": "Дані" + } + ], + "label.date": [ + { + "type": 0, + "value": "Дата" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Діапазон дат" + } + ], + "label.day": [ + { + "type": 0, + "value": "День" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Діапазон дат за замовчуванням" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Видалити" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Видалити звіт" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Видалити команду" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Видалити користувача" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Видалити сайт" + } + ], + "label.description": [ + { + "type": 0, + "value": "Опис" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Настільний ПК" + } + ], + "label.details": [ + { + "type": 0, + "value": "Деталі" + } + ], + "label.device": [ + { + "type": 0, + "value": "Пристрій" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Пристрої" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Прямий" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Відхилити" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Унікальний ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Не містить" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Не включає" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Не існує" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Домен" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Відсів" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Редагувати" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Редагувати панель" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Редагувати учасника" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Увімкнути спільне посилання" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Кінцевий крок" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Вхідний URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Подія" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Дані події" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Назва події" + } + ], + "label.events": [ + { + "type": 0, + "value": "Події" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Існує" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Поле" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Поля" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Фільтр" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Об'єднані" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Сирі дані" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Фільтри" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "Перший клік" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Воронка" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Зрозуміти рівень конверсії та відсіву користувачів." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Воронки" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Мета" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Мети" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Відстежуйте свої цілі для переглядів сторінок і подій." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Більше ніж" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Більше або рівно" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Груповано" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Ім'я хоста" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Включає" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Інсайт" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Інсайти" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Зануртеся глибше у свої дані за допомогою сегментів та фільтрів." + } + ], + "label.is": [ + { + "type": 0, + "value": "Є" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Хибно" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Не є" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Не встановлено" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Встановлено" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Правдиво" + } + ], + "label.join": [ + { + "type": 0, + "value": "Приєднатись" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Приєднатись до команди" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Шлях" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Зрозумійте, як користувачі переміщаються вашим сайтом." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Шляхи" + } + ], + "label.language": [ + { + "type": 0, + "value": "Мова" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Мови" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Ноутбук" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Останній клік" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Останні " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " днів" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Останні " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " годин" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Останні " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " місяців" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Останній перегляд" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Покинути" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Покинути команду" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Менше ніж" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Менше або дорівнює" + } + ], + "label.links": [ + { + "type": 0, + "value": "Посилання" + } + ], + "label.login": [ + { + "type": 0, + "value": "Увійти" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Вийти" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Керувати" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Макс." + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Розгорнути" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Середній" + } + ], + "label.member": [ + { + "type": 0, + "value": "Учасник" + } + ], + "label.members": [ + { + "type": 0, + "value": "Учасники" + } + ], + "label.min": [ + { + "type": 0, + "value": "Мін." + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Мобільний" + } + ], + "label.model": [ + { + "type": 0, + "value": "Модель" + } + ], + "label.more": [ + { + "type": 0, + "value": "Більше" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Мій обліковий запис" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Мої сайти" + } + ], + "label.name": [ + { + "type": 0, + "value": "Ім'я" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Новий пароль" + } + ], + "label.none": [ + { + "type": 0, + "value": "Нічого" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Органічний пошук" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Органічні покупки" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Органічні соцмережі" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Органічне відео" + } + ], + "label.os": [ + { + "type": 0, + "value": "ОС" + } + ], + "label.other": [ + { + "type": 0, + "value": "Інше" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Огляд" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Власник" + } + ], + "label.page": [ + { + "type": 0, + "value": "Сторінка" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Сторінка " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " з " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Перегляди сторінок" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Заголовок сторінки" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Сторінки" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Платна реклама" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Платний пошук" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Платні покупки" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Платні соцмережі" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Платне відео" + } + ], + "label.password": [ + { + "type": 0, + "value": "Пароль" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Пікселі" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "На базі " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Попередній" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Попередній період" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Попередній рік" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Профіль" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Властивості" + } + ], + "label.property": [ + { + "type": 0, + "value": "Властивість" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Запити" + } + ], + "label.query": [ + { + "type": 0, + "value": "Запит" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Параметри запиту" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "У реальному часі" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Реферал" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Джерело" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Джерела" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Оновити" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Згенерувати знову" + } + ], + "label.region": [ + { + "type": 0, + "value": "Регіон" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Регіони" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Залишилось" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Видалити" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Видалити користувача" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Звіти" + } + ], + "label.required": [ + { + "type": 0, + "value": "Обов'язкове" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Скинути" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Скинути статистику сайту" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Липкість" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Виміряйте липкість вашого сайту, відстежуючи, як часто користувачі повертаються на нього." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Дохід" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Перегляньте свій дохід за певний період." + } + ], + "label.role": [ + { + "type": 0, + "value": "Роль" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Виконати запит" + } + ], + "label.save": [ + { + "type": 0, + "value": "Зберегти" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Екрани" + } + ], + "label.search": [ + { + "type": 0, + "value": "Пошук" + } + ], + "label.select": [ + { + "type": 0, + "value": "Вибрати" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Вибрати дату" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Вибрати фільтр" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Вибрати роль" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Вибрати сайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Сесія" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Дані сесії" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Сесії" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Налаштування" + } + ], + "label.share": [ + { + "type": 0, + "value": "Поділитися" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Поділитися посилання" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Один день" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Джерела" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Кроки" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Сума" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Планшет" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Тег" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Теги" + } + ], + "label.team": [ + { + "type": 0, + "value": "Команда" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Ідентифікатор команди" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Менеджер команди" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Учасник команди" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Назва команди" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Власник команди" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Налаштування команди" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Тільки для командного перегляду" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Сайти команди" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Команди" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Умови" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Тема" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Цього місяця" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Цього тижня" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Цього ріку" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Часовий пояс" + } + ], + "label.title": [ + { + "type": 0, + "value": "Заголовок" + } + ], + "label.today": [ + { + "type": 0, + "value": "Сьогодні" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Переключити графіки" + } + ], + "label.total": [ + { + "type": 0, + "value": "Всього" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Всього записів" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Код для відслідковування" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Передати" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Передати сайт" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Тип" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Унікальний" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Унікальні відвідувачі" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Невідомо" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Без заголовку" + } + ], + "label.update": [ + { + "type": 0, + "value": "Оновлення" + } + ], + "label.user": [ + { + "type": 0, + "value": "Користувач" + } + ], + "label.username": [ + { + "type": 0, + "value": "Ім'я користувача" + } + ], + "label.users": [ + { + "type": 0, + "value": "Користувачі" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Відстежуйте свої кампанії за допомогою параметрів UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Значення" + } + ], + "label.view": [ + { + "type": 0, + "value": "Перегляд" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Переглянути деталі" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Тільки для перегляду" + } + ], + "label.views": [ + { + "type": 0, + "value": "Перегляди" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Перегляди за одне відвідування" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Відвідувачі" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Відвідування" + } + ], + "label.website": [ + { + "type": 0, + "value": "Сайт" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Ідентифікатор сайту" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Сайти" + } + ], + "label.window": [ + { + "type": 0, + "value": "Вікно" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Вчора" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Введіть " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " у полі нижче, щоб підтвердити." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " поточних відвідувачів" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Ви впевнені, що бажаєте видалити " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Ви впевнені, що бажаєте покинути " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ви впевнені, що бажаєте видалити " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Ви впевнені, що бажаєте скинути статистику для " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Видалення команди також призведе до видалення всіх її веб-сайтів." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Усі пов'язані дані будуть видалені також." + } + ], + "message.error": [ + { + "type": 0, + "value": "Щось пішло не так." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Перейти до налаштувань" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Невірне ім'я користувача або пароль." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Некоректний домен" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Мінімальна довжина " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " символів" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Вийшла нова версія Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Немає даних." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Дані про події відсутні." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Паролі не співпадають" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Не знайдено жодного результату." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "У цієї команди немає жодного веб-сайту." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Ви не створили жодної команди." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Немає жодного користувача." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "У вас немає налаштованих сайтів." + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Сторінку не знайдено." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Щоб скинути налаштування цього веб-сайту, введіть " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " у полі нижче для підтвердження." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Вся статистика для цього сайту буде видалена, проте код відслідковування буде продовжувати працювати." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Збережено успішно." + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Це публічне посилання для " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Ви вже є членом команди." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Команду не знайдено." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Веб-сайти може переглядати будь-хто з команди." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Код для відслідковування" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Перенести цей сайт до свого облікового запису?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Виберіть команду, до якої ви хочете передати цей веб-сайт." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Передайте право власності на сайт своєму акаунту або іншій команді." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Подія, що спрацювала" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Користувача видалено." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Переглянута сторінка" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Відвідувач з " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " використовуючи " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ] +} diff --git a/public/intl/messages/ur-PK.json b/public/intl/messages/ur-PK.json new file mode 100644 index 0000000..8eba759 --- /dev/null +++ b/public/intl/messages/ur-PK.json @@ -0,0 +1,2222 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Access code" + } + ], + "label.actions": [ + { + "type": 0, + "value": "اعمال" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Activity log" + } + ], + "label.add": [ + { + "type": 0, + "value": "Add" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "Add board" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Add description" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "ویب سائٹ کا اضافہ کریں" + } + ], + "label.admin": [ + { + "type": 0, + "value": "منتظم" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "Affiliate" + } + ], + "label.after": [ + { + "type": 0, + "value": "After" + } + ], + "label.all": [ + { + "type": 0, + "value": "تمام" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "تمام وقت" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analytics" + } + ], + "label.apply": [ + { + "type": 0, + "value": "Apply" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "Attribution" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "See how users engage with your marketing and what drives conversions." + } + ], + "label.average": [ + { + "type": 0, + "value": "Average" + } + ], + "label.back": [ + { + "type": 0, + "value": "پیچھے" + } + ], + "label.before": [ + { + "type": 0, + "value": "Before" + } + ], + "label.boards": [ + { + "type": 0, + "value": "Boards" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "اچھال کی شرح" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Breakdown" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "براؤزرز" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "Campaigns" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "منسوخ" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "پاس ورڈ تبدیل کریں" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Cities" + } + ], + "label.city": [ + { + "type": 0, + "value": "City" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Clear all" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "Cohort" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "Compare dates" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Confirm" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "پاس ورڈ کی تصدیق کریں" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Contains" + } + ], + "label.content": [ + { + "type": 0, + "value": "Content" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Continue" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "Conversion" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "Conversion rate" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "Conversion step" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "ممالک" + } + ], + "label.country": [ + { + "type": 0, + "value": "Country" + } + ], + "label.create": [ + { + "type": 0, + "value": "Create" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Create report" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Create team" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Create user" + } + ], + "label.created": [ + { + "type": 0, + "value": "Created" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "موجودہ پاس ورڈ" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "اپنی مرضی کی حد" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "ڈیش بورڈ" + } + ], + "label.data": [ + { + "type": 0, + "value": "Data" + } + ], + "label.date": [ + { + "type": 0, + "value": "Date" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "تاریخ کی حد" + } + ], + "label.day": [ + { + "type": 0, + "value": "Day" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "پہلے سے طے شدہ تاریخ کی حد" + } + ], + "label.delete": [ + { + "type": 0, + "value": "حذف کریں" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Delete team" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Delete user" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "ویب سائٹ مٹایں" + } + ], + "label.description": [ + { + "type": 0, + "value": "Description" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "ڈیسک ٹاپ" + } + ], + "label.details": [ + { + "type": 0, + "value": "Details" + } + ], + "label.device": [ + { + "type": 0, + "value": "Device" + } + ], + "label.devices": [ + { + "type": 0, + "value": "آلات" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "مسترد کریں" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Does not contain" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "ڈومین" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "ترمیم" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Edit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "شیئر یو آر ایل کو فعال کریں" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Event" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Event data" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "واقعات" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "False" + } + ], + "label.field": [ + { + "type": 0, + "value": "Field" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Fields" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "مشترکہ" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "خام" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filters" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Funnel" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Understand the conversion and drop-off rate of users." + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Greater than" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Greater than or equals" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Insights" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Dive deeper into your data by using segments and filters." + } + ], + "label.is": [ + { + "type": 0, + "value": "Is" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Is not" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Is not set" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Is set" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "Join" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Join team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "Language" + } + ], + "label.languages": [ + { + "type": 0, + "value": "زبانیں" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "لیپ ٹاپ" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "پچھلے " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " دن" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "پچھلے " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " گھنٹے" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Leave" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Leave team" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Less than" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Less than or equals" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "لاگ ان" + } + ], + "label.logout": [ + { + "type": 0, + "value": "لاگ آوٹ" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], + "label.members": [ + { + "type": 0, + "value": "Members" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "موبائل" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "مزید" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "My websites" + } + ], + "label.name": [ + { + "type": 0, + "value": "نام" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "نیا پاس ورڈ" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Overview" + } + ], + "label.owner": [ + { + "type": 0, + "value": "مالک" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Page " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " of " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "صفحہ کے نظارے" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Page title" + } + ], + "label.pages": [ + { + "type": 0, + "value": "صفحات" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "پاس ورڈ" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "تقویت یافتہ بذریعہ " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "پروفائل" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queries" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parameters" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "براہ راست" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "بھیجنے والے" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "تازہ دم کریں" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regenerate" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regions" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Remove" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Reports" + } + ], + "label.required": [ + { + "type": 0, + "value": "درکار ہے" + } + ], + "label.reset": [ + { + "type": 0, + "value": "دوبارہ ترتیب دیں" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "اعدادوشمار کو دوبارہ ترتیب دیں" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Measure your website stickiness by tracking how often users return." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.role": [ + { + "type": 0, + "value": "Role" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Run query" + } + ], + "label.save": [ + { + "type": 0, + "value": "محفوظ کریں" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Screens" + } + ], + "label.search": [ + { + "type": 0, + "value": "Search" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Select date" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Select website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessions" + } + ], + "label.settings": [ + { + "type": 0, + "value": "ترتیبات" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "URL کا اشتراک کریں" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "ایک دن" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Sum" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "ٹیبلیٹ" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "Team" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Team ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Team member" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Team name" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Team owner" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Team websites" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Teams" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Theme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "اس مہینے" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "اس ہفتے" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "اس سال" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "ٹائم زون" + } + ], + "label.title": [ + { + "type": 0, + "value": "Title" + } + ], + "label.today": [ + { + "type": 0, + "value": "آج" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "چارٹ تبدیل کریں" + } + ], + "label.total": [ + { + "type": 0, + "value": "Total" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Total records" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "ٹریکنگ کوڈ" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], + "label.true": [ + { + "type": 0, + "value": "True" + } + ], + "label.type": [ + { + "type": 0, + "value": "Type" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Unique" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "منفرد زائرین" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "نامعلوم" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Untitled" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.user": [ + { + "type": 0, + "value": "User" + } + ], + "label.username": [ + { + "type": 0, + "value": "صارف نام" + } + ], + "label.users": [ + { + "type": 0, + "value": "Users" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], + "label.value": [ + { + "type": 0, + "value": "Value" + } + ], + "label.view": [ + { + "type": 0, + "value": "View" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "تفصیلات دیکھیں" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "View only" + } + ], + "label.views": [ + { + "type": 0, + "value": "مناظر" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "وزٹ کا اوسط وقت" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "زائرین" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Website ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "ویب سائٹس" + } + ], + "label.window": [ + { + "type": 0, + "value": "Window" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Yesterday" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " موجودہ " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "زائر" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "زائرین" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "کیا آپ واقعی " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " کو حذف کرنا چاہتے ہیں؟" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Are you sure you want to leave " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "کیا آپ واقعی " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " کے اعدادوشمار کو دوبارہ ترتیب دینا چاہتے ہیں؟" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Deleting a team will also delete all team websites." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "تمام متعلقہ ڈیٹا بھی حذف کر دیا جائے گا۔" + } + ], + "message.error": [ + { + "type": 0, + "value": "کچھ غلط ہو گیا." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " on " + }, + { + "type": 1, + "value": "url" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "ترتیبات پر جائیں" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "غلط صارف نام/پاس ورڈ۔" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "غلط ڈومین" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimum length of " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " characters" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "A new version of Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " is available!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "مواد موجود نہیں ہے." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "No event data is available." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "پاس ورڈز مماثل نہیں ہیں" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "No results were found." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "This team does not have any websites." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "You have not created any teams." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "There are no users." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "آپ کے پاس کوئی ویب سائٹ کنفیگر نہیں ہے۔" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "صفحہ نہیں ملا." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "To reset this website, type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "اس ویب سائٹ کے تمام اعدادوشمار کو حذف کر دیا جائے گا، لیکن آپ کا ٹریکنگ کوڈ برقرار رہے گا۔" + } + ], + "message.saved": [ + { + "type": 0, + "value": "کامیابی سے محفوظ ہو گیا۔" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "یہ " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " کے لیے عوامی طور پر اشتراک کردہ URL ہے۔" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "You are already a member of the team." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Team not found." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Websites can be viewed by anyone on the team." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "ٹریکنگ کوڈ" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "User deleted." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " پر " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " کا استعمال کرتے ہوئے " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " سے آنے والا" + } + ] +} diff --git a/public/intl/messages/uz-UZ.json b/public/intl/messages/uz-UZ.json new file mode 100644 index 0000000..3697ff1 --- /dev/null +++ b/public/intl/messages/uz-UZ.json @@ -0,0 +1,1858 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Kirish kodi" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Amallar" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Faoliyat" + } + ], + "label.add": [ + { + "type": 0, + "value": "Qoʻshish" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Tavsif qoʻshish" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "A'zo qoʻshish" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Qadam qoʻshish" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Veb-sayt qoʻshish" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.after": [ + { + "type": 0, + "value": "Keyin" + } + ], + "label.all": [ + { + "type": 0, + "value": "Barchasi" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Barcha vaqtlar" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Tahlil" + } + ], + "label.average": [ + { + "type": 0, + "value": "Oʻrtacha" + } + ], + "label.back": [ + { + "type": 0, + "value": "Orqaga" + } + ], + "label.before": [ + { + "type": 0, + "value": "Oldin" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Chiqib ketish darajasi" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Tahlil" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Brauzer" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Brauzerlar" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Bekor qilish" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Parolni oʻzgartirish" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Shaharlar" + } + ], + "label.city": [ + { + "type": 0, + "value": "Shahar" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Barchasini tozalash" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Taqqoslash" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Tasdiqlash" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Parolni tasdiqlash" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Oʻz ichiga oladi" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Davom etish" + } + ], + "label.count": [ + { + "type": 0, + "value": "Soni" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Davlatlar" + } + ], + "label.country": [ + { + "type": 0, + "value": "Davlat" + } + ], + "label.create": [ + { + "type": 0, + "value": "Yaratish" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Hisobot yaratish" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Jamoa yaratish" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Foydalanuvchi yaratish" + } + ], + "label.created": [ + { + "type": 0, + "value": "Yaratilgan" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Kim tomonidan yaratilgan" + } + ], + "label.current": [ + { + "type": 0, + "value": "Joriy" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Joriy parol" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Maxsus oraliq" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Boshqaruv paneli" + } + ], + "label.data": [ + { + "type": 0, + "value": "Ma'lumotlar" + } + ], + "label.date": [ + { + "type": 0, + "value": "Sana" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Sana oraligʻi" + } + ], + "label.day": [ + { + "type": 0, + "value": "Kun" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Standart sana oraligʻi" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Oʻchirish" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Hisobotni oʻchirish" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Jamoani oʻchirish" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Foydalanuvchini oʻchirish" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Veb-saytni oʻchirish" + } + ], + "label.description": [ + { + "type": 0, + "value": "Tavsif" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Ish stoli" + } + ], + "label.details": [ + { + "type": 0, + "value": "Batafsil ma'lumot" + } + ], + "label.device": [ + { + "type": 0, + "value": "Qurilma" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Qurilmalar" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Yopish" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Oʻz ichiga olmaydi" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domen" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Tashlab ketish" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Tahrirlash" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Boshqaruv panelini tahrirlash" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "A'zoni tahrirlash" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Ulashish URL'ini yoqish" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Yakuniy qadam" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Kirish yoʻli" + } + ], + "label.event": [ + { + "type": 0, + "value": "Hodisa" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Hodisa ma'lumotlari" + } + ], + "label.events": [ + { + "type": 0, + "value": "Hodisalar" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Chiqish yoʻli" + } + ], + "label.false": [ + { + "type": 0, + "value": "Yolgʻon" + } + ], + "label.field": [ + { + "type": 0, + "value": "Maydon" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Maydonlar" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filtr" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Birlashtirilgan" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Xom" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtrlar" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Birinchi koʻrilgan" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Voronka" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Foydalanuvchilarning konversiya va tashlab ketish darajasini tushunish." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Maqsad" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Maqsadlar" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Sahifa koʻrishlari va hodisalar uchun maqsadlaringizni kuzatib boring." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Kattaroq" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Kattaroq yoki teng" + } + ], + "label.host": [ + { + "type": 0, + "value": "Xost" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Xostlar" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Tushunchalar" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Segmentlar va filtrlardan foydalanib ma'lumotlaringizga chuqurroq kiring." + } + ], + "label.is": [ + { + "type": 0, + "value": "Teng" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Teng emas" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Oʻrnatilmagan" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Oʻrnatilgan" + } + ], + "label.join": [ + { + "type": 0, + "value": "Qoʻshilish" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Jamoaga qoʻshilish" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Sayohat" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Foydalanuvchilar veb-saytingizda qanday harakat qilishlarini tushunish." + } + ], + "label.language": [ + { + "type": 0, + "value": "Til" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Tillar" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Noutbuk" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Oxirgi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " kun" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Oxirgi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " soat" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Oxirgi " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " oy" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Oxirgi koʻrilgan" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Tark etish" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Jamoani tark etish" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Kichikroq" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Kichikroq yoki teng" + } + ], + "label.login": [ + { + "type": 0, + "value": "Kirish" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Chiqish" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Boshqarish" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Menejer" + } + ], + "label.max": [ + { + "type": 0, + "value": "Maksimal" + } + ], + "label.member": [ + { + "type": 0, + "value": "A'zo" + } + ], + "label.members": [ + { + "type": 0, + "value": "A'zolar" + } + ], + "label.min": [ + { + "type": 0, + "value": "Minimal" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobil" + } + ], + "label.more": [ + { + "type": 0, + "value": "Koʻproq" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Mening hisobim" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Mening veb-saytlarim" + } + ], + "label.name": [ + { + "type": 0, + "value": "Ism" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Yangi parol" + } + ], + "label.none": [ + { + "type": 0, + "value": "Hech biri" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " yozuv" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.os": [ + { + "type": 0, + "value": "OT (Operatsion tizim)" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Umumiy koʻrinish" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Egasi" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Sahifa " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " dan " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Sahifa koʻrishlari" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Sahifa sarlavhasi" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Sahifalar" + } + ], + "label.password": [ + { + "type": 0, + "value": "Parol" + } + ], + "label.path": [ + { + "type": 0, + "value": "Yoʻl" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Yoʻllar" + } + ], + "label.powered-by": [ + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " tomonidan quvvatlanadi" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Oldingi" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Oldingi davr" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Oldingi yil" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Xususiyatlar" + } + ], + "label.property": [ + { + "type": 0, + "value": "Xususiyat" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Soʻrovlar" + } + ], + "label.query": [ + { + "type": 0, + "value": "Soʻrov" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Soʻrov parametrlari" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Haqiqiy vaqt" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Tavsiya etuvchi" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Tavsiya etuvchilar" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Yangilash" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Qayta yaratish" + } + ], + "label.region": [ + { + "type": 0, + "value": "Viloyat/Mintaqa" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Viloyatlar/Mintaqalar" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Olib tashlash" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "A'zoni olib tashlash" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Hisobotlar" + } + ], + "label.required": [ + { + "type": 0, + "value": "Majburiy" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Qayta tiklash" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Veb-saytni qayta tiklash" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Saqlanish" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Foydalanuvchilarning qaytish chastotasini kuzatib, veb-saytingizning jozibadorligini oʻlchang." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Daromad" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Vaqt oʻtishi bilan daromadingizni tekshiring." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Daromad xususiyati" + } + ], + "label.role": [ + { + "type": 0, + "value": "Rol" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Soʻrovni ishga tushirish" + } + ], + "label.save": [ + { + "type": 0, + "value": "Saqlash" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekranlar" + } + ], + "label.search": [ + { + "type": 0, + "value": "Qidiruv" + } + ], + "label.select": [ + { + "type": 0, + "value": "Tanlash" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Sanani tanlash" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rolni tanlash" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Veb-saytni tanlash" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sessiya" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sessiyalar" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Sozlamalar" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Ulashish URL'i" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Bir kun" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Boshlanish qadami" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Qadamlar" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Yigʻindi" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Planshet" + } + ], + "label.team": [ + { + "type": 0, + "value": "Jamoa" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Jamoa ID'si" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Jamoa menejeri" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Jamoa a'zosi" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Jamoa nomi" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Jamoa egasi" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Jamoa faqat koʻrish" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Jamoa veb-saytlari" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Jamoalar" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Mavzu" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Shu oy" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Shu hafta" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Shu yil" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Vaqt zonasi" + } + ], + "label.title": [ + { + "type": 0, + "value": "Sarlavha" + } + ], + "label.today": [ + { + "type": 0, + "value": "Bugun" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Grafiklarni almashtirish" + } + ], + "label.total": [ + { + "type": 0, + "value": "Jami" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Jami yozuvlar" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kuzatuv kodi" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Tranzaksiyalar" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Oʻtkazish" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Veb-saytni oʻtkazish" + } + ], + "label.true": [ + { + "type": 0, + "value": "Rost" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tur" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Noyob" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Noyob tashrif buyuruvchilar" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Noyob mijozlar" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Noma'lum" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Sarlavhasiz" + } + ], + "label.update": [ + { + "type": 0, + "value": "Yangilash" + } + ], + "label.url": [ + { + "type": 0, + "value": "URL" + } + ], + "label.urls": [ + { + "type": 0, + "value": "URL'lar" + } + ], + "label.user": [ + { + "type": 0, + "value": "Foydalanuvchi" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "Foydalanuvchi xususiyati" + } + ], + "label.username": [ + { + "type": 0, + "value": "Foydalanuvchi nomi" + } + ], + "label.users": [ + { + "type": 0, + "value": "Foydalanuvchilar" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "UTM parametrlari orqali kampaniyalaringizni kuzatib boring." + } + ], + "label.value": [ + { + "type": 0, + "value": "Qiymat" + } + ], + "label.view": [ + { + "type": 0, + "value": "Koʻrish" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Batafsil koʻrish" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Faqat koʻrish" + } + ], + "label.views": [ + { + "type": 0, + "value": "Koʻrishlar" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Tashrifga koʻrishlar soni" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tashrif davomiyligi" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Tashrif buyuruvchilar" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Tashriflar" + } + ], + "label.website": [ + { + "type": 0, + "value": "Veb-sayt" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Veb-sayt ID'si" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Veb-saytlar" + } + ], + "label.window": [ + { + "type": 0, + "value": "Oyna" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Kecha" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Tasdiqlash uchun pastdagi qutiga **" + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "** yozing." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " joriy " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "tashrif buyuruvchi" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "tashrif buyuruvchilar" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Yigʻilgan ma'lumotlar" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "**" + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "** ni oʻchirmoqchi ekanligingizga ishonchingiz komilmi?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "**" + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "** ni tark etmoqchi ekanligingizga ishonchingiz komilmi?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "**" + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "** ni olib tashlamoqchi ekanligingizga ishonchingiz komilmi?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "**" + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "** ni qayta tiklamoqchi ekanligingizga ishonchingiz komilmi?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Jamoani oʻchirish, shuningdek, barcha jamoa veb-saytlarini ham oʻchiradi." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Barcha veb-sayt ma'lumotlari oʻchiriladi." + } + ], + "message.error": [ + { + "type": 0, + "value": "Nimadir xato ketdi." + } + ], + "message.event-log": [ + { + "type": 0, + "value": "**" + }, + { + "type": 1, + "value": "url" + }, + { + "type": 0, + "value": "** da **" + }, + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": "** hodisasi" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Sozlamalarga oʻtish" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Notoʻgʻri foydalanuvchi nomi va/yoki parol." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Notoʻgʻri domen. http/https qoʻshmang." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimal uzunligi " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " belgidan" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Umami'ning yangi **" + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "** versiyasi mavjud!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Ma'lumotlar mavjud emas." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Hodisa ma'lumotlari mavjud emas." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Parollar mos kelmadi." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Hech qanday natija topilmadi." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Bu jamoada hech qanday veb-sayt yoʻq." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Siz hech qanday jamoa yaratmagansiz." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Hech qanday foydalanuvchi yoʻq." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Sizda hech qanday veb-sayt sozlanmagan." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Sahifa topilmadi" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Bu veb-saytni qayta tiklash uchun tasdiqlash uchun pastdagi qutiga **" + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "** yozing." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Bu veb-sayt uchun barcha statistik ma'lumotlar oʻchiriladi, lekin sozlamalaringiz saqlanib qoladi." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Saqlandi." + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Sizning veb-sayt statistikalaringiz quyidagi URL'da ochiqdir:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Siz allaqachon jamoa a'zosisiz." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Jamoa topilmadi." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Veb-saytlarni jamoaning har bir a'zosi koʻrishi mumkin." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Bu veb-sayt uchun statistikani kuzatish uchun quyidagi kodni HTML'ingizdagi **" + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": "** qismiga joylashtiring." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Bu veb-saytni oʻz hisobingizga oʻtkazasizmi?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Bu veb-saytni oʻtkazish uchun jamoani tanlang." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Veb-sayt egaligini oʻz hisobingizga yoki boshqa jamoaga oʻtkazish." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Hodisa ishga tushirildi" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Foydalanuvchi oʻchirildi." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Sahifa koʻrildi" + } + ], + "message.visitor-log": [ + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " da " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " dan foydalanayotgan " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " dan tashrif buyuruvchi" + } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Tashrif buyuruvchilar tashlab ketishdi" + } + ] +} diff --git a/public/intl/messages/vi-VN.json b/public/intl/messages/vi-VN.json new file mode 100644 index 0000000..dab46ca --- /dev/null +++ b/public/intl/messages/vi-VN.json @@ -0,0 +1,1860 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Mã truy cập" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Hành động" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Nhật ký hoạt động" + } + ], + "label.add": [ + { + "type": 0, + "value": "Thêm" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Thêm mô tả" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Thêm thành viên" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Thêm bước" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Thêm website" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Quản trị" + } + ], + "label.after": [ + { + "type": 0, + "value": "Sau đó" + } + ], + "label.all": [ + { + "type": 0, + "value": "Tất cả" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Toàn thời gian" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Phân tích" + } + ], + "label.average": [ + { + "type": 0, + "value": "Trung bình" + } + ], + "label.back": [ + { + "type": 0, + "value": "Quay lại" + } + ], + "label.before": [ + { + "type": 0, + "value": "Trước đó" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Tỷ lệ thoát trang" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Phân tích chi tiết" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Trình duyệt" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Các trình duyệt" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Hủy bỏ" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Đổi mật khẩu" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Các thành phố" + } + ], + "label.city": [ + { + "type": 0, + "value": "Thành phố" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Xóa tất cả" + } + ], + "label.compare": [ + { + "type": 0, + "value": "So sánh" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Xác nhận" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Xác nhận mật khẩu" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Chứa" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Tiếp tục" + } + ], + "label.count": [ + { + "type": 0, + "value": "Số lượng" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Các quốc gia" + } + ], + "label.country": [ + { + "type": 0, + "value": "Quốc gia" + } + ], + "label.create": [ + { + "type": 0, + "value": "Tạo" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Tạo báo cáo" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Tạo nhóm" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Tạo người dùng" + } + ], + "label.created": [ + { + "type": 0, + "value": "Đã tạo" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Được tạo bởi" + } + ], + "label.current": [ + { + "type": 0, + "value": "Hiện tại" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Mật khẩu hiện tại" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Phạm vi tùy chỉnh" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Bảng điều khiển" + } + ], + "label.data": [ + { + "type": 0, + "value": "Dữ liệu" + } + ], + "label.date": [ + { + "type": 0, + "value": "Ngày" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Phạm vi ngày" + } + ], + "label.day": [ + { + "type": 0, + "value": "Ngày" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Khoảng thời gian mặc định" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Xóa" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Xóa báo cáo" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Xóa nhóm" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Xóa người dùng" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Xóa website" + } + ], + "label.description": [ + { + "type": 0, + "value": "Mô tả" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Máy tính để bàn" + } + ], + "label.details": [ + { + "type": 0, + "value": "Chi tiết" + } + ], + "label.device": [ + { + "type": 0, + "value": "Thiết bị" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Các thiết bị" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Bỏ qua" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Không chứa" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Tên miền" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Tỷ lệ bỏ qua" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Chỉnh sửa" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Chỉnh sửa bảng điều khiển" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Chỉnh sửa thành viên" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Bật chia sẻ URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "Bước kết thúc" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL truy cập" + } + ], + "label.event": [ + { + "type": 0, + "value": "Sự kiện" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Dữ liệu sự kiện" + } + ], + "label.events": [ + { + "type": 0, + "value": "Các sự kiện" + } + ], + "label.exit": [ + { + "type": 0, + "value": "URL thoát" + } + ], + "label.false": [ + { + "type": 0, + "value": "Sai" + } + ], + "label.field": [ + { + "type": 0, + "value": "Trường" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Các trường" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Lọc" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kết hợp lọc" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Lọc thô" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Bộ lọc" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Lần đầu tiên nhìn thấy" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Phễu" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Tìm hiểu tỷ lệ chuyển đổi và bỏ qua của người dùng." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Mục tiêu" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Các mục tiêu" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Theo dõi các mục tiêu của bạn cho lượt xem trang và sự kiện." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Lớn hơn" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Lớn hơn hoặc bằng" + } + ], + "label.host": [ + { + "type": 0, + "value": "Máy chủ" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Các máy chủ" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Thông tin chi tiết" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Tìm hiểu sâu hơn về dữ liệu của bạn bằng cách sử dụng phân đoạn và bộ lọc." + } + ], + "label.is": [ + { + "type": 0, + "value": "Là" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Không phải là" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Chưa được đặt" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Đã đặt" + } + ], + "label.join": [ + { + "type": 0, + "value": "Tham gia" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Tham gia nhóm" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Hành trình" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Hiểu cách người dùng điều hướng qua website của bạn." + } + ], + "label.language": [ + { + "type": 0, + "value": "Ngôn ngữ" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Các ngôn ngữ" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Máy tính xách tay" + } + ], + "label.last-days": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ngày gần nhất" + } + ], + "label.last-hours": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " giờ gần nhất" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " tháng gần nhất" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Lần cuối cùng nhìn thấy" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Rời khỏi" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Rời nhóm" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Nhỏ hơn" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Nhỏ hơn hoặc bằng" + } + ], + "label.login": [ + { + "type": 0, + "value": "Đăng nhập" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Đăng xuất" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Quản lý" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Quản lý" + } + ], + "label.max": [ + { + "type": 0, + "value": "Tối đa" + } + ], + "label.member": [ + { + "type": 0, + "value": "Thành viên" + } + ], + "label.members": [ + { + "type": 0, + "value": "Các thành viên" + } + ], + "label.min": [ + { + "type": 0, + "value": "Tối thiểu" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Di động" + } + ], + "label.more": [ + { + "type": 0, + "value": "Thêm" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Tài khoản của tôi" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Các website của tôi" + } + ], + "label.name": [ + { + "type": 0, + "value": "Tên" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Mật khẩu mới" + } + ], + "label.none": [ + { + "type": 0, + "value": "Không" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "bản ghi" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "bản ghi" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.os": [ + { + "type": 0, + "value": "Hệ điều hành" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Tổng quan" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Chủ sở hữu" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Trang " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " trên " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Lượt xem trang" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Tiêu đề trang" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Các trang" + } + ], + "label.password": [ + { + "type": 0, + "value": "Mật khẩu" + } + ], + "label.path": [ + { + "type": 0, + "value": "Đường dẫn" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Các đường dẫn" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Được cung cấp bởi " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Trước" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Kỳ trước" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Năm trước" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Hồ sơ" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Thuộc tính" + } + ], + "label.property": [ + { + "type": 0, + "value": "Thuộc tính" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Truy vấn" + } + ], + "label.query": [ + { + "type": 0, + "value": "Truy vấn" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Tham số truy vấn" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Thời gian thực" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Nguồn giới thiệu" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Các nguồn giới thiệu" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Làm mới" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Tạo lại" + } + ], + "label.region": [ + { + "type": 0, + "value": "Vùng" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Các vùng" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Xóa" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Xóa thành viên" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Báo cáo" + } + ], + "label.required": [ + { + "type": 0, + "value": "Yêu cầu" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Đặt lại" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Đặt lại thống kê website" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Tỷ lệ giữ chân" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Đo lường mức độ gắn bó của website bằng cách theo dõi tần suất người dùng quay lại." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Doanh thu" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Xem xét doanh thu của bạn theo thời gian." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Thuộc tính doanh thu" + } + ], + "label.role": [ + { + "type": 0, + "value": "Vai trò" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Chạy truy vấn" + } + ], + "label.save": [ + { + "type": 0, + "value": "Lưu" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Màn hình" + } + ], + "label.search": [ + { + "type": 0, + "value": "Tìm kiếm" + } + ], + "label.select": [ + { + "type": 0, + "value": "Chọn" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Chọn ngày" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Chọn vai trò" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Chọn website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Phiên" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Các phiên" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Cài đặt" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Chia sẻ URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Một ngày" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Bước bắt đầu" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Các bước" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Tổng" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Máy tính bảng" + } + ], + "label.team": [ + { + "type": 0, + "value": "Nhóm" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID nhóm" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Quản lý nhóm" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Thành viên nhóm" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Tên nhóm" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Chủ sở hữu nhóm" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Chỉ xem nhóm" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Các website của nhóm" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Các nhóm" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Chủ đề" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Tháng này" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Tuần này" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Năm nay" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Múi giờ" + } + ], + "label.title": [ + { + "type": 0, + "value": "Tiêu đề" + } + ], + "label.today": [ + { + "type": 0, + "value": "Hôm nay" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Bật/tắt biểu đồ" + } + ], + "label.total": [ + { + "type": 0, + "value": "Tổng" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Tổng số bản ghi" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Mã theo dõi" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Giao dịch" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Chuyển giao" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Chuyển giao website" + } + ], + "label.true": [ + { + "type": 0, + "value": "Đúng" + } + ], + "label.type": [ + { + "type": 0, + "value": "Loại" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Duy nhất" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Khách truy cập duy nhất" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Khách hàng duy nhất" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Không rõ" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Không có tiêu đề" + } + ], + "label.update": [ + { + "type": 0, + "value": "Cập nhật" + } + ], + "label.url": [ + { + "type": 0, + "value": "URL" + } + ], + "label.urls": [ + { + "type": 0, + "value": "Các URL" + } + ], + "label.user": [ + { + "type": 0, + "value": "Người dùng" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "Thuộc tính người dùng" + } + ], + "label.username": [ + { + "type": 0, + "value": "Tên đăng nhập" + } + ], + "label.users": [ + { + "type": 0, + "value": "Người dùng" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Theo dõi các chiến dịch của bạn thông qua các tham số UTM." + } + ], + "label.value": [ + { + "type": 0, + "value": "Giá trị" + } + ], + "label.view": [ + { + "type": 0, + "value": "Xem" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Xem chi tiết" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Chỉ xem" + } + ], + "label.views": [ + { + "type": 0, + "value": "Lượt xem" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Lượt xem trên mỗi lượt truy cập" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Thời lượng truy cập" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Khách truy cập" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Lượt truy cập" + } + ], + "label.website": [ + { + "type": 0, + "value": "Website" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID website" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Các website" + } + ], + "label.window": [ + { + "type": 0, + "value": "Cửa sổ" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Hôm qua" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Nhập " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " vào ô bên dưới để xác nhận." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "người dùng" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "người dùng" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + }, + { + "type": 0, + "value": " đang hoạt động" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Dữ liệu đã thu thập" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Bạn có chắc chắn muốn xóa " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Bạn có chắc chắn muốn rời " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Bạn có chắc chắn muốn xóa " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Bạn có chắc chắn muốn đặt lại thống kê " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Việc xóa một nhóm cũng sẽ xóa tất cả các website của nhóm." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Tất cả dữ liệu liên quan cũng sẽ bị xóa." + } + ], + "message.error": [ + { + "type": 0, + "value": "Đã xảy ra lỗi." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " trên " + }, + { + "type": 1, + "value": "url" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Chuyển đến cài đặt" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Sai tên đăng nhập/mật khẩu." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Tên miền không hợp lệ" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Độ dài tối thiểu " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " ký tự" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Có phiên bản mới của Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Không có dữ liệu." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Không có dữ liệu sự kiện." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Mật khẩu không khớp" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Không tìm thấy kết quả nào." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Nhóm này không có bất kỳ website nào." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Bạn chưa tạo nhóm nào." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Không có người dùng nào." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Bạn chưa cấu hình bất kỳ website nào." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Không tìm thấy trang." + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Để đặt lại website này, nhập " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " vào ô bên dưới để xác nhận." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Tất cả số liệu thống kê của website này sẽ bị xóa, nhưng mã theo dõi sẽ vẫn giữ nguyên." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Đã lưu thành công." + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Đây là đường dẫn URL cho " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "." + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Bạn đã là thành viên của nhóm." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Không tìm thấy nhóm." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Bất kỳ ai trong nhóm đều có thể xem các website." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Mã theo dõi" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Chuyển website này sang tài khoản của bạn?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Chọn nhóm để chuyển website này đến." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Chuyển quyền sở hữu website sang tài khoản của bạn hoặc một nhóm khác." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Sự kiện được kích hoạt" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Người dùng đã bị xóa." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Đã xem trang" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Khách từ " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " đang sử dụng " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " trên " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Khách truy cập đã rời đi" + } + ] +} diff --git a/public/intl/messages/zh-CN.json b/public/intl/messages/zh-CN.json new file mode 100644 index 0000000..b3d2f3c --- /dev/null +++ b/public/intl/messages/zh-CN.json @@ -0,0 +1,2214 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "访问代码" + } + ], + "label.actions": [ + { + "type": 0, + "value": "用户行为" + } + ], + "label.activity": [ + { + "type": 0, + "value": "活动日志" + } + ], + "label.add": [ + { + "type": 0, + "value": "添加" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "添加看板" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "添加描述" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "添加成员" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "添加步骤" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "添加网站" + } + ], + "label.admin": [ + { + "type": 0, + "value": "管理员" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "联盟" + } + ], + "label.after": [ + { + "type": 0, + "value": "之后" + } + ], + "label.all": [ + { + "type": 0, + "value": "所有" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "所有时间段" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "分析" + } + ], + "label.apply": [ + { + "type": 0, + "value": "应用" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "归因" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "查看用户如何与您的营销互动,以及是什么促成了转化。" + } + ], + "label.average": [ + { + "type": 0, + "value": "平均" + } + ], + "label.back": [ + { + "type": 0, + "value": "返回" + } + ], + "label.before": [ + { + "type": 0, + "value": "之前" + } + ], + "label.boards": [ + { + "type": 0, + "value": "看板" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "跳出率" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "故障" + } + ], + "label.browser": [ + { + "type": 0, + "value": "浏览器" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "浏览器" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "活动" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "取消" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "修改密码" + } + ], + "label.channels": [ + { + "type": 0, + "value": "渠道" + } + ], + "label.cities": [ + { + "type": 0, + "value": "市/县" + } + ], + "label.city": [ + { + "type": 0, + "value": "市/县" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "清除全部" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "队列" + } + ], + "label.compare": [ + { + "type": 0, + "value": "比较" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "比较日期" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "确认" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "确认密码" + } + ], + "label.contains": [ + { + "type": 0, + "value": "包含" + } + ], + "label.content": [ + { + "type": 0, + "value": "内容" + } + ], + "label.continue": [ + { + "type": 0, + "value": "继续" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "转化" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "转化率" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "转化步骤" + } + ], + "label.count": [ + { + "type": 0, + "value": "统计" + } + ], + "label.countries": [ + { + "type": 0, + "value": "国家/地区" + } + ], + "label.country": [ + { + "type": 0, + "value": "国家/地区" + } + ], + "label.create": [ + { + "type": 0, + "value": "创建" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "创建报告" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "创建团队" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "创建用户" + } + ], + "label.created": [ + { + "type": 0, + "value": "已创建" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "创建者" + } + ], + "label.currency": [ + { + "type": 0, + "value": "货币" + } + ], + "label.current": [ + { + "type": 0, + "value": "当前" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "当前密码" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "自定义时间段" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "仪表盘" + } + ], + "label.data": [ + { + "type": 0, + "value": "统计数据" + } + ], + "label.date": [ + { + "type": 0, + "value": "日期" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "时间段" + } + ], + "label.day": [ + { + "type": 0, + "value": "日" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "默认时间段" + } + ], + "label.delete": [ + { + "type": 0, + "value": "删除" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "删除报告" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "删除团队" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "删除用户" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "删除网站" + } + ], + "label.description": [ + { + "type": 0, + "value": "描述" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "台式机" + } + ], + "label.details": [ + { + "type": 0, + "value": "详细信息" + } + ], + "label.device": [ + { + "type": 0, + "value": "设备" + } + ], + "label.devices": [ + { + "type": 0, + "value": "设备" + } + ], + "label.direct": [ + { + "type": 0, + "value": "直接" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "关闭" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "唯一ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "不包含" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "不包括" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "不存在" + } + ], + "label.domain": [ + { + "type": 0, + "value": "域名" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "丢弃" + } + ], + "label.edit": [ + { + "type": 0, + "value": "编辑" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "编辑仪表盘" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "编辑成员" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "启用共享链接" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "结束步骤" + } + ], + "label.entry": [ + { + "type": 0, + "value": "入口 URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "事件" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "事件数据" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "事件名称" + } + ], + "label.events": [ + { + "type": 0, + "value": "行为类别" + } + ], + "label.exists": [ + { + "type": 0, + "value": "存在" + } + ], + "label.exit": [ + { + "type": 0, + "value": "退出 URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "否" + } + ], + "label.field": [ + { + "type": 0, + "value": "字段" + } + ], + "label.fields": [ + { + "type": 0, + "value": "字段" + } + ], + "label.filter": [ + { + "type": 0, + "value": "筛选器" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "合并" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "原始" + } + ], + "label.filters": [ + { + "type": 0, + "value": "筛选" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "首次点击" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "首次出现" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "分析" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "了解用户的转化率和跳出率。" + } + ], + "label.funnels": [ + { + "type": 0, + "value": "漏斗" + } + ], + "label.goal": [ + { + "type": 0, + "value": "目标" + } + ], + "label.goals": [ + { + "type": 0, + "value": "目标" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "跟踪页面浏览量和事件的目标。" + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "大于" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "大于或等于" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "分组" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "主机名" + } + ], + "label.includes": [ + { + "type": 0, + "value": "包括" + } + ], + "label.insight": [ + { + "type": 0, + "value": "洞察" + } + ], + "label.insights": [ + { + "type": 0, + "value": "见解" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "通过使用筛选器和划分时间段来更深入地研究数据。" + } + ], + "label.is": [ + { + "type": 0, + "value": "等于" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "否" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "不等于" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "未设置" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "已设置" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "是" + } + ], + "label.join": [ + { + "type": 0, + "value": "加入" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "加入团队" + } + ], + "label.journey": [ + { + "type": 0, + "value": "用户浏览轨迹" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "了解用户如何浏览网站。" + } + ], + "label.journeys": [ + { + "type": 0, + "value": "用户路径" + } + ], + "label.language": [ + { + "type": 0, + "value": "语言" + } + ], + "label.languages": [ + { + "type": 0, + "value": "语言" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "笔记本" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "最后点击" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 天" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 小时" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 个月" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "最后出现" + } + ], + "label.leave": [ + { + "type": 0, + "value": "离开" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "离开团队" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "少于" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "少于等于" + } + ], + "label.links": [ + { + "type": 0, + "value": "链接" + } + ], + "label.login": [ + { + "type": 0, + "value": "登录" + } + ], + "label.logout": [ + { + "type": 0, + "value": "退出" + } + ], + "label.manage": [ + { + "type": 0, + "value": "管理" + } + ], + "label.manager": [ + { + "type": 0, + "value": "管理者" + } + ], + "label.max": [ + { + "type": 0, + "value": "最大" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "展开" + } + ], + "label.medium": [ + { + "type": 0, + "value": "中等" + } + ], + "label.member": [ + { + "type": 0, + "value": "成员" + } + ], + "label.members": [ + { + "type": 0, + "value": "成员" + } + ], + "label.min": [ + { + "type": 0, + "value": "最小" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "手机" + } + ], + "label.model": [ + { + "type": 0, + "value": "模型" + } + ], + "label.more": [ + { + "type": 0, + "value": "更多" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "我的账户" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "我的网站" + } + ], + "label.name": [ + { + "type": 0, + "value": "名字" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "新密码" + } + ], + "label.none": [ + { + "type": 0, + "value": "无" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "好的" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "自然搜索" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "自然购物" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "自然社交" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "自然视频" + } + ], + "label.os": [ + { + "type": 0, + "value": "操作系统" + } + ], + "label.other": [ + { + "type": 0, + "value": "其他" + } + ], + "label.overview": [ + { + "type": 0, + "value": "概览" + } + ], + "label.owner": [ + { + "type": 0, + "value": "所有者" + } + ], + "label.page": [ + { + "type": 0, + "value": "页面" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "总 " + }, + { + "type": 1, + "value": "total" + }, + { + "type": 0, + "value": " 中的第 " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " 页" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "页面浏览量" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "标题" + } + ], + "label.pages": [ + { + "type": 0, + "value": "网页" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "付费广告" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "付费搜索" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "付费购物" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "付费社交" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "付费视频" + } + ], + "label.password": [ + { + "type": 0, + "value": "密码" + } + ], + "label.path": [ + { + "type": 0, + "value": "路径" + } + ], + "label.paths": [ + { + "type": 0, + "value": "路径" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "像素" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "由 " + }, + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " 提供支持" + } + ], + "label.previous": [ + { + "type": 0, + "value": "先前" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "上一时期" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "上一年" + } + ], + "label.profile": [ + { + "type": 0, + "value": "个人资料" + } + ], + "label.properties": [ + { + "type": 0, + "value": "属性" + } + ], + "label.property": [ + { + "type": 0, + "value": "属性" + } + ], + "label.queries": [ + { + "type": 0, + "value": "查询" + } + ], + "label.query": [ + { + "type": 0, + "value": "查询" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "查询参数" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "实时" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "来源" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "来源域名" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "刷新" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "重新生成" + } + ], + "label.region": [ + { + "type": 0, + "value": "州/省" + } + ], + "label.regions": [ + { + "type": 0, + "value": "州/省" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "剩余" + } + ], + "label.remove": [ + { + "type": 0, + "value": "移除" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "移除成员" + } + ], + "label.reports": [ + { + "type": 0, + "value": "报告" + } + ], + "label.required": [ + { + "type": 0, + "value": "必填" + } + ], + "label.reset": [ + { + "type": 0, + "value": "重置" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "重置统计数据" + } + ], + "label.retention": [ + { + "type": 0, + "value": "保留" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "通过追踪用户回访频率来衡量您网站的用户粘性。" + } + ], + "label.revenue": [ + { + "type": 0, + "value": "收入" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "查看随时间变化的收入数据。" + } + ], + "label.role": [ + { + "type": 0, + "value": "角色" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "查询" + } + ], + "label.save": [ + { + "type": 0, + "value": "保存" + } + ], + "label.screens": [ + { + "type": 0, + "value": "屏幕尺寸" + } + ], + "label.search": [ + { + "type": 0, + "value": "搜索" + } + ], + "label.select": [ + { + "type": 0, + "value": "选择" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "选择日期" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "选择筛选器" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "选择角色" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "选择网站" + } + ], + "label.session": [ + { + "type": 0, + "value": "会话" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "会话数据" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "会话" + } + ], + "label.settings": [ + { + "type": 0, + "value": "设置" + } + ], + "label.share": [ + { + "type": 0, + "value": "分享" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "共享链接" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "单日" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "来源" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "开始步骤" + } + ], + "label.steps": [ + { + "type": 0, + "value": "步骤" + } + ], + "label.sum": [ + { + "type": 0, + "value": "总和" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "平板" + } + ], + "label.tag": [ + { + "type": 0, + "value": "标签" + } + ], + "label.tags": [ + { + "type": 0, + "value": "标签" + } + ], + "label.team": [ + { + "type": 0, + "value": "团队" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "团队 ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "团队管理员" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "团队成员" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "团队名称" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "团队所有者" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "团队设置" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "仅团队视图" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "团队网站" + } + ], + "label.teams": [ + { + "type": 0, + "value": "团队" + } + ], + "label.terms": [ + { + "type": 0, + "value": "条款" + } + ], + "label.theme": [ + { + "type": 0, + "value": "主题" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "本月" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "本周" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "今年" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "时区" + } + ], + "label.title": [ + { + "type": 0, + "value": "标题" + } + ], + "label.today": [ + { + "type": 0, + "value": "今天" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "切换图表" + } + ], + "label.total": [ + { + "type": 0, + "value": "总数" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "总记录数" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "跟踪代码" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "交易" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "转移" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "转移网站" + } + ], + "label.true": [ + { + "type": 0, + "value": "是" + } + ], + "label.type": [ + { + "type": 0, + "value": "类型" + } + ], + "label.unique": [ + { + "type": 0, + "value": "独立" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "独立访客" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "独特客户" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "未知" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "未命名" + } + ], + "label.update": [ + { + "type": 0, + "value": "更新" + } + ], + "label.user": [ + { + "type": 0, + "value": "用户" + } + ], + "label.username": [ + { + "type": 0, + "value": "用户名" + } + ], + "label.users": [ + { + "type": 0, + "value": "用户" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "通过 UTM 参数追踪您的广告活动。" + } + ], + "label.value": [ + { + "type": 0, + "value": "值" + } + ], + "label.view": [ + { + "type": 0, + "value": "查看" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "查看更多" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "仅浏览" + } + ], + "label.views": [ + { + "type": 0, + "value": "浏览量" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "每次访问的浏览量" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "平均访问时长" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "访客" + } + ], + "label.visits": [ + { + "type": 0, + "value": "访问次数" + } + ], + "label.website": [ + { + "type": 0, + "value": "网站" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "网站 ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "网站" + } + ], + "label.window": [ + { + "type": 0, + "value": "窗口" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "昨天" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "请在下方输入框中输入 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " 以确认操作。" + } + ], + "message.active-users": [ + { + "type": 0, + "value": "当前在线 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 位访客" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "已收集的数据" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "你确定要删除 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 吗?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "你确定要离开 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 吗?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "您确定要移除 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "您确定要重置 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 的数据吗?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "删除团队也会删除所有团队网站。" + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "所有相关数据将会被删除。" + } + ], + "message.error": [ + { + "type": 0, + "value": "发生错误。" + } + ], + "message.event-log": [ + { + "type": 1, + "value": "url" + }, + { + "type": 0, + "value": " 上的 " + }, + { + "type": 1, + "value": "event" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "去设置" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "用户名或密码不正确。" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "无效域名" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "密码最短长度为 " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " 个字符" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Umami 新版本 " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " 已发布!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "暂无数据。" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "无可用事件。" + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "密码不一致" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "未找到结果。" + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "该团队暂无网站。" + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "您尚未创建任何团队。" + } + ], + "message.no-users": [ + { + "type": 0, + "value": "暂无用户。" + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "你还没有设置任何网站。" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "页面未找到。" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "如确定要重置该网站,请在下面输入 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " 以确认。" + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "此网站的所有统计数据将被删除,但您的跟踪代码将保持不变。" + } + ], + "message.saved": [ + { + "type": 0, + "value": "保存成功。" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "这是 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 的共享链接。" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "你已是该团队的成员。" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "未找到团队。" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "团队成员均可查看网站数据。" + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "跟踪代码" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "将此网站转移到您的账户?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "选择要转移此网站的团队。" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "将网站所有权转移到您的账户或其他团队。" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "触发事件" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "用户已删除。" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "已浏览页面" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "来自 " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " 的访客在搭载 " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " 的 " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " 上使用 " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " 浏览器进行访问。" + } + ] +} diff --git a/public/intl/messages/zh-TW.json b/public/intl/messages/zh-TW.json new file mode 100644 index 0000000..db500a4 --- /dev/null +++ b/public/intl/messages/zh-TW.json @@ -0,0 +1,2200 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "存取碼" + } + ], + "label.actions": [ + { + "type": 0, + "value": "行為" + } + ], + "label.activity": [ + { + "type": 0, + "value": "活動紀錄" + } + ], + "label.add": [ + { + "type": 0, + "value": "新增" + } + ], + "label.add-board": [ + { + "type": 0, + "value": "新增看板" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "新增描述" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "新增成員" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "新增步驟" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "新增網站" + } + ], + "label.admin": [ + { + "type": 0, + "value": "管理員" + } + ], + "label.affiliate": [ + { + "type": 0, + "value": "聯盟" + } + ], + "label.after": [ + { + "type": 0, + "value": "之後" + } + ], + "label.all": [ + { + "type": 0, + "value": "全部" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "所有時間" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "分析" + } + ], + "label.apply": [ + { + "type": 0, + "value": "套用" + } + ], + "label.attribution": [ + { + "type": 0, + "value": "歸因" + } + ], + "label.attribution-description": [ + { + "type": 0, + "value": "查看使用者如何與您的行銷互動,以及什麼促成了轉換。" + } + ], + "label.average": [ + { + "type": 0, + "value": "平均" + } + ], + "label.back": [ + { + "type": 0, + "value": "返回" + } + ], + "label.before": [ + { + "type": 0, + "value": "之前" + } + ], + "label.boards": [ + { + "type": 0, + "value": "看板" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "跳出率" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "細項分析" + } + ], + "label.browser": [ + { + "type": 0, + "value": "瀏覽器" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "瀏覽器" + } + ], + "label.campaigns": [ + { + "type": 0, + "value": "活動" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "取消" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "更改密碼" + } + ], + "label.channels": [ + { + "type": 0, + "value": "Channels" + } + ], + "label.cities": [ + { + "type": 0, + "value": "城市" + } + ], + "label.city": [ + { + "type": 0, + "value": "城市" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "全部清除" + } + ], + "label.cohort": [ + { + "type": 0, + "value": "群組" + } + ], + "label.compare": [ + { + "type": 0, + "value": "比較" + } + ], + "label.compare-dates": [ + { + "type": 0, + "value": "比較日期" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "確認" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "確認密碼" + } + ], + "label.contains": [ + { + "type": 0, + "value": "包含" + } + ], + "label.content": [ + { + "type": 0, + "value": "內容" + } + ], + "label.continue": [ + { + "type": 0, + "value": "繼續" + } + ], + "label.conversion": [ + { + "type": 0, + "value": "轉換" + } + ], + "label.conversion-rate": [ + { + "type": 0, + "value": "轉換率" + } + ], + "label.conversion-step": [ + { + "type": 0, + "value": "轉換步驟" + } + ], + "label.count": [ + { + "type": 0, + "value": "數量" + } + ], + "label.countries": [ + { + "type": 0, + "value": "國家" + } + ], + "label.country": [ + { + "type": 0, + "value": "國家" + } + ], + "label.create": [ + { + "type": 0, + "value": "建立" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "建立報表" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "建立團隊" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "建立使用者" + } + ], + "label.created": [ + { + "type": 0, + "value": "已建立" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "建立者" + } + ], + "label.currency": [ + { + "type": 0, + "value": "Currency" + } + ], + "label.current": [ + { + "type": 0, + "value": "目前" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "目前密碼" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "自訂範圍" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "儀表板" + } + ], + "label.data": [ + { + "type": 0, + "value": "資料" + } + ], + "label.date": [ + { + "type": 0, + "value": "日期" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "日期範圍" + } + ], + "label.day": [ + { + "type": 0, + "value": "日" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "預設日期範圍" + } + ], + "label.delete": [ + { + "type": 0, + "value": "刪除" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "刪除報表" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "刪除團隊" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "刪除使用者" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "刪除網站" + } + ], + "label.description": [ + { + "type": 0, + "value": "描述" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "桌上型電腦" + } + ], + "label.details": [ + { + "type": 0, + "value": "詳細資訊" + } + ], + "label.device": [ + { + "type": 0, + "value": "裝置" + } + ], + "label.devices": [ + { + "type": 0, + "value": "裝置" + } + ], + "label.direct": [ + { + "type": 0, + "value": "Direct" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "關閉" + } + ], + "label.distinct-id": [ + { + "type": 0, + "value": "Distinct ID" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "不包含" + } + ], + "label.does-not-include": [ + { + "type": 0, + "value": "Does not include" + } + ], + "label.doest-not-exist": [ + { + "type": 0, + "value": "Does not exist" + } + ], + "label.domain": [ + { + "type": 0, + "value": "網域" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "離開" + } + ], + "label.edit": [ + { + "type": 0, + "value": "編輯" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "編輯儀表板" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "編輯成員" + } + ], + "label.email": [ + { + "type": 0, + "value": "Email" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "啟用分享連結" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "結束步驟" + } + ], + "label.entry": [ + { + "type": 0, + "value": "進入網址" + } + ], + "label.event": [ + { + "type": 0, + "value": "事件" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "事件資料" + } + ], + "label.event-name": [ + { + "type": 0, + "value": "Event name" + } + ], + "label.events": [ + { + "type": 0, + "value": "事件" + } + ], + "label.exists": [ + { + "type": 0, + "value": "Exists" + } + ], + "label.exit": [ + { + "type": 0, + "value": "離開網址" + } + ], + "label.false": [ + { + "type": 0, + "value": "否" + } + ], + "label.field": [ + { + "type": 0, + "value": "欄位" + } + ], + "label.fields": [ + { + "type": 0, + "value": "欄位" + } + ], + "label.filter": [ + { + "type": 0, + "value": "篩選器" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "組合" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "原始" + } + ], + "label.filters": [ + { + "type": 0, + "value": "篩選條件" + } + ], + "label.first-click": [ + { + "type": 0, + "value": "First click" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "首次造訪" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "漏斗分析" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "瞭解使用者的轉換率與流失率。" + } + ], + "label.funnels": [ + { + "type": 0, + "value": "Funnels" + } + ], + "label.goal": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "追蹤網頁瀏覽和事件的目標。" + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "大於" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "大於或等於" + } + ], + "label.grouped": [ + { + "type": 0, + "value": "Grouped" + } + ], + "label.hostname": [ + { + "type": 0, + "value": "Hostname" + } + ], + "label.includes": [ + { + "type": 0, + "value": "Includes" + } + ], + "label.insight": [ + { + "type": 0, + "value": "Insight" + } + ], + "label.insights": [ + { + "type": 0, + "value": "洞察" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "使用區段和篩選器來深入分析您的資料。" + } + ], + "label.is": [ + { + "type": 0, + "value": "是" + } + ], + "label.is-false": [ + { + "type": 0, + "value": "Is false" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "不是" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "未設定" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "已設定" + } + ], + "label.is-true": [ + { + "type": 0, + "value": "Is true" + } + ], + "label.join": [ + { + "type": 0, + "value": "加入" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "加入團隊" + } + ], + "label.journey": [ + { + "type": 0, + "value": "使用者旅程" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "瞭解使用者如何瀏覽您的網站。" + } + ], + "label.journeys": [ + { + "type": 0, + "value": "Journeys" + } + ], + "label.language": [ + { + "type": 0, + "value": "語言" + } + ], + "label.languages": [ + { + "type": 0, + "value": "語言" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "筆記型電腦" + } + ], + "label.last-click": [ + { + "type": 0, + "value": "Last click" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 天" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 小時" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 個月" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "最後造訪" + } + ], + "label.leave": [ + { + "type": 0, + "value": "離開" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "離開團隊" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "小於" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "小於或等於" + } + ], + "label.links": [ + { + "type": 0, + "value": "Links" + } + ], + "label.login": [ + { + "type": 0, + "value": "登入" + } + ], + "label.logout": [ + { + "type": 0, + "value": "登出" + } + ], + "label.manage": [ + { + "type": 0, + "value": "管理" + } + ], + "label.manager": [ + { + "type": 0, + "value": "管理者" + } + ], + "label.max": [ + { + "type": 0, + "value": "最大值" + } + ], + "label.maximize": [ + { + "type": 0, + "value": "Expand" + } + ], + "label.medium": [ + { + "type": 0, + "value": "Medium" + } + ], + "label.member": [ + { + "type": 0, + "value": "成員" + } + ], + "label.members": [ + { + "type": 0, + "value": "成員" + } + ], + "label.min": [ + { + "type": 0, + "value": "最小值" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "行動裝置" + } + ], + "label.model": [ + { + "type": 0, + "value": "Model" + } + ], + "label.more": [ + { + "type": 0, + "value": "更多" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "我的帳號" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "我的網站" + } + ], + "label.name": [ + { + "type": 0, + "value": "名稱" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "新密碼" + } + ], + "label.none": [ + { + "type": 0, + "value": "無" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 筆紀錄" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.online": [ + { + "type": 0, + "value": "Online" + } + ], + "label.organic-search": [ + { + "type": 0, + "value": "Organic search" + } + ], + "label.organic-shopping": [ + { + "type": 0, + "value": "Organic shopping" + } + ], + "label.organic-social": [ + { + "type": 0, + "value": "Organic social" + } + ], + "label.organic-video": [ + { + "type": 0, + "value": "Organic video" + } + ], + "label.os": [ + { + "type": 0, + "value": "作業系統" + } + ], + "label.other": [ + { + "type": 0, + "value": "Other" + } + ], + "label.overview": [ + { + "type": 0, + "value": "總覽" + } + ], + "label.owner": [ + { + "type": 0, + "value": "擁有者" + } + ], + "label.page": [ + { + "type": 0, + "value": "Page" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "第 " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " 頁,共 " + }, + { + "type": 1, + "value": "total" + }, + { + "type": 0, + "value": " 頁" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "網頁瀏覽次數" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "網頁標題" + } + ], + "label.pages": [ + { + "type": 0, + "value": "網頁" + } + ], + "label.paid-ads": [ + { + "type": 0, + "value": "Paid ads" + } + ], + "label.paid-search": [ + { + "type": 0, + "value": "Paid search" + } + ], + "label.paid-shopping": [ + { + "type": 0, + "value": "Paid shopping" + } + ], + "label.paid-social": [ + { + "type": 0, + "value": "Paid social" + } + ], + "label.paid-video": [ + { + "type": 0, + "value": "Paid video" + } + ], + "label.password": [ + { + "type": 0, + "value": "密碼" + } + ], + "label.path": [ + { + "type": 0, + "value": "路徑" + } + ], + "label.paths": [ + { + "type": 0, + "value": "路徑" + } + ], + "label.pixels": [ + { + "type": 0, + "value": "Pixels" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "由 " + }, + { + "type": 1, + "value": "name" + }, + { + "type": 0, + "value": " 提供技術支援" + } + ], + "label.previous": [ + { + "type": 0, + "value": "上一個" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "上一期間" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "去年" + } + ], + "label.profile": [ + { + "type": 0, + "value": "個人檔案" + } + ], + "label.properties": [ + { + "type": 0, + "value": "屬性" + } + ], + "label.property": [ + { + "type": 0, + "value": "屬性" + } + ], + "label.queries": [ + { + "type": 0, + "value": "查詢" + } + ], + "label.query": [ + { + "type": 0, + "value": "查詢" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "查詢參數" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "即時" + } + ], + "label.referral": [ + { + "type": 0, + "value": "Referral" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "參照來源" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "參照來源" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "重新整理" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "重新產生" + } + ], + "label.region": [ + { + "type": 0, + "value": "地區" + } + ], + "label.regions": [ + { + "type": 0, + "value": "地區" + } + ], + "label.remaining": [ + { + "type": 0, + "value": "Remaining" + } + ], + "label.remove": [ + { + "type": 0, + "value": "移除" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "移除成員" + } + ], + "label.reports": [ + { + "type": 0, + "value": "報表" + } + ], + "label.required": [ + { + "type": 0, + "value": "必填" + } + ], + "label.reset": [ + { + "type": 0, + "value": "重設" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "重設網站統計資料" + } + ], + "label.retention": [ + { + "type": 0, + "value": "留存率" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "透過追蹤使用者回訪的頻率來衡量您的網站黏著度。" + } + ], + "label.revenue": [ + { + "type": 0, + "value": "營收" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "查看您的營收趨勢。" + } + ], + "label.role": [ + { + "type": 0, + "value": "角色" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "執行查詢" + } + ], + "label.save": [ + { + "type": 0, + "value": "儲存" + } + ], + "label.screens": [ + { + "type": 0, + "value": "螢幕" + } + ], + "label.search": [ + { + "type": 0, + "value": "搜尋" + } + ], + "label.select": [ + { + "type": 0, + "value": "選取" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "選取日期" + } + ], + "label.select-filter": [ + { + "type": 0, + "value": "Select filter" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "選取角色" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "選取網站" + } + ], + "label.session": [ + { + "type": 0, + "value": "工作階段" + } + ], + "label.session-data": [ + { + "type": 0, + "value": "Session data" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "工作階段" + } + ], + "label.settings": [ + { + "type": 0, + "value": "設定" + } + ], + "label.share": [ + { + "type": 0, + "value": "Share" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "分享連結" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "單日" + } + ], + "label.sms": [ + { + "type": 0, + "value": "SMS" + } + ], + "label.sources": [ + { + "type": 0, + "value": "Sources" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "起始步驟" + } + ], + "label.steps": [ + { + "type": 0, + "value": "步驟" + } + ], + "label.sum": [ + { + "type": 0, + "value": "總和" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "平板" + } + ], + "label.tag": [ + { + "type": 0, + "value": "Tag" + } + ], + "label.tags": [ + { + "type": 0, + "value": "Tags" + } + ], + "label.team": [ + { + "type": 0, + "value": "團隊" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "團隊 ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "團隊管理者" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "團隊成員" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "團隊名稱" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "團隊擁有者" + } + ], + "label.team-settings": [ + { + "type": 0, + "value": "Team settings" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "團隊僅供檢視" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "團隊網站" + } + ], + "label.teams": [ + { + "type": 0, + "value": "團隊" + } + ], + "label.terms": [ + { + "type": 0, + "value": "Terms" + } + ], + "label.theme": [ + { + "type": 0, + "value": "主題" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "本月" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "本週" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "今年" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "時區" + } + ], + "label.title": [ + { + "type": 0, + "value": "標題" + } + ], + "label.today": [ + { + "type": 0, + "value": "今天" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "切換圖表" + } + ], + "label.total": [ + { + "type": 0, + "value": "總計" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "紀錄總數" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "追蹤代碼" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "交易" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "轉移" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "轉移網站" + } + ], + "label.true": [ + { + "type": 0, + "value": "是" + } + ], + "label.type": [ + { + "type": 0, + "value": "類型" + } + ], + "label.unique": [ + { + "type": 0, + "value": "不重複" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "不重複訪客" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "不重複客戶" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "未知" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "未命名" + } + ], + "label.update": [ + { + "type": 0, + "value": "更新" + } + ], + "label.user": [ + { + "type": 0, + "value": "使用者" + } + ], + "label.username": [ + { + "type": 0, + "value": "使用者名稱" + } + ], + "label.users": [ + { + "type": 0, + "value": "使用者" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "透過 UTM 參數追蹤您的行銷活動。" + } + ], + "label.value": [ + { + "type": 0, + "value": "值" + } + ], + "label.view": [ + { + "type": 0, + "value": "檢視" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "檢視詳細資訊" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "僅供檢視" + } + ], + "label.views": [ + { + "type": 0, + "value": "瀏覽次數" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "每次造訪的瀏覽次數" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "造訪時間" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "訪客" + } + ], + "label.visits": [ + { + "type": 0, + "value": "造訪次數" + } + ], + "label.website": [ + { + "type": 0, + "value": "網站" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "網站 ID" + } + ], + "label.websites": [ + { + "type": 0, + "value": "網站" + } + ], + "label.window": [ + { + "type": 0, + "value": "視窗" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "昨天" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "請在下方欄位輸入 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " 以確認。" + } + ], + "message.active-users": [ + { + "type": 0, + "value": "目前有 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 位訪客" + } + ], + "message.bad-request": [ + { + "type": 0, + "value": "Bad request" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "已蒐集的資料" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "您確定要刪除 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 嗎?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "您確定要離開 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 嗎?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "您確定要移除 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 嗎?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "您確定要重設 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 的統計資料嗎?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "刪除團隊的同時也會刪除所有團隊的網站。" + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "所有網站資料都將被刪除。" + } + ], + "message.error": [ + { + "type": 0, + "value": "發生錯誤。" + } + ], + "message.event-log": [ + { + "type": 0, + "value": "在 " + }, + { + "type": 1, + "value": "url" + }, + { + "type": 0, + "value": " 上的 " + }, + { + "type": 1, + "value": "event" + } + ], + "message.forbidden": [ + { + "type": 0, + "value": "Forbidden" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "前往設定" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "使用者名稱或密碼不正確。" + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "無效的網域。請勿包含 http/https。" + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "密碼長度至少需 " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " 個字元" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " 的新版本已推出!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "沒有可用的資料。" + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "沒有可用的事件資料。" + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "密碼不一致。" + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "找不到結果。" + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "此團隊沒有任何網站。" + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "您尚未建立任何團隊。" + } + ], + "message.no-users": [ + { + "type": 0, + "value": "沒有任何使用者。" + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "您尚未設定任何網站。" + } + ], + "message.not-found": [ + { + "type": 0, + "value": "Not found" + } + ], + "message.nothing-selected": [ + { + "type": 0, + "value": "Nothing selected." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "找不到網頁" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "要重設此網站的統計資料,請在下方欄位輸入 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " 以確認。" + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "此網站的所有統計資料都將被刪除,但您的設定將保持不變。" + } + ], + "message.saved": [ + { + "type": 0, + "value": "已儲存。" + } + ], + "message.sever-error": [ + { + "type": 0, + "value": "Server error" + } + ], + "message.share-url": [ + { + "type": 0, + "value": "您的網站統計資料可在以下網址公開檢視:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "您已是該團隊的成員。" + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "找不到團隊。" + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "團隊中的所有成員都可以檢視網站。" + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "要追蹤此網站的統計資料,請將以下程式碼放在您 HTML 的 " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " 區段中。" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "要將此網站轉移至您的帳號嗎?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "請選擇要轉移此網站的團隊。" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "將網站所有權轉移至您的帳號或其他團隊。" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "已觸發的事件" + } + ], + "message.unauthorized": [ + { + "type": 0, + "value": "Unauthorized" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "使用者已刪除。" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "已瀏覽的網頁" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "來自 " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " 的訪客在 " + }, + { + "type": 1, + "value": "device" + }, + { + "type": 0, + "value": " 上的 " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " 使用 " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " 瀏覽。" + } + ] +} diff --git a/public/iso-3166-2.json b/public/iso-3166-2.json new file mode 100644 index 0000000..347313d --- /dev/null +++ b/public/iso-3166-2.json @@ -0,0 +1,3617 @@ +{ + "AD-02": "Canillo", + "AD-03": "Encamp", + "AD-04": "La Massana", + "AD-05": "Ordino", + "AD-06": "Sant Julia de Loria", + "AD-07": "Andorra la Vella", + "AD-08": "Escaldes-Engordany", + "AE-AJ": "'Ajman", + "AE-AZ": "Abu Zaby", + "AE-DU": "Dubayy", + "AE-FU": "Al Fujayrah", + "AE-RK": "Ra's al Khaymah", + "AE-SH": "Ash Shariqah", + "AE-UQ": "Umm al Qaywayn", + "AF-BAL": "Balkh", + "AF-BAM": "Bamyan", + "AF-BDG": "Badghis", + "AF-BGL": "Baghlan", + "AF-DAY": "Daykundi", + "AF-FRA": "Farah", + "AF-FYB": "Faryab", + "AF-GHA": "Ghazni", + "AF-GHO": "Ghor", + "AF-HEL": "Helmand", + "AF-HER": "Herat", + "AF-JOW": "Jowzjan", + "AF-KAB": "Kabul", + "AF-KAN": "Kandahar", + "AF-KDZ": "Kunduz", + "AF-KHO": "Khost", + "AF-LAG": "Laghman", + "AF-LOG": "Logar", + "AF-NAN": "Nangarhar", + "AF-NIM": "Nimroz", + "AF-PAN": "Panjshayr", + "AF-PAR": "Parwan", + "AF-PIA": "Paktiya", + "AF-PKA": "Paktika", + "AF-SAM": "Samangan", + "AF-SAR": "Sar-e Pul", + "AF-TAK": "Takhar", + "AF-URU": "Uruzgan", + "AG-03": "Saint George", + "AG-04": "Saint John", + "AG-05": "Saint Mary", + "AG-07": "Saint Peter", + "AG-08": "Saint Philip", + "AG-10": "Barbuda", + "AG-11": "Redonda", + "AL-01": "Berat", + "AL-02": "Durres", + "AL-03": "Elbasan", + "AL-04": "Fier", + "AL-05": "Gjirokaster", + "AL-06": "Korce", + "AL-07": "Kukes", + "AL-08": "Lezhe", + "AL-09": "Diber", + "AL-10": "Shkoder", + "AL-11": "Tirane", + "AL-12": "Vlore", + "AM-AG": "Aragacotn", + "AM-AR": "Ararat", + "AM-AV": "Armavir", + "AM-ER": "Erevan", + "AM-GR": "Gegark'unik'", + "AM-KT": "Kotayk'", + "AM-LO": "Lori", + "AM-SH": "Sirak", + "AM-SU": "Syunik'", + "AM-TV": "Tavus", + "AM-VD": "Vayoc Jor", + "AO-BGO": "Bengo", + "AO-BGU": "Benguela", + "AO-BIE": "Bie", + "AO-CAB": "Cabinda", + "AO-CCU": "Cuando Cubango", + "AO-CNN": "Cunene", + "AO-CNO": "Cuanza-Norte", + "AO-CUS": "Cuanza-Sul", + "AO-HUA": "Huambo", + "AO-HUI": "Huila", + "AO-LNO": "Lunda-Norte", + "AO-LSU": "Lunda-Sul", + "AO-LUA": "Luanda", + "AO-MAL": "Malange", + "AO-MOX": "Moxico", + "AO-NAM": "Namibe", + "AO-UIG": "Uige", + "AO-ZAI": "Zaire", + "AR-A": "Salta", + "AR-B": "Buenos Aires", + "AR-C": "Ciudad Autonoma de Buenos Aires", + "AR-D": "San Luis", + "AR-E": "Entre Rios", + "AR-F": "La Rioja", + "AR-G": "Santiago del Estero", + "AR-H": "Chaco", + "AR-J": "San Juan", + "AR-K": "Catamarca", + "AR-L": "La Pampa", + "AR-M": "Mendoza", + "AR-N": "Misiones", + "AR-P": "Formosa", + "AR-Q": "Neuquen", + "AR-R": "Rio Negro", + "AR-S": "Santa Fe", + "AR-T": "Tucuman", + "AR-U": "Chubut", + "AR-V": "Tierra del Fuego", + "AR-W": "Corrientes", + "AR-X": "Cordoba", + "AR-Y": "Jujuy", + "AR-Z": "Santa Cruz", + "AT-1": "Burgenland", + "AT-2": "Karnten", + "AT-3": "Niederosterreich", + "AT-4": "Oberosterreich", + "AT-5": "Salzburg", + "AT-6": "Steiermark", + "AT-7": "Tirol", + "AT-8": "Vorarlberg", + "AT-9": "Wien", + "AU-ACT": "Australian Capital Territory", + "AU-NSW": "New South Wales", + "AU-NT": "Northern Territory", + "AU-QLD": "Queensland", + "AU-SA": "South Australia", + "AU-TAS": "Tasmania", + "AU-VIC": "Victoria", + "AU-WA": "Western Australia", + "AZ-ABS": "Abseron", + "AZ-AGA": "Agstafa", + "AZ-AGC": "Agcabadi", + "AZ-AGS": "Agdas", + "AZ-AGU": "Agsu", + "AZ-AST": "Astara", + "AZ-BA": "Baki", + "AZ-BAL": "Balakan", + "AZ-BAR": "Barda", + "AZ-BEY": "Beylaqan", + "AZ-BIL": "Bilasuvar", + "AZ-DAS": "Daskasan", + "AZ-FUZ": "Fuzuli", + "AZ-GA": "Ganca", + "AZ-GAD": "Gadabay", + "AZ-GOY": "Goycay", + "AZ-GYG": "Goygol", + "AZ-IMI": "Imisli", + "AZ-ISM": "Ismayilli", + "AZ-KUR": "Kurdamir", + "AZ-LA": "Lankaran", + "AZ-MAS": "Masalli", + "AZ-MI": "Mingacevir", + "AZ-NA": "Naftalan", + "AZ-NEF": "Neftcala", + "AZ-NX": "Naxcivan", + "AZ-OGU": "Oguz", + "AZ-QAB": "Qabala", + "AZ-QAX": "Qax", + "AZ-QAZ": "Qazax", + "AZ-QBA": "Quba", + "AZ-QUS": "Qusar", + "AZ-SAB": "Sabirabad", + "AZ-SAK": "Saki", + "AZ-SAL": "Salyan", + "AZ-SAT": "Saatli", + "AZ-SIY": "Siyazan", + "AZ-SKR": "Samkir", + "AZ-SM": "Sumqayit", + "AZ-SMI": "Samaxi", + "AZ-SMX": "Samux", + "AZ-SR": "Sirvan", + "AZ-TAR": "Tartar", + "AZ-TOV": "Tovuz", + "AZ-UCA": "Ucar", + "AZ-XAC": "Xacmaz", + "AZ-XIZ": "Xizi", + "AZ-YAR": "Yardimli", + "AZ-YEV": "Yevlax", + "AZ-ZAQ": "Zaqatala", + "AZ-ZAR": "Zardab", + "BA-BIH": "Federacija Bosne i Hercegovine", + "BA-BRC": "Brcko distrikt", + "BA-SRP": "Republika Srpska", + "BB-01": "Christ Church", + "BB-02": "Saint Andrew", + "BB-03": "Saint George", + "BB-04": "Saint James", + "BB-05": "Saint John", + "BB-07": "Saint Lucy", + "BB-08": "Saint Michael", + "BB-09": "Saint Peter", + "BB-10": "Saint Philip", + "BB-11": "Saint Thomas", + "BD-A": "Barishal", + "BD-B": "Chattogram", + "BD-C": "Dhaka", + "BD-D": "Khulna", + "BD-E": "Rajshahi", + "BD-F": "Rangpur", + "BD-G": "Sylhet", + "BD-H": "Mymensingh", + "BD-01": "Bandarban", + "BD-02": "Barguna", + "BD-03": "Bogura", + "BD-04": "Brahmanbaria", + "BD-05": "Bagerhat", + "BD-06": "Barishal", + "BD-07": "Bhola", + "BD-08": "Cumilla", + "BD-09": "Chandpur", + "BD-10": "Chattogram", + "BD-11": "Cox's Bazar", + "BD-12": "Chuadanga", + "BD-13": "Dhaka", + "BD-14": "Dinajpur", + "BD-15": "Faridpur", + "BD-16": "Feni", + "BD-17": "Gopalganj", + "BD-18": "Gazipur", + "BD-19": "Gaibandha", + "BD-20": "Habiganj", + "BD-21": "Jamalpur", + "BD-22": "Jashore", + "BD-23": "Jhenaidah", + "BD-24": "Joypurhat", + "BD-25": "Jhalakathi", + "BD-26": "Kishoreganj", + "BD-27": "Khulna", + "BD-28": "Kurigram", + "BD-29": "Khagrachhari", + "BD-30": "Kushtia", + "BD-31": "Lakshmipur", + "BD-32": "Lalmonirhat", + "BD-33": "Manikganj", + "BD-34": "Mymensingh", + "BD-35": "Munshiganj", + "BD-36": "Madaripur", + "BD-37": "Magura", + "BD-38": "Moulvibazar", + "BD-39": "Meherpur", + "BD-40": "Narayanganj", + "BD-41": "Netrakona", + "BD-42": "Narsingdi", + "BD-43": "Narail", + "BD-44": "Natore", + "BD-45": "Chapai Nawabganj", + "BD-46": "Nilphamari", + "BD-47": "Noakhali", + "BD-48": "Naogaon", + "BD-49": "Pabna", + "BD-50": "Pirojpur", + "BD-51": "Patuakhali", + "BD-52": "Panchagarh", + "BD-53": "Rajbari", + "BD-54": "Rajshahi", + "BD-55": "Rangpur", + "BD-56": "Rangamati", + "BD-57": "Sherpur", + "BD-58": "Satkhira", + "BD-59": "Sirajganj", + "BD-60": "Sylhet", + "BD-61": "Sunamganj", + "BD-62": "Shariatpur", + "BD-63": "Tangail", + "BD-64": "Thakurgaon", + "BE-BRU": "Brussels Hoofdstedelijk Gewest", + "BE-VLG": "Vlaams Gewest", + "BE-WAL": "Waals Gewest", + "BE-VAN": "Antwerpen", + "BE-VBR": "Vlaams-Brabant", + "BE-VLI": "Limburg", + "BE-VOV": "Oost-Vlaanderen", + "BE-VWV": "West-Vlaanderen", + "BE-WBR": "Brabant wallon", + "BE-WHT": "Hainaut", + "BE-WLG": "Liege", + "BE-WLX": "Luxembourg", + "BE-WNA": "Namur", + "BF-BAL": "Bale", + "BF-BAM": "Bam", + "BF-BAN": "Banwa", + "BF-BAZ": "Bazega", + "BF-BGR": "Bougouriba", + "BF-BLG": "Boulgou", + "BF-BLK": "Boulkiemde", + "BF-COM": "Comoe", + "BF-GAN": "Ganzourgou", + "BF-GNA": "Gnagna", + "BF-GOU": "Gourma", + "BF-HOU": "Houet", + "BF-KAD": "Kadiogo", + "BF-KEN": "Kenedougou", + "BF-KMP": "Kompienga", + "BF-KOS": "Kossi", + "BF-KOT": "Kouritenga", + "BF-KOW": "Kourweogo", + "BF-LER": "Leraba", + "BF-LOR": "Loroum", + "BF-MOU": "Mouhoun", + "BF-NAM": "Namentenga", + "BF-NAO": "Nahouri", + "BF-NAY": "Nayala", + "BF-OUB": "Oubritenga", + "BF-OUD": "Oudalan", + "BF-PAS": "Passore", + "BF-SEN": "Seno", + "BF-SIS": "Sissili", + "BF-SMT": "Sanmatenga", + "BF-SOM": "Soum", + "BF-SOR": "Sourou", + "BF-TAP": "Tapoa", + "BF-TUI": "Tuy", + "BF-YAT": "Yatenga", + "BF-ZIR": "Ziro", + "BF-ZON": "Zondoma", + "BF-ZOU": "Zoundweogo", + "BG-01": "Blagoevgrad", + "BG-02": "Burgas", + "BG-03": "Varna", + "BG-04": "Veliko Tarnovo", + "BG-05": "Vidin", + "BG-06": "Vratsa", + "BG-07": "Gabrovo", + "BG-08": "Dobrich", + "BG-09": "Kardzhali", + "BG-10": "Kyustendil", + "BG-11": "Lovech", + "BG-12": "Montana", + "BG-13": "Pazardzhik", + "BG-14": "Pernik", + "BG-15": "Pleven", + "BG-16": "Plovdiv", + "BG-17": "Razgrad", + "BG-18": "Ruse", + "BG-19": "Silistra", + "BG-20": "Sliven", + "BG-21": "Smolyan", + "BG-22": "Sofia (stolitsa)", + "BG-23": "Sofia", + "BG-24": "Stara Zagora", + "BG-25": "Targovishte", + "BG-26": "Haskovo", + "BG-27": "Shumen", + "BG-28": "Yambol", + "BH-13": "Al 'Asimah", + "BH-14": "Al Janubiyah", + "BH-15": "Al Muharraq", + "BH-17": "Ash Shamaliyah", + "BI-BM": "Bujumbura Mairie", + "BI-BR": "Bururi", + "BI-CI": "Cibitoke", + "BI-GI": "Gitega", + "BI-KI": "Kirundo", + "BI-MW": "Mwaro", + "BI-NG": "Ngozi", + "BI-RM": "Rumonge", + "BI-RT": "Rutana", + "BI-RY": "Ruyigi", + "BJ-AQ": "Atlantique", + "BJ-BO": "Borgou", + "BJ-CO": "Collines", + "BJ-LI": "Littoral", + "BJ-MO": "Mono", + "BJ-OU": "Oueme", + "BJ-PL": "Plateau", + "BJ-ZO": "Zou", + "BN-BE": "Belait", + "BN-BM": "Brunei-Muara", + "BN-TE": "Temburong", + "BN-TU": "Tutong", + "BO-B": "El Beni", + "BO-C": "Cochabamba", + "BO-H": "Chuquisaca", + "BO-L": "La Paz", + "BO-N": "Pando", + "BO-O": "Oruro", + "BO-P": "Potosi", + "BO-S": "Santa Cruz", + "BO-T": "Tarija", + "BQ-BO": "Bonaire", + "BQ-SA": "Saba", + "BQ-SE": "Sint Eustatius", + "BR-AC": "Acre", + "BR-AL": "Alagoas", + "BR-AM": "Amazonas", + "BR-AP": "Amapa", + "BR-BA": "Bahia", + "BR-CE": "Ceara", + "BR-DF": "Distrito Federal", + "BR-ES": "Espirito Santo", + "BR-GO": "Goias", + "BR-MA": "Maranhao", + "BR-MG": "Minas Gerais", + "BR-MS": "Mato Grosso do Sul", + "BR-MT": "Mato Grosso", + "BR-PA": "Para", + "BR-PB": "Paraiba", + "BR-PE": "Pernambuco", + "BR-PI": "Piaui", + "BR-PR": "Parana", + "BR-RJ": "Rio de Janeiro", + "BR-RN": "Rio Grande do Norte", + "BR-RO": "Rondonia", + "BR-RR": "Roraima", + "BR-RS": "Rio Grande do Sul", + "BR-SC": "Santa Catarina", + "BR-SE": "Sergipe", + "BR-SP": "Sao Paulo", + "BR-TO": "Tocantins", + "BS-BP": "Black Point", + "BS-CO": "Central Abaco", + "BS-EG": "East Grand Bahama", + "BS-FP": "City of Freeport", + "BS-HI": "Harbour Island", + "BS-LI": "Long Island", + "BS-NE": "North Eleuthera", + "BS-NP": "New Providence", + "BS-NS": "North Andros", + "BS-SE": "South Eleuthera", + "BS-SS": "San Salvador", + "BS-WG": "West Grand Bahama", + "BT-11": "Paro", + "BT-12": "Chhukha", + "BT-14": "Samtse", + "BT-15": "Thimphu", + "BT-21": "Tsirang", + "BT-22": "Dagana", + "BT-23": "Punakha", + "BT-24": "Wangdue Phodrang", + "BT-31": "Sarpang", + "BT-32": "Trongsa", + "BT-33": "Bumthang", + "BT-41": "Trashigang", + "BT-42": "Monggar", + "BT-43": "Pema Gatshel", + "BT-44": "Lhuentse", + "BT-45": "Samdrup Jongkhar", + "BT-GA": "Gasa", + "BW-CE": "Central", + "BW-CH": "Chobe", + "BW-GH": "Ghanzi", + "BW-KG": "Kgalagadi", + "BW-KL": "Kgatleng", + "BW-KW": "Kweneng", + "BW-NE": "North East", + "BW-NW": "North West", + "BW-SE": "South East", + "BW-SO": "Southern", + "BY-BR": "Brestskaya voblasts'", + "BY-HM": "Horad Minsk", + "BY-HO": "Homyel'skaya voblasts'", + "BY-HR": "Hrodzyenskaya voblasts'", + "BY-MA": "Mahilyowskaya voblasts'", + "BY-MI": "Minskaya voblasts'", + "BY-VI": "Vitsyebskaya voblasts'", + "BZ-BZ": "Belize", + "BZ-CY": "Cayo", + "BZ-CZL": "Corozal", + "BZ-OW": "Orange Walk", + "BZ-SC": "Stann Creek", + "BZ-TOL": "Toledo", + "CA-AB": "Alberta", + "CA-BC": "British Columbia", + "CA-MB": "Manitoba", + "CA-NB": "New Brunswick", + "CA-NL": "Newfoundland and Labrador", + "CA-NS": "Nova Scotia", + "CA-NT": "Northwest Territories", + "CA-NU": "Nunavut", + "CA-ON": "Ontario", + "CA-PE": "Prince Edward Island", + "CA-QC": "Quebec", + "CA-SK": "Saskatchewan", + "CA-YT": "Yukon", + "CD-EQ": "Equateur", + "CD-HK": "Haut-Katanga", + "CD-IT": "Ituri", + "CD-KC": "Kasai Central", + "CD-KE": "Kasai Oriental", + "CD-KG": "Kwango", + "CD-KL": "Kwilu", + "CD-KN": "Kinshasa", + "CD-LU": "Lualaba", + "CD-MA": "Maniema", + "CD-NK": "Nord-Kivu", + "CD-SA": "Sankuru", + "CD-SK": "Sud-Kivu", + "CD-TA": "Tanganyika", + "CD-TO": "Tshopo", + "CF-AC": "Ouham", + "CF-BB": "Bamingui-Bangoran", + "CF-BGF": "Bangui", + "CF-HS": "Mambere-Kadei", + "CF-KB": "Gribingui", + "CF-KG": "Kemo-Gribingui", + "CF-NM": "Nana-Mambere", + "CF-OP": "Ouham-Pende", + "CF-SE": "Sangha", + "CF-UK": "Ouaka", + "CG-11": "Bouenza", + "CG-13": "Sangha", + "CG-16": "Pointe-Noire", + "CG-8": "Cuvette", + "CG-9": "Niari", + "CG-BZV": "Brazzaville", + "CH-AG": "Aargau", + "CH-AI": "Appenzell Innerrhoden", + "CH-AR": "Appenzell Ausserrhoden", + "CH-BE": "Bern", + "CH-BL": "Basel-Landschaft", + "CH-BS": "Basel-Stadt", + "CH-FR": "Fribourg", + "CH-GE": "Geneve", + "CH-GL": "Glarus", + "CH-GR": "Graubunden", + "CH-JU": "Jura", + "CH-LU": "Luzern", + "CH-NE": "Neuchatel", + "CH-NW": "Nidwalden", + "CH-OW": "Obwalden", + "CH-SG": "Sankt Gallen", + "CH-SH": "Schaffhausen", + "CH-SO": "Solothurn", + "CH-SZ": "Schwyz", + "CH-TG": "Thurgau", + "CH-TI": "Ticino", + "CH-UR": "Uri", + "CH-VD": "Vaud", + "CH-VS": "Valais", + "CH-ZG": "Zug", + "CH-ZH": "Zurich", + "CI-AB": "Abidjan", + "CI-BS": "Bas-Sassandra", + "CI-CM": "Comoe", + "CI-DN": "Denguele", + "CI-GD": "Goh-Djiboua", + "CI-LC": "Lacs", + "CI-LG": "Lagunes", + "CI-MG": "Montagnes", + "CI-SM": "Sassandra-Marahoue", + "CI-SV": "Savanes", + "CI-VB": "Vallee du Bandama", + "CI-WR": "Woroba", + "CI-YM": "Yamoussoukro", + "CI-ZZ": "Zanzan", + "CL-AI": "Aisen del General Carlos Ibanez del Campo", + "CL-AN": "Antofagasta", + "CL-AP": "Arica y Parinacota", + "CL-AR": "La Araucania", + "CL-AT": "Atacama", + "CL-BI": "Biobio", + "CL-CO": "Coquimbo", + "CL-LI": "Libertador General Bernardo O'Higgins", + "CL-LL": "Los Lagos", + "CL-LR": "Los Rios", + "CL-MA": "Magallanes", + "CL-ML": "Maule", + "CL-NB": "Nuble", + "CL-RM": "Region Metropolitana de Santiago", + "CL-TA": "Tarapaca", + "CL-VS": "Valparaiso", + "CM-AD": "Adamaoua", + "CM-CE": "Centre", + "CM-EN": "Extreme-Nord", + "CM-ES": "Est", + "CM-LT": "Littoral", + "CM-NO": "Nord", + "CM-NW": "Nord-Ouest", + "CM-OU": "Ouest", + "CM-SU": "Sud", + "CM-SW": "Sud-Ouest", + "CN-AH": "Anhui", + "CN-BJ": "Beijing", + "CN-CQ": "Chongqing", + "CN-FJ": "Fujian", + "CN-GD": "Guangdong", + "CN-GS": "Gansu", + "CN-GX": "Guangxi Zhuangzu", + "CN-GZ": "Guizhou", + "CN-HA": "Henan", + "CN-HB": "Hubei", + "CN-HE": "Hebei", + "CN-HI": "Hainan", + "CN-HL": "Heilongjiang", + "CN-HN": "Hunan", + "CN-JL": "Jilin", + "CN-JS": "Jiangsu", + "CN-JX": "Jiangxi", + "CN-LN": "Liaoning", + "CN-NM": "Nei Mongol", + "CN-NX": "Ningxia Huizu", + "CN-QH": "Qinghai", + "CN-SC": "Sichuan", + "CN-SD": "Shandong", + "CN-SH": "Shanghai", + "CN-SN": "Shaanxi", + "CN-SX": "Shanxi", + "CN-TJ": "Tianjin", + "CN-XJ": "Xinjiang Uygur", + "CN-XZ": "Xizang", + "CN-YN": "Yunnan", + "CN-ZJ": "Zhejiang", + "CO-AMA": "Amazonas", + "CO-ANT": "Antioquia", + "CO-ARA": "Arauca", + "CO-ATL": "Atlantico", + "CO-BOL": "Bolivar", + "CO-BOY": "Boyaca", + "CO-CAL": "Caldas", + "CO-CAQ": "Caqueta", + "CO-CAS": "Casanare", + "CO-CAU": "Cauca", + "CO-CES": "Cesar", + "CO-CHO": "Choco", + "CO-COR": "Cordoba", + "CO-CUN": "Cundinamarca", + "CO-DC": "Distrito Capital de Bogota", + "CO-GUA": "Guainia", + "CO-GUV": "Guaviare", + "CO-HUI": "Huila", + "CO-LAG": "La Guajira", + "CO-MAG": "Magdalena", + "CO-MET": "Meta", + "CO-NAR": "Narino", + "CO-NSA": "Norte de Santander", + "CO-PUT": "Putumayo", + "CO-QUI": "Quindio", + "CO-RIS": "Risaralda", + "CO-SAN": "Santander", + "CO-SAP": "San Andres, Providencia y Santa Catalina", + "CO-SUC": "Sucre", + "CO-TOL": "Tolima", + "CO-VAC": "Valle del Cauca", + "CO-VID": "Vichada", + "CR-A": "Alajuela", + "CR-C": "Cartago", + "CR-G": "Guanacaste", + "CR-H": "Heredia", + "CR-L": "Limon", + "CR-P": "Puntarenas", + "CR-SJ": "San Jose", + "CU-01": "Pinar del Rio", + "CU-03": "La Habana", + "CU-04": "Matanzas", + "CU-05": "Villa Clara", + "CU-06": "Cienfuegos", + "CU-07": "Sancti Spiritus", + "CU-08": "Ciego de Avila", + "CU-09": "Camaguey", + "CU-10": "Las Tunas", + "CU-11": "Holguin", + "CU-12": "Granma", + "CU-13": "Santiago de Cuba", + "CU-14": "Guantanamo", + "CU-15": "Artemisa", + "CU-16": "Mayabeque", + "CU-99": "Isla de la Juventud", + "CV-BR": "Brava", + "CV-BV": "Boa Vista", + "CV-MO": "Mosteiros", + "CV-PN": "Porto Novo", + "CV-PR": "Praia", + "CV-RS": "Ribeira Grande de Santiago", + "CV-SD": "Sao Domingos", + "CV-SL": "Sal", + "CV-SV": "Sao Vicente", + "CV-TA": "Tarrafal", + "CY-01": "Lefkosia", + "CY-02": "Lemesos", + "CY-03": "Larnaka", + "CY-04": "Ammochostos", + "CY-05": "Pafos", + "CY-06": "Keryneia", + "CZ-10": "Praha, Hlavni mesto", + "CZ-20": "Stredocesky kraj", + "CZ-31": "Jihocesky kraj", + "CZ-32": "Plzensky kraj", + "CZ-41": "Karlovarsky kraj", + "CZ-42": "Ustecky kraj", + "CZ-51": "Liberecky kraj", + "CZ-52": "Kralovehradecky kraj", + "CZ-53": "Pardubicky kraj", + "CZ-63": "Kraj Vysocina", + "CZ-64": "Jihomoravsky kraj", + "CZ-71": "Olomoucky kraj", + "CZ-72": "Zlinsky kraj", + "CZ-80": "Moravskoslezsky kraj", + "DE-BB": "Brandenburg", + "DE-BE": "Berlin", + "DE-BW": "Baden-Wurttemberg", + "DE-BY": "Bayern", + "DE-HB": "Bremen", + "DE-HE": "Hessen", + "DE-HH": "Hamburg", + "DE-MV": "Mecklenburg-Vorpommern", + "DE-NI": "Niedersachsen", + "DE-NW": "Nordrhein-Westfalen", + "DE-RP": "Rheinland-Pfalz", + "DE-SH": "Schleswig-Holstein", + "DE-SL": "Saarland", + "DE-SN": "Sachsen", + "DE-ST": "Sachsen-Anhalt", + "DE-TH": "Thuringen", + "DJ-AR": "Arta", + "DJ-DI": "Dikhil", + "DJ-DJ": "Djibouti", + "DK-81": "Nordjylland", + "DK-82": "Midtjylland", + "DK-83": "Syddanmark", + "DK-84": "Hovedstaden", + "DK-85": "Sjaelland", + "DM-02": "Saint Andrew", + "DM-04": "Saint George", + "DM-05": "Saint John", + "DM-06": "Saint Joseph", + "DM-07": "Saint Luke", + "DM-09": "Saint Patrick", + "DM-10": "Saint Paul", + "DO-01": "Distrito Nacional (Santo Domingo)", + "DO-02": "Azua", + "DO-03": "Baoruco", + "DO-04": "Barahona", + "DO-05": "Dajabon", + "DO-06": "Duarte", + "DO-07": "Elías Piña", + "DO-08": "El Seibo", + "DO-09": "Espaillat", + "DO-10": "Independencia", + "DO-11": "La Altagracia", + "DO-12": "La Romana", + "DO-13": "La Vega", + "DO-14": "Maria Trinidad Sanchez", + "DO-15": "Monte Cristi", + "DO-16": "Pedernales", + "DO-17": "Peravia", + "DO-18": "Puerto Plata", + "DO-19": "Hermanas Mirabal", + "DO-20": "Samana", + "DO-21": "San Cristobal", + "DO-22": "San Juan", + "DO-23": "San Pedro de Macoris", + "DO-24": "Sanchez Ramirez", + "DO-25": "Santiago", + "DO-26": "Santiago Rodriguez", + "DO-27": "Valverde", + "DO-28": "Monsenor Nouel", + "DO-29": "Monte Plata", + "DO-30": "Hato Mayor", + "DO-31": "San Jose de Ocoa", + "DO-32": "Santo Domingo", + "DO-33": "Cibao Nordeste", + "DO-34": "Cibao Noroeste", + "DO-35": "Cibao Norte", + "DO-36": "Cibao Sur", + "DO-37": "El Valle", + "DO-38": "Enriquillo", + "DO-39": "Higuamo", + "DO-40": "Ozama", + "DO-41": "Valdesia", + "DO-42": "Yuma", + "DZ-01": "Adrar", + "DZ-02": "Chlef", + "DZ-03": "Laghouat", + "DZ-04": "Oum el Bouaghi", + "DZ-05": "Batna", + "DZ-06": "Bejaia", + "DZ-07": "Biskra", + "DZ-08": "Bechar", + "DZ-09": "Blida", + "DZ-10": "Bouira", + "DZ-11": "Tamanrasset", + "DZ-12": "Tebessa", + "DZ-13": "Tlemcen", + "DZ-14": "Tiaret", + "DZ-15": "Tizi Ouzou", + "DZ-16": "Alger", + "DZ-17": "Djelfa", + "DZ-18": "Jijel", + "DZ-19": "Setif", + "DZ-20": "Saida", + "DZ-21": "Skikda", + "DZ-22": "Sidi Bel Abbes", + "DZ-23": "Annaba", + "DZ-24": "Guelma", + "DZ-25": "Constantine", + "DZ-26": "Medea", + "DZ-27": "Mostaganem", + "DZ-28": "M'sila", + "DZ-29": "Mascara", + "DZ-30": "Ouargla", + "DZ-31": "Oran", + "DZ-32": "El Bayadh", + "DZ-33": "Illizi", + "DZ-34": "Bordj Bou Arreridj", + "DZ-35": "Boumerdes", + "DZ-36": "El Tarf", + "DZ-37": "Tindouf", + "DZ-38": "Tissemsilt", + "DZ-39": "El Oued", + "DZ-40": "Khenchela", + "DZ-41": "Souk Ahras", + "DZ-42": "Tipaza", + "DZ-43": "Mila", + "DZ-44": "Ain Defla", + "DZ-45": "Naama", + "DZ-46": "Ain Temouchent", + "DZ-47": "Ghardaia", + "DZ-48": "Relizane", + "DZ-49": "Timimoun", + "DZ-51": "Ouled Djellal", + "DZ-53": "In Salah", + "DZ-55": "Touggourt", + "DZ-56": "Djanet", + "DZ-57": "El Meghaier", + "EC-A": "Azuay", + "EC-B": "Bolivar", + "EC-C": "Carchi", + "EC-D": "Orellana", + "EC-E": "Esmeraldas", + "EC-F": "Canar", + "EC-G": "Guayas", + "EC-H": "Chimborazo", + "EC-I": "Imbabura", + "EC-L": "Loja", + "EC-M": "Manabi", + "EC-N": "Napo", + "EC-O": "El Oro", + "EC-P": "Pichincha", + "EC-R": "Los Rios", + "EC-S": "Morona Santiago", + "EC-SD": "Santo Domingo de los Tsachilas", + "EC-SE": "Santa Elena", + "EC-T": "Tungurahua", + "EC-U": "Sucumbios", + "EC-W": "Galapagos", + "EC-X": "Cotopaxi", + "EC-Y": "Pastaza", + "EC-Z": "Zamora Chinchipe", + "EE-37": "Harjumaa", + "EE-39": "Hiiumaa", + "EE-45": "Ida-Virumaa", + "EE-50": "Jogevamaa", + "EE-52": "Jarvamaa", + "EE-56": "Laanemaa", + "EE-60": "Laane-Virumaa", + "EE-64": "Polvamaa", + "EE-68": "Parnumaa", + "EE-71": "Raplamaa", + "EE-74": "Saaremaa", + "EE-79": "Tartumaa", + "EE-81": "Valgamaa", + "EE-84": "Viljandimaa", + "EE-87": "Vorumaa", + "EG-ALX": "Al Iskandariyah", + "EG-ASN": "Aswan", + "EG-AST": "Asyut", + "EG-BA": "Al Bahr al Ahmar", + "EG-BH": "Al Buhayrah", + "EG-BNS": "Bani Suwayf", + "EG-C": "Al Qahirah", + "EG-DK": "Ad Daqahliyah", + "EG-DT": "Dumyat", + "EG-FYM": "Al Fayyum", + "EG-GH": "Al Gharbiyah", + "EG-GZ": "Al Jizah", + "EG-IS": "Al Isma'iliyah", + "EG-JS": "Janub Sina'", + "EG-KB": "Al Qalyubiyah", + "EG-KFS": "Kafr ash Shaykh", + "EG-KN": "Qina", + "EG-LX": "Al Uqsur", + "EG-MN": "Al Minya", + "EG-MNF": "Al Minufiyah", + "EG-MT": "Matruh", + "EG-PTS": "Bur Sa'id", + "EG-SHG": "Suhaj", + "EG-SHR": "Ash Sharqiyah", + "EG-SIN": "Shamal Sina'", + "EG-SUZ": "As Suways", + "EG-WAD": "Al Wadi al Jadid", + "ER-GB": "Qash-Barkah", + "ER-MA": "Al Awsat", + "ES-AN": "Andalucia", + "ES-AR": "Aragon", + "ES-AS": "Asturias, Principado de", + "ES-CB": "Cantabria", + "ES-CE": "Ceuta", + "ES-CL": "Castilla y Leon", + "ES-CM": "Castilla-La Mancha", + "ES-CN": "Canarias", + "ES-CT": "Catalunya", + "ES-EX": "Extremadura", + "ES-GA": "Galicia", + "ES-IB": "Illes Balears", + "ES-MC": "Murcia, Region de", + "ES-MD": "Madrid, Comunidad de", + "ES-ML": "Melilla", + "ES-NC": "Navarra, Comunidad Foral de", + "ES-PV": "Pais Vasco", + "ES-RI": "La Rioja", + "ES-VC": "Valenciana, Comunidad", + "ET-AA": "Addis Ababa", + "ET-AF": "Afar", + "ET-AM": "Amara", + "ET-BE": "Benshangul-Gumaz", + "ET-DD": "Dire Dawa", + "ET-HA": "Harari People", + "ET-OR": "Oromia", + "ET-SN": "Southern Nations, Nationalities and Peoples", + "ET-SO": "Somali", + "ET-TI": "Tigrai", + "FI-02": "Etela-Karjala", + "FI-03": "Etela-Pohjanmaa", + "FI-04": "Etela-Savo", + "FI-05": "Kainuu", + "FI-06": "Kanta-Hame", + "FI-07": "Keski-Pohjanmaa", + "FI-08": "Keski-Suomi", + "FI-09": "Kymenlaakso", + "FI-10": "Lappi", + "FI-11": "Pirkanmaa", + "FI-12": "Pohjanmaa", + "FI-13": "Pohjois-Karjala", + "FI-14": "Pohjois-Pohjanmaa", + "FI-15": "Pohjois-Savo", + "FI-16": "Paijat-Hame", + "FI-17": "Satakunta", + "FI-18": "Uusimaa", + "FI-19": "Varsinais-Suomi", + "FJ-C": "Central", + "FJ-E": "Eastern", + "FJ-N": "Northern", + "FJ-R": "Rotuma", + "FJ-W": "Western", + "FM-KSA": "Kosrae", + "FM-PNI": "Pohnpei", + "FM-TRK": "Chuuk", + "FM-YAP": "Yap", + "FR-20R": "Corse", + "FR-ARA": "Auvergne-Rhone-Alpes", + "FR-BFC": "Bourgogne-Franche-Comte", + "FR-BRE": "Bretagne", + "FR-CVL": "Centre-Val de Loire", + "FR-GES": "Grand-Est", + "FR-HDF": "Hauts-de-France", + "FR-IDF": "Ile-de-France", + "FR-NAQ": "Nouvelle-Aquitaine", + "FR-NOR": "Normandie", + "FR-OCC": "Occitanie", + "FR-PAC": "Provence-Alpes-Cote-d'Azur", + "FR-PDL": "Pays-de-la-Loire", + "FR-PM": "Saint Pierre and Miquelon", + "GA-1": "Estuaire", + "GA-2": "Haut-Ogooue", + "GA-3": "Moyen-Ogooue", + "GA-4": "Ngounie", + "GA-5": "Nyanga", + "GA-7": "Ogooue-Lolo", + "GA-8": "Ogooue-Maritime", + "GA-9": "Woleu-Ntem", + "GB-ENG": "England", + "GB-NIR": "Northern Ireland", + "GB-SCT": "Scotland", + "GB-WLS": "Wales", + "GD-01": "Saint Andrew", + "GD-02": "Saint David", + "GD-03": "Saint George", + "GD-04": "Saint John", + "GD-05": "Saint Mark", + "GD-06": "Saint Patrick", + "GD-10": "Southern Grenadine Islands", + "GE-AB": "Abkhazia", + "GE-AJ": "Ajaria", + "GE-GU": "Guria", + "GE-IM": "Imereti", + "GE-KA": "K'akheti", + "GE-KK": "Kvemo Kartli", + "GE-MM": "Mtskheta-Mtianeti", + "GE-RL": "Rach'a-Lechkhumi-Kvemo Svaneti", + "GE-SJ": "Samtskhe-Javakheti", + "GE-SK": "Shida Kartli", + "GE-SZ": "Samegrelo-Zemo Svaneti", + "GE-TB": "Tbilisi", + "GH-AA": "Greater Accra", + "GH-AF": "Ahafo", + "GH-AH": "Ashanti", + "GH-BE": "Bono East", + "GH-BO": "Bono", + "GH-CP": "Central", + "GH-EP": "Eastern", + "GH-NP": "Northern", + "GH-TV": "Volta", + "GH-UE": "Upper East", + "GH-UW": "Upper West", + "GH-WP": "Western", + "GL-AV": "Avannaata Kommunia", + "GL-KU": "Kommune Kujalleq", + "GL-QE": "Qeqqata Kommunia", + "GL-QT": "Kommune Qeqertalik", + "GL-SM": "Kommuneqarfik Sermersooq", + "GM-B": "Banjul", + "GM-L": "Lower River", + "GM-M": "Central River", + "GM-N": "North Bank", + "GM-U": "Upper River", + "GM-W": "Western", + "GN-B": "Boke", + "GN-BE": "Beyla", + "GN-BF": "Boffa", + "GN-C": "Conakry", + "GN-DB": "Dabola", + "GN-DI": "Dinguiraye", + "GN-DU": "Dubreka", + "GN-FR": "Fria", + "GN-K": "Kankan", + "GN-KO": "Kouroussa", + "GN-LE": "Lelouma", + "GN-SI": "Siguiri", + "GQ-BN": "Bioko Norte", + "GQ-CS": "Centro Sur", + "GQ-KN": "Kie-Ntem", + "GQ-LI": "Litoral", + "GQ-WN": "Wele-Nzas", + "GR-69": "Agion Oros", + "GR-A": "Anatoliki Makedonia kai Thraki", + "GR-B": "Kentriki Makedonia", + "GR-C": "Dytiki Makedonia", + "GR-D": "Ipeiros", + "GR-E": "Thessalia", + "GR-F": "Ionia Nisia", + "GR-G": "Dytiki Ellada", + "GR-H": "Sterea Ellada", + "GR-I": "Attiki", + "GR-J": "Peloponnisos", + "GR-K": "Voreio Aigaio", + "GR-L": "Notio Aigaio", + "GR-M": "Kriti", + "GT-01": "Guatemala", + "GT-02": "El Progreso", + "GT-03": "Sacatepequez", + "GT-04": "Chimaltenango", + "GT-05": "Escuintla", + "GT-06": "Santa Rosa", + "GT-07": "Solola", + "GT-08": "Totonicapan", + "GT-09": "Quetzaltenango", + "GT-10": "Suchitepequez", + "GT-11": "Retalhuleu", + "GT-12": "San Marcos", + "GT-13": "Huehuetenango", + "GT-14": "Quiche", + "GT-15": "Baja Verapaz", + "GT-16": "Alta Verapaz", + "GT-17": "Peten", + "GT-18": "Izabal", + "GT-19": "Zacapa", + "GT-20": "Chiquimula", + "GT-21": "Jalapa", + "GT-22": "Jutiapa", + "GT-AV": "Alta Verapaz", + "GT-BV": "Baja Verapaz", + "GT-CM": "Chimaltenango", + "GT-CQ": "Chiquimula", + "GT-PR": "El Progreso", + "GT-ES": "Escuintla", + "GT-GU": "Guatemala Department", + "GT-HU": "Huehuetenango", + "GT-IZ": "Izabal", + "GT-JA": "Jalapa", + "GT-JU": "Jutiapa", + "GT-PE": "Petén", + "GT-QZ": "Quetzaltenango", + "GT-QC": "Quiché", + "GT-RE": "Retalhuleu", + "GT-SA": "Sacatepéquez", + "GT-SM": "San Marcos", + "GT-SR": "Santa Rosa", + "GT-SO": "Sololá", + "GT-SU": "Suchitepéquez", + "GT-TO": "Totonicapán", + "GT-ZA": "Zacapa", + "GW-BA": "Bafata", + "GW-BS": "Bissau", + "GW-GA": "Gabu", + "GW-OI": "Oio", + "GY-BA": "Barima-Waini", + "GY-CU": "Cuyuni-Mazaruni", + "GY-DE": "Demerara-Mahaica", + "GY-EB": "East Berbice-Corentyne", + "GY-ES": "Essequibo Islands-West Demerara", + "GY-MA": "Mahaica-Berbice", + "GY-PT": "Potaro-Siparuni", + "GY-UD": "Upper Demerara-Berbice", + "HK-HCW": "Central and Western", + "HK-HEA": "Eastern", + "HK-HSO": "Southern", + "HK-HWC": "Wan Chai", + "HK-KKC": "Kowloon City", + "HK-KKT": "Kwun Tong", + "HK-KSS": "Sham Shui Po", + "HK-KWT": "Wong Tai Sin", + "HK-KYT": "Yau Tsim Mong", + "HK-NIS": "Islands", + "HK-NKT": "Kwai Tsing", + "HK-NNO": "North", + "HK-NSK": "Sai Kung", + "HK-NST": "Sha Tin", + "HK-NTM": "Tuen Mun", + "HK-NTP": "Tai Po", + "HK-NTW": "Tsuen Wan", + "HK-NYL": "Yuen Long", + "HN-AT": "Atlantida", + "HN-CH": "Choluteca", + "HN-CL": "Colon", + "HN-CM": "Comayagua", + "HN-CP": "Copan", + "HN-CR": "Cortes", + "HN-EP": "El Paraiso", + "HN-FM": "Francisco Morazan", + "HN-GD": "Gracias a Dios", + "HN-IB": "Islas de la Bahia", + "HN-IN": "Intibuca", + "HN-LE": "Lempira", + "HN-LP": "La Paz", + "HN-OC": "Ocotepeque", + "HN-OL": "Olancho", + "HN-SB": "Santa Barbara", + "HN-VA": "Valle", + "HN-YO": "Yoro", + "HR-01": "Zagrebacka zupanija", + "HR-02": "Krapinsko-zagorska zupanija", + "HR-03": "Sisacko-moslavacka zupanija", + "HR-04": "Karlovacka zupanija", + "HR-05": "Varazdinska zupanija", + "HR-06": "Koprivnicko-krizevacka zupanija", + "HR-07": "Bjelovarsko-bilogorska zupanija", + "HR-08": "Primorsko-goranska zupanija", + "HR-09": "Licko-senjska zupanija", + "HR-10": "Viroviticko-podravska zupanija", + "HR-11": "Pozesko-slavonska zupanija", + "HR-12": "Brodsko-posavska zupanija", + "HR-13": "Zadarska zupanija", + "HR-14": "Osjecko-baranjska zupanija", + "HR-15": "Sibensko-kninska zupanija", + "HR-16": "Vukovarsko-srijemska zupanija", + "HR-17": "Splitsko-dalmatinska zupanija", + "HR-18": "Istarska zupanija", + "HR-19": "Dubrovacko-neretvanska zupanija", + "HR-20": "Medimurska zupanija", + "HR-21": "Grad Zagreb", + "HT-AR": "Artibonite", + "HT-CE": "Centre", + "HT-GA": "Grande'Anse", + "HT-ND": "Nord", + "HT-NI": "Nippes", + "HT-NO": "Nord-Ouest", + "HT-OU": "Ouest", + "HT-SD": "Sud", + "HT-SE": "Sud-Est", + "HU-BA": "Baranya", + "HU-BE": "Bekes", + "HU-BK": "Bacs-Kiskun", + "HU-BU": "Budapest", + "HU-BZ": "Borsod-Abauj-Zemplen", + "HU-CS": "Csongrad-Csanad", + "HU-FE": "Fejer", + "HU-GS": "Gyor-Moson-Sopron", + "HU-HB": "Hajdu-Bihar", + "HU-HE": "Heves", + "HU-JN": "Jasz-Nagykun-Szolnok", + "HU-KE": "Komarom-Esztergom", + "HU-NO": "Nograd", + "HU-PE": "Pest", + "HU-SO": "Somogy", + "HU-SZ": "Szabolcs-Szatmar-Bereg", + "HU-TO": "Tolna", + "HU-VA": "Vas", + "HU-VE": "Veszprem", + "HU-ZA": "Zala", + "ID-AC": "Aceh", + "ID-BA": "Bali", + "ID-BB": "Kepulauan Bangka Belitung", + "ID-BE": "Bengkulu", + "ID-BT": "Banten", + "ID-GO": "Gorontalo", + "ID-JA": "Jambi", + "ID-JB": "Jawa Barat", + "ID-JI": "Jawa Timur", + "ID-JK": "Jakarta Raya", + "ID-JT": "Jawa Tengah", + "ID-KB": "Kalimantan Barat", + "ID-KI": "Kalimantan Timur", + "ID-KR": "Kepulauan Riau", + "ID-KS": "Kalimantan Selatan", + "ID-KT": "Kalimantan Tengah", + "ID-KU": "Kalimantan Utara", + "ID-LA": "Lampung", + "ID-ML": "Maluku", + "ID-MU": "Maluku Utara", + "ID-NB": "Nusa Tenggara Barat", + "ID-NT": "Nusa Tenggara Timur", + "ID-PB": "Papua Barat", + "ID-PE": "Papua Pengunungan", + "ID-PP": "Papua", + "ID-PS": "Papua Selatan", + "ID-PT": "Papua Tengah", + "ID-RI": "Riau", + "ID-SA": "Sulawesi Utara", + "ID-SB": "Sumatera Barat", + "ID-SG": "Sulawesi Tenggara", + "ID-SN": "Sulawesi Selatan", + "ID-SR": "Sulawesi Barat", + "ID-SS": "Sumatera Selatan", + "ID-ST": "Sulawesi Tengah", + "ID-SU": "Sumatera Utara", + "ID-YO": "Yogyakarta", + "IE-C": "Connaught", + "IE-L": "Leinster", + "IE-M": "Munster", + "IE-U": "Ulster", + "IE-CE": "Clare", + "IE-CN": "Cavan", + "IE-CO": "Cork", + "IE-CW": "Carlow", + "IE-D": "Dublin", + "IE-DL": "Donegal", + "IE-G": "Galway", + "IE-KE": "Kildare", + "IE-KK": "Kilkenny", + "IE-KY": "Kerry", + "IE-LD": "Longford", + "IE-LH": "Louth", + "IE-LK": "Limerick", + "IE-LM": "Leitrim", + "IE-LS": "Laois", + "IE-MH": "Meath", + "IE-MN": "Monaghan", + "IE-MO": "Mayo", + "IE-OY": "Offaly", + "IE-RN": "Roscommon", + "IE-SO": "Sligo", + "IE-TA": "Tipperary", + "IE-WD": "Waterford", + "IE-WH": "Westmeath", + "IE-WW": "Wicklow", + "IE-WX": "Wexford", + "IL-D": "HaDarom", + "IL-HA": "Hefa", + "IL-JM": "Yerushalayim", + "IL-M": "HaMerkaz", + "IL-TA": "Tel Aviv", + "IL-Z": "HaTsafon", + "IN-AN": "Andaman and Nicobar Islands", + "IN-AP": "Andhra Pradesh", + "IN-AR": "Arunachal Pradesh", + "IN-AS": "Assam", + "IN-BR": "Bihar", + "IN-CH": "Chandigarh", + "IN-CT": "Chhattisgarh", + "IN-DH": "Dadra and Nagar Haveli and Daman and Diu", + "IN-DL": "Delhi", + "IN-DN": "Dadra and Nagar Haveli", + "IN-GA": "Goa", + "IN-GJ": "Gujarat", + "IN-HP": "Himachal Pradesh", + "IN-HR": "Haryana", + "IN-JH": "Jharkhand", + "IN-JK": "Jammu and Kashmir", + "IN-KA": "Karnataka", + "IN-KL": "Kerala", + "IN-LD": "Lakshadweep", + "IN-MH": "Maharashtra", + "IN-ML": "Meghalaya", + "IN-MN": "Manipur", + "IN-MP": "Madhya Pradesh", + "IN-MZ": "Mizoram", + "IN-NL": "Nagaland", + "IN-OR": "Odisha", + "IN-PB": "Punjab", + "IN-PY": "Puducherry", + "IN-RJ": "Rajasthan", + "IN-SK": "Sikkim", + "IN-TG": "Telangana", + "IN-TN": "Tamil Nadu", + "IN-TR": "Tripura", + "IN-UP": "Uttar Pradesh", + "IN-UT": "Uttarakhand", + "IN-WB": "West Bengal", + "IQ-AN": "Al Anbar", + "IQ-AR": "Arbil", + "IQ-BA": "Al Basrah", + "IQ-BB": "Babil", + "IQ-BG": "Baghdad", + "IQ-DA": "Dahuk", + "IQ-DI": "Diyala", + "IQ-DQ": "Dhi Qar", + "IQ-KA": "Karbala'", + "IQ-KI": "Kirkuk", + "IQ-MA": "Maysan", + "IQ-MU": "Al Muthanna", + "IQ-NA": "An Najaf", + "IQ-NI": "Ninawa", + "IQ-QA": "Al Qadisiyah", + "IQ-SD": "Salah ad Din", + "IQ-SU": "As Sulaymaniyah", + "IQ-WA": "Wasit", + "IR-00": "Markazi", + "IR-01": "Gilan", + "IR-02": "Mazandaran", + "IR-03": "Azarbayjan-e Sharqi", + "IR-04": "Azarbayjan-e Gharbi", + "IR-05": "Kermanshah", + "IR-06": "Khuzestan", + "IR-07": "Fars", + "IR-08": "Kerman", + "IR-09": "Khorasan-e Razavi", + "IR-10": "Esfahan", + "IR-11": "Sistan va Baluchestan", + "IR-12": "Kordestan", + "IR-13": "Hamadan", + "IR-14": "Chahar Mahal va Bakhtiari", + "IR-15": "Lorestan", + "IR-16": "Ilam", + "IR-17": "Kohgiluyeh va Bowyer Ahmad", + "IR-18": "Bushehr", + "IR-19": "Zanjan", + "IR-20": "Semnan", + "IR-21": "Yazd", + "IR-22": "Hormozgan", + "IR-23": "Tehran", + "IR-24": "Ardabil", + "IR-25": "Qom", + "IR-26": "Qazvin", + "IR-27": "Golestan", + "IR-28": "Khorasan-e Shomali", + "IR-29": "Khorasan-e Jonubi", + "IR-30": "Alborz", + "IS-1": "Hofudborgarsvaedi", + "IS-2": "Sudurnes", + "IS-3": "Vesturland", + "IS-4": "Vestfirdir", + "IS-5": "Nordurland vestra", + "IS-6": "Nordurland eystra", + "IS-7": "Austurland", + "IS-8": "Sudurland", + "IT-21": "Piemonte", + "IT-23": "Valle d'Aosta", + "IT-25": "Lombardia", + "IT-32": "Trentino-Alto Adige", + "IT-34": "Veneto", + "IT-36": "Friuli-Venezia Giulia", + "IT-42": "Liguria", + "IT-45": "Emilia-Romagna", + "IT-52": "Toscana", + "IT-55": "Umbria", + "IT-57": "Marche", + "IT-62": "Lazio", + "IT-65": "Abruzzo", + "IT-67": "Molise", + "IT-72": "Campania", + "IT-75": "Puglia", + "IT-77": "Basilicata", + "IT-78": "Calabria", + "IT-82": "Sicilia", + "IT-88": "Sardegna", + "JM-01": "Kingston", + "JM-02": "Saint Andrew", + "JM-03": "Saint Thomas", + "JM-04": "Portland", + "JM-05": "Saint Mary", + "JM-06": "Saint Ann", + "JM-07": "Trelawny", + "JM-08": "Saint James", + "JM-09": "Hanover", + "JM-10": "Westmoreland", + "JM-11": "Saint Elizabeth", + "JM-12": "Manchester", + "JM-13": "Clarendon", + "JM-14": "Saint Catherine", + "JO-AJ": "'Ajlun", + "JO-AM": "Al 'Asimah", + "JO-AQ": "Al 'Aqabah", + "JO-AT": "At Tafilah", + "JO-AZ": "Az Zarqa'", + "JO-BA": "Al Balqa'", + "JO-IR": "Irbid", + "JO-JA": "Jarash", + "JO-KA": "Al Karak", + "JO-MA": "Al Mafraq", + "JO-MD": "Madaba", + "JO-MN": "Ma'an", + "JP-01": "Hokkaido", + "JP-02": "Aomori", + "JP-03": "Iwate", + "JP-04": "Miyagi", + "JP-05": "Akita", + "JP-06": "Yamagata", + "JP-07": "Fukushima", + "JP-08": "Ibaraki", + "JP-09": "Tochigi", + "JP-10": "Gunma", + "JP-11": "Saitama", + "JP-12": "Chiba", + "JP-13": "Tokyo", + "JP-14": "Kanagawa", + "JP-15": "Niigata", + "JP-16": "Toyama", + "JP-17": "Ishikawa", + "JP-18": "Fukui", + "JP-19": "Yamanashi", + "JP-20": "Nagano", + "JP-21": "Gifu", + "JP-22": "Shizuoka", + "JP-23": "Aichi", + "JP-24": "Mie", + "JP-25": "Shiga", + "JP-26": "Kyoto", + "JP-27": "Osaka", + "JP-28": "Hyogo", + "JP-29": "Nara", + "JP-30": "Wakayama", + "JP-31": "Tottori", + "JP-32": "Shimane", + "JP-33": "Okayama", + "JP-34": "Hiroshima", + "JP-35": "Yamaguchi", + "JP-36": "Tokushima", + "JP-37": "Kagawa", + "JP-38": "Ehime", + "JP-39": "Kochi", + "JP-40": "Fukuoka", + "JP-41": "Saga", + "JP-42": "Nagasaki", + "JP-43": "Kumamoto", + "JP-44": "Oita", + "JP-45": "Miyazaki", + "JP-46": "Kagoshima", + "JP-47": "Okinawa", + "KE-01": "Baringo", + "KE-02": "Bomet", + "KE-03": "Bungoma", + "KE-04": "Busia", + "KE-05": "Elgeyo/Marakwet", + "KE-06": "Embu", + "KE-07": "Garissa", + "KE-08": "Homa Bay", + "KE-09": "Isiolo", + "KE-10": "Kajiado", + "KE-11": "Kakamega", + "KE-12": "Kericho", + "KE-13": "Kiambu", + "KE-14": "Kilifi", + "KE-15": "Kirinyaga", + "KE-16": "Kisii", + "KE-17": "Kisumu", + "KE-18": "Kitui", + "KE-19": "Kwale", + "KE-20": "Laikipia", + "KE-21": "Lamu", + "KE-22": "Machakos", + "KE-23": "Makueni", + "KE-24": "Mandera", + "KE-25": "Marsabit", + "KE-26": "Meru", + "KE-27": "Migori", + "KE-28": "Mombasa", + "KE-29": "Murang'a", + "KE-30": "Nairobi City", + "KE-31": "Nakuru", + "KE-32": "Nandi", + "KE-33": "Narok", + "KE-34": "Nyamira", + "KE-35": "Nyandarua", + "KE-36": "Nyeri", + "KE-37": "Samburu", + "KE-38": "Siaya", + "KE-39": "Taita/Taveta", + "KE-40": "Tana River", + "KE-41": "Tharaka-Nithi", + "KE-42": "Trans Nzoia", + "KE-43": "Turkana", + "KE-44": "Uasin Gishu", + "KE-45": "Vihiga", + "KE-46": "Wajir", + "KE-47": "West Pokot", + "KG-B": "Batken", + "KG-C": "Chuy", + "KG-GB": "Bishkek Shaary", + "KG-GO": "Osh Shaary", + "KG-J": "Jalal-Abad", + "KG-N": "Naryn", + "KG-T": "Talas", + "KG-Y": "Ysyk-Kol", + "KH-1": "Banteay Mean Choay", + "KH-10": "Kracheh", + "KH-11": "Mondol Kiri", + "KH-12": "Phnom Penh", + "KH-13": "Preah Vihear", + "KH-14": "Prey Veaeng", + "KH-15": "Pousaat", + "KH-17": "Siem Reab", + "KH-18": "Preah Sihanouk", + "KH-19": "Stueng Traeng", + "KH-2": "Baat Dambang", + "KH-20": "Svaay Rieng", + "KH-21": "Taakaev", + "KH-23": "Kaeb", + "KH-24": "Pailin", + "KH-3": "Kampong Chaam", + "KH-4": "Kampong Chhnang", + "KH-5": "Kampong Spueu", + "KH-6": "Kampong Thum", + "KH-7": "Kampot", + "KH-8": "Kandaal", + "KI-G": "Gilbert Islands", + "KI-L": "Line Islands", + "KM-G": "Grande Comore", + "KM-M": "Moheli", + "KN-01": "Christ Church Nichola Town", + "KN-02": "Saint Anne Sandy Point", + "KN-03": "Saint George Basseterre", + "KN-05": "Saint James Windward", + "KN-06": "Saint John Capisterre", + "KN-07": "Saint John Figtree", + "KN-08": "Saint Mary Cayon", + "KN-09": "Saint Paul Capisterre", + "KN-10": "Saint Paul Charlestown", + "KN-11": "Saint Peter Basseterre", + "KN-13": "Saint Thomas Middle Island", + "KN-15": "Trinity Palmetto Point", + "KP-01": "P'yongyang", + "KR-11": "Seoul-teukbyeolsi", + "KR-26": "Busan-gwangyeoksi", + "KR-27": "Daegu-gwangyeoksi", + "KR-28": "Incheon-gwangyeoksi", + "KR-29": "Gwangju-gwangyeoksi", + "KR-30": "Daejeon-gwangyeoksi", + "KR-31": "Ulsan-gwangyeoksi", + "KR-41": "Gyeonggi-do", + "KR-42": "Gangwon-do", + "KR-43": "Chungcheongbuk-do", + "KR-44": "Chungcheongnam-do", + "KR-45": "Jeollabuk-do", + "KR-46": "Jeollanam-do", + "KR-47": "Gyeongsangbuk-do", + "KR-48": "Gyeongsangnam-do", + "KR-49": "Jeju-teukbyeoljachido", + "KW-AH": "Al Ahmadi", + "KW-FA": "Al Farwaniyah", + "KW-HA": "Hawalli", + "KW-JA": "Al Jahra'", + "KW-KU": "Al 'Asimah", + "KW-MU": "Mubarak al Kabir", + "KZ-10": "Abay oblysy", + "KZ-11": "Aqmola oblysy", + "KZ-15": "Aqtobe oblysy", + "KZ-19": "Almaty oblysy", + "KZ-23": "Atyrau oblysy", + "KZ-27": "Batys Qazaqstan oblysy", + "KZ-31": "Zhambyl oblysy", + "KZ-33": "Zhetisu oblysy", + "KZ-35": "Qaraghandy oblysy", + "KZ-39": "Qostanay oblysy", + "KZ-43": "Qyzylorda oblysy", + "KZ-47": "Mangghystau oblysy", + "KZ-55": "Pavlodar oblysy", + "KZ-59": "Soltustik Qazaqstan oblysy", + "KZ-61": "Turkistan oblysy", + "KZ-62": "Ulytau oblysy", + "KZ-63": "Shyghys Qazaqstan oblysy", + "KZ-71": "Astana", + "KZ-75": "Almaty", + "KZ-79": "Shymkent", + "LA-AT": "Attapu", + "LA-BK": "Bokeo", + "LA-BL": "Bolikhamxai", + "LA-CH": "Champasak", + "LA-KH": "Khammouan", + "LA-LP": "Louangphabang", + "LA-OU": "Oudomxai", + "LA-PH": "Phongsali", + "LA-SV": "Savannakhet", + "LA-VI": "Viangchan", + "LA-XA": "Xaignabouli", + "LA-XE": "Xekong", + "LA-XI": "Xiangkhouang", + "LB-AK": "Aakkar", + "LB-AS": "Liban-Nord", + "LB-BA": "Beyrouth", + "LB-BH": "Baalbek-Hermel", + "LB-BI": "Beqaa", + "LB-JA": "Liban-Sud", + "LB-JL": "Mont-Liban", + "LB-NA": "Nabatiye", + "LC-01": "Anse la Raye", + "LC-02": "Castries", + "LC-03": "Choiseul", + "LC-05": "Dennery", + "LC-06": "Gros Islet", + "LC-07": "Laborie", + "LC-08": "Micoud", + "LC-10": "Soufriere", + "LC-11": "Vieux Fort", + "LI-01": "Balzers", + "LI-02": "Eschen", + "LI-03": "Gamprin", + "LI-04": "Mauren", + "LI-06": "Ruggell", + "LI-07": "Schaan", + "LI-09": "Triesen", + "LI-10": "Triesenberg", + "LI-11": "Vaduz", + "LK-1": "Western Province", + "LK-2": "Central Province", + "LK-3": "Southern Province", + "LK-4": "Northern Province", + "LK-5": "Eastern Province", + "LK-6": "North Western Province", + "LK-7": "North Central Province", + "LK-8": "Uva Province", + "LK-9": "Sabaragamuwa Province", + "LR-BG": "Bong", + "LR-BM": "Bomi", + "LR-GB": "Grand Bassa", + "LR-GG": "Grand Gedeh", + "LR-MG": "Margibi", + "LR-MO": "Montserrado", + "LR-MY": "Maryland", + "LR-RI": "River Cess", + "LR-SI": "Sinoe", + "LS-A": "Maseru", + "LS-B": "Botha-Bothe", + "LS-C": "Leribe", + "LS-D": "Berea", + "LS-E": "Mafeteng", + "LS-F": "Mohale's Hoek", + "LS-G": "Quthing", + "LS-H": "Qacha's Nek", + "LS-J": "Mokhotlong", + "LS-K": "Thaba-Tseka", + "LT-AL": "Alytaus apskritis", + "LT-KL": "Klaipedos apskritis", + "LT-KU": "Kauno apskritis", + "LT-MR": "Marijampoles apskritis", + "LT-PN": "Panevezio apskritis", + "LT-SA": "Siauliu apskritis", + "LT-TA": "Taurages apskritis", + "LT-TE": "Telsiu apskritis", + "LT-UT": "Utenos apskritis", + "LT-VL": "Vilniaus apskritis", + "LU-CA": "Capellen", + "LU-CL": "Clervaux", + "LU-DI": "Diekirch", + "LU-EC": "Echternach", + "LU-ES": "Esch-sur-Alzette", + "LU-GR": "Grevenmacher", + "LU-LU": "Luxembourg", + "LU-ME": "Mersch", + "LU-RD": "Redange", + "LU-RM": "Remich", + "LU-VD": "Vianden", + "LU-WI": "Wiltz", + "LV-002": "Aizkraukles novads", + "LV-007": "Aluksnes novads", + "LV-011": "Adazu novads", + "LV-015": "Balvu novads", + "LV-016": "Bauskas novads", + "LV-022": "Cesu novads", + "LV-026": "Dobeles novads", + "LV-033": "Gulbenes novads", + "LV-041": "Jelgavas novads", + "LV-042": "Jekabpils novads", + "LV-047": "Kraslavas novads", + "LV-050": "Kuldigas novads", + "LV-052": "Kekavas novads", + "LV-054": "Limbazu novads", + "LV-056": "Livanu novads", + "LV-058": "Ludzas novads", + "LV-059": "Madonas novads", + "LV-062": "Marupes novads", + "LV-067": "Ogres novads", + "LV-068": "Olaines novads", + "LV-073": "Preilu novads", + "LV-077": "Rezeknes novads", + "LV-080": "Ropazu novads", + "LV-087": "Salaspils novads", + "LV-088": "Saldus novads", + "LV-089": "Saulkrastu novads", + "LV-091": "Siguldas novads", + "LV-094": "Smiltenes novads", + "LV-097": "Talsu novads", + "LV-099": "Tukuma novads", + "LV-101": "Valkas novads", + "LV-102": "Varaklanu novads", + "LV-106": "Ventspils novads", + "LV-111": "Augsdaugavas novads", + "LV-112": "Dienvidkurzemes novads", + "LV-113": "Valmieras novads", + "LV-DGV": "Daugavpils", + "LV-JEL": "Jelgava", + "LV-JUR": "Jurmala", + "LV-LPX": "Liepaja", + "LV-RIX": "Riga", + "LY-BA": "Banghazi", + "LY-BU": "Al Butnan", + "LY-DR": "Darnah", + "LY-JA": "Al Jabal al Akhdar", + "LY-JG": "Al Jabal al Gharbi", + "LY-JI": "Al Jafarah", + "LY-JU": "Al Jufrah", + "LY-KF": "Al Kufrah", + "LY-MB": "Al Marqab", + "LY-MI": "Misratah", + "LY-MJ": "Al Marj", + "LY-NL": "Nalut", + "LY-NQ": "An Nuqat al Khams", + "LY-SB": "Sabha", + "LY-SR": "Surt", + "LY-TB": "Tarabulus", + "LY-WA": "Al Wahat", + "LY-WS": "Wadi ash Shati'", + "LY-ZA": "Az Zawiyah", + "MA-01": "Tanger-Tetouan-Al Hoceima", + "MA-02": "L'Oriental", + "MA-03": "Fes- Meknes", + "MA-04": "Rabat-Sale-Kenitra", + "MA-05": "Beni-Mellal-Khenifra", + "MA-06": "Casablanca-Settat", + "MA-07": "Marrakech-Safi", + "MA-08": "Draa-Tafilalet", + "MA-09": "Souss-Massa", + "MA-10": "Guelmim-Oued Noun (EH-partial)", + "MA-11": "Laayoune-Sakia El Hamra (EH-partial)", + "MC-CO": "La Condamine", + "MC-FO": "Fontvieille", + "MC-MC": "Monte-Carlo", + "MC-MG": "Moneghetti", + "MC-MO": "Monaco-Ville", + "MC-SR": "Saint-Roman", + "MD-AN": "Anenii Noi", + "MD-BA": "Balti", + "MD-BD": "Bender", + "MD-BR": "Briceni", + "MD-BS": "Basarabeasca", + "MD-CA": "Cahul", + "MD-CL": "Calarasi", + "MD-CM": "Cimislia", + "MD-CR": "Criuleni", + "MD-CS": "Causeni", + "MD-CT": "Cantemir", + "MD-CU": "Chisinau", + "MD-DO": "Donduseni", + "MD-DR": "Drochia", + "MD-DU": "Dubasari", + "MD-ED": "Edinet", + "MD-FA": "Falesti", + "MD-FL": "Floresti", + "MD-GA": "Gagauzia, Unitatea teritoriala autonoma", + "MD-GL": "Glodeni", + "MD-HI": "Hincesti", + "MD-IA": "Ialoveni", + "MD-LE": "Leova", + "MD-NI": "Nisporeni", + "MD-OC": "Ocnita", + "MD-OR": "Orhei", + "MD-RE": "Rezina", + "MD-RI": "Riscani", + "MD-SD": "Soldanesti", + "MD-SI": "Singerei", + "MD-SN": "Stinga Nistrului, unitatea teritoriala din", + "MD-SO": "Soroca", + "MD-ST": "Straseni", + "MD-SV": "Stefan Voda", + "MD-TA": "Taraclia", + "MD-TE": "Telenesti", + "MD-UN": "Ungheni", + "ME-01": "Andrijevica", + "ME-02": "Bar", + "ME-03": "Berane", + "ME-04": "Bijelo Polje", + "ME-05": "Budva", + "ME-06": "Cetinje", + "ME-07": "Danilovgrad", + "ME-08": "Herceg-Novi", + "ME-09": "Kolasin", + "ME-10": "Kotor", + "ME-12": "Niksic", + "ME-13": "Plav", + "ME-14": "Pljevlja", + "ME-15": "Pluzine", + "ME-16": "Podgorica", + "ME-17": "Rozaje", + "ME-19": "Tivat", + "ME-20": "Ulcinj", + "ME-21": "Zabljak", + "ME-24": "Tuzi", + "MG-A": "Toamasina", + "MG-D": "Antsiranana", + "MG-F": "Fianarantsoa", + "MG-M": "Mahajanga", + "MG-T": "Antananarivo", + "MG-U": "Toliara", + "MH-KWA": "Kwajalein", + "MH-MAJ": "Majuro", + "MK-101": "Veles", + "MK-102": "Gradsko", + "MK-103": "Demir Kapija", + "MK-104": "Kavadarci", + "MK-105": "Lozovo", + "MK-106": "Negotino", + "MK-107": "Rosoman", + "MK-108": "Sveti Nikole", + "MK-109": "Caska", + "MK-201": "Berovo", + "MK-202": "Vinica", + "MK-205": "Karbinci", + "MK-206": "Kocani", + "MK-207": "Makedonska Kamenica", + "MK-208": "Pehcevo", + "MK-209": "Probistip", + "MK-210": "Cesinovo-Oblesevo", + "MK-211": "Stip", + "MK-301": "Vevcani", + "MK-303": "Debar", + "MK-307": "Kicevo", + "MK-308": "Makedonski Brod", + "MK-310": "Ohrid", + "MK-311": "Plasnica", + "MK-312": "Struga", + "MK-401": "Bogdanci", + "MK-402": "Bosilovo", + "MK-403": "Valandovo", + "MK-404": "Vasilevo", + "MK-405": "Gevgelija", + "MK-406": "Dojran", + "MK-408": "Novo Selo", + "MK-409": "Radovis", + "MK-410": "Strumica", + "MK-501": "Bitola", + "MK-502": "Demir Hisar", + "MK-503": "Dolneni", + "MK-505": "Krusevo", + "MK-506": "Mogila", + "MK-507": "Novaci", + "MK-508": "Prilep", + "MK-509": "Resen", + "MK-601": "Bogovinje", + "MK-602": "Brvenica", + "MK-604": "Gostivar", + "MK-605": "Zelino", + "MK-606": "Jegunovce", + "MK-607": "Mavrovo i Rostusa", + "MK-608": "Tearce", + "MK-609": "Tetovo", + "MK-701": "Kratovo", + "MK-702": "Kriva Palanka", + "MK-703": "Kumanovo", + "MK-704": "Lipkovo", + "MK-705": "Rankovce", + "MK-802": "Aracinovo", + "MK-803": "Butel", + "MK-804": "Gazi Baba", + "MK-806": "Zelenikovo", + "MK-807": "Ilinden", + "MK-809": "Kisela Voda", + "MK-810": "Petrovec", + "MK-811": "Saraj", + "MK-812": "Sopiste", + "MK-813": "Studenicani", + "MK-814": "Centar", + "MK-816": "Cucer Sandevo", + "ML-1": "Kayes", + "ML-2": "Koulikoro", + "ML-3": "Sikasso", + "ML-4": "Segou", + "ML-5": "Mopti", + "ML-6": "Tombouctou", + "ML-7": "Gao", + "ML-8": "Kidal", + "ML-BKO": "Bamako", + "MM-01": "Sagaing", + "MM-02": "Bago", + "MM-03": "Magway", + "MM-04": "Mandalay", + "MM-05": "Tanintharyi", + "MM-06": "Yangon", + "MM-07": "Ayeyarwady", + "MM-11": "Kachin", + "MM-12": "Kayah", + "MM-13": "Kayin", + "MM-15": "Mon", + "MM-16": "Rakhine", + "MM-17": "Shan", + "MM-18": "Nay Pyi Taw", + "MN-035": "Orhon", + "MN-043": "Hovd", + "MN-047": "Tov", + "MN-049": "Selenge", + "MN-055": "Ovorhangay", + "MN-061": "Dornod", + "MN-065": "Govi-Altay", + "MN-069": "Bayanhongor", + "MN-1": "Ulaanbaatar", + "MR-01": "Hodh ech Chargui", + "MR-02": "Hodh el Gharbi", + "MR-03": "Assaba", + "MR-04": "Gorgol", + "MR-05": "Brakna", + "MR-06": "Trarza", + "MR-07": "Adrar", + "MR-08": "Dakhlet Nouadhibou", + "MR-09": "Tagant", + "MR-11": "Tiris Zemmour", + "MR-12": "Inchiri", + "MR-13": "Nouakchott Ouest", + "MT-01": "Attard", + "MT-02": "Balzan", + "MT-03": "Birgu", + "MT-04": "Birkirkara", + "MT-05": "Birzebbuga", + "MT-06": "Bormla", + "MT-07": "Dingli", + "MT-08": "Fgura", + "MT-09": "Floriana", + "MT-10": "Fontana", + "MT-11": "Gudja", + "MT-12": "Gzira", + "MT-13": "Ghajnsielem", + "MT-14": "Gharb", + "MT-15": "Gharghur", + "MT-16": "Ghasri", + "MT-17": "Ghaxaq", + "MT-18": "Hamrun", + "MT-19": "Iklin", + "MT-20": "Isla", + "MT-21": "Kalkara", + "MT-23": "Kirkop", + "MT-24": "Lija", + "MT-25": "Luqa", + "MT-26": "Marsa", + "MT-27": "Marsaskala", + "MT-28": "Marsaxlokk", + "MT-29": "Mdina", + "MT-30": "Mellieha", + "MT-31": "Mgarr", + "MT-32": "Mosta", + "MT-33": "Mqabba", + "MT-34": "Msida", + "MT-35": "Mtarfa", + "MT-36": "Munxar", + "MT-37": "Nadur", + "MT-38": "Naxxar", + "MT-39": "Paola", + "MT-40": "Pembroke", + "MT-41": "Pieta", + "MT-42": "Qala", + "MT-43": "Qormi", + "MT-44": "Qrendi", + "MT-45": "Rabat Gozo", + "MT-46": "Rabat Malta", + "MT-47": "Safi", + "MT-48": "Saint Julian's", + "MT-49": "Saint John", + "MT-50": "Saint Lawrence", + "MT-51": "Saint Paul's Bay", + "MT-52": "Sannat", + "MT-53": "Saint Lucia's", + "MT-54": "Santa Venera", + "MT-55": "Siggiewi", + "MT-56": "Sliema", + "MT-57": "Swieqi", + "MT-58": "Ta' Xbiex", + "MT-59": "Tarxien", + "MT-60": "Valletta", + "MT-61": "Xaghra", + "MT-62": "Xewkija", + "MT-63": "Xghajra", + "MT-64": "Zabbar", + "MT-65": "Zebbug Gozo", + "MT-67": "Zejtun", + "MT-68": "Zurrieq", + "MU-BL": "Black River", + "MU-FL": "Flacq", + "MU-GP": "Grand Port", + "MU-MO": "Moka", + "MU-PA": "Pamplemousses", + "MU-PL": "Port Louis", + "MU-PW": "Plaines Wilhems", + "MU-RO": "Rodrigues Islands", + "MU-RR": "Riviere du Rempart", + "MU-SA": "Savanne", + "MV-00": "South Ari Atoll", + "MV-01": "Addu City", + "MV-02": "North Ari Atoll", + "MV-03": "Faadhippolhu", + "MV-04": "Felidhu Atoll", + "MV-05": "Hahdhunmathi", + "MV-07": "North Thiladhunmathi", + "MV-12": "Mulaku Atoll", + "MV-13": "North Maalhosmadulu", + "MV-20": "South Maalhosmadulu", + "MV-23": "South Thiladhunmathi", + "MV-25": "South Miladhunmadulu", + "MV-28": "South Huvadhu Atoll", + "MV-MLE": "Male", + "MW-BA": "Balaka", + "MW-BL": "Blantyre", + "MW-CK": "Chikwawa", + "MW-CR": "Chiradzulu", + "MW-DE": "Dedza", + "MW-DO": "Dowa", + "MW-KR": "Karonga", + "MW-LI": "Lilongwe", + "MW-MC": "Mchinji", + "MW-MG": "Mangochi", + "MW-MH": "Machinga", + "MW-MW": "Mwanza", + "MW-MZ": "Mzimba", + "MW-NE": "Neno", + "MW-NI": "Ntchisi", + "MW-NK": "Nkhotakota", + "MW-SA": "Salima", + "MW-TH": "Thyolo", + "MW-ZO": "Zomba", + "MX-AGU": "Aguascalientes", + "MX-BCN": "Baja California", + "MX-BCS": "Baja California Sur", + "MX-CAM": "Campeche", + "MX-CHH": "Chihuahua", + "MX-CHP": "Chiapas", + "MX-CMX": "Ciudad de Mexico", + "MX-COA": "Coahuila de Zaragoza", + "MX-COL": "Colima", + "MX-DUR": "Durango", + "MX-GRO": "Guerrero", + "MX-GUA": "Guanajuato", + "MX-HID": "Hidalgo", + "MX-JAL": "Jalisco", + "MX-MEX": "Mexico", + "MX-MIC": "Michoacan de Ocampo", + "MX-MOR": "Morelos", + "MX-NAY": "Nayarit", + "MX-NLE": "Nuevo Leon", + "MX-OAX": "Oaxaca", + "MX-PUE": "Puebla", + "MX-QUE": "Queretaro", + "MX-ROO": "Quintana Roo", + "MX-SIN": "Sinaloa", + "MX-SLP": "San Luis Potosi", + "MX-SON": "Sonora", + "MX-TAB": "Tabasco", + "MX-TAM": "Tamaulipas", + "MX-TLA": "Tlaxcala", + "MX-VER": "Veracruz de Ignacio de la Llave", + "MX-YUC": "Yucatan", + "MX-ZAC": "Zacatecas", + "MY-01": "Johor", + "MY-02": "Kedah", + "MY-03": "Kelantan", + "MY-04": "Melaka", + "MY-05": "Negeri Sembilan", + "MY-06": "Pahang", + "MY-07": "Pulau Pinang", + "MY-08": "Perak", + "MY-09": "Perlis", + "MY-10": "Selangor", + "MY-11": "Terengganu", + "MY-12": "Sabah", + "MY-13": "Sarawak", + "MY-14": "Wilayah Persekutuan Kuala Lumpur", + "MY-15": "Wilayah Persekutuan Labuan", + "MY-16": "Wilayah Persekutuan Putrajaya", + "MZ-A": "Niassa", + "MZ-B": "Manica", + "MZ-G": "Gaza", + "MZ-I": "Inhambane", + "MZ-L": "Maputo", + "MZ-N": "Nampula", + "MZ-P": "Cabo Delgado", + "MZ-Q": "Zambezia", + "MZ-S": "Sofala", + "MZ-T": "Tete", + "NA-CA": "Zambezi", + "NA-ER": "Erongo", + "NA-HA": "Hardap", + "NA-KA": "Karas", + "NA-KE": "Kavango East", + "NA-KH": "Khomas", + "NA-KU": "Kunene", + "NA-KW": "Kavango West", + "NA-OD": "Otjozondjupa", + "NA-OH": "Omaheke", + "NA-ON": "Oshana", + "NA-OS": "Omusati", + "NA-OT": "Oshikoto", + "NA-OW": "Ohangwena", + "NE-1": "Agadez", + "NE-2": "Diffa", + "NE-3": "Dosso", + "NE-5": "Tahoua", + "NE-6": "Tillaberi", + "NE-7": "Zinder", + "NE-8": "Niamey", + "NG-AB": "Abia", + "NG-AD": "Adamawa", + "NG-AK": "Akwa Ibom", + "NG-AN": "Anambra", + "NG-BA": "Bauchi", + "NG-BE": "Benue", + "NG-BO": "Borno", + "NG-BY": "Bayelsa", + "NG-CR": "Cross River", + "NG-DE": "Delta", + "NG-EB": "Ebonyi", + "NG-ED": "Edo", + "NG-EK": "Ekiti", + "NG-EN": "Enugu", + "NG-FC": "Abuja Federal Capital Territory", + "NG-GO": "Gombe", + "NG-IM": "Imo", + "NG-JI": "Jigawa", + "NG-KD": "Kaduna", + "NG-KE": "Kebbi", + "NG-KN": "Kano", + "NG-KO": "Kogi", + "NG-KT": "Katsina", + "NG-KW": "Kwara", + "NG-LA": "Lagos", + "NG-NA": "Nasarawa", + "NG-NI": "Niger", + "NG-OG": "Ogun", + "NG-ON": "Ondo", + "NG-OS": "Osun", + "NG-OY": "Oyo", + "NG-PL": "Plateau", + "NG-RI": "Rivers", + "NG-SO": "Sokoto", + "NG-TA": "Taraba", + "NG-YO": "Yobe", + "NG-ZA": "Zamfara", + "NI-AN": "Costa Caribe Norte", + "NI-AS": "Costa Caribe Sur", + "NI-BO": "Boaco", + "NI-CA": "Carazo", + "NI-CI": "Chinandega", + "NI-CO": "Chontales", + "NI-ES": "Esteli", + "NI-GR": "Granada", + "NI-JI": "Jinotega", + "NI-LE": "Leon", + "NI-MD": "Madriz", + "NI-MN": "Managua", + "NI-MS": "Masaya", + "NI-MT": "Matagalpa", + "NI-NS": "Nueva Segovia", + "NI-RI": "Rivas", + "NI-SJ": "Rio San Juan", + "NL-DR": "Drenthe", + "NL-FL": "Flevoland", + "NL-FR": "Fryslan", + "NL-GE": "Gelderland", + "NL-GR": "Groningen", + "NL-LI": "Limburg", + "NL-NB": "Noord-Brabant", + "NL-NH": "Noord-Holland", + "NL-OV": "Overijssel", + "NL-UT": "Utrecht", + "NL-ZE": "Zeeland", + "NL-ZH": "Zuid-Holland", + "NO-03": "Oslo", + "NO-11": "Rogaland", + "NO-15": "More og Romsdal", + "NO-18": "Nordland", + "NO-30": "Viken", + "NO-34": "Innlandet", + "NO-38": "Vestfold og Telemark", + "NO-42": "Agder", + "NO-46": "Vestland", + "NO-50": "Trondelag", + "NO-54": "Troms og Finnmark", + "NP-BA": "Bagmati", + "NP-BH": "Bheri", + "NP-DH": "Dhawalagiri", + "NP-GA": "Gandaki", + "NP-JA": "Janakpur", + "NP-KA": "Karnali", + "NP-KO": "Kosi", + "NP-LU": "Lumbini", + "NP-MA": "Mahakali", + "NP-ME": "Mechi", + "NP-NA": "Narayani", + "NP-RA": "Rapti", + "NP-SA": "Sagarmatha", + "NP-SE": "Seti", + "NR-01": "Aiwo", + "NR-03": "Anetan", + "NR-14": "Yaren", + "NZ-AUK": "Auckland", + "NZ-BOP": "Bay of Plenty", + "NZ-CAN": "Canterbury", + "NZ-CIT": "Chatham Islands Territory", + "NZ-GIS": "Gisborne", + "NZ-HKB": "Hawke's Bay", + "NZ-MBH": "Marlborough", + "NZ-MWT": "Manawatu-Wanganui", + "NZ-NSN": "Nelson", + "NZ-NTL": "Northland", + "NZ-OTA": "Otago", + "NZ-STL": "Southland", + "NZ-TAS": "Tasman", + "NZ-TKI": "Taranaki", + "NZ-WGN": "Wellington", + "NZ-WKO": "Waikato", + "NZ-WTC": "West Coast", + "OM-BJ": "Janub al Batinah", + "OM-BS": "Shamal al Batinah", + "OM-BU": "Al Buraymi", + "OM-DA": "Ad Dakhiliyah", + "OM-MA": "Masqat", + "OM-MU": "Musandam", + "OM-SJ": "Janub ash Sharqiyah", + "OM-SS": "Shamal ash Sharqiyah", + "OM-WU": "Al Wusta", + "OM-ZA": "Az Zahirah", + "OM-ZU": "Zufar", + "PA-1": "Bocas del Toro", + "PA-2": "Cocle", + "PA-3": "Colon", + "PA-4": "Chiriqui", + "PA-5": "Darien", + "PA-6": "Herrera", + "PA-7": "Los Santos", + "PA-8": "Panama", + "PA-9": "Veraguas", + "PA-KY": "Guna Yala", + "PA-NB": "Ngobe-Bugle", + "PE-AMA": "Amazonas", + "PE-ANC": "Ancash", + "PE-APU": "Apurimac", + "PE-ARE": "Arequipa", + "PE-AYA": "Ayacucho", + "PE-CAJ": "Cajamarca", + "PE-CAL": "El Callao", + "PE-CUS": "Cusco", + "PE-HUC": "Huanuco", + "PE-HUV": "Huancavelica", + "PE-ICA": "Ica", + "PE-JUN": "Junin", + "PE-LAL": "La Libertad", + "PE-LAM": "Lambayeque", + "PE-LIM": "Lima", + "PE-LMA": "Municipalidad Metropolitana de Lima", + "PE-LOR": "Loreto", + "PE-MDD": "Madre de Dios", + "PE-MOQ": "Moquegua", + "PE-PAS": "Pasco", + "PE-PIU": "Piura", + "PE-PUN": "Puno", + "PE-SAM": "San Martin", + "PE-TAC": "Tacna", + "PE-TUM": "Tumbes", + "PE-UCA": "Ucayali", + "PF-A": "Austral Islands", + "PF-M": "Marquesas Islands", + "PF-S": "Society Islands", + "PF-T": "Tuamotu and Gambier Islands", + "PF-V": "Windward Islands", + "PG-CPK": "Chimbu", + "PG-CPM": "Central", + "PG-EBR": "East New Britain", + "PG-EHG": "Eastern Highlands", + "PG-ESW": "East Sepik", + "PG-MBA": "Milne Bay", + "PG-MPL": "Morobe", + "PG-MPM": "Madang", + "PG-MRL": "Manus", + "PG-NCD": "National Capital District (Port Moresby)", + "PG-NIK": "New Ireland", + "PG-NSB": "Bougainville", + "PG-SAN": "West Sepik", + "PG-SHM": "Southern Highlands", + "PG-WBK": "West New Britain", + "PG-WHM": "Western Highlands", + "PG-WPD": "Western", + "PH-00": "National Capital Region", + "PH-01": "Ilocos", + "PH-02": "Cagayan Valley", + "PH-03": "Central Luzon", + "PH-05": "Bicol", + "PH-06": "Western Visayas", + "PH-07": "Central Visayas", + "PH-08": "Eastern Visayas", + "PH-09": "Zamboanga Peninsula", + "PH-10": "Northern Mindanao", + "PH-11": "Davao", + "PH-12": "Soccsksargen", + "PH-13": "Caraga", + "PH-14": "Autonomous Region in Muslim Mindanao", + "PH-15": "Cordillera Administrative Region", + "PH-40": "Calabarzon", + "PH-41": "Mimaropa", + "PH-ABR": "Abra", + "PH-AGN": "Agusan del Norte", + "PH-AGS": "Agusan del Sur", + "PH-AKL": "Aklan", + "PH-ALB": "Albay", + "PH-ANT": "Antique", + "PH-APA": "Apayao", + "PH-AUR": "Aurora", + "PH-BAN": "Bataan", + "PH-BAS": "Basilan", + "PH-BEN": "Benguet", + "PH-BIL": "Biliran", + "PH-BOH": "Bohol", + "PH-BTG": "Batangas", + "PH-BTN": "Batanes", + "PH-BUK": "Bukidnon", + "PH-BUL": "Bulacan", + "PH-CAG": "Cagayan", + "PH-CAM": "Camiguin", + "PH-CAN": "Camarines Norte", + "PH-CAP": "Capiz", + "PH-CAS": "Camarines Sur", + "PH-CAT": "Catanduanes", + "PH-CAV": "Cavite", + "PH-CEB": "Cebu", + "PH-COM": "Davao de Oro", + "PH-DAO": "Davao Oriental", + "PH-DAS": "Davao del Sur", + "PH-DAV": "Davao del Norte", + "PH-DIN": "Dinagat Islands", + "PH-EAS": "Eastern Samar", + "PH-GUI": "Guimaras", + "PH-IFU": "Ifugao", + "PH-ILI": "Iloilo", + "PH-ILN": "Ilocos Norte", + "PH-ILS": "Ilocos Sur", + "PH-ISA": "Isabela", + "PH-KAL": "Kalinga", + "PH-LAG": "Laguna", + "PH-LAN": "Lanao del Norte", + "PH-LAS": "Lanao del Sur", + "PH-LEY": "Leyte", + "PH-LUN": "La Union", + "PH-MAD": "Marinduque", + "PH-MAG": "Maguindanao", + "PH-MAS": "Masbate", + "PH-MDC": "Mindoro Occidental", + "PH-MDR": "Mindoro Oriental", + "PH-MOU": "Mountain Province", + "PH-MSC": "Misamis Occidental", + "PH-MSR": "Misamis Oriental", + "PH-NCO": "Cotabato", + "PH-NEC": "Negros Occidental", + "PH-NER": "Negros Oriental", + "PH-NSA": "Northern Samar", + "PH-NUE": "Nueva Ecija", + "PH-NUV": "Nueva Vizcaya", + "PH-PAM": "Pampanga", + "PH-PAN": "Pangasinan", + "PH-PLW": "Palawan", + "PH-QUE": "Quezon", + "PH-QUI": "Quirino", + "PH-RIZ": "Rizal", + "PH-ROM": "Romblon", + "PH-SAR": "Sarangani", + "PH-SCO": "South Cotabato", + "PH-SIG": "Siquijor", + "PH-SLE": "Southern Leyte", + "PH-SLU": "Sulu", + "PH-SOR": "Sorsogon", + "PH-SUK": "Sultan Kudarat", + "PH-SUN": "Surigao del Norte", + "PH-SUR": "Surigao del Sur", + "PH-TAR": "Tarlac", + "PH-TAW": "Tawi-Tawi", + "PH-WSA": "Samar", + "PH-ZAN": "Zamboanga del Norte", + "PH-ZAS": "Zamboanga del Sur", + "PH-ZMB": "Zambales", + "PH-ZSI": "Zamboanga Sibugay", + "PK-BA": "Balochistan", + "PK-GB": "Gilgit-Baltistan", + "PK-IS": "Islamabad", + "PK-JK": "Azad Jammu and Kashmir", + "PK-KP": "Khyber Pakhtunkhwa", + "PK-PB": "Punjab", + "PK-SD": "Sindh", + "PL-02": "Dolnoslaskie", + "PL-04": "Kujawsko-pomorskie", + "PL-06": "Lubelskie", + "PL-08": "Lubuskie", + "PL-10": "Lodzkie", + "PL-12": "Malopolskie", + "PL-14": "Mazowieckie", + "PL-16": "Opolskie", + "PL-18": "Podkarpackie", + "PL-20": "Podlaskie", + "PL-22": "Pomorskie", + "PL-24": "Slaskie", + "PL-26": "Swietokrzyskie", + "PL-28": "Warminsko-mazurskie", + "PL-30": "Wielkopolskie", + "PL-32": "Zachodniopomorskie", + "PM-P": "Saint-Pierre", + "PM-M": "Miquelon-Langlade", + "PS-BTH": "Bethlehem", + "PS-DEB": "Deir El Balah", + "PS-GZA": "Gaza", + "PS-HBN": "Hebron", + "PS-JEM": "Jerusalem", + "PS-JEN": "Jenin", + "PS-JRH": "Jericho and Al Aghwar", + "PS-KYS": "Khan Yunis", + "PS-NBS": "Nablus", + "PS-QQA": "Qalqilya", + "PS-RBH": "Ramallah", + "PS-RFH": "Rafah", + "PS-SLT": "Salfit", + "PS-TBS": "Tubas", + "PS-TKM": "Tulkarm", + "PT-01": "Aveiro", + "PT-02": "Beja", + "PT-03": "Braga", + "PT-04": "Braganca", + "PT-05": "Castelo Branco", + "PT-06": "Coimbra", + "PT-07": "Evora", + "PT-08": "Faro", + "PT-09": "Guarda", + "PT-10": "Leiria", + "PT-11": "Lisboa", + "PT-12": "Portalegre", + "PT-13": "Porto", + "PT-14": "Santarem", + "PT-15": "Setubal", + "PT-16": "Viana do Castelo", + "PT-17": "Vila Real", + "PT-18": "Viseu", + "PT-20": "Regiao Autonoma dos Acores", + "PT-30": "Regiao Autonoma da Madeira", + "PW-004": "Airai", + "PW-150": "Koror", + "PW-212": "Melekeok", + "PW-222": "Ngardmau", + "PY-1": "Concepcion", + "PY-10": "Alto Parana", + "PY-11": "Central", + "PY-12": "Neembucu", + "PY-13": "Amambay", + "PY-14": "Canindeyu", + "PY-15": "Presidente Hayes", + "PY-19": "Boqueron", + "PY-2": "San Pedro", + "PY-3": "Cordillera", + "PY-4": "Guaira", + "PY-5": "Caaguazu", + "PY-6": "Caazapa", + "PY-7": "Itapua", + "PY-8": "Misiones", + "PY-9": "Paraguari", + "PY-ASU": "Asuncion", + "QA-DA": "Ad Dawhah", + "QA-KH": "Al Khawr wa adh Dhakhirah", + "QA-MS": "Ash Shamal", + "QA-RA": "Ar Rayyan", + "QA-US": "Umm Salal", + "QA-WA": "Al Wakrah", + "QA-ZA": "Az Za'ayin", + "RO-AB": "Alba", + "RO-AG": "Arges", + "RO-AR": "Arad", + "RO-B": "Bucuresti", + "RO-BC": "Bacau", + "RO-BH": "Bihor", + "RO-BN": "Bistrita-Nasaud", + "RO-BR": "Braila", + "RO-BT": "Botosani", + "RO-BV": "Brasov", + "RO-BZ": "Buzau", + "RO-CJ": "Cluj", + "RO-CL": "Calarasi", + "RO-CS": "Caras-Severin", + "RO-CT": "Constanta", + "RO-CV": "Covasna", + "RO-DB": "Dambovita", + "RO-DJ": "Dolj", + "RO-GJ": "Gorj", + "RO-GL": "Galati", + "RO-GR": "Giurgiu", + "RO-HD": "Hunedoara", + "RO-HR": "Harghita", + "RO-IF": "Ilfov", + "RO-IL": "Ialomita", + "RO-IS": "Iasi", + "RO-MH": "Mehedinti", + "RO-MM": "Maramures", + "RO-MS": "Mures", + "RO-NT": "Neamt", + "RO-OT": "Olt", + "RO-PH": "Prahova", + "RO-SB": "Sibiu", + "RO-SJ": "Salaj", + "RO-SM": "Satu Mare", + "RO-SV": "Suceava", + "RO-TL": "Tulcea", + "RO-TM": "Timis", + "RO-TR": "Teleorman", + "RO-VL": "Valcea", + "RO-VN": "Vrancea", + "RO-VS": "Vaslui", + "RS-00": "Beograd", + "RS-01": "Severnobacki okrug", + "RS-02": "Srednjebanatski okrug", + "RS-03": "Severnobanatski okrug", + "RS-04": "Juznobanatski okrug", + "RS-05": "Zapadnobacki okrug", + "RS-06": "Juznobacki okrug", + "RS-07": "Sremski okrug", + "RS-08": "Macvanski okrug", + "RS-09": "Kolubarski okrug", + "RS-10": "Podunavski okrug", + "RS-11": "Branicevski okrug", + "RS-12": "Sumadijski okrug", + "RS-13": "Pomoravski okrug", + "RS-14": "Borski okrug", + "RS-15": "Zajecarski okrug", + "RS-16": "Zlatiborski okrug", + "RS-17": "Moravicki okrug", + "RS-18": "Raski okrug", + "RS-19": "Rasinski okrug", + "RS-20": "Nisavski okrug", + "RS-21": "Toplicki okrug", + "RS-22": "Pirotski okrug", + "RS-23": "Jablanicki okrug", + "RS-24": "Pcinjski okrug", + "RS-26": "Pecki okrug", + "RS-27": "Prizrenski okrug", + "RS-28": "Kosovsko-Mitrovacki okrug", + "RU-AD": "Adygeya, Respublika", + "RU-AL": "Altay, Respublika", + "RU-ALT": "Altayskiy kray", + "RU-AMU": "Amurskaya oblast'", + "RU-ARK": "Arkhangel'skaya oblast'", + "RU-AST": "Astrakhanskaya oblast'", + "RU-BA": "Bashkortostan, Respublika", + "RU-BEL": "Belgorodskaya oblast'", + "RU-BRY": "Bryanskaya oblast'", + "RU-BU": "Buryatiya, Respublika", + "RU-CE": "Chechenskaya Respublika", + "RU-CHE": "Chelyabinskaya oblast'", + "RU-CHU": "Chukotskiy avtonomnyy okrug", + "RU-CU": "Chuvashskaya Respublika", + "RU-DA": "Dagestan, Respublika", + "RU-IN": "Ingushetiya, Respublika", + "RU-IRK": "Irkutskaya oblast'", + "RU-IVA": "Ivanovskaya oblast'", + "RU-KAM": "Kamchatskiy kray", + "RU-KB": "Kabardino-Balkarskaya Respublika", + "RU-KC": "Karachayevo-Cherkesskaya Respublika", + "RU-KDA": "Krasnodarskiy kray", + "RU-KEM": "Kemerovskaya oblast'", + "RU-KGD": "Kaliningradskaya oblast'", + "RU-KGN": "Kurganskaya oblast'", + "RU-KHA": "Khabarovskiy kray", + "RU-KHM": "Khanty-Mansiyskiy avtonomnyy okrug", + "RU-KIR": "Kirovskaya oblast'", + "RU-KK": "Khakasiya, Respublika", + "RU-KL": "Kalmykiya, Respublika", + "RU-KLU": "Kaluzhskaya oblast'", + "RU-KO": "Komi, Respublika", + "RU-KOS": "Kostromskaya oblast'", + "RU-KR": "Kareliya, Respublika", + "RU-KRS": "Kurskaya oblast'", + "RU-KYA": "Krasnoyarskiy kray", + "RU-LEN": "Leningradskaya oblast'", + "RU-LIP": "Lipetskaya oblast'", + "RU-MAG": "Magadanskaya oblast'", + "RU-ME": "Mariy El, Respublika", + "RU-MO": "Mordoviya, Respublika", + "RU-MOS": "Moskovskaya oblast'", + "RU-MOW": "Moskva", + "RU-MUR": "Murmanskaya oblast'", + "RU-NEN": "Nenetskiy avtonomnyy okrug", + "RU-NGR": "Novgorodskaya oblast'", + "RU-NIZ": "Nizhegorodskaya oblast'", + "RU-NVS": "Novosibirskaya oblast'", + "RU-OMS": "Omskaya oblast'", + "RU-ORE": "Orenburgskaya oblast'", + "RU-ORL": "Orlovskaya oblast'", + "RU-PER": "Permskiy kray", + "RU-PNZ": "Penzenskaya oblast'", + "RU-PRI": "Primorskiy kray", + "RU-PSK": "Pskovskaya oblast'", + "RU-ROS": "Rostovskaya oblast'", + "RU-RYA": "Ryazanskaya oblast'", + "RU-SA": "Saha, Respublika", + "RU-SAK": "Sakhalinskaya oblast'", + "RU-SAM": "Samarskaya oblast'", + "RU-SAR": "Saratovskaya oblast'", + "RU-SE": "Severnaya Osetiya, Respublika", + "RU-SMO": "Smolenskaya oblast'", + "RU-SPE": "Sankt-Peterburg", + "RU-STA": "Stavropol'skiy kray", + "RU-SVE": "Sverdlovskaya oblast'", + "RU-TA": "Tatarstan, Respublika", + "RU-TAM": "Tambovskaya oblast'", + "RU-TOM": "Tomskaya oblast'", + "RU-TUL": "Tul'skaya oblast'", + "RU-TVE": "Tverskaya oblast'", + "RU-TY": "Tyva, Respublika", + "RU-TYU": "Tyumenskaya oblast'", + "RU-UD": "Udmurtskaya Respublika", + "RU-ULY": "Ul'yanovskaya oblast'", + "RU-VGG": "Volgogradskaya oblast'", + "RU-VLA": "Vladimirskaya oblast'", + "RU-VLG": "Vologodskaya oblast'", + "RU-VOR": "Voronezhskaya oblast'", + "RU-YAN": "Yamalo-Nenetskiy avtonomnyy okrug", + "RU-YAR": "Yaroslavskaya oblast'", + "RU-YEV": "Yevreyskaya avtonomnaya oblast'", + "RU-ZAB": "Zabaykal'skiy kray", + "RW-01": "Ville de Kigali", + "RW-02": "Est", + "RW-03": "Nord", + "RW-04": "Ouest", + "RW-05": "Sud", + "SA-01": "Ar Riyad", + "SA-02": "Makkah al Mukarramah", + "SA-03": "Al Madinah al Munawwarah", + "SA-04": "Ash Sharqiyah", + "SA-05": "Al Qasim", + "SA-06": "Ha'il", + "SA-07": "Tabuk", + "SA-08": "Al Hudud ash Shamaliyah", + "SA-09": "Jazan", + "SA-10": "Najran", + "SA-11": "Al Bahah", + "SA-12": "Al Jawf", + "SA-14": "'Asir", + "SB-CH": "Choiseul", + "SB-GU": "Guadalcanal", + "SB-WE": "Western", + "SC-01": "Anse aux Pins", + "SC-02": "Anse Boileau", + "SC-05": "Anse Royale", + "SC-06": "Baie Lazare", + "SC-07": "Baie Sainte Anne", + "SC-08": "Beau Vallon", + "SC-10": "Bel Ombre", + "SC-11": "Cascade", + "SC-13": "Grand Anse Mahe", + "SC-14": "Grand Anse Praslin", + "SC-15": "La Digue", + "SC-16": "English River", + "SC-20": "Pointe Larue", + "SC-23": "Takamaka", + "SD-DC": "Central Darfur", + "SD-DN": "North Darfur", + "SD-DS": "South Darfur", + "SD-DW": "West Darfur", + "SD-GD": "Gedaref", + "SD-GK": "West Kordofan", + "SD-GZ": "Gezira", + "SD-KA": "Kassala", + "SD-KH": "Khartoum", + "SD-KN": "North Kordofan", + "SD-KS": "South Kordofan", + "SD-NB": "Blue Nile", + "SD-NO": "Northern", + "SD-NR": "River Nile", + "SD-NW": "White Nile", + "SD-RS": "Red Sea", + "SD-SI": "Sennar", + "SE-AB": "Stockholms lan", + "SE-AC": "Vasterbottens lan", + "SE-BD": "Norrbottens lan", + "SE-C": "Uppsala lan", + "SE-D": "Sodermanlands lan", + "SE-E": "Ostergotlands lan", + "SE-F": "Jonkopings lan", + "SE-G": "Kronobergs lan", + "SE-H": "Kalmar lan", + "SE-I": "Gotlands lan", + "SE-K": "Blekinge lan", + "SE-M": "Skane lan", + "SE-N": "Hallands lan", + "SE-O": "Vastra Gotalands lan", + "SE-S": "Varmlands lan", + "SE-T": "Orebro lan", + "SE-U": "Vastmanlands lan", + "SE-W": "Dalarnas lan", + "SE-X": "Gavleborgs lan", + "SE-Y": "Vasternorrlands lan", + "SE-Z": "Jamtlands lan", + "SH-HL": "Saint Helena", + "SI-001": "Ajdovscina", + "SI-002": "Beltinci", + "SI-003": "Bled", + "SI-004": "Bohinj", + "SI-005": "Borovnica", + "SI-006": "Bovec", + "SI-007": "Brda", + "SI-008": "Brezovica", + "SI-009": "Brezice", + "SI-010": "Tisina", + "SI-011": "Celje", + "SI-012": "Cerklje na Gorenjskem", + "SI-013": "Cerknica", + "SI-014": "Cerkno", + "SI-015": "Crensovci", + "SI-017": "Crnomelj", + "SI-018": "Destrnik", + "SI-019": "Divaca", + "SI-020": "Dobrepolje", + "SI-021": "Dobrova-Polhov Gradec", + "SI-023": "Domzale", + "SI-024": "Dornava", + "SI-025": "Dravograd", + "SI-026": "Duplek", + "SI-029": "Gornja Radgona", + "SI-031": "Gornji Petrovci", + "SI-032": "Grosuplje", + "SI-033": "Salovci", + "SI-034": "Hrastnik", + "SI-035": "Hrpelje-Kozina", + "SI-036": "Idrija", + "SI-037": "Ig", + "SI-038": "Ilirska Bistrica", + "SI-039": "Ivancna Gorica", + "SI-040": "Izola", + "SI-041": "Jesenice", + "SI-042": "Jursinci", + "SI-043": "Kamnik", + "SI-044": "Kanal", + "SI-045": "Kidricevo", + "SI-046": "Kobarid", + "SI-047": "Kobilje", + "SI-048": "Kocevje", + "SI-049": "Komen", + "SI-050": "Koper", + "SI-052": "Kranj", + "SI-053": "Kranjska Gora", + "SI-054": "Krsko", + "SI-055": "Kungota", + "SI-056": "Kuzma", + "SI-057": "Lasko", + "SI-058": "Lenart", + "SI-059": "Lendava", + "SI-060": "Litija", + "SI-061": "Ljubljana", + "SI-063": "Ljutomer", + "SI-064": "Logatec", + "SI-065": "Loska dolina", + "SI-066": "Loski Potok", + "SI-067": "Luce", + "SI-068": "Lukovica", + "SI-069": "Majsperk", + "SI-070": "Maribor", + "SI-071": "Medvode", + "SI-072": "Menges", + "SI-073": "Metlika", + "SI-074": "Mezica", + "SI-075": "Miren-Kostanjevica", + "SI-076": "Mislinja", + "SI-077": "Moravce", + "SI-079": "Mozirje", + "SI-080": "Murska Sobota", + "SI-081": "Muta", + "SI-082": "Naklo", + "SI-083": "Nazarje", + "SI-084": "Nova Gorica", + "SI-085": "Novo Mesto", + "SI-086": "Odranci", + "SI-087": "Ormoz", + "SI-090": "Piran", + "SI-091": "Pivka", + "SI-092": "Podcetrtek", + "SI-094": "Postojna", + "SI-095": "Preddvor", + "SI-096": "Ptuj", + "SI-097": "Puconci", + "SI-098": "Race-Fram", + "SI-099": "Radece", + "SI-100": "Radenci", + "SI-101": "Radlje ob Dravi", + "SI-102": "Radovljica", + "SI-103": "Ravne na Koroskem", + "SI-104": "Ribnica", + "SI-105": "Rogasovci", + "SI-106": "Rogaska Slatina", + "SI-108": "Ruse", + "SI-109": "Semic", + "SI-110": "Sevnica", + "SI-111": "Sezana", + "SI-112": "Slovenj Gradec", + "SI-113": "Slovenska Bistrica", + "SI-114": "Slovenske Konjice", + "SI-115": "Starse", + "SI-116": "Sveti Jurij ob Scavnici", + "SI-117": "Sencur", + "SI-118": "Sentilj", + "SI-119": "Sentjernej", + "SI-120": "Sentjur", + "SI-121": "Skocjan", + "SI-122": "Skofja Loka", + "SI-123": "Skofljica", + "SI-124": "Smarje pri Jelsah", + "SI-125": "Smartno ob Paki", + "SI-126": "Sostanj", + "SI-127": "Store", + "SI-128": "Tolmin", + "SI-129": "Trbovlje", + "SI-130": "Trebnje", + "SI-131": "Trzic", + "SI-132": "Turnisce", + "SI-133": "Velenje", + "SI-134": "Velike Lasce", + "SI-135": "Videm", + "SI-136": "Vipava", + "SI-137": "Vitanje", + "SI-138": "Vodice", + "SI-139": "Vojnik", + "SI-140": "Vrhnika", + "SI-141": "Vuzenica", + "SI-142": "Zagorje ob Savi", + "SI-143": "Zavrc", + "SI-144": "Zrece", + "SI-146": "Zelezniki", + "SI-147": "Ziri", + "SI-148": "Benedikt", + "SI-149": "Bistrica ob Sotli", + "SI-150": "Bloke", + "SI-151": "Braslovce", + "SI-152": "Cankova", + "SI-154": "Dobje", + "SI-155": "Dobrna", + "SI-156": "Dobrovnik", + "SI-158": "Grad", + "SI-159": "Hajdina", + "SI-160": "Hoce-Slivnica", + "SI-161": "Hodos", + "SI-162": "Horjul", + "SI-164": "Komenda", + "SI-165": "Kostel", + "SI-166": "Krizevci", + "SI-167": "Lovrenc na Pohorju", + "SI-168": "Markovci", + "SI-169": "Miklavz na Dravskem polju", + "SI-170": "Mirna Pec", + "SI-171": "Oplotnica", + "SI-172": "Podlehnik", + "SI-173": "Polzela", + "SI-174": "Prebold", + "SI-175": "Prevalje", + "SI-176": "Razkrizje", + "SI-179": "Sodrazica", + "SI-180": "Solcava", + "SI-182": "Sveti Andraz v Slovenskih Goricah", + "SI-183": "Sempeter-Vrtojba", + "SI-184": "Tabor", + "SI-185": "Trnovska Vas", + "SI-186": "Trzin", + "SI-187": "Velika Polana", + "SI-188": "Verzej", + "SI-189": "Vransko", + "SI-190": "Zalec", + "SI-191": "Zetale", + "SI-193": "Zuzemberk", + "SI-194": "Smartno pri Litiji", + "SI-195": "Apace", + "SI-196": "Cirkulane", + "SI-197": "Kosanjevica na Krki", + "SI-198": "Makole", + "SI-199": "Mokronog-Trebelno", + "SI-200": "Poljcane", + "SI-201": "Rence-Vogrsko", + "SI-203": "Straza", + "SI-204": "Sveta Trojica v Slovenskih goricah", + "SI-205": "Sveti Tomaz", + "SI-206": "Smarjeske Toplice", + "SI-207": "Gorje", + "SI-208": "Log-Dragomer", + "SI-209": "Recica ob Savinji", + "SI-210": "Sveti Jurij v Slovenskih goricah", + "SI-211": "Sentrupert", + "SI-212": "Mirna", + "SI-213": "Ankaran", + "SK-BC": "Banskobystricky kraj", + "SK-BL": "Bratislavsky kraj", + "SK-KI": "Kosicky kraj", + "SK-NI": "Nitriansky kraj", + "SK-PV": "Presovsky kraj", + "SK-TA": "Trnavsky kraj", + "SK-TC": "Trenciansky kraj", + "SK-ZI": "Zilinsky kraj", + "SL-E": "Eastern", + "SL-N": "Northern", + "SL-S": "Southern", + "SL-W": "Western Area", + "SM-02": "Chiesanuova", + "SM-04": "Faetano", + "SM-07": "Citta di San Marino", + "SM-09": "Serravalle", + "SN-DB": "Diourbel", + "SN-DK": "Dakar", + "SN-FK": "Fatick", + "SN-KA": "Kaffrine", + "SN-KD": "Kolda", + "SN-KE": "Kedougou", + "SN-KL": "Kaolack", + "SN-LG": "Louga", + "SN-MT": "Matam", + "SN-SE": "Sedhiou", + "SN-SL": "Saint-Louis", + "SN-TC": "Tambacounda", + "SN-TH": "Thies", + "SN-ZG": "Ziguinchor", + "SO-AW": "Awdal", + "SO-BN": "Banaadir", + "SO-BR": "Bari", + "SO-BY": "Bay", + "SO-GA": "Galguduud", + "SO-HI": "Hiiraan", + "SO-JH": "Jubbada Hoose", + "SO-MU": "Mudug", + "SO-NU": "Nugaal", + "SO-SA": "Sanaag", + "SO-SH": "Shabeellaha Hoose", + "SO-SO": "Sool", + "SO-TO": "Togdheer", + "SO-WO": "Woqooyi Galbeed", + "SR-BR": "Brokopondo", + "SR-CM": "Commewijne", + "SR-CR": "Coronie", + "SR-NI": "Nickerie", + "SR-PM": "Paramaribo", + "SR-SA": "Saramacca", + "SR-SI": "Sipaliwini", + "SR-WA": "Wanica", + "SS-BN": "Northern Bahr el Ghazal", + "SS-EC": "Central Equatoria", + "SS-EE": "Eastern Equatoria", + "SS-EW": "Western Equatoria", + "SS-NU": "Upper Nile", + "SS-UY": "Unity", + "ST-01": "Agua Grande", + "SV-AH": "Ahuachapan", + "SV-CA": "Cabanas", + "SV-CH": "Chalatenango", + "SV-CU": "Cuscatlan", + "SV-LI": "La Libertad", + "SV-MO": "Morazan", + "SV-PA": "La Paz", + "SV-SA": "Santa Ana", + "SV-SM": "San Miguel", + "SV-SO": "Sonsonate", + "SV-SS": "San Salvador", + "SV-SV": "San Vicente", + "SV-UN": "La Union", + "SV-US": "Usulutan", + "SY-DI": "Dimashq", + "SY-DR": "Dar'a", + "SY-DY": "Dayr az Zawr", + "SY-HA": "Al Hasakah", + "SY-HI": "Hims", + "SY-HL": "Halab", + "SY-HM": "Hamah", + "SY-LA": "Al Ladhiqiyah", + "SY-QU": "Al Qunaytirah", + "SY-RA": "Ar Raqqah", + "SY-RD": "Rif Dimashq", + "SY-SU": "As Suwayda'", + "SY-TA": "Tartus", + "SZ-HH": "Hhohho", + "SZ-LU": "Lubombo", + "SZ-MA": "Manzini", + "SZ-SH": "Shiselweni", + "TD-BG": "Bahr el Ghazal", + "TD-CB": "Chari-Baguirmi", + "TD-LC": "Lac", + "TD-ND": "Ville de Ndjamena", + "TD-OD": "Ouaddai", + "TD-SI": "Sila", + "TG-C": "Centrale", + "TG-K": "Kara", + "TG-M": "Maritime", + "TG-P": "Plateaux", + "TG-S": "Savanes", + "TH-10": "Krung Thep Maha Nakhon", + "TH-11": "Samut Prakan", + "TH-12": "Nonthaburi", + "TH-13": "Pathum Thani", + "TH-14": "Phra Nakhon Si Ayutthaya", + "TH-15": "Ang Thong", + "TH-16": "Lop Buri", + "TH-17": "Sing Buri", + "TH-18": "Chai Nat", + "TH-19": "Saraburi", + "TH-20": "Chon Buri", + "TH-21": "Rayong", + "TH-22": "Chanthaburi", + "TH-23": "Trat", + "TH-24": "Chachoengsao", + "TH-25": "Prachin Buri", + "TH-26": "Nakhon Nayok", + "TH-27": "Sa Kaeo", + "TH-30": "Nakhon Ratchasima", + "TH-31": "Buri Ram", + "TH-32": "Surin", + "TH-33": "Si Sa Ket", + "TH-34": "Ubon Ratchathani", + "TH-35": "Yasothon", + "TH-36": "Chaiyaphum", + "TH-37": "Amnat Charoen", + "TH-38": "Bueng Kan", + "TH-39": "Nong Bua Lam Phu", + "TH-40": "Khon Kaen", + "TH-41": "Udon Thani", + "TH-42": "Loei", + "TH-43": "Nong Khai", + "TH-44": "Maha Sarakham", + "TH-45": "Roi Et", + "TH-46": "Kalasin", + "TH-47": "Sakon Nakhon", + "TH-48": "Nakhon Phanom", + "TH-49": "Mukdahan", + "TH-50": "Chiang Mai", + "TH-51": "Lamphun", + "TH-52": "Lampang", + "TH-53": "Uttaradit", + "TH-54": "Phrae", + "TH-55": "Nan", + "TH-56": "Phayao", + "TH-57": "Chiang Rai", + "TH-58": "Mae Hong Son", + "TH-60": "Nakhon Sawan", + "TH-61": "Uthai Thani", + "TH-62": "Kamphaeng Phet", + "TH-63": "Tak", + "TH-64": "Sukhothai", + "TH-65": "Phitsanulok", + "TH-66": "Phichit", + "TH-67": "Phetchabun", + "TH-70": "Ratchaburi", + "TH-71": "Kanchanaburi", + "TH-72": "Suphan Buri", + "TH-73": "Nakhon Pathom", + "TH-74": "Samut Sakhon", + "TH-75": "Samut Songkhram", + "TH-76": "Phetchaburi", + "TH-77": "Prachuap Khiri Khan", + "TH-80": "Nakhon Si Thammarat", + "TH-81": "Krabi", + "TH-82": "Phangnga", + "TH-83": "Phuket", + "TH-84": "Surat Thani", + "TH-85": "Ranong", + "TH-86": "Chumphon", + "TH-90": "Songkhla", + "TH-91": "Satun", + "TH-92": "Trang", + "TH-93": "Phatthalung", + "TH-94": "Pattani", + "TH-95": "Yala", + "TH-96": "Narathiwat", + "TJ-DU": "Dushanbe", + "TJ-GB": "Kuhistoni Badakhshon", + "TJ-KT": "Khatlon", + "TJ-RA": "Nohiyahoi Tobei Jumhuri", + "TJ-SU": "Sughd", + "TL-AN": "Ainaro", + "TL-CO": "Cova Lima", + "TL-DI": "Dili", + "TL-LI": "Liquica", + "TM-A": "Ahal", + "TM-B": "Balkan", + "TM-D": "Dasoguz", + "TM-L": "Lebap", + "TM-M": "Mary", + "TN-11": "Tunis", + "TN-12": "L'Ariana", + "TN-13": "Ben Arous", + "TN-14": "La Manouba", + "TN-21": "Nabeul", + "TN-22": "Zaghouan", + "TN-23": "Bizerte", + "TN-31": "Beja", + "TN-32": "Jendouba", + "TN-33": "Le Kef", + "TN-34": "Siliana", + "TN-41": "Kairouan", + "TN-42": "Kasserine", + "TN-43": "Sidi Bouzid", + "TN-51": "Sousse", + "TN-52": "Monastir", + "TN-53": "Mahdia", + "TN-61": "Sfax", + "TN-71": "Gafsa", + "TN-72": "Tozeur", + "TN-73": "Kebili", + "TN-81": "Gabes", + "TN-82": "Medenine", + "TN-83": "Tataouine", + "TO-01": "'Eua", + "TO-02": "Ha'apai", + "TO-03": "Niuas", + "TO-04": "Tongatapu", + "TO-05": "Vava'u", + "TR-01": "Adana", + "TR-02": "Adiyaman", + "TR-03": "Afyonkarahisar", + "TR-04": "Agri", + "TR-05": "Amasya", + "TR-06": "Ankara", + "TR-07": "Antalya", + "TR-08": "Artvin", + "TR-09": "Aydin", + "TR-10": "Balikesir", + "TR-11": "Bilecik", + "TR-12": "Bingol", + "TR-13": "Bitlis", + "TR-14": "Bolu", + "TR-15": "Burdur", + "TR-16": "Bursa", + "TR-17": "Canakkale", + "TR-18": "Cankiri", + "TR-19": "Corum", + "TR-20": "Denizli", + "TR-21": "Diyarbakir", + "TR-22": "Edirne", + "TR-23": "Elazig", + "TR-24": "Erzincan", + "TR-25": "Erzurum", + "TR-26": "Eskisehir", + "TR-27": "Gaziantep", + "TR-28": "Giresun", + "TR-29": "Gumushane", + "TR-30": "Hakkari", + "TR-31": "Hatay", + "TR-32": "Isparta", + "TR-33": "Mersin", + "TR-34": "Istanbul", + "TR-35": "Izmir", + "TR-36": "Kars", + "TR-37": "Kastamonu", + "TR-38": "Kayseri", + "TR-39": "Kirklareli", + "TR-40": "Kirsehir", + "TR-41": "Kocaeli", + "TR-42": "Konya", + "TR-43": "Kutahya", + "TR-44": "Malatya", + "TR-45": "Manisa", + "TR-46": "Kahramanmaras", + "TR-47": "Mardin", + "TR-48": "Mugla", + "TR-49": "Mus", + "TR-50": "Nevsehir", + "TR-51": "Nigde", + "TR-52": "Ordu", + "TR-53": "Rize", + "TR-54": "Sakarya", + "TR-55": "Samsun", + "TR-56": "Siirt", + "TR-57": "Sinop", + "TR-58": "Sivas", + "TR-59": "Tekirdag", + "TR-60": "Tokat", + "TR-61": "Trabzon", + "TR-62": "Tunceli", + "TR-63": "Sanliurfa", + "TR-64": "Usak", + "TR-65": "Van", + "TR-66": "Yozgat", + "TR-67": "Zonguldak", + "TR-68": "Aksaray", + "TR-69": "Bayburt", + "TR-70": "Karaman", + "TR-71": "Kirikkale", + "TR-72": "Batman", + "TR-73": "Sirnak", + "TR-74": "Bartin", + "TR-75": "Ardahan", + "TR-76": "Igdir", + "TR-77": "Yalova", + "TR-78": "Karabuk", + "TR-79": "Kilis", + "TR-80": "Osmaniye", + "TR-81": "Duzce", + "TT-ARI": "Arima", + "TT-CHA": "Chaguanas", + "TT-CTT": "Couva-Tabaquite-Talparo", + "TT-DMN": "Diego Martin", + "TT-MRC": "Mayaro-Rio Claro", + "TT-PED": "Penal-Debe", + "TT-POS": "Port of Spain", + "TT-PRT": "Princes Town", + "TT-PTF": "Point Fortin", + "TT-SFO": "San Fernando", + "TT-SGE": "Sangre Grande", + "TT-SIP": "Siparia", + "TT-SJL": "San Juan-Laventille", + "TT-TOB": "Tobago", + "TT-TUP": "Tunapuna-Piarco", + "TV-FUN": "Funafuti", + "TW-CHA": "Changhua", + "TW-CYQ": "Chiayi", + "TW-HSQ": "Hsinchu", + "TW-HUA": "Hualien", + "TW-ILA": "Yilan", + "TW-KEE": "Keelung", + "TW-KHH": "Kaohsiung", + "TW-KIN": "Kinmen", + "TW-LIE": "Lienchiang", + "TW-MIA": "Miaoli", + "TW-NAN": "Nantou", + "TW-NWT": "New Taipei", + "TW-PEN": "Penghu", + "TW-PIF": "Pingtung", + "TW-TAO": "Taoyuan", + "TW-TNN": "Tainan", + "TW-TPE": "Taipei", + "TW-TTT": "Taitung", + "TW-TXG": "Taichung", + "TW-YUN": "Yunlin", + "TZ-01": "Arusha", + "TZ-02": "Dar es Salaam", + "TZ-03": "Dodoma", + "TZ-04": "Iringa", + "TZ-05": "Kagera", + "TZ-06": "Kaskazini Pemba", + "TZ-07": "Kaskazini Unguja", + "TZ-08": "Kigoma", + "TZ-09": "Kilimanjaro", + "TZ-10": "Kusini Pemba", + "TZ-11": "Kusini Unguja", + "TZ-12": "Lindi", + "TZ-13": "Mara", + "TZ-14": "Mbeya", + "TZ-15": "Mjini Magharibi", + "TZ-16": "Morogoro", + "TZ-17": "Mtwara", + "TZ-18": "Mwanza", + "TZ-19": "Pwani", + "TZ-20": "Rukwa", + "TZ-21": "Ruvuma", + "TZ-22": "Shinyanga", + "TZ-23": "Singida", + "TZ-24": "Tabora", + "TZ-25": "Tanga", + "TZ-26": "Manyara", + "TZ-27": "Geita", + "TZ-28": "Katavi", + "TZ-29": "Njombe", + "TZ-30": "Simiyu", + "TZ-31": "Songwe", + "UA-05": "Vinnytska oblast", + "UA-07": "Volynska oblast", + "UA-09": "Luhanska oblast", + "UA-12": "Dnipropetrovska oblast", + "UA-14": "Donetska oblast", + "UA-18": "Zhytomyrska oblast", + "UA-21": "Zakarpatska oblast", + "UA-23": "Zaporizka oblast", + "UA-26": "Ivano-Frankivska oblast", + "UA-30": "Kyiv", + "UA-32": "Kyivska oblast", + "UA-35": "Kirovohradska oblast", + "UA-40": "Sevastopol", + "UA-43": "Avtonomna Respublika Krym", + "UA-46": "Lvivska oblast", + "UA-48": "Mykolaivska oblast", + "UA-51": "Odeska oblast", + "UA-53": "Poltavska oblast", + "UA-56": "Rivnenska oblast", + "UA-59": "Sumska oblast", + "UA-61": "Ternopilska oblast", + "UA-63": "Kharkivska oblast", + "UA-65": "Khersonska oblast", + "UA-68": "Khmelnytska oblast", + "UA-71": "Cherkaska oblast", + "UA-74": "Chernihivska oblast", + "UA-77": "Chernivetska oblast", + "UG-101": "Kalangala", + "UG-102": "Kampala", + "UG-103": "Kiboga", + "UG-104": "Luwero", + "UG-105": "Masaka", + "UG-106": "Mpigi", + "UG-107": "Mubende", + "UG-108": "Mukono", + "UG-109": "Nakasongola", + "UG-110": "Rakai", + "UG-111": "Sembabule", + "UG-112": "Kayunga", + "UG-113": "Wakiso", + "UG-114": "Lyantonde", + "UG-115": "Mityana", + "UG-116": "Nakaseke", + "UG-117": "Buikwe", + "UG-118": "Bukomansibi", + "UG-120": "Buvuma", + "UG-121": "Gomba", + "UG-122": "Kalungu", + "UG-123": "Kyankwanzi", + "UG-124": "Lwengo", + "UG-201": "Bugiri", + "UG-202": "Busia", + "UG-203": "Iganga", + "UG-204": "Jinja", + "UG-205": "Kamuli", + "UG-206": "Kapchorwa", + "UG-207": "Katakwi", + "UG-208": "Kumi", + "UG-209": "Mbale", + "UG-211": "Soroti", + "UG-212": "Tororo", + "UG-213": "Kaberamaido", + "UG-214": "Mayuge", + "UG-215": "Sironko", + "UG-218": "Bududa", + "UG-219": "Bukedea", + "UG-222": "Kaliro", + "UG-223": "Manafwa", + "UG-224": "Namutumba", + "UG-225": "Bulambuli", + "UG-226": "Buyende", + "UG-227": "Kibuku", + "UG-228": "Kween", + "UG-229": "Luuka", + "UG-230": "Namayingo", + "UG-301": "Adjumani", + "UG-302": "Apac", + "UG-303": "Arua", + "UG-304": "Gulu", + "UG-305": "Kitgum", + "UG-307": "Lira", + "UG-308": "Moroto", + "UG-309": "Moyo", + "UG-310": "Nebbi", + "UG-311": "Nakapiripirit", + "UG-312": "Pader", + "UG-313": "Yumbe", + "UG-314": "Abim", + "UG-318": "Kaabong", + "UG-319": "Koboko", + "UG-320": "Maracha", + "UG-321": "Oyam", + "UG-322": "Agago", + "UG-323": "Alebtong", + "UG-325": "Kole", + "UG-326": "Lamwo", + "UG-327": "Napak", + "UG-328": "Nwoya", + "UG-330": "Zombo", + "UG-401": "Bundibugyo", + "UG-402": "Bushenyi", + "UG-403": "Hoima", + "UG-404": "Kabale", + "UG-405": "Kabarole", + "UG-406": "Kasese", + "UG-407": "Kibaale", + "UG-408": "Kisoro", + "UG-409": "Masindi", + "UG-410": "Mbarara", + "UG-411": "Ntungamo", + "UG-412": "Rukungiri", + "UG-413": "Kamwenge", + "UG-414": "Kanungu", + "UG-415": "Kyenjojo", + "UG-417": "Ibanda", + "UG-418": "Isingiro", + "UG-419": "Kiruhura", + "UG-420": "Buhweju", + "UG-421": "Kiryandongo", + "UG-422": "Kyegegwa", + "UG-423": "Mitooma", + "UG-424": "Ntoroko", + "UG-425": "Rubirizi", + "UG-426": "Sheema", + "UM-95": "Palmyra Atoll", + "US-AK": "Alaska", + "US-AL": "Alabama", + "US-AR": "Arkansas", + "US-AZ": "Arizona", + "US-CA": "California", + "US-CO": "Colorado", + "US-CT": "Connecticut", + "US-DC": "District of Columbia", + "US-DE": "Delaware", + "US-FL": "Florida", + "US-GA": "Georgia", + "US-HI": "Hawaii", + "US-IA": "Iowa", + "US-ID": "Idaho", + "US-IL": "Illinois", + "US-IN": "Indiana", + "US-KS": "Kansas", + "US-KY": "Kentucky", + "US-LA": "Louisiana", + "US-MA": "Massachusetts", + "US-MD": "Maryland", + "US-ME": "Maine", + "US-MI": "Michigan", + "US-MN": "Minnesota", + "US-MO": "Missouri", + "US-MS": "Mississippi", + "US-MT": "Montana", + "US-NC": "North Carolina", + "US-ND": "North Dakota", + "US-NE": "Nebraska", + "US-NH": "New Hampshire", + "US-NJ": "New Jersey", + "US-NM": "New Mexico", + "US-NV": "Nevada", + "US-NY": "New York", + "US-OH": "Ohio", + "US-OK": "Oklahoma", + "US-OR": "Oregon", + "US-PA": "Pennsylvania", + "US-RI": "Rhode Island", + "US-SC": "South Carolina", + "US-SD": "South Dakota", + "US-TN": "Tennessee", + "US-TX": "Texas", + "US-UT": "Utah", + "US-VA": "Virginia", + "US-VT": "Vermont", + "US-WA": "Washington", + "US-WI": "Wisconsin", + "US-WV": "West Virginia", + "US-WY": "Wyoming", + "UY-AR": "Artigas", + "UY-CA": "Canelones", + "UY-CL": "Cerro Largo", + "UY-CO": "Colonia", + "UY-DU": "Durazno", + "UY-FD": "Florida", + "UY-FS": "Flores", + "UY-LA": "Lavalleja", + "UY-MA": "Maldonado", + "UY-MO": "Montevideo", + "UY-PA": "Paysandu", + "UY-RN": "Rio Negro", + "UY-RO": "Rocha", + "UY-RV": "Rivera", + "UY-SA": "Salto", + "UY-SJ": "San Jose", + "UY-SO": "Soriano", + "UY-TA": "Tacuarembo", + "UY-TT": "Treinta y Tres", + "UZ-AN": "Andijon", + "UZ-BU": "Buxoro", + "UZ-FA": "Farg'ona", + "UZ-JI": "Jizzax", + "UZ-NG": "Namangan", + "UZ-NW": "Navoiy", + "UZ-QA": "Qashqadaryo", + "UZ-QR": "Qoraqalpog'iston Respublikasi", + "UZ-SA": "Samarqand", + "UZ-SI": "Sirdaryo", + "UZ-SU": "Surxondaryo", + "UZ-TK": "Toshkent", + "UZ-XO": "Xorazm", + "VC-01": "Charlotte", + "VC-04": "Saint George", + "VC-05": "Saint Patrick", + "VC-06": "Grenadines", + "VE-A": "Distrito Capital", + "VE-B": "Anzoategui", + "VE-C": "Apure", + "VE-D": "Aragua", + "VE-E": "Barinas", + "VE-F": "Bolivar", + "VE-G": "Carabobo", + "VE-H": "Cojedes", + "VE-I": "Falcon", + "VE-J": "Guarico", + "VE-K": "Lara", + "VE-L": "Merida", + "VE-M": "Miranda", + "VE-N": "Monagas", + "VE-O": "Nueva Esparta", + "VE-P": "Portuguesa", + "VE-R": "Sucre", + "VE-S": "Tachira", + "VE-T": "Trujillo", + "VE-U": "Yaracuy", + "VE-V": "Zulia", + "VE-W": "Dependencias Federales", + "VE-X": "La Guaira", + "VE-Y": "Delta Amacuro", + "VE-Z": "Amazonas", + "VN-01": "Lai Chau", + "VN-02": "Lao Cai", + "VN-03": "Ha Giang", + "VN-04": "Cao Bang", + "VN-05": "Son La", + "VN-06": "Yen Bai", + "VN-07": "Tuyen Quang", + "VN-09": "Lang Son", + "VN-13": "Quang Ninh", + "VN-14": "Hoa Binh", + "VN-18": "Ninh Binh", + "VN-20": "Thai Binh", + "VN-21": "Thanh Hoa", + "VN-22": "Nghe An", + "VN-23": "Ha Tinh", + "VN-24": "Quang Binh", + "VN-25": "Quang Tri", + "VN-26": "Thua Thien-Hue", + "VN-27": "Quang Nam", + "VN-28": "Kon Tum", + "VN-29": "Quang Ngai", + "VN-30": "Gia Lai", + "VN-31": "Binh Dinh", + "VN-32": "Phu Yen", + "VN-33": "Dak Lak", + "VN-34": "Khanh Hoa", + "VN-35": "Lam Dong", + "VN-36": "Ninh Thuan", + "VN-37": "Tay Ninh", + "VN-39": "Dong Nai", + "VN-40": "Binh Thuan", + "VN-41": "Long An", + "VN-43": "Ba Ria - Vung Tau", + "VN-44": "An Giang", + "VN-45": "Dong Thap", + "VN-46": "Tien Giang", + "VN-47": "Kien Giang", + "VN-49": "Vinh Long", + "VN-50": "Ben Tre", + "VN-51": "Tra Vinh", + "VN-52": "Soc Trang", + "VN-53": "Bac Kan", + "VN-54": "Bac Giang", + "VN-55": "Bac Lieu", + "VN-56": "Bac Ninh", + "VN-57": "Binh Duong", + "VN-58": "Binh Phuoc", + "VN-59": "Ca Mau", + "VN-61": "Hai Duong", + "VN-63": "Ha Nam", + "VN-66": "Hung Yen", + "VN-67": "Nam Dinh", + "VN-68": "Phu Tho", + "VN-69": "Thai Nguyen", + "VN-70": "Vinh Phuc", + "VN-71": "Dien Bien", + "VN-72": "Dak Nong", + "VN-73": "Hau Giang", + "VN-CT": "Can Tho", + "VN-DN": "Da Nang", + "VN-HN": "Ha Noi", + "VN-HP": "Hai Phong", + "VN-SG": "Ho Chi Minh", + "VU-SEE": "Shefa", + "VU-TAE": "Tafea", + "VU-TOB": "Torba", + "WF-SG": "Sigave", + "WF-UV": "Uvea", + "WS-AT": "Atua", + "WS-FA": "Fa'asaleleaga", + "WS-GI": "Gagaifomauga", + "WS-TU": "Tuamasaga", + "YE-AD": "'Adan", + "YE-AM": "'Amran", + "YE-BA": "Al Bayda'", + "YE-DA": "Ad Dali'", + "YE-DH": "Dhamar", + "YE-HD": "Hadramawt", + "YE-HJ": "Hajjah", + "YE-HU": "Al Hudaydah", + "YE-IB": "Ibb", + "YE-JA": "Al Jawf", + "YE-LA": "Lahij", + "YE-MA": "Ma'rib", + "YE-MW": "Al Mahwit", + "YE-SA": "Amanat al 'Asimah", + "YE-SD": "Sa'dah", + "YE-SH": "Shabwah", + "YE-SN": "San'a'", + "YE-TA": "Ta'izz", + "ZA-EC": "Eastern Cape", + "ZA-FS": "Free State", + "ZA-GP": "Gauteng", + "ZA-KZN": "Kwazulu-Natal", + "ZA-LP": "Limpopo", + "ZA-MP": "Mpumalanga", + "ZA-NC": "Northern Cape", + "ZA-NW": "North-West", + "ZA-WC": "Western Cape", + "ZM-01": "Western", + "ZM-02": "Central", + "ZM-03": "Eastern", + "ZM-04": "Luapula", + "ZM-05": "Northern", + "ZM-06": "North-Western", + "ZM-07": "Southern", + "ZM-08": "Copperbelt", + "ZM-09": "Lusaka", + "ZM-10": "Muchinga", + "ZW-BU": "Bulawayo", + "ZW-HA": "Harare", + "ZW-MA": "Manicaland", + "ZW-MC": "Mashonaland Central", + "ZW-ME": "Mashonaland East", + "ZW-MI": "Midlands", + "ZW-MN": "Matabeleland North", + "ZW-MS": "Matabeleland South", + "ZW-MV": "Masvingo", + "ZW-MW": "Mashonaland West" +} diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png new file mode 100644 index 0000000..ae4fd79 Binary files /dev/null and b/public/mstile-150x150.png differ diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..1f53798 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: / diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg new file mode 100644 index 0000000..2d116eb --- /dev/null +++ b/public/safari-pinned-tab.svg @@ -0,0 +1 @@ +Created by potrace 1.11, written by Peter Selinger 2001-2013 \ No newline at end of file diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..fa99de7 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/rollup.tracker.config.js b/rollup.tracker.config.js new file mode 100644 index 0000000..202db36 --- /dev/null +++ b/rollup.tracker.config.js @@ -0,0 +1,20 @@ +import 'dotenv/config'; +import replace from '@rollup/plugin-replace'; +import terser from '@rollup/plugin-terser'; + +export default { + input: 'src/tracker/index.js', + output: { + file: 'public/script.js', + format: 'iife', + }, + plugins: [ + replace({ + __COLLECT_API_HOST__: process.env.COLLECT_API_HOST || '', + __COLLECT_API_ENDPOINT__: process.env.COLLECT_API_ENDPOINT || '/api/send', + delimiters: ['', ''], + preventAssignment: true, + }), + terser({ compress: { evaluate: false } }), + ], +}; diff --git a/scripts/build-geo.js b/scripts/build-geo.js new file mode 100644 index 0000000..a83caa6 --- /dev/null +++ b/scripts/build-geo.js @@ -0,0 +1,108 @@ +/* eslint-disable no-console */ +import 'dotenv/config'; +import fs from 'node:fs'; +import path from 'node:path'; +import https from 'https'; +import tar from 'tar'; +import zlib from 'zlib'; + +if (process.env.VERCEL && !process.env.BUILD_GEO) { + console.log('Vercel environment detected. Skipping geo setup.'); + process.exit(0); +} + +const db = 'GeoLite2-City'; + +// Support custom URL via environment variable +let url = process.env.GEO_DATABASE_URL; + +// Fallback to default URLs if not provided +if (!url) { + if (process.env.MAXMIND_LICENSE_KEY) { + url = + `https://download.maxmind.com/app/geoip_download` + + `?edition_id=${db}&license_key=${process.env.MAXMIND_LICENSE_KEY}&suffix=tar.gz`; + } else { + url = `https://raw.githubusercontent.com/GitSquared/node-geolite2-redist/master/redist/${db}.tar.gz`; + } +} + +const dest = path.resolve(process.cwd(), 'geo'); + +if (!fs.existsSync(dest)) { + fs.mkdirSync(dest); +} + +// Check if URL points to a direct .mmdb file (already extracted) +const isDirectMmdb = url.endsWith('.mmdb'); + +// Download handler for compressed tar.gz files +const downloadCompressed = url => + new Promise(resolve => { + https.get(url, res => { + resolve(res.pipe(zlib.createGunzip({})).pipe(tar.t())); + }); + }); + +// Download handler for direct .mmdb files +const downloadDirect = (url, originalUrl) => + new Promise((resolve, reject) => { + https.get(url, res => { + // Follow redirects + if (res.statusCode === 301 || res.statusCode === 302) { + downloadDirect(res.headers.location, originalUrl || url) + .then(resolve) + .catch(reject); + return; + } + + const filename = path.join(dest, path.basename(originalUrl || url)); + const fileStream = fs.createWriteStream(filename); + + res.pipe(fileStream); + + fileStream.on('finish', () => { + fileStream.close(); + console.log('Saved geo database:', filename); + resolve(); + }); + + fileStream.on('error', e => { + reject(e); + }); + }); + }); + +// Execute download based on file type +if (isDirectMmdb) { + downloadDirect(url).catch(e => { + console.error('Failed to download geo database:', e); + process.exit(1); + }); +} else { + downloadCompressed(url) + .then( + res => + new Promise((resolve, reject) => { + res.on('entry', entry => { + if (entry.path.endsWith('.mmdb')) { + const filename = path.join(dest, path.basename(entry.path)); + entry.pipe(fs.createWriteStream(filename)); + + console.log('Saved geo database:', filename); + } + }); + + res.on('error', e => { + reject(e); + }); + res.on('finish', () => { + resolve(); + }); + }), + ) + .catch(e => { + console.error('Failed to download geo database:', e); + process.exit(1); + }); +} diff --git a/scripts/build-prisma-client.js b/scripts/build-prisma-client.js new file mode 100644 index 0000000..b5edc3d --- /dev/null +++ b/scripts/build-prisma-client.js @@ -0,0 +1,18 @@ +import esbuild from 'esbuild'; + +esbuild + .build({ + entryPoints: ['src/generated/prisma/client.ts'], // Adjust this to your entry file + bundle: true, // Bundle all files into one (optional) + outfile: 'generated/prisma/client.js', // Output file + platform: 'node', // For Node.js compatibility + target: 'es2020', // Target version of Node.js + format: 'esm', // Use ESM format + sourcemap: true, // Optional: generates source maps for debugging + external: [ + '../src/generated/prisma', // exclude generated client + '@prisma/client', // just in case + '.prisma/client', + ], // Optional: Exclude external dependencies from bundling + }) + .catch(() => process.exit(1)); diff --git a/scripts/check-db.js b/scripts/check-db.js new file mode 100644 index 0000000..68374f6 --- /dev/null +++ b/scripts/check-db.js @@ -0,0 +1,90 @@ +/* eslint-disable no-console */ +import 'dotenv/config'; +import { execSync } from 'node:child_process'; +import { PrismaPg } from '@prisma/adapter-pg'; +import chalk from 'chalk'; +import semver from 'semver'; +import { PrismaClient } from '../generated/prisma/client.js'; + +const MIN_VERSION = '9.4.0'; + +if (process.env.SKIP_DB_CHECK) { + console.log('Skipping database check.'); + process.exit(0); +} + +const url = new URL(process.env.DATABASE_URL); + +const adapter = new PrismaPg( + { connectionString: url.toString() }, + { schema: url.searchParams.get('schema') }, +); + +const prisma = new PrismaClient({ adapter }); + +function success(msg) { + console.log(chalk.greenBright(`✓ ${msg}`)); +} + +function error(msg) { + console.log(chalk.redBright(`✗ ${msg}`)); +} + +async function checkEnv() { + if (!process.env.DATABASE_URL) { + throw new Error('DATABASE_URL is not defined.'); + } else { + success('DATABASE_URL is defined.'); + } + + if (process.env.REDIS_URL) { + success('REDIS_URL is defined.'); + } +} + +async function checkConnection() { + try { + await prisma.$connect(); + + success('Database connection successful.'); + } catch (e) { + throw new Error('Unable to connect to the database: ' + e.message); + } +} + +async function checkDatabaseVersion() { + const query = await prisma.$queryRaw`select version() as version`; + const version = semver.valid(semver.coerce(query[0].version)); + + if (semver.lt(version, MIN_VERSION)) { + throw new Error( + `Database version is not compatible. Please upgrade to ${MIN_VERSION} or greater.`, + ); + } + + success('Database version check successful.'); +} + +async function applyMigration() { + if (!process.env.SKIP_DB_MIGRATION) { + console.log(execSync('prisma migrate deploy').toString()); + + success('Database is up to date.'); + } +} + +(async () => { + let err = false; + for (const fn of [checkEnv, checkConnection, checkDatabaseVersion, applyMigration]) { + try { + await fn(); + } catch (e) { + error(e.message); + err = true; + } finally { + if (err) { + process.exit(1); + } + } + } +})(); diff --git a/scripts/check-env.js b/scripts/check-env.js new file mode 100644 index 0000000..79c0984 --- /dev/null +++ b/scripts/check-env.js @@ -0,0 +1,27 @@ +/* eslint-disable no-console */ +import 'dotenv/config'; + +function checkMissing(vars) { + const missing = vars.reduce((arr, key) => { + if (!process.env[key]) { + arr.push(key); + } + return arr; + }, []); + + if (missing.length) { + console.log(`The following environment variables are not defined:`); + for (const item of missing) { + console.log(' - ', item); + } + process.exit(1); + } +} + +if (!process.env.SKIP_DB_CHECK && !process.env.DATABASE_TYPE) { + checkMissing(['DATABASE_URL']); +} + +if (process.env.CLOUD_URL) { + checkMissing(['CLOUD_URL', 'CLICKHOUSE_URL', 'REDIS_URL']); +} diff --git a/scripts/download-country-names.js b/scripts/download-country-names.js new file mode 100644 index 0000000..937fb22 --- /dev/null +++ b/scripts/download-country-names.js @@ -0,0 +1,59 @@ +/* eslint-disable no-console */ + +import path from 'node:path'; +import chalk from 'chalk'; +import fs from 'fs-extra'; +import https from 'https'; + +const src = path.resolve(process.cwd(), 'src/lang'); +const dest = path.resolve(process.cwd(), 'public/intl/country'); +const files = fs.readdirSync(src); + +const getUrl = locale => + `https://raw.githubusercontent.com/umpirsky/country-list/master/data/${locale}/country.json`; + +const asyncForEach = async (array, callback) => { + for (let index = 0; index < array.length; index++) { + await callback(array[index], index, array); + } +}; + +const downloadFile = (url, filepath) => + new Promise(resolve => { + https + .get(url, res => { + if (res.statusCode === 200) { + const fileStream = fs.createWriteStream(filepath); + res.pipe(fileStream); + fileStream.on('finish', () => { + fileStream.close(); + console.log('Downloaded', chalk.greenBright('->'), filepath); + resolve(); + }); + } else { + res.resume(); + console.warn(`Warning: ${url} returned ${res.statusCode}`); + resolve(); + } + }) + .on('error', err => { + console.error(`Error downloading ${url}:`, err.message); + resolve(); + }); + }); + +const download = async files => { + await fs.ensureDir(dest); + + await asyncForEach(files, async file => { + const locale = file.replace('-', '_').replace('.json', ''); + + const filename = path.join(dest, file); + if (!fs.existsSync(filename)) { + const url = getUrl(locale); + await downloadFile(url, filename); + } + }); +}; + +download(files); diff --git a/scripts/download-language-names.js b/scripts/download-language-names.js new file mode 100644 index 0000000..d3db601 --- /dev/null +++ b/scripts/download-language-names.js @@ -0,0 +1,59 @@ +/* eslint-disable no-console */ + +import path from 'node:path'; +import chalk from 'chalk'; +import fs from 'fs-extra'; +import https from 'https'; + +const src = path.resolve(process.cwd(), 'src/lang'); +const dest = path.resolve(process.cwd(), 'public/intl/language'); +const files = fs.readdirSync(src); + +const getUrl = locale => + `https://raw.githubusercontent.com/umpirsky/language-list/master/data/${locale}/language.json`; + +const asyncForEach = async (array, callback) => { + for (let index = 0; index < array.length; index++) { + await callback(array[index], index, array); + } +}; + +const downloadFile = (url, filepath) => + new Promise(resolve => { + https + .get(url, res => { + if (res.statusCode === 200) { + const fileStream = fs.createWriteStream(filepath); + res.pipe(fileStream); + fileStream.on('finish', () => { + fileStream.close(); + console.log('Downloaded', chalk.greenBright('->'), filepath); + resolve(); + }); + } else { + res.resume(); + console.warn(`Warning: ${url} returned ${res.statusCode}`); + resolve(); + } + }) + .on('error', err => { + console.error(`Error downloading ${url}:`, err.message); + resolve(); + }); + }); + +const download = async files => { + await fs.ensureDir(dest); + + await asyncForEach(files, async file => { + const locale = file.replace('-', '_').replace('.json', ''); + + const filename = path.join(dest, file); + if (!fs.existsSync(filename)) { + const url = getUrl(locale); + await downloadFile(url, filename); + } + }); +}; + +download(files); diff --git a/scripts/format-lang.js b/scripts/format-lang.js new file mode 100644 index 0000000..95c390e --- /dev/null +++ b/scripts/format-lang.js @@ -0,0 +1,35 @@ +import path from 'node:path'; +import del from 'del'; +import fs from 'fs-extra'; +import { createRequire } from 'module'; + +const require = createRequire(import.meta.url); +const src = path.resolve(process.cwd(), 'src/lang'); +const dest = path.resolve(process.cwd(), 'build/messages'); +const files = fs.readdirSync(src); + +del.sync([path.join(dest)]); + +/* +This script takes the files from the `lang` folder and formats them into +the format that format-js expects. + */ +async function run() { + await fs.ensureDir(dest); + + files.forEach(file => { + const lang = require(path.resolve(process.cwd(), `src/lang/${file}`)); + const keys = Object.keys(lang).sort(); + + const formatted = keys.reduce((obj, key) => { + obj[key] = { defaultMessage: lang[key] }; + return obj; + }, {}); + + const json = JSON.stringify(formatted, null, 2); + + fs.writeFileSync(path.resolve(dest, file), json); + }); +} + +run(); diff --git a/scripts/merge-messages.js b/scripts/merge-messages.js new file mode 100644 index 0000000..29abc53 --- /dev/null +++ b/scripts/merge-messages.js @@ -0,0 +1,43 @@ +/* eslint-disable no-console */ +import fs from 'node:fs'; +import path from 'node:path'; +import { createRequire } from 'module'; +import prettier from 'prettier'; + +const require = createRequire(import.meta.url); + +const messages = require('../build/extracted-messages.json'); +const dest = path.resolve(process.cwd(), 'src/lang'); +const files = fs.readdirSync(dest); +const keys = Object.keys(messages).sort(); + +/* +This script takes extracted messages and merges them +with the existing files under `lang`. Any newly added +keys will be printed to the console. + */ +files.forEach(file => { + const lang = require(path.resolve(process.cwd(), `src/lang/${file}`)); + + console.log(`Merging ${file}`); + + const merged = keys.reduce((obj, key) => { + const message = lang[key]; + + if (file === 'en-US.json') { + obj[key] = messages[key].defaultMessage; + } else { + obj[key] = message || messages[key].defaultMessage; + } + + if (!message) { + console.log(`* Added key ${key}`); + } + + return obj; + }, {}); + + const json = prettier.format(JSON.stringify(merged), { parser: 'json' }); + + fs.writeFileSync(path.resolve(dest, file), json); +}); diff --git a/scripts/postbuild.js b/scripts/postbuild.js new file mode 100644 index 0000000..2a4404c --- /dev/null +++ b/scripts/postbuild.js @@ -0,0 +1,10 @@ +import 'dotenv/config'; +import { sendTelemetry } from './telemetry.js'; + +async function run() { + if (!process.env.DISABLE_TELEMETRY) { + await sendTelemetry('build'); + } +} + +run(); diff --git a/scripts/seed-data.ts b/scripts/seed-data.ts new file mode 100644 index 0000000..82a0564 --- /dev/null +++ b/scripts/seed-data.ts @@ -0,0 +1,121 @@ +#!/usr/bin/env node +/* eslint-disable no-console */ + +/** + * Umami Sample Data Generator + * + * Generates realistic analytics data for local development and testing. + * Creates two demo websites: + * - Demo Blog: Low traffic (~100 sessions/month) + * - Demo SaaS: Average traffic (~500 sessions/day) + * + * Usage: + * npm run seed-data # Generate 30 days of data + * npm run seed-data -- --days 90 # Generate 90 days of data + * npm run seed-data -- --clear # Clear existing demo data first + * npm run seed-data -- --verbose # Show detailed progress + */ + +import { seed, type SeedConfig } from './seed/index.js'; + +function parseArgs(): SeedConfig { + const args = process.argv.slice(2); + + const config: SeedConfig = { + days: 30, + clear: false, + verbose: false, + }; + + for (let i = 0; i < args.length; i++) { + const arg = args[i]; + + if (arg === '--days' && args[i + 1]) { + config.days = parseInt(args[i + 1], 10); + if (isNaN(config.days) || config.days < 1) { + console.error('Error: --days must be a positive integer'); + process.exit(1); + } + i++; + } else if (arg === '--clear') { + config.clear = true; + } else if (arg === '--verbose' || arg === '-v') { + config.verbose = true; + } else if (arg === '--help' || arg === '-h') { + printHelp(); + process.exit(0); + } else if (arg.startsWith('--days=')) { + config.days = parseInt(arg.split('=')[1], 10); + if (isNaN(config.days) || config.days < 1) { + console.error('Error: --days must be a positive integer'); + process.exit(1); + } + } + } + + return config; +} + +function printHelp(): void { + console.log(` +Umami Sample Data Generator + +Generates realistic analytics data for local development and testing. + +Usage: + npm run seed-data [options] + +Options: + --days Number of days of data to generate (default: 30) + --clear Clear existing demo data before generating + --verbose, -v Show detailed progress + --help, -h Show this help message + +Examples: + npm run seed-data # Generate 30 days of data + npm run seed-data -- --days 90 # Generate 90 days of data + npm run seed-data -- --clear # Clear existing demo data first + npm run seed-data -- --days 7 -v # Generate 7 days with verbose output + +Generated Sites: + - Demo Blog: Low traffic (~90 sessions/month) + - Demo SaaS: Average traffic (~500 sessions/day) with revenue tracking + +Note: + This script is blocked from running in production environments + (NODE_ENV=production or cloud platforms like Vercel/Netlify/Railway). +`); +} + +function checkEnvironment(): void { + const nodeEnv = process.env.NODE_ENV; + + if (nodeEnv === 'production') { + console.error('\nError: seed-data cannot run in production environment.'); + console.error('This script is only for local development and testing.\n'); + process.exit(1); + } + + if (process.env.VERCEL || process.env.NETLIFY || process.env.RAILWAY_ENVIRONMENT) { + console.error('\nError: seed-data cannot run in cloud environments.'); + console.error('This script is only for local development and testing.\n'); + process.exit(1); + } +} + +async function main(): Promise { + console.log('\nUmami Sample Data Generator\n'); + + checkEnvironment(); + + const config = parseArgs(); + + try { + await seed(config); + } catch (error) { + console.error('\nError generating seed data:', error); + process.exit(1); + } +} + +main(); diff --git a/scripts/seed/distributions/devices.ts b/scripts/seed/distributions/devices.ts new file mode 100644 index 0000000..9d8b8c0 --- /dev/null +++ b/scripts/seed/distributions/devices.ts @@ -0,0 +1,80 @@ +import { weightedRandom, pickRandom, type WeightedOption } from '../utils.js'; + +export type DeviceType = 'desktop' | 'mobile' | 'tablet'; + +const deviceWeights: WeightedOption[] = [ + { value: 'desktop', weight: 0.55 }, + { value: 'mobile', weight: 0.4 }, + { value: 'tablet', weight: 0.05 }, +]; + +const browsersByDevice: Record[]> = { + desktop: [ + { value: 'Chrome', weight: 0.65 }, + { value: 'Safari', weight: 0.12 }, + { value: 'Firefox', weight: 0.1 }, + { value: 'Edge', weight: 0.1 }, + { value: 'Opera', weight: 0.03 }, + ], + mobile: [ + { value: 'Chrome', weight: 0.55 }, + { value: 'Safari', weight: 0.35 }, + { value: 'Samsung', weight: 0.05 }, + { value: 'Firefox', weight: 0.03 }, + { value: 'Opera', weight: 0.02 }, + ], + tablet: [ + { value: 'Safari', weight: 0.6 }, + { value: 'Chrome', weight: 0.35 }, + { value: 'Firefox', weight: 0.05 }, + ], +}; + +const osByDevice: Record[]> = { + desktop: [ + { value: 'Windows 10', weight: 0.5 }, + { value: 'Mac OS', weight: 0.3 }, + { value: 'Linux', weight: 0.12 }, + { value: 'Chrome OS', weight: 0.05 }, + { value: 'Windows 11', weight: 0.03 }, + ], + mobile: [ + { value: 'iOS', weight: 0.45 }, + { value: 'Android', weight: 0.55 }, + ], + tablet: [ + { value: 'iOS', weight: 0.75 }, + { value: 'Android', weight: 0.25 }, + ], +}; + +const screensByDevice: Record = { + desktop: [ + '1920x1080', + '2560x1440', + '1366x768', + '1440x900', + '3840x2160', + '1536x864', + '1680x1050', + '2560x1080', + ], + mobile: ['390x844', '414x896', '375x812', '360x800', '428x926', '393x873', '412x915', '360x780'], + tablet: ['1024x768', '768x1024', '834x1194', '820x1180', '810x1080', '800x1280'], +}; + +export interface DeviceInfo { + device: DeviceType; + browser: string; + os: string; + screen: string; +} + +export function getRandomDevice(): DeviceInfo { + const device = weightedRandom(deviceWeights); + const browser = weightedRandom(browsersByDevice[device]); + const os = weightedRandom(osByDevice[device]); + const screen = pickRandom(screensByDevice[device]); + + return { device, browser, os, screen }; +} diff --git a/scripts/seed/distributions/geographic.ts b/scripts/seed/distributions/geographic.ts new file mode 100644 index 0000000..ba6ebae --- /dev/null +++ b/scripts/seed/distributions/geographic.ts @@ -0,0 +1,144 @@ +import { weightedRandom, pickRandom, type WeightedOption } from '../utils.js'; + +interface GeoLocation { + country: string; + region: string; + city: string; +} + +const countryWeights: WeightedOption[] = [ + { value: 'US', weight: 0.35 }, + { value: 'GB', weight: 0.08 }, + { value: 'DE', weight: 0.06 }, + { value: 'FR', weight: 0.05 }, + { value: 'CA', weight: 0.04 }, + { value: 'AU', weight: 0.03 }, + { value: 'IN', weight: 0.08 }, + { value: 'BR', weight: 0.04 }, + { value: 'JP', weight: 0.03 }, + { value: 'NL', weight: 0.02 }, + { value: 'ES', weight: 0.02 }, + { value: 'IT', weight: 0.02 }, + { value: 'PL', weight: 0.02 }, + { value: 'SE', weight: 0.01 }, + { value: 'MX', weight: 0.02 }, + { value: 'KR', weight: 0.02 }, + { value: 'SG', weight: 0.01 }, + { value: 'ID', weight: 0.02 }, + { value: 'PH', weight: 0.01 }, + { value: 'TH', weight: 0.01 }, + { value: 'VN', weight: 0.01 }, + { value: 'RU', weight: 0.02 }, + { value: 'UA', weight: 0.01 }, + { value: 'ZA', weight: 0.01 }, + { value: 'NG', weight: 0.01 }, +]; + +const regionsByCountry: Record = { + US: [ + { region: 'CA', city: 'San Francisco' }, + { region: 'CA', city: 'Los Angeles' }, + { region: 'NY', city: 'New York' }, + { region: 'TX', city: 'Austin' }, + { region: 'TX', city: 'Houston' }, + { region: 'WA', city: 'Seattle' }, + { region: 'IL', city: 'Chicago' }, + { region: 'MA', city: 'Boston' }, + { region: 'CO', city: 'Denver' }, + { region: 'GA', city: 'Atlanta' }, + { region: 'FL', city: 'Miami' }, + { region: 'PA', city: 'Philadelphia' }, + ], + GB: [ + { region: 'ENG', city: 'London' }, + { region: 'ENG', city: 'Manchester' }, + { region: 'ENG', city: 'Birmingham' }, + { region: 'SCT', city: 'Edinburgh' }, + { region: 'ENG', city: 'Bristol' }, + ], + DE: [ + { region: 'BE', city: 'Berlin' }, + { region: 'BY', city: 'Munich' }, + { region: 'HH', city: 'Hamburg' }, + { region: 'HE', city: 'Frankfurt' }, + { region: 'NW', city: 'Cologne' }, + ], + FR: [ + { region: 'IDF', city: 'Paris' }, + { region: 'ARA', city: 'Lyon' }, + { region: 'PAC', city: 'Marseille' }, + { region: 'OCC', city: 'Toulouse' }, + ], + CA: [ + { region: 'ON', city: 'Toronto' }, + { region: 'BC', city: 'Vancouver' }, + { region: 'QC', city: 'Montreal' }, + { region: 'AB', city: 'Calgary' }, + ], + AU: [ + { region: 'NSW', city: 'Sydney' }, + { region: 'VIC', city: 'Melbourne' }, + { region: 'QLD', city: 'Brisbane' }, + { region: 'WA', city: 'Perth' }, + ], + IN: [ + { region: 'MH', city: 'Mumbai' }, + { region: 'KA', city: 'Bangalore' }, + { region: 'DL', city: 'New Delhi' }, + { region: 'TN', city: 'Chennai' }, + { region: 'TG', city: 'Hyderabad' }, + ], + BR: [ + { region: 'SP', city: 'Sao Paulo' }, + { region: 'RJ', city: 'Rio de Janeiro' }, + { region: 'MG', city: 'Belo Horizonte' }, + ], + JP: [ + { region: '13', city: 'Tokyo' }, + { region: '27', city: 'Osaka' }, + { region: '23', city: 'Nagoya' }, + ], + NL: [ + { region: 'NH', city: 'Amsterdam' }, + { region: 'ZH', city: 'Rotterdam' }, + { region: 'ZH', city: 'The Hague' }, + ], +}; + +const defaultRegions = [{ region: '', city: '' }]; + +export function getRandomGeo(): GeoLocation { + const country = weightedRandom(countryWeights); + const regions = regionsByCountry[country] || defaultRegions; + const { region, city } = pickRandom(regions); + + return { country, region, city }; +} + +const languages: WeightedOption[] = [ + { value: 'en-US', weight: 0.4 }, + { value: 'en-GB', weight: 0.08 }, + { value: 'de-DE', weight: 0.06 }, + { value: 'fr-FR', weight: 0.05 }, + { value: 'es-ES', weight: 0.05 }, + { value: 'pt-BR', weight: 0.04 }, + { value: 'ja-JP', weight: 0.03 }, + { value: 'zh-CN', weight: 0.05 }, + { value: 'ko-KR', weight: 0.02 }, + { value: 'ru-RU', weight: 0.02 }, + { value: 'it-IT', weight: 0.02 }, + { value: 'nl-NL', weight: 0.02 }, + { value: 'pl-PL', weight: 0.02 }, + { value: 'hi-IN', weight: 0.04 }, + { value: 'ar-SA', weight: 0.02 }, + { value: 'tr-TR', weight: 0.02 }, + { value: 'vi-VN', weight: 0.01 }, + { value: 'th-TH', weight: 0.01 }, + { value: 'id-ID', weight: 0.02 }, + { value: 'sv-SE', weight: 0.01 }, + { value: 'da-DK', weight: 0.01 }, +]; + +export function getRandomLanguage(): string { + return weightedRandom(languages); +} diff --git a/scripts/seed/distributions/referrers.ts b/scripts/seed/distributions/referrers.ts new file mode 100644 index 0000000..5b3f2c4 --- /dev/null +++ b/scripts/seed/distributions/referrers.ts @@ -0,0 +1,163 @@ +import { weightedRandom, pickRandom, randomInt, type WeightedOption } from '../utils.js'; + +export type ReferrerType = 'direct' | 'organic' | 'social' | 'paid' | 'referral'; + +export interface ReferrerInfo { + type: ReferrerType; + domain: string | null; + path: string | null; + utmSource: string | null; + utmMedium: string | null; + utmCampaign: string | null; + utmContent: string | null; + utmTerm: string | null; + gclid: string | null; + fbclid: string | null; +} + +const referrerTypeWeights: WeightedOption[] = [ + { value: 'direct', weight: 0.4 }, + { value: 'organic', weight: 0.25 }, + { value: 'social', weight: 0.15 }, + { value: 'paid', weight: 0.1 }, + { value: 'referral', weight: 0.1 }, +]; + +const searchEngines = [ + { domain: 'google.com', path: '/search' }, + { domain: 'bing.com', path: '/search' }, + { domain: 'duckduckgo.com', path: '/' }, + { domain: 'yahoo.com', path: '/search' }, + { domain: 'baidu.com', path: '/s' }, +]; + +const socialPlatforms = [ + { domain: 'twitter.com', path: null }, + { domain: 'x.com', path: null }, + { domain: 'linkedin.com', path: '/feed' }, + { domain: 'facebook.com', path: null }, + { domain: 'reddit.com', path: '/r/programming' }, + { domain: 'news.ycombinator.com', path: '/item' }, + { domain: 'threads.net', path: null }, + { domain: 'bsky.app', path: null }, +]; + +const referralSites = [ + { domain: 'medium.com', path: '/@author/article' }, + { domain: 'dev.to', path: '/post' }, + { domain: 'hashnode.com', path: '/blog' }, + { domain: 'techcrunch.com', path: '/article' }, + { domain: 'producthunt.com', path: '/posts' }, + { domain: 'indiehackers.com', path: '/post' }, +]; + +interface PaidCampaign { + source: string; + medium: string; + campaign: string; + useGclid?: boolean; + useFbclid?: boolean; +} + +const paidCampaigns: PaidCampaign[] = [ + { source: 'google', medium: 'cpc', campaign: 'brand_search', useGclid: true }, + { source: 'google', medium: 'cpc', campaign: 'product_awareness', useGclid: true }, + { source: 'facebook', medium: 'paid_social', campaign: 'retargeting', useFbclid: true }, + { source: 'facebook', medium: 'paid_social', campaign: 'lookalike', useFbclid: true }, + { source: 'linkedin', medium: 'cpc', campaign: 'b2b_targeting' }, + { source: 'twitter', medium: 'paid_social', campaign: 'launch_promo' }, +]; + +const organicCampaigns = [ + { source: 'newsletter', medium: 'email', campaign: 'weekly_digest' }, + { source: 'newsletter', medium: 'email', campaign: 'product_update' }, + { source: 'partner', medium: 'referral', campaign: 'integration_launch' }, +]; + +function generateClickId(): string { + const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; + let result = ''; + for (let i = 0; i < 32; i++) { + result += chars.charAt(Math.floor(Math.random() * chars.length)); + } + return result; +} + +export function getRandomReferrer(): ReferrerInfo { + const type = weightedRandom(referrerTypeWeights); + + const result: ReferrerInfo = { + type, + domain: null, + path: null, + utmSource: null, + utmMedium: null, + utmCampaign: null, + utmContent: null, + utmTerm: null, + gclid: null, + fbclid: null, + }; + + switch (type) { + case 'direct': + // No referrer data + break; + + case 'organic': { + const engine = pickRandom(searchEngines); + result.domain = engine.domain; + result.path = engine.path; + break; + } + + case 'social': { + const platform = pickRandom(socialPlatforms); + result.domain = platform.domain; + result.path = platform.path; + + // Some social traffic has UTM params + if (Math.random() < 0.3) { + result.utmSource = platform.domain.replace('.com', '').replace('.net', ''); + result.utmMedium = 'social'; + } + break; + } + + case 'paid': { + const campaign = pickRandom(paidCampaigns); + result.utmSource = campaign.source; + result.utmMedium = campaign.medium; + result.utmCampaign = campaign.campaign; + result.utmContent = `ad_${randomInt(1, 5)}`; + + if (campaign.useGclid) { + result.gclid = generateClickId(); + result.domain = 'google.com'; + result.path = '/search'; + } else if (campaign.useFbclid) { + result.fbclid = generateClickId(); + result.domain = 'facebook.com'; + result.path = null; + } + break; + } + + case 'referral': { + // Mix of pure referrals and organic campaigns + if (Math.random() < 0.6) { + const site = pickRandom(referralSites); + result.domain = site.domain; + result.path = site.path; + } else { + const campaign = pickRandom(organicCampaigns); + result.utmSource = campaign.source; + result.utmMedium = campaign.medium; + result.utmCampaign = campaign.campaign; + } + break; + } + } + + return result; +} diff --git a/scripts/seed/distributions/temporal.ts b/scripts/seed/distributions/temporal.ts new file mode 100644 index 0000000..da0409a --- /dev/null +++ b/scripts/seed/distributions/temporal.ts @@ -0,0 +1,69 @@ +import { weightedRandom, randomInt, type WeightedOption } from '../utils.js'; + +const hourlyWeights: WeightedOption[] = [ + { value: 0, weight: 0.02 }, + { value: 1, weight: 0.01 }, + { value: 2, weight: 0.01 }, + { value: 3, weight: 0.01 }, + { value: 4, weight: 0.01 }, + { value: 5, weight: 0.02 }, + { value: 6, weight: 0.03 }, + { value: 7, weight: 0.05 }, + { value: 8, weight: 0.07 }, + { value: 9, weight: 0.08 }, + { value: 10, weight: 0.09 }, + { value: 11, weight: 0.08 }, + { value: 12, weight: 0.07 }, + { value: 13, weight: 0.08 }, + { value: 14, weight: 0.09 }, + { value: 15, weight: 0.08 }, + { value: 16, weight: 0.07 }, + { value: 17, weight: 0.06 }, + { value: 18, weight: 0.05 }, + { value: 19, weight: 0.04 }, + { value: 20, weight: 0.03 }, + { value: 21, weight: 0.03 }, + { value: 22, weight: 0.02 }, + { value: 23, weight: 0.02 }, +]; + +const dayOfWeekWeights: WeightedOption[] = [ + { value: 0, weight: 0.08 }, // Sunday + { value: 1, weight: 0.16 }, // Monday + { value: 2, weight: 0.17 }, // Tuesday + { value: 3, weight: 0.17 }, // Wednesday + { value: 4, weight: 0.16 }, // Thursday + { value: 5, weight: 0.15 }, // Friday + { value: 6, weight: 0.11 }, // Saturday +]; + +export function getWeightedHour(): number { + return weightedRandom(hourlyWeights); +} + +export function getDayOfWeekMultiplier(dayOfWeek: number): number { + const weight = dayOfWeekWeights.find(d => d.value === dayOfWeek)?.weight ?? 0.14; + return weight / 0.14; // Normalize around 1.0 +} + +export function generateTimestampForDay(day: Date): Date { + const hour = getWeightedHour(); + const minute = randomInt(0, 59); + const second = randomInt(0, 59); + const millisecond = randomInt(0, 999); + + const timestamp = new Date(day); + timestamp.setHours(hour, minute, second, millisecond); + + return timestamp; +} + +export function getSessionCountForDay(baseCount: number, day: Date): number { + const dayOfWeek = day.getDay(); + const multiplier = getDayOfWeekMultiplier(dayOfWeek); + + // Add some random variance (±20%) + const variance = 0.8 + Math.random() * 0.4; + + return Math.round(baseCount * multiplier * variance); +} diff --git a/scripts/seed/generators/events.ts b/scripts/seed/generators/events.ts new file mode 100644 index 0000000..7242906 --- /dev/null +++ b/scripts/seed/generators/events.ts @@ -0,0 +1,191 @@ +import { uuid, addSeconds, randomInt } from '../utils.js'; +import { getRandomReferrer } from '../distributions/referrers.js'; +import type { SessionData } from './sessions.js'; + +export const EVENT_TYPE = { + pageView: 1, + customEvent: 2, +} as const; + +export interface PageConfig { + path: string; + title: string; + weight: number; + avgTimeOnPage: number; +} + +export interface CustomEventConfig { + name: string; + weight: number; + pages?: string[]; + data?: Record; +} + +export interface JourneyConfig { + pages: string[]; + weight: number; +} + +export interface EventData { + id: string; + websiteId: string; + sessionId: string; + visitId: string; + eventType: number; + urlPath: string; + urlQuery: string | null; + pageTitle: string | null; + hostname: string; + referrerDomain: string | null; + referrerPath: string | null; + utmSource: string | null; + utmMedium: string | null; + utmCampaign: string | null; + utmContent: string | null; + utmTerm: string | null; + gclid: string | null; + fbclid: string | null; + eventName: string | null; + tag: string | null; + createdAt: Date; +} + +export interface EventDataEntry { + id: string; + websiteId: string; + websiteEventId: string; + dataKey: string; + stringValue: string | null; + numberValue: number | null; + dateValue: Date | null; + dataType: number; + createdAt: Date; +} + +export interface SiteConfig { + hostname: string; + pages: PageConfig[]; + journeys: JourneyConfig[]; + customEvents: CustomEventConfig[]; +} + +function getPageTitle(pages: PageConfig[], path: string): string | null { + const page = pages.find(p => p.path === path); + return page?.title ?? null; +} + +function getPageTimeOnPage(pages: PageConfig[], path: string): number { + const page = pages.find(p => p.path === path); + return page?.avgTimeOnPage ?? 30; +} + +export function generateEventsForSession( + session: SessionData, + siteConfig: SiteConfig, + journey: string[], +): { events: EventData[]; eventDataEntries: EventDataEntry[] } { + const events: EventData[] = []; + const eventDataEntries: EventDataEntry[] = []; + const visitId = uuid(); + + let currentTime = session.createdAt; + const referrer = getRandomReferrer(); + + for (let i = 0; i < journey.length; i++) { + const pagePath = journey[i]; + const isFirstPage = i === 0; + + const eventId = uuid(); + const pageTitle = getPageTitle(siteConfig.pages, pagePath); + + events.push({ + id: eventId, + websiteId: session.websiteId, + sessionId: session.id, + visitId, + eventType: EVENT_TYPE.pageView, + urlPath: pagePath, + urlQuery: null, + pageTitle, + hostname: siteConfig.hostname, + referrerDomain: isFirstPage ? referrer.domain : null, + referrerPath: isFirstPage ? referrer.path : null, + utmSource: isFirstPage ? referrer.utmSource : null, + utmMedium: isFirstPage ? referrer.utmMedium : null, + utmCampaign: isFirstPage ? referrer.utmCampaign : null, + utmContent: isFirstPage ? referrer.utmContent : null, + utmTerm: isFirstPage ? referrer.utmTerm : null, + gclid: isFirstPage ? referrer.gclid : null, + fbclid: isFirstPage ? referrer.fbclid : null, + eventName: null, + tag: null, + createdAt: currentTime, + }); + + // Check for custom events on this page + for (const customEvent of siteConfig.customEvents) { + // Check if this event can occur on this page + if (customEvent.pages && !customEvent.pages.includes(pagePath)) { + continue; + } + + // Random chance based on weight + if (Math.random() < customEvent.weight) { + currentTime = addSeconds(currentTime, randomInt(2, 15)); + + const customEventId = uuid(); + events.push({ + id: customEventId, + websiteId: session.websiteId, + sessionId: session.id, + visitId, + eventType: EVENT_TYPE.customEvent, + urlPath: pagePath, + urlQuery: null, + pageTitle, + hostname: siteConfig.hostname, + referrerDomain: null, + referrerPath: null, + utmSource: null, + utmMedium: null, + utmCampaign: null, + utmContent: null, + utmTerm: null, + gclid: null, + fbclid: null, + eventName: customEvent.name, + tag: null, + createdAt: currentTime, + }); + + // Generate event data if configured + if (customEvent.data) { + for (const [key, values] of Object.entries(customEvent.data)) { + const value = values[Math.floor(Math.random() * values.length)]; + const isNumber = typeof value === 'number'; + + eventDataEntries.push({ + id: uuid(), + websiteId: session.websiteId, + websiteEventId: customEventId, + dataKey: key, + stringValue: isNumber ? null : String(value), + numberValue: isNumber ? value : null, + dateValue: null, + dataType: isNumber ? 2 : 1, // 1 = string, 2 = number + createdAt: currentTime, + }); + } + } + } + } + + // Time spent on page before navigating + const timeOnPage = getPageTimeOnPage(siteConfig.pages, pagePath); + const variance = Math.floor(timeOnPage * 0.5); + const actualTime = timeOnPage + randomInt(-variance, variance); + currentTime = addSeconds(currentTime, Math.max(5, actualTime)); + } + + return { events, eventDataEntries }; +} diff --git a/scripts/seed/generators/revenue.ts b/scripts/seed/generators/revenue.ts new file mode 100644 index 0000000..deea9e6 --- /dev/null +++ b/scripts/seed/generators/revenue.ts @@ -0,0 +1,65 @@ +import { uuid, randomFloat } from '../utils.js'; +import type { EventData } from './events.js'; + +export interface RevenueConfig { + eventName: string; + minAmount: number; + maxAmount: number; + currency: string; + weight: number; +} + +export interface RevenueData { + id: string; + websiteId: string; + sessionId: string; + eventId: string; + eventName: string; + currency: string; + revenue: number; + createdAt: Date; +} + +export function generateRevenue(event: EventData, config: RevenueConfig): RevenueData | null { + if (event.eventName !== config.eventName) { + return null; + } + + if (Math.random() > config.weight) { + return null; + } + + const revenue = randomFloat(config.minAmount, config.maxAmount); + + return { + id: uuid(), + websiteId: event.websiteId, + sessionId: event.sessionId, + eventId: event.id, + eventName: event.eventName!, + currency: config.currency, + revenue: Math.round(revenue * 100) / 100, // Round to 2 decimal places + createdAt: event.createdAt, + }; +} + +export function generateRevenueForEvents( + events: EventData[], + configs: RevenueConfig[], +): RevenueData[] { + const revenueEntries: RevenueData[] = []; + + for (const event of events) { + if (!event.eventName) continue; + + for (const config of configs) { + const revenue = generateRevenue(event, config); + if (revenue) { + revenueEntries.push(revenue); + break; // Only one revenue per event + } + } + } + + return revenueEntries; +} diff --git a/scripts/seed/generators/sessions.ts b/scripts/seed/generators/sessions.ts new file mode 100644 index 0000000..1370511 --- /dev/null +++ b/scripts/seed/generators/sessions.ts @@ -0,0 +1,52 @@ +import { uuid } from '../utils.js'; +import { getRandomDevice } from '../distributions/devices.js'; +import { getRandomGeo, getRandomLanguage } from '../distributions/geographic.js'; +import { generateTimestampForDay } from '../distributions/temporal.js'; + +export interface SessionData { + id: string; + websiteId: string; + browser: string; + os: string; + device: string; + screen: string; + language: string; + country: string; + region: string; + city: string; + createdAt: Date; +} + +export function createSession(websiteId: string, day: Date): SessionData { + const deviceInfo = getRandomDevice(); + const geo = getRandomGeo(); + const language = getRandomLanguage(); + const createdAt = generateTimestampForDay(day); + + return { + id: uuid(), + websiteId, + browser: deviceInfo.browser, + os: deviceInfo.os, + device: deviceInfo.device, + screen: deviceInfo.screen, + language, + country: geo.country, + region: geo.region, + city: geo.city, + createdAt, + }; +} + +export function createSessions(websiteId: string, day: Date, count: number): SessionData[] { + const sessions: SessionData[] = []; + + for (let i = 0; i < count; i++) { + sessions.push(createSession(websiteId, day)); + } + + // Sort by createdAt to maintain chronological order + sessions.sort((a, b) => a.createdAt.getTime() - b.createdAt.getTime()); + + return sessions; +} diff --git a/scripts/seed/index.ts b/scripts/seed/index.ts new file mode 100644 index 0000000..5b9de8d --- /dev/null +++ b/scripts/seed/index.ts @@ -0,0 +1,378 @@ +/* eslint-disable no-console */ +import 'dotenv/config'; +import { PrismaPg } from '@prisma/adapter-pg'; +import { PrismaClient, Prisma } from '../../src/generated/prisma/client.js'; +import { uuid, generateDatesBetween, subDays, formatNumber, progressBar } from './utils.js'; +import { createSessions, type SessionData } from './generators/sessions.js'; +import { + generateEventsForSession, + type EventData, + type EventDataEntry, +} from './generators/events.js'; +import { + generateRevenueForEvents, + type RevenueData, + type RevenueConfig, +} from './generators/revenue.js'; +import { getSessionCountForDay } from './distributions/temporal.js'; +import { + BLOG_WEBSITE_NAME, + BLOG_WEBSITE_DOMAIN, + BLOG_SESSIONS_PER_DAY, + getBlogSiteConfig, + getBlogJourney, +} from './sites/blog.js'; +import { + SAAS_WEBSITE_NAME, + SAAS_WEBSITE_DOMAIN, + SAAS_SESSIONS_PER_DAY, + getSaasSiteConfig, + getSaasJourney, + saasRevenueConfigs, +} from './sites/saas.js'; + +const BATCH_SIZE = 1000; + +type SessionCreateInput = Prisma.SessionCreateManyInput; +type WebsiteEventCreateInput = Prisma.WebsiteEventCreateManyInput; +type EventDataCreateInput = Prisma.EventDataCreateManyInput; +type RevenueCreateInput = Prisma.RevenueCreateManyInput; + +export interface SeedConfig { + days: number; + clear: boolean; + verbose: boolean; +} + +export interface SeedResult { + websites: number; + sessions: number; + events: number; + eventData: number; + revenue: number; +} + +async function batchInsertSessions( + prisma: PrismaClient, + data: SessionCreateInput[], + verbose: boolean, +): Promise { + for (let i = 0; i < data.length; i += BATCH_SIZE) { + const batch = data.slice(i, i + BATCH_SIZE); + await prisma.session.createMany({ data: batch, skipDuplicates: true }); + if (verbose) { + console.log( + ` Inserted ${Math.min(i + BATCH_SIZE, data.length)}/${data.length} session records`, + ); + } + } +} + +async function batchInsertEvents( + prisma: PrismaClient, + data: WebsiteEventCreateInput[], + verbose: boolean, +): Promise { + for (let i = 0; i < data.length; i += BATCH_SIZE) { + const batch = data.slice(i, i + BATCH_SIZE); + await prisma.websiteEvent.createMany({ data: batch, skipDuplicates: true }); + if (verbose) { + console.log( + ` Inserted ${Math.min(i + BATCH_SIZE, data.length)}/${data.length} event records`, + ); + } + } +} + +async function batchInsertEventData( + prisma: PrismaClient, + data: EventDataCreateInput[], + verbose: boolean, +): Promise { + for (let i = 0; i < data.length; i += BATCH_SIZE) { + const batch = data.slice(i, i + BATCH_SIZE); + await prisma.eventData.createMany({ data: batch, skipDuplicates: true }); + if (verbose) { + console.log( + ` Inserted ${Math.min(i + BATCH_SIZE, data.length)}/${data.length} eventData records`, + ); + } + } +} + +async function batchInsertRevenue( + prisma: PrismaClient, + data: RevenueCreateInput[], + verbose: boolean, +): Promise { + for (let i = 0; i < data.length; i += BATCH_SIZE) { + const batch = data.slice(i, i + BATCH_SIZE); + await prisma.revenue.createMany({ data: batch, skipDuplicates: true }); + if (verbose) { + console.log( + ` Inserted ${Math.min(i + BATCH_SIZE, data.length)}/${data.length} revenue records`, + ); + } + } +} + +async function findAdminUser(prisma: PrismaClient): Promise { + const adminUser = await prisma.user.findFirst({ + where: { role: 'admin' }, + select: { id: true }, + }); + + if (!adminUser) { + throw new Error( + 'No admin user found in the database.\n' + + 'Please ensure you have run the initial setup and created an admin user.\n' + + 'The default admin user is created during first build (username: admin, password: umami).', + ); + } + + return adminUser.id; +} + +async function createWebsite( + prisma: PrismaClient, + name: string, + domain: string, + adminUserId: string, +): Promise { + const websiteId = uuid(); + + await prisma.website.create({ + data: { + id: websiteId, + name, + domain, + userId: adminUserId, + createdBy: adminUserId, + }, + }); + + return websiteId; +} + +async function clearDemoData(prisma: PrismaClient): Promise { + console.log('Clearing existing demo data...'); + + const demoWebsites = await prisma.website.findMany({ + where: { + OR: [{ name: BLOG_WEBSITE_NAME }, { name: SAAS_WEBSITE_NAME }], + }, + select: { id: true }, + }); + + const websiteIds = demoWebsites.map(w => w.id); + + if (websiteIds.length === 0) { + console.log(' No existing demo websites found'); + return; + } + + console.log(` Found ${websiteIds.length} demo website(s)`); + + // Delete in correct order due to foreign key constraints + await prisma.revenue.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.eventData.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.sessionData.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.websiteEvent.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.session.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.segment.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.report.deleteMany({ where: { websiteId: { in: websiteIds } } }); + await prisma.website.deleteMany({ where: { id: { in: websiteIds } } }); + + console.log(' Cleared existing demo data'); +} + +interface SiteGeneratorConfig { + name: string; + domain: string; + sessionsPerDay: number; + getSiteConfig: () => ReturnType; + getJourney: () => string[]; + revenueConfigs?: RevenueConfig[]; +} + +async function generateSiteData( + prisma: PrismaClient, + config: SiteGeneratorConfig, + days: Date[], + adminUserId: string, + verbose: boolean, +): Promise<{ sessions: number; events: number; eventData: number; revenue: number }> { + console.log(`\nGenerating data for ${config.name}...`); + + const websiteId = await createWebsite(prisma, config.name, config.domain, adminUserId); + console.log(` Created website: ${config.name} (${websiteId})`); + + const siteConfig = config.getSiteConfig(); + + const allSessions: SessionData[] = []; + const allEvents: EventData[] = []; + const allEventData: EventDataEntry[] = []; + const allRevenue: RevenueData[] = []; + + for (let dayIndex = 0; dayIndex < days.length; dayIndex++) { + const day = days[dayIndex]; + const sessionCount = getSessionCountForDay(config.sessionsPerDay, day); + const sessions = createSessions(websiteId, day, sessionCount); + + for (const session of sessions) { + const journey = config.getJourney(); + const { events, eventDataEntries } = generateEventsForSession(session, siteConfig, journey); + + allSessions.push(session); + allEvents.push(...events); + allEventData.push(...eventDataEntries); + + if (config.revenueConfigs) { + const revenueEntries = generateRevenueForEvents(events, config.revenueConfigs); + allRevenue.push(...revenueEntries); + } + } + + // Show progress (every day in verbose mode, otherwise every 2 days) + const shouldShowProgress = verbose || dayIndex % 2 === 0 || dayIndex === days.length - 1; + if (shouldShowProgress) { + process.stdout.write( + `\r ${progressBar(dayIndex + 1, days.length)} Day ${dayIndex + 1}/${days.length}`, + ); + } + } + + console.log(''); // New line after progress bar + + // Batch insert all data + console.log(` Inserting ${formatNumber(allSessions.length)} sessions...`); + await batchInsertSessions(prisma, allSessions as SessionCreateInput[], verbose); + + console.log(` Inserting ${formatNumber(allEvents.length)} events...`); + await batchInsertEvents(prisma, allEvents as WebsiteEventCreateInput[], verbose); + + if (allEventData.length > 0) { + console.log(` Inserting ${formatNumber(allEventData.length)} event data entries...`); + await batchInsertEventData(prisma, allEventData as EventDataCreateInput[], verbose); + } + + if (allRevenue.length > 0) { + console.log(` Inserting ${formatNumber(allRevenue.length)} revenue entries...`); + await batchInsertRevenue(prisma, allRevenue as RevenueCreateInput[], verbose); + } + + return { + sessions: allSessions.length, + events: allEvents.length, + eventData: allEventData.length, + revenue: allRevenue.length, + }; +} + +function createPrismaClient(): PrismaClient { + const url = process.env.DATABASE_URL; + if (!url) { + throw new Error( + 'DATABASE_URL environment variable is not set.\n' + + 'Please set DATABASE_URL in your .env file or environment.\n' + + 'Example: DATABASE_URL=postgresql://user:password@localhost:5432/umami', + ); + } + + let schema: string | undefined; + try { + const connectionUrl = new URL(url); + schema = connectionUrl.searchParams.get('schema') ?? undefined; + } catch { + throw new Error( + 'DATABASE_URL is not a valid URL.\n' + + 'Expected format: postgresql://user:password@host:port/database\n' + + `Received: ${url.substring(0, 30)}...`, + ); + } + + const adapter = new PrismaPg({ connectionString: url }, { schema }); + + return new PrismaClient({ + adapter, + errorFormat: 'pretty', + }); +} + +export async function seed(config: SeedConfig): Promise { + const prisma = createPrismaClient(); + + try { + const endDate = new Date(); + const startDate = subDays(endDate, config.days); + const days = generateDatesBetween(startDate, endDate); + + console.log(`\nSeed Configuration:`); + console.log( + ` Date range: ${startDate.toISOString().split('T')[0]} to ${endDate.toISOString().split('T')[0]}`, + ); + console.log(` Days: ${days.length}`); + console.log(` Clear existing: ${config.clear}`); + + if (config.clear) { + await clearDemoData(prisma); + } + + // Find admin user to own the demo websites + const adminUserId = await findAdminUser(prisma); + console.log(` Using admin user: ${adminUserId}`); + + // Generate Blog site (low traffic) + const blogResults = await generateSiteData( + prisma, + { + name: BLOG_WEBSITE_NAME, + domain: BLOG_WEBSITE_DOMAIN, + sessionsPerDay: BLOG_SESSIONS_PER_DAY, + getSiteConfig: getBlogSiteConfig, + getJourney: getBlogJourney, + }, + days, + adminUserId, + config.verbose, + ); + + // Generate SaaS site (high traffic) + const saasResults = await generateSiteData( + prisma, + { + name: SAAS_WEBSITE_NAME, + domain: SAAS_WEBSITE_DOMAIN, + sessionsPerDay: SAAS_SESSIONS_PER_DAY, + getSiteConfig: getSaasSiteConfig, + getJourney: getSaasJourney, + revenueConfigs: saasRevenueConfigs, + }, + days, + adminUserId, + config.verbose, + ); + + const result: SeedResult = { + websites: 2, + sessions: blogResults.sessions + saasResults.sessions, + events: blogResults.events + saasResults.events, + eventData: blogResults.eventData + saasResults.eventData, + revenue: blogResults.revenue + saasResults.revenue, + }; + + console.log(`\n${'─'.repeat(50)}`); + console.log(`Seed Complete!`); + console.log(`${'─'.repeat(50)}`); + console.log(` Websites: ${formatNumber(result.websites)}`); + console.log(` Sessions: ${formatNumber(result.sessions)}`); + console.log(` Events: ${formatNumber(result.events)}`); + console.log(` Event Data: ${formatNumber(result.eventData)}`); + console.log(` Revenue: ${formatNumber(result.revenue)}`); + console.log(`${'─'.repeat(50)}\n`); + + return result; + } finally { + await prisma.$disconnect(); + } +} diff --git a/scripts/seed/sites/blog.ts b/scripts/seed/sites/blog.ts new file mode 100644 index 0000000..e60b8b9 --- /dev/null +++ b/scripts/seed/sites/blog.ts @@ -0,0 +1,108 @@ +import { weightedRandom, type WeightedOption } from '../utils.js'; +import type { + SiteConfig, + JourneyConfig, + PageConfig, + CustomEventConfig, +} from '../generators/events.js'; + +export const BLOG_WEBSITE_NAME = 'Demo Blog'; +export const BLOG_WEBSITE_DOMAIN = 'blog.example.com'; + +const blogPosts = [ + 'getting-started-with-analytics', + 'privacy-first-tracking', + 'understanding-your-visitors', + 'improving-page-performance', + 'seo-best-practices', + 'content-marketing-guide', + 'building-audience-trust', + 'data-driven-decisions', +]; + +export const blogPages: PageConfig[] = [ + { path: '/', title: 'Demo Blog - Home', weight: 0.25, avgTimeOnPage: 30 }, + { path: '/blog', title: 'Blog Posts', weight: 0.2, avgTimeOnPage: 45 }, + { path: '/about', title: 'About Us', weight: 0.1, avgTimeOnPage: 60 }, + { path: '/contact', title: 'Contact', weight: 0.05, avgTimeOnPage: 45 }, + ...blogPosts.map(slug => ({ + path: `/blog/${slug}`, + title: slug + .split('-') + .map(w => w.charAt(0).toUpperCase() + w.slice(1)) + .join(' '), + weight: 0.05, + avgTimeOnPage: 180, + })), +]; + +export const blogJourneys: JourneyConfig[] = [ + // Direct to blog post (organic search) + { pages: ['/blog/getting-started-with-analytics'], weight: 0.15 }, + { pages: ['/blog/privacy-first-tracking'], weight: 0.12 }, + { pages: ['/blog/understanding-your-visitors'], weight: 0.1 }, + + // Homepage bounces + { pages: ['/'], weight: 0.15 }, + + // Homepage to blog listing + { pages: ['/', '/blog'], weight: 0.1 }, + + // Homepage to blog post + { pages: ['/', '/blog', '/blog/seo-best-practices'], weight: 0.08 }, + { pages: ['/', '/blog', '/blog/content-marketing-guide'], weight: 0.08 }, + + // About page visits + { pages: ['/', '/about'], weight: 0.07 }, + { pages: ['/', '/about', '/contact'], weight: 0.05 }, + + // Blog post to another + { pages: ['/blog/improving-page-performance', '/blog/data-driven-decisions'], weight: 0.05 }, + + // Longer sessions + { pages: ['/', '/blog', '/blog/building-audience-trust', '/about'], weight: 0.05 }, +]; + +export const blogCustomEvents: CustomEventConfig[] = [ + { + name: 'newsletter_signup', + weight: 0.03, + pages: ['/', '/blog'], + }, + { + name: 'share_click', + weight: 0.05, + pages: blogPosts.map(slug => `/blog/${slug}`), + data: { + platform: ['twitter', 'linkedin', 'facebook', 'copy_link'], + }, + }, + { + name: 'scroll_depth', + weight: 0.2, + pages: blogPosts.map(slug => `/blog/${slug}`), + data: { + depth: [25, 50, 75, 100], + }, + }, +]; + +export function getBlogSiteConfig(): SiteConfig { + return { + hostname: BLOG_WEBSITE_DOMAIN, + pages: blogPages, + journeys: blogJourneys, + customEvents: blogCustomEvents, + }; +} + +export function getBlogJourney(): string[] { + const journeyWeights: WeightedOption[] = blogJourneys.map(j => ({ + value: j.pages, + weight: j.weight, + })); + + return weightedRandom(journeyWeights); +} + +export const BLOG_SESSIONS_PER_DAY = 3; // ~90 sessions per month diff --git a/scripts/seed/sites/saas.ts b/scripts/seed/sites/saas.ts new file mode 100644 index 0000000..133895a --- /dev/null +++ b/scripts/seed/sites/saas.ts @@ -0,0 +1,185 @@ +import { weightedRandom, type WeightedOption } from '../utils.js'; +import type { + SiteConfig, + JourneyConfig, + PageConfig, + CustomEventConfig, +} from '../generators/events.js'; +import type { RevenueConfig } from '../generators/revenue.js'; + +export const SAAS_WEBSITE_NAME = 'Demo SaaS'; +export const SAAS_WEBSITE_DOMAIN = 'app.example.com'; + +const docsSections = [ + 'getting-started', + 'installation', + 'configuration', + 'api-reference', + 'integrations', +]; + +const blogPosts = [ + 'announcing-v2', + 'customer-success-story', + 'product-roadmap', + 'security-best-practices', +]; + +export const saasPages: PageConfig[] = [ + { path: '/', title: 'Demo SaaS - Analytics Made Simple', weight: 0.2, avgTimeOnPage: 45 }, + { path: '/features', title: 'Features', weight: 0.15, avgTimeOnPage: 90 }, + { path: '/pricing', title: 'Pricing', weight: 0.15, avgTimeOnPage: 120 }, + { path: '/docs', title: 'Documentation', weight: 0.1, avgTimeOnPage: 60 }, + { path: '/blog', title: 'Blog', weight: 0.05, avgTimeOnPage: 45 }, + { path: '/signup', title: 'Sign Up', weight: 0.08, avgTimeOnPage: 90 }, + { path: '/login', title: 'Login', weight: 0.05, avgTimeOnPage: 30 }, + { path: '/demo', title: 'Request Demo', weight: 0.05, avgTimeOnPage: 60 }, + ...docsSections.map(slug => ({ + path: `/docs/${slug}`, + title: `Docs: ${slug + .split('-') + .map(w => w.charAt(0).toUpperCase() + w.slice(1)) + .join(' ')}`, + weight: 0.02, + avgTimeOnPage: 180, + })), + ...blogPosts.map(slug => ({ + path: `/blog/${slug}`, + title: slug + .split('-') + .map(w => w.charAt(0).toUpperCase() + w.slice(1)) + .join(' '), + weight: 0.02, + avgTimeOnPage: 150, + })), +]; + +export const saasJourneys: JourneyConfig[] = [ + // Conversion funnel + { pages: ['/', '/features', '/pricing', '/signup'], weight: 0.12 }, + { pages: ['/', '/pricing', '/signup'], weight: 0.1 }, + { pages: ['/pricing', '/signup'], weight: 0.08 }, + + // Feature exploration + { pages: ['/', '/features'], weight: 0.1 }, + { pages: ['/', '/features', '/pricing'], weight: 0.08 }, + + // Documentation users + { pages: ['/docs', '/docs/getting-started'], weight: 0.08 }, + { pages: ['/docs/getting-started', '/docs/installation', '/docs/configuration'], weight: 0.06 }, + { pages: ['/docs/api-reference'], weight: 0.05 }, + + // Blog readers + { pages: ['/blog/announcing-v2'], weight: 0.05 }, + { pages: ['/blog/customer-success-story'], weight: 0.04 }, + + // Returning users + { pages: ['/login'], weight: 0.08 }, + + // Bounces + { pages: ['/'], weight: 0.08 }, + { pages: ['/pricing'], weight: 0.05 }, + + // Demo requests + { pages: ['/', '/demo'], weight: 0.03 }, +]; + +export const saasCustomEvents: CustomEventConfig[] = [ + { + name: 'signup_started', + weight: 0.6, + pages: ['/signup'], + data: { + plan: ['free', 'pro', 'enterprise'], + }, + }, + { + name: 'signup_completed', + weight: 0.3, + pages: ['/signup'], + data: { + plan: ['free', 'pro', 'enterprise'], + method: ['email', 'google', 'github'], + }, + }, + { + name: 'purchase', + weight: 0.15, + pages: ['/signup', '/pricing'], + data: { + plan: ['pro', 'enterprise'], + billing: ['monthly', 'annual'], + revenue: [29, 49, 99, 299], + currency: ['USD'], + }, + }, + { + name: 'demo_requested', + weight: 0.5, + pages: ['/demo'], + data: { + company_size: ['1-10', '11-50', '51-200', '200+'], + }, + }, + { + name: 'feature_viewed', + weight: 0.3, + pages: ['/features'], + data: { + feature: ['analytics', 'reports', 'api', 'integrations', 'privacy'], + }, + }, + { + name: 'cta_click', + weight: 0.15, + pages: ['/', '/features', '/pricing'], + data: { + button: ['hero_signup', 'nav_signup', 'pricing_cta', 'footer_cta'], + }, + }, + { + name: 'docs_search', + weight: 0.2, + pages: ['/docs', ...docsSections.map(s => `/docs/${s}`)], + data: { + query_type: ['api', 'setup', 'integration', 'troubleshooting'], + }, + }, +]; + +export const saasRevenueConfigs: RevenueConfig[] = [ + { + eventName: 'purchase', + minAmount: 29, + maxAmount: 29, + currency: 'USD', + weight: 0.7, // 70% Pro plan + }, + { + eventName: 'purchase', + minAmount: 299, + maxAmount: 299, + currency: 'USD', + weight: 0.3, // 30% Enterprise + }, +]; + +export function getSaasSiteConfig(): SiteConfig { + return { + hostname: SAAS_WEBSITE_DOMAIN, + pages: saasPages, + journeys: saasJourneys, + customEvents: saasCustomEvents, + }; +} + +export function getSaasJourney(): string[] { + const journeyWeights: WeightedOption[] = saasJourneys.map(j => ({ + value: j.pages, + weight: j.weight, + })); + + return weightedRandom(journeyWeights); +} + +export const SAAS_SESSIONS_PER_DAY = 500; diff --git a/scripts/seed/utils.ts b/scripts/seed/utils.ts new file mode 100644 index 0000000..7b44261 --- /dev/null +++ b/scripts/seed/utils.ts @@ -0,0 +1,85 @@ +import { v4 as uuidv4 } from 'uuid'; + +export interface WeightedOption { + value: T; + weight: number; +} + +export function weightedRandom(options: WeightedOption[]): T { + const totalWeight = options.reduce((sum, opt) => sum + opt.weight, 0); + let random = Math.random() * totalWeight; + + for (const option of options) { + random -= option.weight; + if (random <= 0) { + return option.value; + } + } + + return options[options.length - 1].value; +} + +export function randomInt(min: number, max: number): number { + return Math.floor(Math.random() * (max - min + 1)) + min; +} + +export function randomFloat(min: number, max: number): number { + return Math.random() * (max - min) + min; +} + +export function pickRandom(array: T[]): T { + return array[Math.floor(Math.random() * array.length)]; +} + +export function shuffleArray(array: T[]): T[] { + const result = [...array]; + for (let i = result.length - 1; i > 0; i--) { + const j = Math.floor(Math.random() * (i + 1)); + [result[i], result[j]] = [result[j], result[i]]; + } + return result; +} + +export function uuid(): string { + return uuidv4(); +} + +export function generateDatesBetween(startDate: Date, endDate: Date): Date[] { + const dates: Date[] = []; + const current = new Date(startDate); + current.setHours(0, 0, 0, 0); + + while (current <= endDate) { + dates.push(new Date(current)); + current.setDate(current.getDate() + 1); + } + + return dates; +} + +export function addHours(date: Date, hours: number): Date { + return new Date(date.getTime() + hours * 60 * 60 * 1000); +} + +export function addMinutes(date: Date, minutes: number): Date { + return new Date(date.getTime() + minutes * 60 * 1000); +} + +export function addSeconds(date: Date, seconds: number): Date { + return new Date(date.getTime() + seconds * 1000); +} + +export function subDays(date: Date, days: number): Date { + return new Date(date.getTime() - days * 24 * 60 * 60 * 1000); +} + +export function formatNumber(num: number): string { + return num.toLocaleString(); +} + +export function progressBar(current: number, total: number, width = 30): string { + const percent = current / total; + const filled = Math.round(width * percent); + const empty = width - filled; + return `[${'█'.repeat(filled)}${'░'.repeat(empty)}] ${Math.round(percent * 100)}%`; +} diff --git a/scripts/start-env.js b/scripts/start-env.js new file mode 100644 index 0000000..970414a --- /dev/null +++ b/scripts/start-env.js @@ -0,0 +1,7 @@ +import 'dotenv/config'; +import cli from 'next/dist/cli/next-start'; + +cli.nextStart({ + port: process.env.PORT || 3000, + hostname: process.env.HOSTNAME || '0.0.0.0', +}); diff --git a/scripts/telemetry.js b/scripts/telemetry.js new file mode 100644 index 0000000..78bf54f --- /dev/null +++ b/scripts/telemetry.js @@ -0,0 +1,40 @@ +import os from 'node:os'; +import path from 'node:path'; +import isCI from 'is-ci'; +import { createRequire } from 'module'; + +const require = createRequire(import.meta.url); +const pkg = require(path.resolve(process.cwd(), 'package.json')); + +const url = 'https://api.umami.is/v1/telemetry'; + +export async function sendTelemetry(type) { + const { default: isDocker } = await import('is-docker'); + const { default: fetch } = await import('node-fetch'); + + const data = { + type, + payload: { + version: pkg.version, + node: process.version, + platform: os.platform(), + arch: os.arch(), + os: `${os.type()} ${os.version()}`, + is_docker: isDocker(), + is_ci: isCI, + }, + }; + + try { + await fetch(url, { + method: 'post', + cache: 'no-cache', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(data), + }); + } catch { + // Ignore + } +} diff --git a/scripts/update-tracker.js b/scripts/update-tracker.js new file mode 100644 index 0000000..0091e8b --- /dev/null +++ b/scripts/update-tracker.js @@ -0,0 +1,16 @@ +/* eslint-disable no-console */ +import 'dotenv/config'; +import fs from 'node:fs'; +import path from 'node:path'; + +const endPoint = process.env.COLLECT_API_ENDPOINT; + +if (endPoint) { + const file = path.resolve(process.cwd(), 'public/script.js'); + + const tracker = fs.readFileSync(file); + + fs.writeFileSync(path.resolve(file), tracker.toString().replace(/\/api\/send/g, endPoint)); + + console.log(`Updated tracker endpoint: ${endPoint}.`); +} diff --git a/src/app/(collect)/p/[slug]/route.ts b/src/app/(collect)/p/[slug]/route.ts new file mode 100644 index 0000000..79d6faa --- /dev/null +++ b/src/app/(collect)/p/[slug]/route.ts @@ -0,0 +1,68 @@ +export const dynamic = 'force-dynamic'; + +import { NextResponse } from 'next/server'; +import { POST } from '@/app/api/send/route'; +import type { Pixel } from '@/generated/prisma/client'; +import redis from '@/lib/redis'; +import { notFound } from '@/lib/response'; +import { findPixel } from '@/queries/prisma'; + +const image = Buffer.from('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw', 'base64'); + +export async function GET(request: Request, { params }: { params: Promise<{ slug: string }> }) { + const { slug } = await params; + + let pixel: Pixel; + + if (redis.enabled) { + pixel = await redis.client.fetch( + `pixel:${slug}`, + async () => { + return findPixel({ + where: { + slug, + }, + }); + }, + 86400, + ); + + if (!pixel) { + return notFound(); + } + } else { + pixel = await findPixel({ + where: { + slug, + }, + }); + + if (!pixel) { + return notFound(); + } + } + + const payload = { + type: 'event', + payload: { + pixel: pixel.id, + url: request.url, + referrer: request.headers.get('referer'), + }, + }; + + const req = new Request(request.url, { + method: 'POST', + headers: request.headers, + body: JSON.stringify(payload), + }); + + await POST(req); + + return new NextResponse(image, { + headers: { + 'Content-Type': 'image/gif', + 'Content-Length': image.length.toString(), + }, + }); +} diff --git a/src/app/(collect)/q/[slug]/route.ts b/src/app/(collect)/q/[slug]/route.ts new file mode 100644 index 0000000..24089bd --- /dev/null +++ b/src/app/(collect)/q/[slug]/route.ts @@ -0,0 +1,61 @@ +export const dynamic = 'force-dynamic'; + +import { NextResponse } from 'next/server'; +import { POST } from '@/app/api/send/route'; +import type { Link } from '@/generated/prisma/client'; +import redis from '@/lib/redis'; +import { notFound } from '@/lib/response'; +import { findLink } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ slug: string }> }) { + const { slug } = await params; + + let link: Link; + + if (redis.enabled) { + link = await redis.client.fetch( + `link:${slug}`, + async () => { + return findLink({ + where: { + slug, + }, + }); + }, + 86400, + ); + + if (!link) { + return notFound(); + } + } else { + link = await findLink({ + where: { + slug, + }, + }); + + if (!link) { + return notFound(); + } + } + + const payload = { + type: 'event', + payload: { + link: link.id, + url: request.url, + referrer: request.headers.get('referer'), + }, + }; + + const req = new Request(request.url, { + method: 'POST', + headers: request.headers, + body: JSON.stringify(payload), + }); + + await POST(req); + + return NextResponse.redirect(link.url); +} diff --git a/src/app/(main)/App.tsx b/src/app/(main)/App.tsx new file mode 100644 index 0000000..eada680 --- /dev/null +++ b/src/app/(main)/App.tsx @@ -0,0 +1,62 @@ +'use client'; +import { Column, Grid, Loading, Row } from '@umami/react-zen'; +import Script from 'next/script'; +import { useEffect } from 'react'; +import { MobileNav } from '@/app/(main)/MobileNav'; +import { SideNav } from '@/app/(main)/SideNav'; +import { useConfig, useLoginQuery, useNavigation } from '@/components/hooks'; +import { LAST_TEAM_CONFIG } from '@/lib/constants'; +import { removeItem, setItem } from '@/lib/storage'; +import { UpdateNotice } from './UpdateNotice'; + +export function App({ children }) { + const { user, isLoading, error } = useLoginQuery(); + const config = useConfig(); + const { pathname, teamId } = useNavigation(); + + useEffect(() => { + if (teamId) { + setItem(LAST_TEAM_CONFIG, teamId); + } else { + removeItem(LAST_TEAM_CONFIG); + } + }, [teamId]); + + if (isLoading || !config) { + return ; + } + + if (error) { + window.location.href = config.cloudMode + ? `${process.env.cloudUrl}/login` + : `${process.env.basePath || ''}/login`; + return null; + } + + if (!user || !config) { + return null; + } + + return ( + + + + + + + + + {children} + + + {process.env.NODE_ENV === 'production' && !pathname.includes('/share/') && ( + `; + + return ( + + + {formatMessage(messages.trackingCode)} + + + ); +} diff --git a/src/app/(main)/websites/[websiteId]/settings/WebsiteTransferForm.tsx b/src/app/(main)/websites/[websiteId]/settings/WebsiteTransferForm.tsx new file mode 100644 index 0000000..8af4f05 --- /dev/null +++ b/src/app/(main)/websites/[websiteId]/settings/WebsiteTransferForm.tsx @@ -0,0 +1,102 @@ +import { + Button, + Form, + FormButtons, + FormField, + FormSubmitButton, + ListItem, + Loading, + Select, + Text, +} from '@umami/react-zen'; +import { type Key, useState } from 'react'; +import { + useLoginQuery, + useMessages, + useUpdateQuery, + useUserTeamsQuery, + useWebsite, +} from '@/components/hooks'; +import { ROLES } from '@/lib/constants'; + +export function WebsiteTransferForm({ + websiteId, + onSave, + onClose, +}: { + websiteId: string; + onSave?: () => void; + onClose?: () => void; +}) { + const { user } = useLoginQuery(); + const website = useWebsite(); + const [teamId, setTeamId] = useState(null); + const { formatMessage, labels, messages, getErrorMessage } = useMessages(); + const { mutateAsync, error, isPending } = useUpdateQuery(`/websites/${websiteId}/transfer`); + const { data: teams, isLoading } = useUserTeamsQuery(user.id); + const isTeamWebsite = !!website?.teamId; + + const items = + teams?.data?.filter(({ members }) => + members.some( + ({ role, userId }) => + [ROLES.teamOwner, ROLES.teamManager].includes(role) && userId === user.id, + ), + ) || []; + + const handleSubmit = async () => { + await mutateAsync( + { + userId: website.teamId ? user.id : undefined, + teamId: website.userId ? teamId : undefined, + }, + { + onSuccess: async () => { + onSave?.(); + onClose?.(); + }, + }, + ); + }; + + const handleChange = (key: Key) => { + setTeamId(key as string); + }; + + if (isLoading) { + return ; + } + + return ( +
+ + {formatMessage( + isTeamWebsite ? messages.transferTeamWebsiteToUser : messages.transferUserWebsiteToTeam, + )} + + + {!isTeamWebsite && ( + + )} + + + + + {formatMessage(labels.transfer)} + + +
+ ); +} diff --git a/src/app/(main)/websites/[websiteId]/settings/page.tsx b/src/app/(main)/websites/[websiteId]/settings/page.tsx new file mode 100644 index 0000000..a26d14f --- /dev/null +++ b/src/app/(main)/websites/[websiteId]/settings/page.tsx @@ -0,0 +1,12 @@ +import type { Metadata } from 'next'; +import { SettingsPage } from './SettingsPage'; + +export default async function ({ params }: { params: Promise<{ websiteId: string }> }) { + const { websiteId } = await params; + + return ; +} + +export const metadata: Metadata = { + title: 'Settings', +}; diff --git a/src/app/(main)/websites/page.tsx b/src/app/(main)/websites/page.tsx new file mode 100644 index 0000000..cefaf80 --- /dev/null +++ b/src/app/(main)/websites/page.tsx @@ -0,0 +1,10 @@ +import type { Metadata } from 'next'; +import { WebsitesPage } from './WebsitesPage'; + +export default function () { + return ; +} + +export const metadata: Metadata = { + title: 'Websites', +}; diff --git a/src/app/Providers.tsx b/src/app/Providers.tsx new file mode 100644 index 0000000..ae1a000 --- /dev/null +++ b/src/app/Providers.tsx @@ -0,0 +1,62 @@ +'use client'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; +import { RouterProvider, ZenProvider } from '@umami/react-zen'; +import { useRouter } from 'next/navigation'; +import { useEffect } from 'react'; +import { IntlProvider } from 'react-intl'; +import { ErrorBoundary } from '@/components/common/ErrorBoundary'; +import { useLocale } from '@/components/hooks'; +import 'chartjs-adapter-date-fns'; + +const client = new QueryClient({ + defaultOptions: { + queries: { + retry: false, + refetchOnWindowFocus: false, + staleTime: 1000 * 60, + }, + }, +}); + +function MessagesProvider({ children }) { + const { locale, messages, dir } = useLocale(); + + useEffect(() => { + document.documentElement.setAttribute('dir', dir); + document.documentElement.setAttribute('lang', locale); + }, [locale, dir]); + + return ( + null}> + {children} + + ); +} + +export function Providers({ children }) { + const router = useRouter(); + + function navigate(url: string) { + if (shouldUseNativeLink(url)) { + window.location.href = url; + } else { + router.push(url); + } + } + + function shouldUseNativeLink(url: string) { + return url.startsWith('http'); + } + + return ( + + + + + {children} + + + + + ); +} diff --git a/src/app/api/admin/teams/route.ts b/src/app/api/admin/teams/route.ts new file mode 100644 index 0000000..ceb16ab --- /dev/null +++ b/src/app/api/admin/teams/route.ts @@ -0,0 +1,58 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canViewAllTeams } from '@/permissions'; +import { getTeams } from '@/queries/prisma/team'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canViewAllTeams(auth))) { + return unauthorized(); + } + + const teams = await getTeams( + { + include: { + members: { + include: { + user: { + select: { + id: true, + username: true, + }, + }, + }, + }, + _count: { + select: { + websites: { + where: { deletedAt: null }, + }, + members: { + where: { + user: { deletedAt: null }, + }, + }, + }, + }, + }, + orderBy: { + createdAt: 'desc', + }, + }, + query, + ); + + return json(teams); +} diff --git a/src/app/api/admin/users/route.ts b/src/app/api/admin/users/route.ts new file mode 100644 index 0000000..2e52261 --- /dev/null +++ b/src/app/api/admin/users/route.ts @@ -0,0 +1,46 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canViewUsers } from '@/permissions'; +import { getUsers } from '@/queries/prisma/user'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canViewUsers(auth))) { + return unauthorized(); + } + + const users = await getUsers( + { + include: { + _count: { + select: { + websites: { + where: { deletedAt: null }, + }, + }, + }, + }, + omit: { + password: true, + }, + orderBy: { + createdAt: 'desc', + }, + }, + query, + ); + + return json(users); +} diff --git a/src/app/api/admin/websites/route.ts b/src/app/api/admin/websites/route.ts new file mode 100644 index 0000000..09b2ef9 --- /dev/null +++ b/src/app/api/admin/websites/route.ts @@ -0,0 +1,58 @@ +import { z } from 'zod'; +import { ROLES } from '@/lib/constants'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canViewAllWebsites } from '@/permissions'; +import { getWebsites } from '@/queries/prisma/website'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canViewAllWebsites(auth))) { + return unauthorized(); + } + + const websites = await getWebsites( + { + include: { + user: { + where: { + deletedAt: null, + }, + select: { + username: true, + id: true, + }, + }, + team: { + where: { + deletedAt: null, + }, + include: { + members: { + where: { + role: ROLES.teamOwner, + }, + }, + }, + }, + }, + orderBy: { + createdAt: 'desc', + }, + }, + query, + ); + + return json(websites); +} diff --git a/src/app/api/auth/login/route.ts b/src/app/api/auth/login/route.ts new file mode 100644 index 0000000..17ca2f7 --- /dev/null +++ b/src/app/api/auth/login/route.ts @@ -0,0 +1,48 @@ +import { z } from 'zod'; +import { saveAuth } from '@/lib/auth'; +import { ROLES } from '@/lib/constants'; +import { secret } from '@/lib/crypto'; +import { createSecureToken } from '@/lib/jwt'; +import { checkPassword } from '@/lib/password'; +import redis from '@/lib/redis'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { getAllUserTeams, getUserByUsername } from '@/queries/prisma'; + +export async function POST(request: Request) { + const schema = z.object({ + username: z.string(), + password: z.string(), + }); + + const { body, error } = await parseRequest(request, schema, { skipAuth: true }); + + if (error) { + return error(); + } + + const { username, password } = body; + + const user = await getUserByUsername(username, { includePassword: true }); + + if (!user || !checkPassword(password, user.password)) { + return unauthorized({ code: 'incorrect-username-password' }); + } + + const { id, role, createdAt } = user; + + let token: string; + + if (redis.enabled) { + token = await saveAuth({ userId: id, role }); + } else { + token = createSecureToken({ userId: user.id, role }, secret()); + } + + const teams = await getAllUserTeams(id); + + return json({ + token, + user: { id, username, role, createdAt, isAdmin: role === ROLES.admin, teams }, + }); +} diff --git a/src/app/api/auth/logout/route.ts b/src/app/api/auth/logout/route.ts new file mode 100644 index 0000000..7bf0a81 --- /dev/null +++ b/src/app/api/auth/logout/route.ts @@ -0,0 +1,12 @@ +import redis from '@/lib/redis'; +import { ok } from '@/lib/response'; + +export async function POST(request: Request) { + if (redis.enabled) { + const token = request.headers.get('authorization')?.split(' ')?.[1]; + + await redis.client.del(token); + } + + return ok(); +} diff --git a/src/app/api/auth/sso/route.ts b/src/app/api/auth/sso/route.ts new file mode 100644 index 0000000..bba3dde --- /dev/null +++ b/src/app/api/auth/sso/route.ts @@ -0,0 +1,18 @@ +import { saveAuth } from '@/lib/auth'; +import redis from '@/lib/redis'; +import { parseRequest } from '@/lib/request'; +import { json } from '@/lib/response'; + +export async function POST(request: Request) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + if (redis.enabled) { + const token = await saveAuth({ userId: auth.user.id }, 86400); + + return json({ user: auth.user, token }); + } +} diff --git a/src/app/api/auth/verify/route.ts b/src/app/api/auth/verify/route.ts new file mode 100644 index 0000000..b308b7b --- /dev/null +++ b/src/app/api/auth/verify/route.ts @@ -0,0 +1,15 @@ +import { parseRequest } from '@/lib/request'; +import { json } from '@/lib/response'; +import { getAllUserTeams } from '@/queries/prisma'; + +export async function POST(request: Request) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const teams = await getAllUserTeams(auth.user.id); + + return json({ ...auth.user, teams }); +} diff --git a/src/app/api/batch/route.ts b/src/app/api/batch/route.ts new file mode 100644 index 0000000..46e8b3c --- /dev/null +++ b/src/app/api/batch/route.ts @@ -0,0 +1,58 @@ +import { z } from 'zod'; +import * as send from '@/app/api/send/route'; +import { parseRequest } from '@/lib/request'; +import { json, serverError } from '@/lib/response'; +import { anyObjectParam } from '@/lib/schema'; + +const schema = z.array(anyObjectParam); + +export async function POST(request: Request) { + try { + const { body, error } = await parseRequest(request, schema, { skipAuth: true }); + + if (error) { + return error(); + } + + const errors = []; + + let index = 0; + let cache = null; + for (const data of body) { + // Recreate a fresh Request since `new Request(request)` will have the following error: + // > Cannot read private member #state from an object whose class did not declare it + + // Copy headers we received, ensure JSON content type, and avoid conflicting content-length + const headers = new Headers(request.headers); + headers.set('content-type', 'application/json'); + headers.delete('content-length'); + + const newRequest = new Request(request.url, { + method: 'POST', + headers, + body: JSON.stringify(data), + }); + + const response = await send.POST(newRequest); + const responseJson = await response.json(); + + if (!response.ok) { + errors.push({ index, response: responseJson }); + } else { + cache ??= responseJson.cache; + } + + index++; + } + + return json({ + size: body.length, + processed: body.length - errors.length, + errors: errors.length, + details: errors, + cache, + }); + } catch (e) { + return serverError(e); + } +} diff --git a/src/app/api/config/route.ts b/src/app/api/config/route.ts new file mode 100644 index 0000000..4e40caa --- /dev/null +++ b/src/app/api/config/route.ts @@ -0,0 +1,21 @@ +import { parseRequest } from '@/lib/request'; +import { json } from '@/lib/response'; + +export async function GET(request: Request) { + const { error } = await parseRequest(request, null, { skipAuth: true }); + + if (error) { + return error(); + } + + return json({ + cloudMode: !!process.env.CLOUD_MODE, + faviconUrl: process.env.FAVICON_URL, + linksUrl: process.env.LINKS_URL, + pixelsUrl: process.env.PIXELS_URL, + privateMode: !!process.env.PRIVATE_MODE, + telemetryDisabled: !!process.env.DISABLE_TELEMETRY, + trackerScriptName: process.env.TRACKER_SCRIPT_NAME, + updatesDisabled: !!process.env.DISABLE_UPDATES, + }); +} diff --git a/src/app/api/heartbeat/route.ts b/src/app/api/heartbeat/route.ts new file mode 100644 index 0000000..9146308 --- /dev/null +++ b/src/app/api/heartbeat/route.ts @@ -0,0 +1,3 @@ +export async function GET() { + return Response.json({ ok: true }); +} diff --git a/src/app/api/links/[linkId]/route.ts b/src/app/api/links/[linkId]/route.ts new file mode 100644 index 0000000..92f572c --- /dev/null +++ b/src/app/api/links/[linkId]/route.ts @@ -0,0 +1,77 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, ok, serverError, unauthorized } from '@/lib/response'; +import { canDeleteLink, canUpdateLink, canViewLink } from '@/permissions'; +import { deleteLink, getLink, updateLink } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ linkId: string }> }) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { linkId } = await params; + + if (!(await canViewLink(auth, linkId))) { + return unauthorized(); + } + + const website = await getLink(linkId); + + return json(website); +} + +export async function POST(request: Request, { params }: { params: Promise<{ linkId: string }> }) { + const schema = z.object({ + name: z.string().optional(), + url: z.string().optional(), + slug: z.string().min(8).optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { linkId } = await params; + const { name, url, slug } = body; + + if (!(await canUpdateLink(auth, linkId))) { + return unauthorized(); + } + + try { + const result = await updateLink(linkId, { name, url, slug }); + + return Response.json(result); + } catch (e: any) { + if (e.message.toLowerCase().includes('unique constraint') && e.message.includes('slug')) { + return badRequest({ message: 'That slug is already taken.' }); + } + + return serverError(e); + } +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ linkId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { linkId } = await params; + + if (!(await canDeleteLink(auth, linkId))) { + return unauthorized(); + } + + await deleteLink(linkId); + + return ok(); +} diff --git a/src/app/api/links/route.ts b/src/app/api/links/route.ts new file mode 100644 index 0000000..a639888 --- /dev/null +++ b/src/app/api/links/route.ts @@ -0,0 +1,64 @@ +import { z } from 'zod'; +import { uuid } from '@/lib/crypto'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canCreateTeamWebsite, canCreateWebsite } from '@/permissions'; +import { createLink, getUserLinks } from '@/queries/prisma'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const filters = await getQueryFilters(query); + + const links = await getUserLinks(auth.user.id, filters); + + return json(links); +} + +export async function POST(request: Request) { + const schema = z.object({ + name: z.string().max(100), + url: z.string().max(500), + slug: z.string().max(100), + teamId: z.string().nullable().optional(), + id: z.uuid().nullable().optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { id, name, url, slug, teamId } = body; + + if ((teamId && !(await canCreateTeamWebsite(auth, teamId))) || !(await canCreateWebsite(auth))) { + return unauthorized(); + } + + const data: any = { + id: id ?? uuid(), + name, + url, + slug, + teamId, + }; + + if (!teamId) { + data.userId = auth.user.id; + } + + const result = await createLink(data); + + return json(result); +} diff --git a/src/app/api/me/password/route.ts b/src/app/api/me/password/route.ts new file mode 100644 index 0000000..24c7370 --- /dev/null +++ b/src/app/api/me/password/route.ts @@ -0,0 +1,33 @@ +import { z } from 'zod'; +import { checkPassword, hashPassword } from '@/lib/password'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json } from '@/lib/response'; +import { getUser, updateUser } from '@/queries/prisma/user'; + +export async function POST(request: Request) { + const schema = z.object({ + currentPassword: z.string(), + newPassword: z.string().min(8), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const userId = auth.user.id; + const { currentPassword, newPassword } = body; + + const user = await getUser(userId, { includePassword: true }); + + if (!checkPassword(currentPassword, user.password)) { + return badRequest({ message: 'Current password is incorrect' }); + } + + const password = hashPassword(newPassword); + + const updated = await updateUser(userId, { password }); + + return json(updated); +} diff --git a/src/app/api/me/route.ts b/src/app/api/me/route.ts new file mode 100644 index 0000000..59a3255 --- /dev/null +++ b/src/app/api/me/route.ts @@ -0,0 +1,12 @@ +import { parseRequest } from '@/lib/request'; +import { json } from '@/lib/response'; + +export async function GET(request: Request) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + return json(auth); +} diff --git a/src/app/api/me/teams/route.ts b/src/app/api/me/teams/route.ts new file mode 100644 index 0000000..555bf30 --- /dev/null +++ b/src/app/api/me/teams/route.ts @@ -0,0 +1,23 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json } from '@/lib/response'; +import { pagingParams } from '@/lib/schema'; +import { getUserTeams } from '@/queries/prisma'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const filters = await getQueryFilters(query); + + const teams = await getUserTeams(auth.user.id, filters); + + return json(teams); +} diff --git a/src/app/api/me/websites/route.ts b/src/app/api/me/websites/route.ts new file mode 100644 index 0000000..9ec39c7 --- /dev/null +++ b/src/app/api/me/websites/route.ts @@ -0,0 +1,26 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json } from '@/lib/response'; +import { pagingParams } from '@/lib/schema'; +import { getAllUserWebsitesIncludingTeamOwner, getUserWebsites } from '@/queries/prisma'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + includeTeams: z.string().optional(), + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const filters = await getQueryFilters(query); + + if (query.includeTeams) { + return json(await getAllUserWebsitesIncludingTeamOwner(auth.user.id, filters)); + } + + return json(await getUserWebsites(auth.user.id, filters)); +} diff --git a/src/app/api/pixels/[pixelId]/route.ts b/src/app/api/pixels/[pixelId]/route.ts new file mode 100644 index 0000000..ecaf1fd --- /dev/null +++ b/src/app/api/pixels/[pixelId]/route.ts @@ -0,0 +1,76 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, ok, serverError, unauthorized } from '@/lib/response'; +import { canDeletePixel, canUpdatePixel, canViewPixel } from '@/permissions'; +import { deletePixel, getPixel, updatePixel } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ pixelId: string }> }) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { pixelId } = await params; + + if (!(await canViewPixel(auth, pixelId))) { + return unauthorized(); + } + + const pixel = await getPixel(pixelId); + + return json(pixel); +} + +export async function POST(request: Request, { params }: { params: Promise<{ pixelId: string }> }) { + const schema = z.object({ + name: z.string().optional(), + slug: z.string().min(8).optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { pixelId } = await params; + const { name, slug } = body; + + if (!(await canUpdatePixel(auth, pixelId))) { + return unauthorized(); + } + + try { + const pixel = await updatePixel(pixelId, { name, slug }); + + return Response.json(pixel); + } catch (e: any) { + if (e.message.toLowerCase().includes('unique constraint') && e.message.includes('slug')) { + return badRequest({ message: 'That slug is already taken.' }); + } + + return serverError(e); + } +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ pixelId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { pixelId } = await params; + + if (!(await canDeletePixel(auth, pixelId))) { + return unauthorized(); + } + + await deletePixel(pixelId); + + return ok(); +} diff --git a/src/app/api/pixels/route.ts b/src/app/api/pixels/route.ts new file mode 100644 index 0000000..8baae4f --- /dev/null +++ b/src/app/api/pixels/route.ts @@ -0,0 +1,62 @@ +import { z } from 'zod'; +import { uuid } from '@/lib/crypto'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canCreateTeamWebsite, canCreateWebsite } from '@/permissions'; +import { createPixel, getUserPixels } from '@/queries/prisma'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const filters = await getQueryFilters(query); + + const links = await getUserPixels(auth.user.id, filters); + + return json(links); +} + +export async function POST(request: Request) { + const schema = z.object({ + name: z.string().max(100), + slug: z.string().max(100), + teamId: z.string().nullable().optional(), + id: z.uuid().nullable().optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { id, name, slug, teamId } = body; + + if ((teamId && !(await canCreateTeamWebsite(auth, teamId))) || !(await canCreateWebsite(auth))) { + return unauthorized(); + } + + const data: any = { + id: id ?? uuid(), + name, + slug, + teamId, + }; + + if (!teamId) { + data.userId = auth.user.id; + } + + const result = await createPixel(data); + + return json(result); +} diff --git a/src/app/api/realtime/[websiteId]/route.ts b/src/app/api/realtime/[websiteId]/route.ts new file mode 100644 index 0000000..32b7a16 --- /dev/null +++ b/src/app/api/realtime/[websiteId]/route.ts @@ -0,0 +1,36 @@ +import { startOfMinute, subMinutes } from 'date-fns'; +import { REALTIME_RANGE } from '@/lib/constants'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getRealtimeData } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const { auth, query, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters( + { + ...query, + startAt: subMinutes(startOfMinute(new Date()), REALTIME_RANGE).getTime(), + endAt: Date.now(), + }, + websiteId, + ); + + const data = await getRealtimeData(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/reports/[reportId]/route.ts b/src/app/api/reports/[reportId]/route.ts new file mode 100644 index 0000000..1f22c62 --- /dev/null +++ b/src/app/api/reports/[reportId]/route.ts @@ -0,0 +1,80 @@ +import { parseRequest } from '@/lib/request'; +import { json, notFound, ok, unauthorized } from '@/lib/response'; +import { reportSchema } from '@/lib/schema'; +import { canDeleteWebsite, canUpdateWebsite, canViewReport } from '@/permissions'; +import { deleteReport, getReport, updateReport } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ reportId: string }> }) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { reportId } = await params; + + const report = await getReport(reportId); + + if (!(await canViewReport(auth, report))) { + return unauthorized(); + } + + return json(report); +} + +export async function POST( + request: Request, + { params }: { params: Promise<{ reportId: string }> }, +) { + const { auth, body, error } = await parseRequest(request, reportSchema); + + if (error) { + return error(); + } + + const { reportId } = await params; + const { websiteId, type, name, description, parameters } = body; + + const report = await getReport(reportId); + + if (!report) { + return notFound(); + } + + if (!(await canUpdateWebsite(auth, websiteId))) { + return unauthorized(); + } + + const result = await updateReport(reportId, { + websiteId, + userId: auth.user.id, + type, + name, + description, + parameters, + } as any); + + return json(result); +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ reportId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { reportId } = await params; + const report = await getReport(reportId); + + if (!(await canDeleteWebsite(auth, report.websiteId))) { + return unauthorized(); + } + + await deleteReport(reportId); + + return ok(); +} diff --git a/src/app/api/reports/attribution/route.ts b/src/app/api/reports/attribution/route.ts new file mode 100644 index 0000000..bd7d86d --- /dev/null +++ b/src/app/api/reports/attribution/route.ts @@ -0,0 +1,26 @@ +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { type AttributionParameters, getAttribution } from '@/queries/sql/reports/getAttribution'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const parameters = await setWebsiteDate(websiteId, body.parameters); + const filters = await getQueryFilters(body.filters, websiteId); + + const data = await getAttribution(websiteId, parameters as AttributionParameters, filters); + + return json(data); +} diff --git a/src/app/api/reports/breakdown/route.ts b/src/app/api/reports/breakdown/route.ts new file mode 100644 index 0000000..3c59314 --- /dev/null +++ b/src/app/api/reports/breakdown/route.ts @@ -0,0 +1,26 @@ +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { type BreakdownParameters, getBreakdown } from '@/queries/sql'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const parameters = await setWebsiteDate(websiteId, body.parameters); + const filters = await getQueryFilters(body.filters, websiteId); + + const data = await getBreakdown(websiteId, parameters as BreakdownParameters, filters); + + return json(data); +} diff --git a/src/app/api/reports/funnel/route.ts b/src/app/api/reports/funnel/route.ts new file mode 100644 index 0000000..c13f6f1 --- /dev/null +++ b/src/app/api/reports/funnel/route.ts @@ -0,0 +1,26 @@ +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { type FunnelParameters, getFunnel } from '@/queries/sql'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const parameters = await setWebsiteDate(websiteId, body.parameters); + const filters = await getQueryFilters(body.filters, websiteId); + + const data = await getFunnel(websiteId, parameters as FunnelParameters, filters); + + return json(data); +} diff --git a/src/app/api/reports/goal/route.ts b/src/app/api/reports/goal/route.ts new file mode 100644 index 0000000..3bd0415 --- /dev/null +++ b/src/app/api/reports/goal/route.ts @@ -0,0 +1,26 @@ +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { type GoalParameters, getGoal } from '@/queries/sql/reports/getGoal'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const parameters = await setWebsiteDate(websiteId, body.parameters); + const filters = await getQueryFilters(body.filters, websiteId); + + const data = await getGoal(websiteId, parameters as GoalParameters, filters); + + return json(data); +} diff --git a/src/app/api/reports/journey/route.ts b/src/app/api/reports/journey/route.ts new file mode 100644 index 0000000..29e8531 --- /dev/null +++ b/src/app/api/reports/journey/route.ts @@ -0,0 +1,25 @@ +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getJourney } from '@/queries/sql'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId, parameters, filters } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const queryFilters = await getQueryFilters(filters, websiteId); + + const data = await getJourney(websiteId, parameters, queryFilters); + + return json(data); +} diff --git a/src/app/api/reports/retention/route.ts b/src/app/api/reports/retention/route.ts new file mode 100644 index 0000000..d1a7d69 --- /dev/null +++ b/src/app/api/reports/retention/route.ts @@ -0,0 +1,26 @@ +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getRetention, type RetentionParameters } from '@/queries/sql'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(body.filters, websiteId); + const parameters = await setWebsiteDate(websiteId, body.parameters); + + const data = await getRetention(websiteId, parameters as RetentionParameters, filters); + + return json(data); +} diff --git a/src/app/api/reports/revenue/route.ts b/src/app/api/reports/revenue/route.ts new file mode 100644 index 0000000..6a55661 --- /dev/null +++ b/src/app/api/reports/revenue/route.ts @@ -0,0 +1,26 @@ +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getRevenue, type RevenuParameters } from '@/queries/sql/reports/getRevenue'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const parameters = await setWebsiteDate(websiteId, body.parameters); + const filters = await getQueryFilters(body.filters, websiteId); + + const data = await getRevenue(websiteId, parameters as RevenuParameters, filters); + + return json(data); +} diff --git a/src/app/api/reports/route.ts b/src/app/api/reports/route.ts new file mode 100644 index 0000000..b0a4135 --- /dev/null +++ b/src/app/api/reports/route.ts @@ -0,0 +1,73 @@ +import { z } from 'zod'; +import { uuid } from '@/lib/crypto'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, reportSchema, reportTypeParam } from '@/lib/schema'; +import { canUpdateWebsite, canViewWebsite } from '@/permissions'; +import { createReport, getReports } from '@/queries/prisma'; + +export async function GET(request: Request) { + const schema = z.object({ + websiteId: z.uuid(), + type: reportTypeParam.optional(), + ...pagingParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { page, search, pageSize, websiteId, type } = query; + const filters = { + page, + pageSize, + search, + }; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const data = await getReports( + { + where: { + websiteId, + type, + website: { + deletedAt: null, + }, + }, + }, + filters, + ); + + return json(data); +} + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportSchema); + + if (error) { + return error(); + } + + const { websiteId, type, name, description, parameters } = body; + + if (!(await canUpdateWebsite(auth, websiteId))) { + return unauthorized(); + } + + const result = await createReport({ + id: uuid(), + userId: auth.user.id, + websiteId, + type, + name, + description: description || '', + parameters, + }); + + return json(result); +} diff --git a/src/app/api/reports/utm/route.ts b/src/app/api/reports/utm/route.ts new file mode 100644 index 0000000..577fdab --- /dev/null +++ b/src/app/api/reports/utm/route.ts @@ -0,0 +1,37 @@ +import { UTM_PARAMS } from '@/lib/constants'; +import { getQueryFilters, parseRequest, setWebsiteDate } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { reportResultSchema } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getUTM, type UTMParameters } from '@/queries/sql'; + +export async function POST(request: Request) { + const { auth, body, error } = await parseRequest(request, reportResultSchema); + + if (error) { + return error(); + } + + const { websiteId } = body; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(body.filters, websiteId); + const parameters = await setWebsiteDate(websiteId, body.parameters); + + const data = { + utm_source: [], + utm_medium: [], + utm_campaign: [], + utm_term: [], + utm_content: [], + }; + + for (const key of UTM_PARAMS) { + data[key] = await getUTM(websiteId, { column: key, ...parameters } as UTMParameters, filters); + } + + return json(data); +} diff --git a/src/app/api/scripts/telemetry/route.ts b/src/app/api/scripts/telemetry/route.ts new file mode 100644 index 0000000..b19e99f --- /dev/null +++ b/src/app/api/scripts/telemetry/route.ts @@ -0,0 +1,28 @@ +import { CURRENT_VERSION, TELEMETRY_PIXEL } from '@/lib/constants'; + +export async function GET() { + if ( + process.env.NODE_ENV !== 'production' || + process.env.DISABLE_TELEMETRY || + process.env.PRIVATE_MODE + ) { + return new Response('/* telemetry disabled */', { + headers: { + 'content-type': 'text/javascript', + }, + }); + } + + const script = ` + (()=>{const i=document.createElement('img'); + i.setAttribute('src','${TELEMETRY_PIXEL}?v=${CURRENT_VERSION}'); + i.setAttribute('style','width:0;height:0;position:absolute;pointer-events:none;'); + document.body.appendChild(i);})(); + `; + + return new Response(script.replace(/\s\s+/g, ''), { + headers: { + 'content-type': 'text/javascript', + }, + }); +} diff --git a/src/app/api/send/route.ts b/src/app/api/send/route.ts new file mode 100644 index 0000000..a0becc2 --- /dev/null +++ b/src/app/api/send/route.ts @@ -0,0 +1,284 @@ +import { startOfHour, startOfMonth } from 'date-fns'; +import { isbot } from 'isbot'; +import { serializeError } from 'serialize-error'; +import { z } from 'zod'; +import clickhouse from '@/lib/clickhouse'; +import { COLLECTION_TYPE, EVENT_TYPE } from '@/lib/constants'; +import { hash, secret, uuid } from '@/lib/crypto'; +import { getClientInfo, hasBlockedIp } from '@/lib/detect'; +import { createToken, parseToken } from '@/lib/jwt'; +import { fetchWebsite } from '@/lib/load'; +import { parseRequest } from '@/lib/request'; +import { badRequest, forbidden, json, serverError } from '@/lib/response'; +import { anyObjectParam, urlOrPathParam } from '@/lib/schema'; +import { safeDecodeURI, safeDecodeURIComponent } from '@/lib/url'; +import { createSession, saveEvent, saveSessionData } from '@/queries/sql'; + +interface Cache { + websiteId: string; + sessionId: string; + visitId: string; + iat: number; +} + +const schema = z.object({ + type: z.enum(['event', 'identify']), + payload: z + .object({ + website: z.uuid().optional(), + link: z.uuid().optional(), + pixel: z.uuid().optional(), + data: anyObjectParam.optional(), + hostname: z.string().max(100).optional(), + language: z.string().max(35).optional(), + referrer: urlOrPathParam.optional(), + screen: z.string().max(11).optional(), + title: z.string().optional(), + url: urlOrPathParam.optional(), + name: z.string().max(50).optional(), + tag: z.string().max(50).optional(), + ip: z.string().optional(), + userAgent: z.string().optional(), + timestamp: z.coerce.number().int().optional(), + id: z.string().optional(), + browser: z.string().optional(), + os: z.string().optional(), + device: z.string().optional(), + }) + .refine( + data => { + const keys = [data.website, data.link, data.pixel]; + const count = keys.filter(Boolean).length; + return count === 1; + }, + { + message: 'Exactly one of website, link, or pixel must be provided', + path: ['website'], + }, + ), +}); + +export async function POST(request: Request) { + try { + const { body, error } = await parseRequest(request, schema, { skipAuth: true }); + + if (error) { + return error(); + } + + const { type, payload } = body; + + const { + website: websiteId, + pixel: pixelId, + link: linkId, + hostname, + screen, + language, + url, + referrer, + name, + data, + title, + tag, + timestamp, + id, + } = payload; + + const sourceId = websiteId || pixelId || linkId; + + // Cache check + let cache: Cache | null = null; + + if (websiteId) { + const cacheHeader = request.headers.get('x-umami-cache'); + + if (cacheHeader) { + const result = await parseToken(cacheHeader, secret()); + + if (result) { + cache = result; + } + } + + // Find website + if (!cache?.websiteId) { + const website = await fetchWebsite(websiteId); + + if (!website) { + return badRequest({ message: 'Website not found.' }); + } + } + } + + // Client info + const { ip, userAgent, device, browser, os, country, region, city } = await getClientInfo( + request, + payload, + ); + + // Bot check + if (!process.env.DISABLE_BOT_CHECK && isbot(userAgent)) { + return json({ beep: 'boop' }); + } + + // IP block + if (hasBlockedIp(ip)) { + return forbidden(); + } + + const createdAt = timestamp ? new Date(timestamp * 1000) : new Date(); + const now = Math.floor(Date.now() / 1000); + + const sessionSalt = hash(startOfMonth(createdAt).toUTCString()); + const visitSalt = hash(startOfHour(createdAt).toUTCString()); + + const sessionId = id ? uuid(sourceId, id) : uuid(sourceId, ip, userAgent, sessionSalt); + + // Create a session if not found + if (!clickhouse.enabled && !cache?.sessionId) { + await createSession({ + id: sessionId, + websiteId: sourceId, + browser, + os, + device, + screen, + language, + country, + region, + city, + distinctId: id, + createdAt, + }); + } + + // Visit info + let visitId = cache?.visitId || uuid(sessionId, visitSalt); + let iat = cache?.iat || now; + + // Expire visit after 30 minutes + if (!timestamp && now - iat > 1800) { + visitId = uuid(sessionId, visitSalt); + iat = now; + } + + if (type === COLLECTION_TYPE.event) { + const base = hostname ? `https://${hostname}` : 'https://localhost'; + const currentUrl = new URL(url, base); + + let urlPath = + currentUrl.pathname === '/undefined' ? '' : currentUrl.pathname + currentUrl.hash; + const urlQuery = currentUrl.search.substring(1); + const urlDomain = currentUrl.hostname.replace(/^www./, ''); + + let referrerPath: string; + let referrerQuery: string; + let referrerDomain: string; + + // UTM Params + const utmSource = currentUrl.searchParams.get('utm_source'); + const utmMedium = currentUrl.searchParams.get('utm_medium'); + const utmCampaign = currentUrl.searchParams.get('utm_campaign'); + const utmContent = currentUrl.searchParams.get('utm_content'); + const utmTerm = currentUrl.searchParams.get('utm_term'); + + // Click IDs + const gclid = currentUrl.searchParams.get('gclid'); + const fbclid = currentUrl.searchParams.get('fbclid'); + const msclkid = currentUrl.searchParams.get('msclkid'); + const ttclid = currentUrl.searchParams.get('ttclid'); + const lifatid = currentUrl.searchParams.get('li_fat_id'); + const twclid = currentUrl.searchParams.get('twclid'); + + if (process.env.REMOVE_TRAILING_SLASH) { + urlPath = urlPath.replace(/\/(?=(#.*)?$)/, ''); + } + + if (referrer) { + const referrerUrl = new URL(referrer, base); + + referrerPath = referrerUrl.pathname; + referrerQuery = referrerUrl.search.substring(1); + referrerDomain = referrerUrl.hostname.replace(/^www\./, ''); + } + + const eventType = linkId + ? EVENT_TYPE.linkEvent + : pixelId + ? EVENT_TYPE.pixelEvent + : name + ? EVENT_TYPE.customEvent + : EVENT_TYPE.pageView; + + await saveEvent({ + websiteId: sourceId, + sessionId, + visitId, + eventType, + createdAt, + + // Page + pageTitle: safeDecodeURIComponent(title), + hostname: hostname || urlDomain, + urlPath: safeDecodeURI(urlPath), + urlQuery, + referrerPath: safeDecodeURI(referrerPath), + referrerQuery, + referrerDomain, + + // Session + distinctId: id, + browser, + os, + device, + screen, + language, + country, + region, + city, + + // Events + eventName: name, + eventData: data, + tag, + + // UTM + utmSource, + utmMedium, + utmCampaign, + utmContent, + utmTerm, + + // Click IDs + gclid, + fbclid, + msclkid, + ttclid, + lifatid, + twclid, + }); + } else if (type === COLLECTION_TYPE.identify) { + if (data) { + await saveSessionData({ + websiteId, + sessionId, + sessionData: data, + distinctId: id, + createdAt, + }); + } + } + + const token = createToken({ websiteId, sessionId, visitId, iat }, secret()); + + return json({ cache: token, sessionId, visitId }); + } catch (e) { + const error = serializeError(e); + + // eslint-disable-next-line no-console + console.log(error); + + return serverError({ errorObject: error }); + } +} diff --git a/src/app/api/share/[shareId]/route.ts b/src/app/api/share/[shareId]/route.ts new file mode 100644 index 0000000..bef87c4 --- /dev/null +++ b/src/app/api/share/[shareId]/route.ts @@ -0,0 +1,19 @@ +import { secret } from '@/lib/crypto'; +import { createToken } from '@/lib/jwt'; +import { json, notFound } from '@/lib/response'; +import { getSharedWebsite } from '@/queries/prisma'; + +export async function GET(_request: Request, { params }: { params: Promise<{ shareId: string }> }) { + const { shareId } = await params; + + const website = await getSharedWebsite(shareId); + + if (!website) { + return notFound(); + } + + const data = { websiteId: website.id }; + const token = createToken(data, secret()); + + return json({ ...data, token }); +} diff --git a/src/app/api/teams/[teamId]/links/route.ts b/src/app/api/teams/[teamId]/links/route.ts new file mode 100644 index 0000000..41e139b --- /dev/null +++ b/src/app/api/teams/[teamId]/links/route.ts @@ -0,0 +1,29 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canViewTeam } from '@/permissions'; +import { getTeamLinks } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + const { teamId } = await params; + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canViewTeam(auth, teamId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query); + + const links = await getTeamLinks(teamId, filters); + + return json(links); +} diff --git a/src/app/api/teams/[teamId]/pixels/route.ts b/src/app/api/teams/[teamId]/pixels/route.ts new file mode 100644 index 0000000..daac204 --- /dev/null +++ b/src/app/api/teams/[teamId]/pixels/route.ts @@ -0,0 +1,29 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canViewTeam } from '@/permissions'; +import { getTeamPixels } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + const { teamId } = await params; + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canViewTeam(auth, teamId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query); + + const websites = await getTeamPixels(teamId, filters); + + return json(websites); +} diff --git a/src/app/api/teams/[teamId]/route.ts b/src/app/api/teams/[teamId]/route.ts new file mode 100644 index 0000000..c334b2a --- /dev/null +++ b/src/app/api/teams/[teamId]/route.ts @@ -0,0 +1,71 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { json, notFound, ok, unauthorized } from '@/lib/response'; +import { canDeleteTeam, canUpdateTeam, canViewTeam } from '@/permissions'; +import { deleteTeam, getTeam, updateTeam } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { teamId } = await params; + + if (!(await canViewTeam(auth, teamId))) { + return unauthorized(); + } + + const team = await getTeam(teamId, { includeMembers: true }); + + if (!team) { + return notFound({ message: 'Team not found.' }); + } + + return json(team); +} + +export async function POST(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const schema = z.object({ + name: z.string().max(50).optional(), + accessCode: z.string().max(50).optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { teamId } = await params; + + if (!(await canUpdateTeam(auth, teamId))) { + return unauthorized({ message: 'You must be the owner/manager of this team.' }); + } + + const team = await updateTeam(teamId, body); + + return json(team); +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ teamId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { teamId } = await params; + + if (!(await canDeleteTeam(auth, teamId))) { + return unauthorized({ message: 'You must be the owner/manager of this team.' }); + } + + await deleteTeam(teamId); + + return ok(); +} diff --git a/src/app/api/teams/[teamId]/users/[userId]/route.ts b/src/app/api/teams/[teamId]/users/[userId]/route.ts new file mode 100644 index 0000000..d09af9d --- /dev/null +++ b/src/app/api/teams/[teamId]/users/[userId]/route.ts @@ -0,0 +1,85 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, ok, unauthorized } from '@/lib/response'; +import { teamRoleParam } from '@/lib/schema'; +import { canDeleteTeamUser, canUpdateTeam } from '@/permissions'; +import { deleteTeamUser, getTeamUser, updateTeamUser } from '@/queries/prisma'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ teamId: string; userId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { teamId, userId } = await params; + + if (!(await canUpdateTeam(auth, teamId))) { + return unauthorized({ message: 'You must be the owner/manager of this team.' }); + } + + const teamUser = await getTeamUser(teamId, userId); + + return json(teamUser); +} + +export async function POST( + request: Request, + { params }: { params: Promise<{ teamId: string; userId: string }> }, +) { + const schema = z.object({ + role: teamRoleParam, + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { teamId, userId } = await params; + + if (!(await canUpdateTeam(auth, teamId))) { + return unauthorized({ message: 'You must be the owner/manager of this team.' }); + } + + const teamUser = await getTeamUser(teamId, userId); + + if (!teamUser) { + return badRequest({ message: 'The User does not exists on this team.' }); + } + + const user = await updateTeamUser(teamUser.id, body); + + return json(user); +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ teamId: string; userId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { teamId, userId } = await params; + + if (!(await canDeleteTeamUser(auth, teamId, userId))) { + return unauthorized({ message: 'You must be the owner/manager of this team.' }); + } + + const teamUser = await getTeamUser(teamId, userId); + + if (!teamUser) { + return badRequest({ message: 'The User does not exists on this team.' }); + } + + await deleteTeamUser(teamId, userId); + + return ok(); +} diff --git a/src/app/api/teams/[teamId]/users/route.ts b/src/app/api/teams/[teamId]/users/route.ts new file mode 100644 index 0000000..c129763 --- /dev/null +++ b/src/app/api/teams/[teamId]/users/route.ts @@ -0,0 +1,83 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { badRequest, json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams, teamRoleParam } from '@/lib/schema'; +import { canUpdateTeam, canViewTeam } from '@/permissions'; +import { createTeamUser, getTeamUser, getTeamUsers } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { teamId } = await params; + + if (!(await canViewTeam(auth, teamId))) { + return unauthorized({ message: 'You must be a member of this team.' }); + } + + const filters = await getQueryFilters(query); + + const users = await getTeamUsers( + { + where: { + teamId, + user: { + deletedAt: null, + }, + }, + include: { + user: { + select: { + id: true, + username: true, + }, + }, + }, + orderBy: { + createdAt: 'asc', + }, + }, + filters, + ); + + return json(users); +} + +export async function POST(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const schema = z.object({ + userId: z.uuid(), + role: teamRoleParam, + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { teamId } = await params; + + if (!(await canUpdateTeam(auth, teamId))) { + return unauthorized({ message: 'You must be the owner/manager of this team.' }); + } + + const { userId, role } = body; + + const teamUser = await getTeamUser(teamId, userId); + + if (teamUser) { + return badRequest({ message: 'User is already a member of the Team.' }); + } + + const users = await createTeamUser(userId, teamId, role); + + return json(users); +} diff --git a/src/app/api/teams/[teamId]/websites/route.ts b/src/app/api/teams/[teamId]/websites/route.ts new file mode 100644 index 0000000..05c6d80 --- /dev/null +++ b/src/app/api/teams/[teamId]/websites/route.ts @@ -0,0 +1,29 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canViewTeam } from '@/permissions'; +import { getTeamWebsites } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ teamId: string }> }) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + }); + const { teamId } = await params; + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canViewTeam(auth, teamId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query); + + const websites = await getTeamWebsites(teamId, filters); + + return json(websites); +} diff --git a/src/app/api/teams/join/route.ts b/src/app/api/teams/join/route.ts new file mode 100644 index 0000000..3ce0913 --- /dev/null +++ b/src/app/api/teams/join/route.ts @@ -0,0 +1,39 @@ +import { z } from 'zod'; +import { ROLES } from '@/lib/constants'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, notFound } from '@/lib/response'; +import { createTeamUser, findTeam, getTeamUser } from '@/queries/prisma'; + +export async function POST(request: Request) { + const schema = z.object({ + accessCode: z.string().max(50), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { accessCode } = body; + + const team = await findTeam({ + where: { + accessCode, + }, + }); + + if (!team) { + return notFound({ message: 'Team not found.', code: 'team-not-found' }); + } + + const teamUser = await getTeamUser(team.id, auth.user.id); + + if (teamUser) { + return badRequest({ message: 'User is already a team member.' }); + } + + const user = await createTeamUser(auth.user.id, team.id, ROLES.teamMember); + + return json(user); +} diff --git a/src/app/api/teams/route.ts b/src/app/api/teams/route.ts new file mode 100644 index 0000000..53ef592 --- /dev/null +++ b/src/app/api/teams/route.ts @@ -0,0 +1,55 @@ +import { z } from 'zod'; +import { uuid } from '@/lib/crypto'; +import { getRandomChars } from '@/lib/generate'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams } from '@/lib/schema'; +import { canCreateTeam } from '@/permissions'; +import { createTeam, getUserTeams } from '@/queries/prisma'; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const filters = await getQueryFilters(query); + + const teams = await getUserTeams(auth.user.id, filters); + + return json(teams); +} + +export async function POST(request: Request) { + const schema = z.object({ + name: z.string().max(50), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canCreateTeam(auth))) { + return unauthorized(); + } + + const { name } = body; + + const team = await createTeam( + { + id: uuid(), + name, + accessCode: `team_${getRandomChars(16)}`, + }, + auth.user.id, + ); + + return json(team); +} diff --git a/src/app/api/users/[userId]/route.ts b/src/app/api/users/[userId]/route.ts new file mode 100644 index 0000000..aade8aa --- /dev/null +++ b/src/app/api/users/[userId]/route.ts @@ -0,0 +1,102 @@ +import { z } from 'zod'; +import { hashPassword } from '@/lib/password'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, ok, unauthorized } from '@/lib/response'; +import { userRoleParam } from '@/lib/schema'; +import { canDeleteUser, canUpdateUser, canViewUser } from '@/permissions'; +import { deleteUser, getUser, getUserByUsername, updateUser } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ userId: string }> }) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { userId } = await params; + + if (!(await canViewUser(auth, userId))) { + return unauthorized(); + } + + const user = await getUser(userId); + + return json(user); +} + +export async function POST(request: Request, { params }: { params: Promise<{ userId: string }> }) { + const schema = z.object({ + username: z.string().max(255).optional(), + password: z.string().max(255).optional(), + role: userRoleParam.optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { userId } = await params; + + if (!(await canUpdateUser(auth, userId))) { + return unauthorized(); + } + + const { username, password, role } = body; + + const user = await getUser(userId); + + const data: any = {}; + + if (password) { + data.password = hashPassword(password); + } + + // Only admin can change these fields + if (role && auth.user.isAdmin) { + data.role = role; + } + + if (username && auth.user.isAdmin) { + data.username = username; + } + + // Check when username changes + if (data.username && user.username !== data.username) { + const user = await getUserByUsername(username); + + if (user) { + return badRequest({ message: 'User already exists' }); + } + } + + const updated = await updateUser(userId, data); + + return json(updated); +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ userId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { userId } = await params; + + if (!(await canDeleteUser(auth))) { + return unauthorized(); + } + + if (userId === auth.user.id) { + return badRequest({ message: 'You cannot delete yourself.' }); + } + + await deleteUser(userId); + + return ok(); +} diff --git a/src/app/api/users/[userId]/teams/route.ts b/src/app/api/users/[userId]/teams/route.ts new file mode 100644 index 0000000..7a834a3 --- /dev/null +++ b/src/app/api/users/[userId]/teams/route.ts @@ -0,0 +1,27 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams } from '@/lib/schema'; +import { getUserTeams } from '@/queries/prisma'; + +export async function GET(request: Request, { params }: { params: Promise<{ userId: string }> }) { + const schema = z.object({ + ...pagingParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { userId } = await params; + + if (auth.user.id !== userId && !auth.user.isAdmin) { + return unauthorized(); + } + + const teams = await getUserTeams(userId, query); + + return json(teams); +} diff --git a/src/app/api/users/[userId]/websites/route.ts b/src/app/api/users/[userId]/websites/route.ts new file mode 100644 index 0000000..1107d8e --- /dev/null +++ b/src/app/api/users/[userId]/websites/route.ts @@ -0,0 +1,33 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { getAllUserWebsitesIncludingTeamOwner, getUserWebsites } from '@/queries/prisma/website'; + +export async function GET(request: Request, { params }: { params: Promise<{ userId: string }> }) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + includeTeams: z.string().optional(), + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { userId } = await params; + + if (!auth.user.isAdmin && auth.user.id !== userId) { + return unauthorized(); + } + + const filters = await getQueryFilters(query); + + if (query.includeTeams) { + return json(await getAllUserWebsitesIncludingTeamOwner(userId, filters)); + } + + return json(await getUserWebsites(userId, filters)); +} diff --git a/src/app/api/users/route.ts b/src/app/api/users/route.ts new file mode 100644 index 0000000..dbb114c --- /dev/null +++ b/src/app/api/users/route.ts @@ -0,0 +1,44 @@ +import { z } from 'zod'; +import { ROLES } from '@/lib/constants'; +import { uuid } from '@/lib/crypto'; +import { hashPassword } from '@/lib/password'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, unauthorized } from '@/lib/response'; +import { canCreateUser } from '@/permissions'; +import { createUser, getUserByUsername } from '@/queries/prisma'; + +export async function POST(request: Request) { + const schema = z.object({ + id: z.uuid().optional(), + username: z.string().max(255), + password: z.string(), + role: z.string().regex(/admin|user|view-only/i), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + if (!(await canCreateUser(auth))) { + return unauthorized(); + } + + const { id, username, password, role } = body; + + const existingUser = await getUserByUsername(username, { showDeleted: true }); + + if (existingUser) { + return badRequest({ message: 'User already exists' }); + } + + const user = await createUser({ + id: id || uuid(), + username, + password: hashPassword(password), + role: role ?? ROLES.user, + }); + + return json(user); +} diff --git a/src/app/api/websites/[websiteId]/active/route.ts b/src/app/api/websites/[websiteId]/active/route.ts new file mode 100644 index 0000000..233b97e --- /dev/null +++ b/src/app/api/websites/[websiteId]/active/route.ts @@ -0,0 +1,25 @@ +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getActiveVisitors } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const visitors = await getActiveVisitors(websiteId); + + return json(visitors); +} diff --git a/src/app/api/websites/[websiteId]/daterange/route.ts b/src/app/api/websites/[websiteId]/daterange/route.ts new file mode 100644 index 0000000..14a241f --- /dev/null +++ b/src/app/api/websites/[websiteId]/daterange/route.ts @@ -0,0 +1,25 @@ +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteDateRange } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const dateRange = await getWebsiteDateRange(websiteId); + + return json(dateRange); +} diff --git a/src/app/api/websites/[websiteId]/event-data/[eventId]/route.ts b/src/app/api/websites/[websiteId]/event-data/[eventId]/route.ts new file mode 100644 index 0000000..54afab2 --- /dev/null +++ b/src/app/api/websites/[websiteId]/event-data/[eventId]/route.ts @@ -0,0 +1,25 @@ +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getEventData } from '@/queries/sql/events/getEventData'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string; eventId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId, eventId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const data = await getEventData(websiteId, eventId); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/event-data/events/route.ts b/src/app/api/websites/[websiteId]/event-data/events/route.ts new file mode 100644 index 0000000..eb6ee6e --- /dev/null +++ b/src/app/api/websites/[websiteId]/event-data/events/route.ts @@ -0,0 +1,37 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventDataEvents } from '@/queries/sql/events/getEventDataEvents'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + event: z.string().optional(), + ...filterParams, + }); + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getEventDataEvents(websiteId, { + ...filters, + }); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/event-data/fields/route.ts b/src/app/api/websites/[websiteId]/event-data/fields/route.ts new file mode 100644 index 0000000..bce6a97 --- /dev/null +++ b/src/app/api/websites/[websiteId]/event-data/fields/route.ts @@ -0,0 +1,35 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventDataFields } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getEventDataFields(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/event-data/properties/route.ts b/src/app/api/websites/[websiteId]/event-data/properties/route.ts new file mode 100644 index 0000000..52d15cf --- /dev/null +++ b/src/app/api/websites/[websiteId]/event-data/properties/route.ts @@ -0,0 +1,35 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventDataProperties } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getEventDataProperties(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/event-data/stats/route.ts b/src/app/api/websites/[websiteId]/event-data/stats/route.ts new file mode 100644 index 0000000..042e989 --- /dev/null +++ b/src/app/api/websites/[websiteId]/event-data/stats/route.ts @@ -0,0 +1,35 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventDataStats } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getEventDataStats(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/event-data/values/route.ts b/src/app/api/websites/[websiteId]/event-data/values/route.ts new file mode 100644 index 0000000..12e8f2d --- /dev/null +++ b/src/app/api/websites/[websiteId]/event-data/values/route.ts @@ -0,0 +1,41 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventDataValues } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + event: z.string(), + propertyName: z.string(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const { propertyName } = query; + const filters = await getQueryFilters(query, websiteId); + + const data = await getEventDataValues(websiteId, { + ...filters, + propertyName, + }); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/events/route.ts b/src/app/api/websites/[websiteId]/events/route.ts new file mode 100644 index 0000000..74ec3ec --- /dev/null +++ b/src/app/api/websites/[websiteId]/events/route.ts @@ -0,0 +1,37 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams, pagingParams, searchParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteEvents } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().optional(), + endAt: z.coerce.number().optional(), + ...filterParams, + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getWebsiteEvents(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/events/series/route.ts b/src/app/api/websites/[websiteId]/events/series/route.ts new file mode 100644 index 0000000..977e9c8 --- /dev/null +++ b/src/app/api/websites/[websiteId]/events/series/route.ts @@ -0,0 +1,37 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams, timezoneParam, unitParam } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventStats } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + unit: unitParam.optional(), + timezone: timezoneParam, + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getEventStats(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/export/route.ts b/src/app/api/websites/[websiteId]/export/route.ts new file mode 100644 index 0000000..eec81c6 --- /dev/null +++ b/src/app/api/websites/[websiteId]/export/route.ts @@ -0,0 +1,64 @@ +import JSZip from 'jszip'; +import Papa from 'papaparse'; +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { dateRangeParams, pagingParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getEventMetrics, getPageviewMetrics, getSessionMetrics } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + ...dateRangeParams, + ...pagingParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const [events, pages, referrers, browsers, os, devices, countries] = await Promise.all([ + getEventMetrics(websiteId, { type: 'event' }, filters), + getPageviewMetrics(websiteId, { type: 'path' }, filters), + getPageviewMetrics(websiteId, { type: 'referrer' }, filters), + getSessionMetrics(websiteId, { type: 'browser' }, filters), + getSessionMetrics(websiteId, { type: 'os' }, filters), + getSessionMetrics(websiteId, { type: 'device' }, filters), + getSessionMetrics(websiteId, { type: 'country' }, filters), + ]); + + const zip = new JSZip(); + + const parse = (data: any) => { + return Papa.unparse(data, { + header: true, + skipEmptyLines: true, + }); + }; + + zip.file('events.csv', parse(events)); + zip.file('pages.csv', parse(pages)); + zip.file('referrers.csv', parse(referrers)); + zip.file('browsers.csv', parse(browsers)); + zip.file('os.csv', parse(os)); + zip.file('devices.csv', parse(devices)); + zip.file('countries.csv', parse(countries)); + + const content = await zip.generateAsync({ type: 'nodebuffer' }); + const base64 = content.toString('base64'); + + return json({ zip: base64 }); +} diff --git a/src/app/api/websites/[websiteId]/metrics/expanded/route.ts b/src/app/api/websites/[websiteId]/metrics/expanded/route.ts new file mode 100644 index 0000000..d52c177 --- /dev/null +++ b/src/app/api/websites/[websiteId]/metrics/expanded/route.ts @@ -0,0 +1,66 @@ +import { z } from 'zod'; +import { EVENT_COLUMNS, EVENT_TYPE, SESSION_COLUMNS } from '@/lib/constants'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { badRequest, json, unauthorized } from '@/lib/response'; +import { dateRangeParams, filterParams, searchParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { + getChannelExpandedMetrics, + getEventExpandedMetrics, + getPageviewExpandedMetrics, + getSessionExpandedMetrics, +} from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + type: z.string(), + limit: z.coerce.number().optional(), + offset: z.coerce.number().optional(), + ...dateRangeParams, + ...searchParams, + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const { type, limit, offset, search } = query; + const filters = await getQueryFilters(query, websiteId); + + if (search) { + filters[type] = `c.${search}`; + } + + if (SESSION_COLUMNS.includes(type)) { + const data = await getSessionExpandedMetrics(websiteId, { type, limit, offset }, filters); + + return json(data); + } + + if (EVENT_COLUMNS.includes(type)) { + if (type === 'event') { + filters.eventType = EVENT_TYPE.customEvent; + return json(await getEventExpandedMetrics(websiteId, { type, limit, offset }, filters)); + } else { + return json(await getPageviewExpandedMetrics(websiteId, { type, limit, offset }, filters)); + } + } + + if (type === 'channel') { + return json(await getChannelExpandedMetrics(websiteId, filters)); + } + + return badRequest(); +} diff --git a/src/app/api/websites/[websiteId]/metrics/route.ts b/src/app/api/websites/[websiteId]/metrics/route.ts new file mode 100644 index 0000000..12784ad --- /dev/null +++ b/src/app/api/websites/[websiteId]/metrics/route.ts @@ -0,0 +1,66 @@ +import { z } from 'zod'; +import { EVENT_COLUMNS, EVENT_TYPE, SESSION_COLUMNS } from '@/lib/constants'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { badRequest, json, unauthorized } from '@/lib/response'; +import { dateRangeParams, filterParams, searchParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { + getChannelMetrics, + getEventMetrics, + getPageviewMetrics, + getSessionMetrics, +} from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + type: z.string(), + limit: z.coerce.number().optional(), + offset: z.coerce.number().optional(), + ...dateRangeParams, + ...searchParams, + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const { type, limit, offset, search } = query; + const filters = await getQueryFilters(query, websiteId); + + if (search) { + filters[type] = `c.${search}`; + } + + if (SESSION_COLUMNS.includes(type)) { + const data = await getSessionMetrics(websiteId, { type, limit, offset }, filters); + + return json(data); + } + + if (EVENT_COLUMNS.includes(type)) { + if (type === 'event') { + filters.eventType = EVENT_TYPE.customEvent; + return json(await getEventMetrics(websiteId, { type, limit, offset }, filters)); + } else { + return json(await getPageviewMetrics(websiteId, { type, limit, offset }, filters)); + } + } + + if (type === 'channel') { + return json(await getChannelMetrics(websiteId, filters)); + } + + return badRequest(); +} diff --git a/src/app/api/websites/[websiteId]/pageviews/route.ts b/src/app/api/websites/[websiteId]/pageviews/route.ts new file mode 100644 index 0000000..af59bce --- /dev/null +++ b/src/app/api/websites/[websiteId]/pageviews/route.ts @@ -0,0 +1,72 @@ +import { z } from 'zod'; +import { getCompareDate } from '@/lib/date'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { dateRangeParams, filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getPageviewStats, getSessionStats } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + ...dateRangeParams, + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const [pageviews, sessions] = await Promise.all([ + getPageviewStats(websiteId, filters), + getSessionStats(websiteId, filters), + ]); + + if (filters.compare) { + const { startDate: compareStartDate, endDate: compareEndDate } = getCompareDate( + filters.compare, + filters.startDate, + filters.endDate, + ); + + const [comparePageviews, compareSessions] = await Promise.all([ + getPageviewStats(websiteId, { + ...filters, + startDate: compareStartDate, + endDate: compareEndDate, + }), + getSessionStats(websiteId, { + ...filters, + startDate: compareStartDate, + endDate: compareEndDate, + }), + ]); + + return json({ + pageviews, + sessions, + startDate: filters.startDate, + endDate: filters.endDate, + compare: { + pageviews: comparePageviews, + sessions: compareSessions, + startDate: compareStartDate, + endDate: compareEndDate, + }, + }); + } + + return json({ pageviews, sessions }); +} diff --git a/src/app/api/websites/[websiteId]/reports/route.ts b/src/app/api/websites/[websiteId]/reports/route.ts new file mode 100644 index 0000000..93e7ab4 --- /dev/null +++ b/src/app/api/websites/[websiteId]/reports/route.ts @@ -0,0 +1,46 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams, pagingParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getReports } from '@/queries/prisma'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, + filters: { type: string }, +) { + const schema = z.object({ + ...filterParams, + ...pagingParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + const { page, pageSize, search } = query; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const data = await getReports( + { + where: { + websiteId, + type: filters.type, + }, + }, + { + page, + pageSize, + search, + }, + ); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/reset/route.ts b/src/app/api/websites/[websiteId]/reset/route.ts new file mode 100644 index 0000000..e0be5a5 --- /dev/null +++ b/src/app/api/websites/[websiteId]/reset/route.ts @@ -0,0 +1,25 @@ +import { parseRequest } from '@/lib/request'; +import { ok, unauthorized } from '@/lib/response'; +import { canUpdateWebsite } from '@/permissions'; +import { resetWebsite } from '@/queries/prisma'; + +export async function POST( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canUpdateWebsite(auth, websiteId))) { + return unauthorized(); + } + + await resetWebsite(websiteId); + + return ok(); +} diff --git a/src/app/api/websites/[websiteId]/route.ts b/src/app/api/websites/[websiteId]/route.ts new file mode 100644 index 0000000..b4c0e7e --- /dev/null +++ b/src/app/api/websites/[websiteId]/route.ts @@ -0,0 +1,84 @@ +import { z } from 'zod'; +import { SHARE_ID_REGEX } from '@/lib/constants'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, ok, serverError, unauthorized } from '@/lib/response'; +import { canDeleteWebsite, canUpdateWebsite, canViewWebsite } from '@/permissions'; +import { deleteWebsite, getWebsite, updateWebsite } from '@/queries/prisma'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const website = await getWebsite(websiteId); + + return json(website); +} + +export async function POST( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + name: z.string().optional(), + domain: z.string().optional(), + shareId: z.string().regex(SHARE_ID_REGEX).nullable().optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + const { name, domain, shareId } = body; + + if (!(await canUpdateWebsite(auth, websiteId))) { + return unauthorized(); + } + + try { + const website = await updateWebsite(websiteId, { name, domain, shareId }); + + return Response.json(website); + } catch (e: any) { + if (e.message.toLowerCase().includes('unique constraint') && e.message.includes('share_id')) { + return badRequest({ message: 'That share ID is already taken.' }); + } + + return serverError(e); + } +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canDeleteWebsite(auth, websiteId))) { + return unauthorized(); + } + + await deleteWebsite(websiteId); + + return ok(); +} diff --git a/src/app/api/websites/[websiteId]/segments/[segmentId]/route.ts b/src/app/api/websites/[websiteId]/segments/[segmentId]/route.ts new file mode 100644 index 0000000..b51f783 --- /dev/null +++ b/src/app/api/websites/[websiteId]/segments/[segmentId]/route.ts @@ -0,0 +1,92 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { json, notFound, ok, unauthorized } from '@/lib/response'; +import { anyObjectParam, segmentTypeParam } from '@/lib/schema'; +import { canDeleteWebsite, canUpdateWebsite, canViewWebsite } from '@/permissions'; +import { deleteSegment, getSegment, updateSegment } from '@/queries/prisma'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string; segmentId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId, segmentId } = await params; + + const segment = await getSegment(segmentId); + + if (websiteId && !(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + return json(segment); +} + +export async function POST( + request: Request, + { params }: { params: Promise<{ websiteId: string; segmentId: string }> }, +) { + const schema = z.object({ + type: segmentTypeParam, + name: z.string().max(200), + parameters: anyObjectParam, + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId, segmentId } = await params; + const { type, name, parameters } = body; + + const segment = await getSegment(segmentId); + + if (!segment) { + return notFound(); + } + + if (!(await canUpdateWebsite(auth, websiteId))) { + return unauthorized(); + } + + const result = await updateSegment(segmentId, { + type, + name, + parameters, + } as any); + + return json(result); +} + +export async function DELETE( + request: Request, + { params }: { params: Promise<{ websiteId: string; segmentId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId, segmentId } = await params; + + const segment = await getSegment(segmentId); + + if (!segment) { + return notFound(); + } + + if (!(await canDeleteWebsite(auth, websiteId))) { + return unauthorized(); + } + + await deleteSegment(segmentId); + + return ok(); +} diff --git a/src/app/api/websites/[websiteId]/segments/route.ts b/src/app/api/websites/[websiteId]/segments/route.ts new file mode 100644 index 0000000..4592765 --- /dev/null +++ b/src/app/api/websites/[websiteId]/segments/route.ts @@ -0,0 +1,70 @@ +import { z } from 'zod'; +import { uuid } from '@/lib/crypto'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { anyObjectParam, searchParams, segmentTypeParam } from '@/lib/schema'; +import { canUpdateWebsite, canViewWebsite } from '@/permissions'; +import { createSegment, getWebsiteSegments } from '@/queries/prisma'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + type: segmentTypeParam, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + const { type } = query; + + if (websiteId && !(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query); + + const segments = await getWebsiteSegments(websiteId, type, filters); + + return json(segments); +} + +export async function POST( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + type: segmentTypeParam, + name: z.string().max(200), + parameters: anyObjectParam, + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + const { type, name, parameters } = body; + + if (!(await canUpdateWebsite(auth, websiteId))) { + return unauthorized(); + } + + const result = await createSegment({ + id: uuid(), + websiteId, + type, + name, + parameters, + } as any); + + return json(result); +} diff --git a/src/app/api/websites/[websiteId]/session-data/properties/route.ts b/src/app/api/websites/[websiteId]/session-data/properties/route.ts new file mode 100644 index 0000000..2d8db15 --- /dev/null +++ b/src/app/api/websites/[websiteId]/session-data/properties/route.ts @@ -0,0 +1,35 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getSessionDataProperties } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getSessionDataProperties(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/session-data/values/route.ts b/src/app/api/websites/[websiteId]/session-data/values/route.ts new file mode 100644 index 0000000..7d06870 --- /dev/null +++ b/src/app/api/websites/[websiteId]/session-data/values/route.ts @@ -0,0 +1,40 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getSessionDataValues } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + propertyName: z.string().optional(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const { propertyName } = query; + const filters = await getQueryFilters(query, websiteId); + + const data = await getSessionDataValues(websiteId, { + ...filters, + propertyName, + }); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/sessions/[sessionId]/activity/route.ts b/src/app/api/websites/[websiteId]/sessions/[sessionId]/activity/route.ts new file mode 100644 index 0000000..41b766d --- /dev/null +++ b/src/app/api/websites/[websiteId]/sessions/[sessionId]/activity/route.ts @@ -0,0 +1,33 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getSessionActivity } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string; sessionId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId, sessionId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getSessionActivity(websiteId, sessionId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/sessions/[sessionId]/properties/route.ts b/src/app/api/websites/[websiteId]/sessions/[sessionId]/properties/route.ts new file mode 100644 index 0000000..6b5c241 --- /dev/null +++ b/src/app/api/websites/[websiteId]/sessions/[sessionId]/properties/route.ts @@ -0,0 +1,25 @@ +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getSessionData } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string; sessionId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId, sessionId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const data = await getSessionData(websiteId, sessionId); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/sessions/[sessionId]/route.ts b/src/app/api/websites/[websiteId]/sessions/[sessionId]/route.ts new file mode 100644 index 0000000..1091663 --- /dev/null +++ b/src/app/api/websites/[websiteId]/sessions/[sessionId]/route.ts @@ -0,0 +1,25 @@ +import { parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteSession } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string; sessionId: string }> }, +) { + const { auth, error } = await parseRequest(request); + + if (error) { + return error(); + } + + const { websiteId, sessionId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const data = await getWebsiteSession(websiteId, sessionId); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/sessions/route.ts b/src/app/api/websites/[websiteId]/sessions/route.ts new file mode 100644 index 0000000..ed4757a --- /dev/null +++ b/src/app/api/websites/[websiteId]/sessions/route.ts @@ -0,0 +1,36 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { dateRangeParams, filterParams, pagingParams, searchParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteSessions } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + ...dateRangeParams, + ...filterParams, + ...pagingParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getWebsiteSessions(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/sessions/stats/route.ts b/src/app/api/websites/[websiteId]/sessions/stats/route.ts new file mode 100644 index 0000000..459830e --- /dev/null +++ b/src/app/api/websites/[websiteId]/sessions/stats/route.ts @@ -0,0 +1,42 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteSessionStats } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const metrics = await getWebsiteSessionStats(websiteId, filters); + + const data = Object.keys(metrics[0]).reduce((obj, key) => { + obj[key] = { + value: Number(metrics[0][key]) || 0, + }; + return obj; + }, {}); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/sessions/weekly/route.ts b/src/app/api/websites/[websiteId]/sessions/weekly/route.ts new file mode 100644 index 0000000..b9ccf3e --- /dev/null +++ b/src/app/api/websites/[websiteId]/sessions/weekly/route.ts @@ -0,0 +1,36 @@ +import { z } from 'zod'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { filterParams, timezoneParam } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getWeeklyTraffic } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + startAt: z.coerce.number().int(), + endAt: z.coerce.number().int(), + timezone: timezoneParam, + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getWeeklyTraffic(websiteId, filters); + + return json(data); +} diff --git a/src/app/api/websites/[websiteId]/stats/route.ts b/src/app/api/websites/[websiteId]/stats/route.ts new file mode 100644 index 0000000..07c8b96 --- /dev/null +++ b/src/app/api/websites/[websiteId]/stats/route.ts @@ -0,0 +1,43 @@ +import { z } from 'zod'; +import { getCompareDate } from '@/lib/date'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { dateRangeParams, filterParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteStats } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + ...dateRangeParams, + ...filterParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const filters = await getQueryFilters(query, websiteId); + + const data = await getWebsiteStats(websiteId, filters); + + const { startDate, endDate } = getCompareDate('prev', filters.startDate, filters.endDate); + + const comparison = await getWebsiteStats(websiteId, { + ...filters, + startDate, + endDate, + }); + + return json({ ...data, comparison }); +} diff --git a/src/app/api/websites/[websiteId]/transfer/route.ts b/src/app/api/websites/[websiteId]/transfer/route.ts new file mode 100644 index 0000000..df2fed2 --- /dev/null +++ b/src/app/api/websites/[websiteId]/transfer/route.ts @@ -0,0 +1,50 @@ +import { z } from 'zod'; +import { parseRequest } from '@/lib/request'; +import { badRequest, json, unauthorized } from '@/lib/response'; +import { canTransferWebsiteToTeam, canTransferWebsiteToUser } from '@/permissions'; +import { updateWebsite } from '@/queries/prisma'; + +export async function POST( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + userId: z.uuid().optional(), + teamId: z.uuid().optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + const { userId, teamId } = body; + + if (userId) { + if (!(await canTransferWebsiteToUser(auth, websiteId, userId))) { + return unauthorized(); + } + + const website = await updateWebsite(websiteId, { + userId, + teamId: null, + }); + + return json(website); + } else if (teamId) { + if (!(await canTransferWebsiteToTeam(auth, websiteId, teamId))) { + return unauthorized(); + } + + const website = await updateWebsite(websiteId, { + userId: null, + teamId, + }); + + return json(website); + } + + return badRequest(); +} diff --git a/src/app/api/websites/[websiteId]/values/route.ts b/src/app/api/websites/[websiteId]/values/route.ts new file mode 100644 index 0000000..172325e --- /dev/null +++ b/src/app/api/websites/[websiteId]/values/route.ts @@ -0,0 +1,50 @@ +import { z } from 'zod'; +import { EVENT_COLUMNS, FILTER_COLUMNS, SEGMENT_TYPES, SESSION_COLUMNS } from '@/lib/constants'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { badRequest, json, unauthorized } from '@/lib/response'; +import { dateRangeParams, fieldsParam, searchParams } from '@/lib/schema'; +import { canViewWebsite } from '@/permissions'; +import { getWebsiteSegments } from '@/queries/prisma'; +import { getValues } from '@/queries/sql'; + +export async function GET( + request: Request, + { params }: { params: Promise<{ websiteId: string }> }, +) { + const schema = z.object({ + type: fieldsParam, + ...dateRangeParams, + ...searchParams, + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { websiteId } = await params; + + if (!(await canViewWebsite(auth, websiteId))) { + return unauthorized(); + } + + const { type } = query; + + if (!SESSION_COLUMNS.includes(type) && !EVENT_COLUMNS.includes(type) && !SEGMENT_TYPES[type]) { + return badRequest(); + } + + let values: any[]; + + if (SEGMENT_TYPES[type]) { + values = (await getWebsiteSegments(websiteId, type))?.data?.map(segment => ({ + value: segment.name, + })); + } else { + const filters = await getQueryFilters(query, websiteId); + values = await getValues(websiteId, FILTER_COLUMNS[type], filters); + } + + return json(values.filter(n => n).sort()); +} diff --git a/src/app/api/websites/route.ts b/src/app/api/websites/route.ts new file mode 100644 index 0000000..e2b26c1 --- /dev/null +++ b/src/app/api/websites/route.ts @@ -0,0 +1,86 @@ +import { z } from 'zod'; +import { uuid } from '@/lib/crypto'; +import redis from '@/lib/redis'; +import { getQueryFilters, parseRequest } from '@/lib/request'; +import { json, unauthorized } from '@/lib/response'; +import { pagingParams, searchParams } from '@/lib/schema'; +import { canCreateTeamWebsite, canCreateWebsite } from '@/permissions'; +import { createWebsite, getWebsiteCount } from '@/queries/prisma'; +import { getAllUserWebsitesIncludingTeamOwner, getUserWebsites } from '@/queries/prisma/website'; + +const CLOUD_WEBSITE_LIMIT = 3; + +export async function GET(request: Request) { + const schema = z.object({ + ...pagingParams, + ...searchParams, + includeTeams: z.string().optional(), + }); + + const { auth, query, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const userId = auth.user.id; + + const filters = await getQueryFilters(query); + + if (query.includeTeams) { + return json(await getAllUserWebsitesIncludingTeamOwner(userId, filters)); + } + + return json(await getUserWebsites(userId, filters)); +} + +export async function POST(request: Request) { + const schema = z.object({ + name: z.string().max(100), + domain: z.string().max(500), + shareId: z.string().max(50).nullable().optional(), + teamId: z.uuid().nullable().optional(), + id: z.uuid().nullable().optional(), + }); + + const { auth, body, error } = await parseRequest(request, schema); + + if (error) { + return error(); + } + + const { id, name, domain, shareId, teamId } = body; + + if (process.env.CLOUD_MODE && !teamId) { + const account = await redis.client.get(`account:${auth.user.id}`); + + if (!account?.hasSubscription) { + const count = await getWebsiteCount(auth.user.id); + + if (count >= CLOUD_WEBSITE_LIMIT) { + return unauthorized({ message: 'Website limit reached.' }); + } + } + } + + if ((teamId && !(await canCreateTeamWebsite(auth, teamId))) || !(await canCreateWebsite(auth))) { + return unauthorized(); + } + + const data: any = { + id: id ?? uuid(), + createdBy: auth.user.id, + name, + domain, + shareId, + teamId, + }; + + if (!teamId) { + data.userId = auth.user.id; + } + + const website = await createWebsite(data); + + return json(website); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..afcbfc6 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,49 @@ +import type { Metadata } from 'next'; +import { Suspense } from 'react'; +import { Providers } from './Providers'; +import '@fontsource/inter/300.css'; +import '@fontsource/inter/400.css'; +import '@fontsource/inter/500.css'; +import '@fontsource/inter/700.css'; +import '@umami/react-zen/styles.css'; +import '@/styles/global.css'; +import '@/styles/variables.css'; + +export default function ({ children }) { + if (process.env.DISABLE_UI) { + return ( + + + + ); + } + + return ( + + + + + + + + + + + + + + + + {children} + + + + ); +} + +export const metadata: Metadata = { + title: { + template: '%s | Umami', + default: 'Umami', + }, +}; diff --git a/src/app/login/LoginForm.tsx b/src/app/login/LoginForm.tsx new file mode 100644 index 0000000..26d78dd --- /dev/null +++ b/src/app/login/LoginForm.tsx @@ -0,0 +1,70 @@ +import { + Column, + Form, + FormButtons, + FormField, + FormSubmitButton, + Heading, + Icon, + PasswordField, + TextField, +} from '@umami/react-zen'; +import { useRouter } from 'next/navigation'; +import { useMessages, useUpdateQuery } from '@/components/hooks'; +import { Logo } from '@/components/svg'; +import { setClientAuthToken } from '@/lib/client'; +import { setUser } from '@/store/app'; + +export function LoginForm() { + const { formatMessage, labels, getErrorMessage } = useMessages(); + const router = useRouter(); + const { mutateAsync, error } = useUpdateQuery('/auth/login'); + + const handleSubmit = async (data: any) => { + await mutateAsync(data, { + onSuccess: async ({ token, user }) => { + setClientAuthToken(token); + setUser(user); + router.push('/'); + }, + }); + }; + + return ( + + + + + umami +
+ + + + + + + + + + {formatMessage(labels.login)} + + +
+
+ ); +} diff --git a/src/app/login/LoginPage.tsx b/src/app/login/LoginPage.tsx new file mode 100644 index 0000000..6f485e3 --- /dev/null +++ b/src/app/login/LoginPage.tsx @@ -0,0 +1,11 @@ +'use client'; +import { Column } from '@umami/react-zen'; +import { LoginForm } from './LoginForm'; + +export function LoginPage() { + return ( + + + + ); +} diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx new file mode 100644 index 0000000..ea27735 --- /dev/null +++ b/src/app/login/page.tsx @@ -0,0 +1,14 @@ +import type { Metadata } from 'next'; +import { LoginPage } from './LoginPage'; + +export default async function () { + if (process.env.DISABLE_LOGIN || process.env.CLOUD_MODE) { + return null; + } + + return ; +} + +export const metadata: Metadata = { + title: 'Login', +}; diff --git a/src/app/logout/LogoutPage.tsx b/src/app/logout/LogoutPage.tsx new file mode 100644 index 0000000..33e1615 --- /dev/null +++ b/src/app/logout/LogoutPage.tsx @@ -0,0 +1,25 @@ +'use client'; +import { useRouter } from 'next/navigation'; +import { useEffect } from 'react'; +import { useApi } from '@/components/hooks'; +import { removeClientAuthToken } from '@/lib/client'; +import { setUser } from '@/store/app'; + +export function LogoutPage() { + const router = useRouter(); + const { post } = useApi(); + + useEffect(() => { + async function logout() { + await post('/auth/logout'); + + window.location.href = `${process.env.basePath || ''}/login`; + } + + removeClientAuthToken(); + setUser(null); + logout(); + }, [router, post]); + + return null; +} diff --git a/src/app/logout/page.tsx b/src/app/logout/page.tsx new file mode 100644 index 0000000..2095278 --- /dev/null +++ b/src/app/logout/page.tsx @@ -0,0 +1,14 @@ +import type { Metadata } from 'next'; +import { LogoutPage } from './LogoutPage'; + +export default function () { + if (process.env.DISABLE_LOGIN || process.env.CLOUD_MODE) { + return null; + } + + return ; +} + +export const metadata: Metadata = { + title: 'Logout', +}; diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..b376151 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,13 @@ +'use client'; +import { Flexbox } from '@umami/react-zen'; +import { useMessages } from '@/components/hooks'; + +export default function () { + const { formatMessage, labels } = useMessages(); + + return ( + +

{formatMessage(labels.pageNotFound)}

+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..6f0033d --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,19 @@ +'use client'; +import { redirect } from 'next/navigation'; +import { useEffect } from 'react'; +import { LAST_TEAM_CONFIG } from '@/lib/constants'; +import { getItem } from '@/lib/storage'; + +export default function RootPage() { + useEffect(() => { + const lastTeam = getItem(LAST_TEAM_CONFIG); + + if (lastTeam) { + redirect(`/teams/${lastTeam}/websites`); + } else { + redirect(`/websites`); + } + }, []); + + return null; +} diff --git a/src/app/share/[...shareId]/Footer.tsx b/src/app/share/[...shareId]/Footer.tsx new file mode 100644 index 0000000..f294862 --- /dev/null +++ b/src/app/share/[...shareId]/Footer.tsx @@ -0,0 +1,12 @@ +import { Row, Text } from '@umami/react-zen'; +import { CURRENT_VERSION, HOMEPAGE_URL } from '@/lib/constants'; + +export function Footer() { + return ( + + + umami {`v${CURRENT_VERSION}`} + + + ); +} diff --git a/src/app/share/[...shareId]/Header.tsx b/src/app/share/[...shareId]/Header.tsx new file mode 100644 index 0000000..d7b7dcb --- /dev/null +++ b/src/app/share/[...shareId]/Header.tsx @@ -0,0 +1,24 @@ +import { Icon, Row, Text, ThemeButton } from '@umami/react-zen'; +import { LanguageButton } from '@/components/input/LanguageButton'; +import { PreferencesButton } from '@/components/input/PreferencesButton'; +import { Logo } from '@/components/svg'; + +export function Header() { + return ( + + + + + + + umami + + + + + + + + + ); +} diff --git a/src/app/share/[...shareId]/SharePage.tsx b/src/app/share/[...shareId]/SharePage.tsx new file mode 100644 index 0000000..7ed0667 --- /dev/null +++ b/src/app/share/[...shareId]/SharePage.tsx @@ -0,0 +1,41 @@ +'use client'; +import { Column, useTheme } from '@umami/react-zen'; +import { useEffect } from 'react'; +import { WebsiteHeader } from '@/app/(main)/websites/[websiteId]/WebsiteHeader'; +import { WebsitePage } from '@/app/(main)/websites/[websiteId]/WebsitePage'; +import { WebsiteProvider } from '@/app/(main)/websites/WebsiteProvider'; +import { PageBody } from '@/components/common/PageBody'; +import { useShareTokenQuery } from '@/components/hooks'; +import { Footer } from './Footer'; +import { Header } from './Header'; + +export function SharePage({ shareId }) { + const { shareToken, isLoading } = useShareTokenQuery(shareId); + const { setTheme } = useTheme(); + + useEffect(() => { + const url = new URL(window?.location?.href); + const theme = url.searchParams.get('theme'); + + if (theme === 'light' || theme === 'dark') { + setTheme(theme); + } + }, []); + + if (isLoading || !shareToken) { + return null; + } + + return ( + + +
+ + + + +