зеркало из https://github.com/mozilla/brackets.git
10 строки
310 B
Plaintext
10 строки
310 B
Plaintext
{% include "license.template" %}
|
|
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
|
|
/*global define */
|
|
|
|
define({
|
|
{% for key, string in localizedStrings %}
|
|
"{{ key }}": "{{ string | replace('\n', '\\n') | escapeQuotes }}"{{ "" if loop.last else "," }}
|
|
{%- endfor %}
|
|
});
|