-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathca.js
107 lines (106 loc) · 4.28 KB
/
ca.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
;(function(module) {
'use strict';
module.config(function(localeProvider) {
localeProvider.locale('ca', {
language: 'ca',
displayName: 'Català',
messages: {
'About': 'Sobre',
'Add server': 'Afegir servidor',
'Add stream': 'Afegir stream',
'Add to playlist': 'Afegir a playlist',
'Add to tracklist': 'Afegir a llista de pistes',
'Album artist': 'Album de l\'artista',
'Album': 'Àlbum',
'Any': 'Quasevol',
'Artist': 'Artista',
'Back': 'Tornar',
'Bitrate': 'Bitrate',
'Cancel': 'Cancel·lar',
'Clear cache': 'Netejar memòria cau',
'Clear tracklist': 'Netejar llista de pistes',
'Clear': 'Netejar',
'Comment': 'Comentari',
'Composer': 'Compositor',
'Configured servers': 'Servidors configurats',
'ConnectionError': 'Error de connexiò',
'Consume mode': 'Mode consum',
'Cover art': 'Portada',
'Create playlist': 'Crear playlist',
'Date': 'Data',
'Debug messages': 'Missatges de rastreig',
'Default click action': 'Acció predeterminada del clic',
'Default': 'Per defecte',
'Delete playlist': 'Esborrar playlist',
'Delete': 'Esborrar',
'Disc number': 'Numero de Disc',
'Done': 'Fet',
'Duration': 'Duració',
'Edit playlist': 'Editar playlist',
'Edit playlists': 'Editar playlists',
'Edit tracklist': 'Editar llista de pistes',
'Error': 'Error',
'Exit': 'Sortir',
'Find exact': 'Cercar exacte',
'Genre': 'Gènere',
'Host': 'Servidor',
'Ignore': 'Ignorar',
'Language': 'Idioma',
'Library': 'Llibreria',
'Licenses': 'Llicencies',
'Logging': 'Registres',
'Look and feel': 'Aparença',
'Mopidy servers': 'Servidors Mopidy',
'Name': 'Nom',
'No servers found': 'No s\'han trobat servidors',
'Nothing playing': 'No hi ha res reproduint-se',
'OK': 'OK',
'Path': 'Ruta',
'Performer': 'Interpret',
'Play next': 'Rep. Següent',
'Play now': 'Reproduir ara',
'Playback': 'Reproduir',
'Playlists': 'Playlists',
'Please make sure Zeroconf is enabled for any Mopidy servers in the same WiFi network as your device.': 'Assegureu-vos que Zeroconf es actiu als servidors que estiguin en la mateixa xarxa WiFI que el seu dispositiu.',
'Port': 'Port',
'Pull to refresh': 'Tirar per a refrescar',
'Remove server': 'Treure servidor',
'Replace tracklist': 'Substituir llista de pistes',
'Request timeout': 'Temps de consulta esgotat',
'Reset all settings to default values and restart application': 'Tornar als valor originals i reiniciar la aplicació',
'Reset': 'Valors orginals',
'Restart application': 'Reiniciar aplicació',
'Restart': 'Reiniciar',
'Retry': 'Tornar a provar',
'Save as': 'Desar com',
'Save': 'Desar',
'Search here': 'Cercar aqui',
'Search results': 'Resultats de la cerca',
'Search term': 'Terme a cercar',
'Search {name}': 'Cercar {name}',
'Search': 'Cercar',
'Secure connection': 'Connexió segura',
'ServerError': 'Error del servidor',
'Settings': 'Configuració',
'Share': 'Compartir',
'Show track info': 'Veure informació de la pista',
'Sort by name': 'Ordernar per nom',
'Sort by scheme': 'Ordenar per esquema',
'Theme': 'Tema',
'Then pull to refresh, or add a server manually.': 'Llavors tiri per refrescar, o afegueixi un servidor manualment.',
'TimeoutError': 'Error de temps esgotat',
'Track info': 'Informació de la Pista',
'Track number': 'Numero de Pista',
'Track': 'Pista',
'Tracklist': 'Llista de Pistes',
'Translations': 'Traduccions',
'URI': 'URI',
'URL': 'URL',
'Volume keys': 'Tecles de volum',
'{count} seconds': '{count, plural, one{1 segon} other{# segons}}',
'{count} tracks': '{count, plural, =0{Sense Pistes} one{1 Pista} other{# Pistes}}',
'{index} of {count}': '{index} de {count}',
}
});
});
})(angular.module('app.locale.ca', ['app.services.locale']));