forked from External/greenlight
send translated strings to javascript
This commit is contained in:
@ -21,12 +21,12 @@
|
||||
loopJoin();
|
||||
} else {
|
||||
sessionStatusRefresh($('.meeting-url').val());
|
||||
showAlert($('.meeting-started-alert').html(), 4000);
|
||||
showAlert(I18n.meeting_started, 4000);
|
||||
}
|
||||
}
|
||||
} else if (data.action === 'meeting_ended') {
|
||||
sessionStatusRefresh($('.meeting-url').val());
|
||||
showAlert($('.meeting-ended-alert').html(), 4000);
|
||||
showAlert(I18n.meeting_ended, 4000);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -14,12 +14,12 @@
|
||||
rowData.published = data.published
|
||||
table.row("#"+data.record_id).data(rowData).draw();
|
||||
|
||||
var publish = (data.published) ? 'publish' : 'unpublish';
|
||||
showAlert($('.recording-'+publish+'-alert').html(), 4000);
|
||||
var published = (data.published) ? 'published' : 'unpublished';
|
||||
showAlert(I18n['recording_'+published], 4000);
|
||||
} else if (data.action === 'delete') {
|
||||
row.remove().draw();
|
||||
|
||||
showAlert($('.recording-delete-alert').html(), 4000);
|
||||
showAlert(I18n.recording_deleted, 4000);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -59,7 +59,7 @@
|
||||
html: true,
|
||||
trigger: 'focus',
|
||||
title: function() {
|
||||
return $(".delete-popover-title").html();
|
||||
return I18n.are_you_sure;
|
||||
},
|
||||
content: function() {
|
||||
return $(".delete-popover-body").html();
|
||||
|
@ -1,2 +1,17 @@
|
||||
module ApplicationHelper
|
||||
def client_translations
|
||||
locale = I18n.locale
|
||||
if locale.length < 4
|
||||
fallback_locale = I18n.fallbacks[locale].second
|
||||
end
|
||||
|
||||
if fallback_locale
|
||||
I18n.locale = fallback_locale
|
||||
translations = I18n.t('.')
|
||||
I18n.locale = locale
|
||||
else
|
||||
translations = I18n.t('.')
|
||||
end
|
||||
translations[:client]
|
||||
end
|
||||
end
|
||||
|
@ -29,9 +29,6 @@
|
||||
</div>
|
||||
|
||||
<div hidden class="hidden-elements">
|
||||
<div class="delete-popover-title">
|
||||
<%= t('are_you_sure') %>
|
||||
</div>
|
||||
<div class="delete-popover-body">
|
||||
<button type="button" class="btn btn-danger recording-delete">
|
||||
<%= t('yes') %>
|
||||
@ -48,19 +45,4 @@
|
||||
<span class="alert-message"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="recording-publish-alert">
|
||||
<%= t('recording_published') %>
|
||||
</div>
|
||||
<div class="recording-unpublish-alert">
|
||||
<%= t('recording_unpublished') %>
|
||||
</div>
|
||||
<div class="recording-delete-alert">
|
||||
<%= t('recording_deleted') %>
|
||||
</div>
|
||||
<div class="meeting-ended-alert">
|
||||
<%= t('meeting_ended') %>
|
||||
</div>
|
||||
<div class="meeting-started-alert">
|
||||
<%= t('meeting_started') %>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -49,3 +49,7 @@
|
||||
<!-- End of Footer -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<script type="text/javascript">
|
||||
window.I18n = <%= client_translations.to_json.html_safe %>
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user