Implementasi Clives berjalan dengan baik. Namun, Drupals agregator javascript perlu mem-parsing semua file javascript untuk string yang dapat diterjemahkan. Karena Clive menggunakan nilai dinamis untuk Drupal.formatPlural ini tidak akan berfungsi di sini.
Jadi inilah implementasi lain dengan terjemahan yang berfungsi:
Drupal.formatInterval = function(interval, granularity) {
granularity = typeof granularity !== 'undefined' ? granularity : 2;
output = '';
while (granularity > 0) {
var value = 0;
if (interval >= 31536000) {
value = 31536000;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 year', '@count years');
}
else if (interval >= 2592000) {
value = 2592000;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 month', '@count months');
}
else if (interval >= 604800) {
value = 604800;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 week', '@count weeks');
}
else if (interval >= 86400) {
value = 86400;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 day', '@count days');
}
else if (interval >= 3600) {
value = 3600;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 hour', '@count hours');
}
else if (interval >= 60) {
value = 60;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 min', '@count min');
}
else if (interval >= 1) {
value = 1;
output += (output.length ? ' ' : '') + Drupal.formatPlural(Math.floor(interval / value), '1 sec', '@count sec');
}
interval %= value;
granularity--;
}
return output.length ? output : Drupal.t('0 sec');
}
t
Metode adalah teks Drupal sanitasi dan menerjemahkan setara dengant()
fungsi PHP dari inti Drupal.