diff --git a/doc/default/time.md b/doc/default/time.md index 0b12d22af0..f82817b986 100644 --- a/doc/default/time.md +++ b/doc/default/time.md @@ -4,10 +4,19 @@ # Random Time between two times # Keyword arguments: from, to, format Faker::Time.between(from: DateTime.now - 1, to: DateTime.now) #=> "2014-09-18 12:30:59 -0700" + +# Random Stringified time between two times, formatted to the specified I18n format +# (Examples are from a Rails console with rails-i18n 5.1.1 defaults loaded) +I18n.locale = 'en-US' Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :default) #=> "Tue, 16 Oct 2018 10:48:27 AM -05:00" Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :short) #=> "15 Oct 10:48 AM" Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :long) #=> "October 15, 2018 10:48 AM" +I18n.locale = 'ja' +Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :default) #=> "2018/10/15 10:48:27" +Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :short) #=> "18/10/15 10:48" +Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :long) #=> "2018年10月16日(火) 10時48分27秒 -0500" + # Random Time between two dates, within specified part of the day # Keyword arguments: from, to, period Faker::Time.between_dates(from: Date.today - 1, to: Date.today, period: :all) #=> "2014-09-19 07:03:30 -0700" diff --git a/lib/locales/en.yml b/lib/locales/en.yml index 4172a8763b..f002a17838 100644 --- a/lib/locales/en.yml +++ b/lib/locales/en.yml @@ -9,52 +9,3 @@ en: pm: "PM" faker: separator: ' & ' - date: - abbr_day_names: - - Sun - - Mon - - Tue - - Wed - - Thu - - Fri - - Sat - abbr_month_names: - - - - Jan - - Feb - - Mar - - Apr - - May - - Jun - - Jul - - Aug - - Sep - - Oct - - Nov - - Dec - day_names: - - Sunday - - Monday - - Tuesday - - Wednesday - - Thursday - - Friday - - Saturday - formats: - default: "%m-%d-%Y" - long: "%B %d, %Y" - short: "%b %d" - month_names: - - - - January - - February - - March - - April - - May - - June - - July - - August - - September - - October - - November - - December