Skip to content

Commit

Permalink
Fixed single-quotes in translations causing javascript error
Browse files Browse the repository at this point in the history
  • Loading branch information
jbroadway committed Mar 19, 2014
1 parent b72eaa4 commit 8e6ae3c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions apps/admin/views/extended.html
Expand Up @@ -86,13 +86,13 @@
extends: {{extends||json_encode}},
fields: {{fields|json_encode}},
strings: {
confirm_delete: '{"Are you sure you want to delete this field?"}',
label_empty: '{"You must enter a field name."}',
options_empty: '{"You must enter options for a select field."}',
field_added: '{"Field added."}',
field_updated: '{"Field updated."}',
field_delete: '{"Field deleted."}',
order_updated: '{"Field order has been updated."}'
confirm_delete: "{"Are you sure you want to delete this field?"}",
label_empty: "{"You must enter a field name."}",
options_empty: "{"You must enter options for a select field."}",
field_added: "{"Field added."}",
field_updated: "{"Field updated."}",
field_delete: "{"Field deleted."}",
order_updated: "{"Field order has been updated."}"
},
custom: {{custom|json_encode}}
});
Expand Down

0 comments on commit 8e6ae3c

Please sign in to comment.