brackets/templates/strings.template

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 %}
});