|
| 1 | +//Read http://lodash.com/docs#template to understand what is "${whatever}" is. |
| 2 | +//TLDR: do not change ids inside of ${...} |
| 3 | + |
| 4 | +//Value can be a string or function that will return a string |
| 5 | + |
| 6 | +define(function (require, exports, module){ |
| 7 | + module.exports = { |
| 8 | + downloads: 'Desc\u0103rc\u0103ri', |
| 9 | + hide: 'Ascunde', |
| 10 | + more: 'mai multe', |
| 11 | + oneMoreVersion: '<div>... și încă o versiune.</div>', |
| 12 | + sortby: 'Ordoneaz\u0103 dup\u0103 ...', |
| 13 | + author: 'Autor', |
| 14 | + update: 'Ultima actualizare', |
| 15 | + trending: '\u00cen trend', //0.3.0 |
| 16 | + name: 'Nume', |
| 17 | + daily: 'desc\u0103rc\u0103ri ieri', //0.3.0 |
| 18 | + stars: 'Stele', //0.4.0 |
| 19 | + forks: 'Forks', //0.4.0 |
| 20 | + |
| 21 | + /*BADGES - 0.3.2*/ |
| 22 | + badgeAdobe: 'Adobe', |
| 23 | + badgeAdobeTitle: 'Extensie de la Adobe', |
| 24 | + |
| 25 | + badge100k: '100.000 Desc\u0103rc\u0103ri', |
| 26 | + badge100kTitle: 'Prima extensie care a avut 100.000 de desc\u0103rc\u0103ri', |
| 27 | + |
| 28 | + badgeTop: '\u00cen top', |
| 29 | + badgeTopTitle: 'Cea mai popular\u0103 extensie', |
| 30 | + |
| 31 | + badgeTrend: '\u00cen trend', |
| 32 | + badgeTrendTitle: 'Cea mai \u00een trend extensie', |
| 33 | + |
| 34 | + badgeNew: 'Nou\u0103', |
| 35 | + badgeNewTitle: 'Extensie nou\u0103', |
| 36 | + |
| 37 | + badgeStarsTitle: 'Cea mai popular\u0103 extensie pe GitHub', //0.4.0 |
| 38 | + badgeForksTitle: 'Extensia cu cele mai multe Fork pe GitHub', //0.4.0 |
| 39 | + /*END of BADGES*/ |
| 40 | + |
| 41 | + //Detailed info about ## |
| 42 | + 'click-more': 'Informa\u021bie detaliat\u0103 despre', //0.3.0 |
| 43 | + |
| 44 | + //Online for ## days, ## downloads per day |
| 45 | + statusTemplate: '<div>Online de <b>${days} zile</b>, <b>${daily} ${str_daily}</b>, <b>${dpd} descărcări pe zi</b></div>', |
| 46 | + |
| 47 | + //v ## from ## - ## downloads</div> |
| 48 | + versionTemplate: '<div>v ${version} din ${date} - ${downloads} descărcări</div>', |
| 49 | + |
| 50 | + //... and ## more versions |
| 51 | + moreVersionsTemplate: '<div>... și ${count} mai multe versiuni</div>' |
| 52 | + } |
| 53 | +}); |
0 commit comments