Skip to content

Commit

Permalink
Fix codacy warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
mnlipp committed Oct 6, 2023
1 parent 0a38516 commit e85ca55
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
* with this program; if not, see <http://www.gnu.org/licenses/>.
*/

'use strict';
"use strict";

const l10nBundles = new Map();
let entries = null;
// <#list supportedLanguages() as l>
entries = new Map();
l10nBundles.set('${l.locale.toLanguageTag()}', entries);
l10nBundles.set("${l.locale.toLanguageTag()}", entries);
// <#list l.l10nBundle.keys as key>
entries.set('${key}', '${l.l10nBundle.getString(key)}')
entries.set("${key}", "${l.l10nBundle.getString(key)}")
// </#list>
// </#list>

Expand Down

0 comments on commit e85ca55

Please sign in to comment.