1 // ==========================================================================
  2 // Project: SproutCore - JavaScript Application Framework
  3 // Copyright: ©2006-2011 Strobe Inc. and contributors.
  4 // Portions ©2008-2011 Apple Inc. All rights reserved.
  5 // License: Licensed under MIT license (see license.js)
  6 // ==========================================================================
  7 
  8 SC.stringsFor('English', {
  9   '_SC.DateTime.dayNames' : 'Sunday Monday Tuesday Wednesday Thursday Friday Saturday',
 10   '_SC.DateTime.abbreviatedDayNames' : 'Sun Mon Tue Wed Thu Fri Sat',
 11   '_SC.DateTime.monthNames' : 'January February March April May June July August September October November December',
 12   '_SC.DateTime.abbreviatedMonthNames' : 'Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec',
 13   '_SC.DateTime.AMPMNames' : 'AM PM',
 14 
 15   '_SC.DateTime.now' : 'Right now',
 16   '_SC.DateTime.secondIn' : 'In a moment',
 17   '_SC.DateTime.secondsIn' : 'In %e seconds',
 18   '_SC.DateTime.minuteIn' : 'In a minute',
 19   '_SC.DateTime.minutesIn' : 'In %e minutes',
 20   '_SC.DateTime.hourIn' : 'An hour from now',
 21   '_SC.DateTime.hoursIn' : 'In about %e hours',
 22   '_SC.DateTime.dayIn' : 'Tomorrow at %i:%M %p',
 23   '_SC.DateTime.daysIn' : '%A at %i:%M %p',
 24   '_SC.DateTime.weekIn' : 'Next week',
 25   '_SC.DateTime.weeksIn' : 'In %e weeks',
 26   '_SC.DateTime.monthIn' : 'Next month',
 27   '_SC.DateTime.monthsIn' : 'In %e months',
 28   '_SC.DateTime.yearIn' : 'Next year',
 29   '_SC.DateTime.yearsIn' : 'In %e years',
 30 
 31   '_SC.DateTime.secondAgo' : 'A moment ago',
 32   '_SC.DateTime.secondsAgo' : '%e seconds ago',
 33   '_SC.DateTime.minuteAgo' : 'A minute ago',
 34   '_SC.DateTime.minutesAgo' : '%e minutes ago',
 35   '_SC.DateTime.hourAgo' : 'An hour ago',
 36   '_SC.DateTime.hoursAgo' : 'About %e hours ago',
 37   '_SC.DateTime.dayAgo' : 'Yesterday at %i:%M %p',
 38   '_SC.DateTime.daysAgo' : '%A at %i:%M %p',
 39   '_SC.DateTime.weekAgo' : 'About a week ago',
 40   '_SC.DateTime.weeksAgo' : '%e weeks ago',
 41   '_SC.DateTime.monthAgo' : 'About a month ago',
 42   '_SC.DateTime.monthsAgo' : '%e months ago',
 43   '_SC.DateTime.yearAgo' : 'Last year',
 44   '_SC.DateTime.yearsAgo' : '%e years ago'
 45 });
 46