makeloc 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +156 -0
- data/LICENSE.txt +20 -0
- data/README.md +28 -0
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/lib/makeloc/core_extensions.rb +65 -0
- data/lib/makeloc/generators/do/USAGE +8 -0
- data/lib/makeloc/generators/do/do_generator.rb +40 -0
- data/lib/makeloc/railtie.rb +9 -0
- data/lib/makeloc.rb +7 -0
- data/makeloc.gemspec +80 -0
- data/spec/generators/test_generator_spec.rb +74 -0
- data/spec/generators/tmp/test.en.yml +185 -0
- data/spec/generators/tmp/test.en.yml.bk +226 -0
- data/spec/generators/tmp/test.it.yml +229 -0
- data/spec/generators/tmp/test_incomplete.en.yml.bk +226 -0
- data/spec/spec_helper.rb +42 -0
- metadata +177 -0
| @@ -0,0 +1,185 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            en:
         | 
| 3 | 
            +
              date:
         | 
| 4 | 
            +
                abbr_day_names: 
         | 
| 5 | 
            +
                abbr_month_names: 
         | 
| 6 | 
            +
                day_names: 
         | 
| 7 | 
            +
                formats:
         | 
| 8 | 
            +
                  default: 
         | 
| 9 | 
            +
                  long: 
         | 
| 10 | 
            +
                  short: 
         | 
| 11 | 
            +
                month_names: 
         | 
| 12 | 
            +
                order: 
         | 
| 13 | 
            +
              datetime:
         | 
| 14 | 
            +
                distance_in_words:
         | 
| 15 | 
            +
                  about_x_hours:
         | 
| 16 | 
            +
                    one: 
         | 
| 17 | 
            +
                    other: 
         | 
| 18 | 
            +
                  about_x_months:
         | 
| 19 | 
            +
                    one: 
         | 
| 20 | 
            +
                    other: 
         | 
| 21 | 
            +
                  about_x_years:
         | 
| 22 | 
            +
                    one: 
         | 
| 23 | 
            +
                    other: 
         | 
| 24 | 
            +
                  almost_x_years:
         | 
| 25 | 
            +
                    one: 
         | 
| 26 | 
            +
                    other: 
         | 
| 27 | 
            +
                  half_a_minute: 
         | 
| 28 | 
            +
                  less_than_x_minutes:
         | 
| 29 | 
            +
                    one: 
         | 
| 30 | 
            +
                    other: 
         | 
| 31 | 
            +
                  less_than_x_seconds:
         | 
| 32 | 
            +
                    one: 
         | 
| 33 | 
            +
                    other: 
         | 
| 34 | 
            +
                  over_x_years:
         | 
| 35 | 
            +
                    one: 
         | 
| 36 | 
            +
                    other: 
         | 
| 37 | 
            +
                  x_days:
         | 
| 38 | 
            +
                    one: 
         | 
| 39 | 
            +
                    other: 
         | 
| 40 | 
            +
                  x_minutes:
         | 
| 41 | 
            +
                    one: 
         | 
| 42 | 
            +
                    other: 
         | 
| 43 | 
            +
                  x_months:
         | 
| 44 | 
            +
                    one: 
         | 
| 45 | 
            +
                    other: 
         | 
| 46 | 
            +
                  x_seconds:
         | 
| 47 | 
            +
                    one: 
         | 
| 48 | 
            +
                    other: 
         | 
| 49 | 
            +
                prompts:
         | 
| 50 | 
            +
                  day: 
         | 
| 51 | 
            +
                  hour: 
         | 
| 52 | 
            +
                  minute: 
         | 
| 53 | 
            +
                  month: 
         | 
| 54 | 
            +
                  second: 
         | 
| 55 | 
            +
                  year: 
         | 
| 56 | 
            +
              errors:
         | 
| 57 | 
            +
                format: 
         | 
| 58 | 
            +
                messages:
         | 
| 59 | 
            +
                  accepted: 
         | 
| 60 | 
            +
                  blank: 
         | 
| 61 | 
            +
                  confirmation: 
         | 
| 62 | 
            +
                  empty: 
         | 
| 63 | 
            +
                  equal_to: 
         | 
| 64 | 
            +
                  even: 
         | 
| 65 | 
            +
                  exclusion: 
         | 
| 66 | 
            +
                  greater_than: 
         | 
| 67 | 
            +
                  greater_than_or_equal_to: 
         | 
| 68 | 
            +
                  inclusion: 
         | 
| 69 | 
            +
                  invalid: 
         | 
| 70 | 
            +
                  less_than: 
         | 
| 71 | 
            +
                  less_than_or_equal_to: 
         | 
| 72 | 
            +
                  not_a_number: 
         | 
| 73 | 
            +
                  not_an_integer: 
         | 
| 74 | 
            +
                  odd: 
         | 
| 75 | 
            +
                  record_invalid: 
         | 
| 76 | 
            +
                  taken: 
         | 
| 77 | 
            +
                  too_long:
         | 
| 78 | 
            +
                    one: 
         | 
| 79 | 
            +
                    other: 
         | 
| 80 | 
            +
                  too_short:
         | 
| 81 | 
            +
                    one: 
         | 
| 82 | 
            +
                    other: 
         | 
| 83 | 
            +
                  wrong_length:
         | 
| 84 | 
            +
                    one: 
         | 
| 85 | 
            +
                    other: 
         | 
| 86 | 
            +
                template:
         | 
| 87 | 
            +
                  body: 
         | 
| 88 | 
            +
                  header:
         | 
| 89 | 
            +
                    one: 
         | 
| 90 | 
            +
                    other: 
         | 
| 91 | 
            +
              helpers:
         | 
| 92 | 
            +
                select:
         | 
| 93 | 
            +
                  prompt: 
         | 
| 94 | 
            +
                  prompt_allow_nil: 
         | 
| 95 | 
            +
                submit:
         | 
| 96 | 
            +
                  create: 
         | 
| 97 | 
            +
                  submit: 
         | 
| 98 | 
            +
                  update: 
         | 
| 99 | 
            +
                  cancel: 
         | 
| 100 | 
            +
                  reset: 
         | 
| 101 | 
            +
                  add: 
         | 
| 102 | 
            +
                links:
         | 
| 103 | 
            +
                  new: 
         | 
| 104 | 
            +
                  add: 
         | 
| 105 | 
            +
                  edit: 
         | 
| 106 | 
            +
                  reset: 
         | 
| 107 | 
            +
                  back: 
         | 
| 108 | 
            +
                  cancel: 
         | 
| 109 | 
            +
                  confirm: 
         | 
| 110 | 
            +
                  destroy: 
         | 
| 111 | 
            +
                  show: 
         | 
| 112 | 
            +
                titles:
         | 
| 113 | 
            +
                  index: 
         | 
| 114 | 
            +
                  edit: 
         | 
| 115 | 
            +
                  new: 
         | 
| 116 | 
            +
                  show: 
         | 
| 117 | 
            +
                tooltips:
         | 
| 118 | 
            +
                  edit: 
         | 
| 119 | 
            +
                  save: 
         | 
| 120 | 
            +
                  new: 
         | 
| 121 | 
            +
                  destroy: 
         | 
| 122 | 
            +
                  back: 
         | 
| 123 | 
            +
                  show: 
         | 
| 124 | 
            +
                  add: 
         | 
| 125 | 
            +
              sign_out: 
         | 
| 126 | 
            +
              sign_in: 
         | 
| 127 | 
            +
              number:
         | 
| 128 | 
            +
                currency:
         | 
| 129 | 
            +
                  format:
         | 
| 130 | 
            +
                    delimiter: 
         | 
| 131 | 
            +
                    format: 
         | 
| 132 | 
            +
                    precision: 
         | 
| 133 | 
            +
                    separator: 
         | 
| 134 | 
            +
                    significant: 
         | 
| 135 | 
            +
                    strip_insignificant_zeros: 
         | 
| 136 | 
            +
                    unit: 
         | 
| 137 | 
            +
                format:
         | 
| 138 | 
            +
                  delimiter: 
         | 
| 139 | 
            +
                  precision: 
         | 
| 140 | 
            +
                  separator: 
         | 
| 141 | 
            +
                  significant: 
         | 
| 142 | 
            +
                  strip_insignificant_zeros: 
         | 
| 143 | 
            +
                human:
         | 
| 144 | 
            +
                  decimal_units:
         | 
| 145 | 
            +
                    format: 
         | 
| 146 | 
            +
                    units:
         | 
| 147 | 
            +
                      billion: 
         | 
| 148 | 
            +
                      million: 
         | 
| 149 | 
            +
                      quadrillion: 
         | 
| 150 | 
            +
                      thousand: 
         | 
| 151 | 
            +
                      trillion: 
         | 
| 152 | 
            +
                      unit: 
         | 
| 153 | 
            +
                  format:
         | 
| 154 | 
            +
                    delimiter: 
         | 
| 155 | 
            +
                    precision: 
         | 
| 156 | 
            +
                    significant: 
         | 
| 157 | 
            +
                    strip_insignificant_zeros: 
         | 
| 158 | 
            +
                  storage_units:
         | 
| 159 | 
            +
                    format: 
         | 
| 160 | 
            +
                    units:
         | 
| 161 | 
            +
                      byte:
         | 
| 162 | 
            +
                        one: 
         | 
| 163 | 
            +
                        other: 
         | 
| 164 | 
            +
                      gb: 
         | 
| 165 | 
            +
                      kb: 
         | 
| 166 | 
            +
                      mb: 
         | 
| 167 | 
            +
                      tb: 
         | 
| 168 | 
            +
                percentage:
         | 
| 169 | 
            +
                  format:
         | 
| 170 | 
            +
                    delimiter: 
         | 
| 171 | 
            +
                precision:
         | 
| 172 | 
            +
                  format:
         | 
| 173 | 
            +
                    delimiter: 
         | 
| 174 | 
            +
              support:
         | 
| 175 | 
            +
                array:
         | 
| 176 | 
            +
                  last_word_connector: 
         | 
| 177 | 
            +
                  two_words_connector: 
         | 
| 178 | 
            +
                  words_connector: 
         | 
| 179 | 
            +
              time:
         | 
| 180 | 
            +
                am: 
         | 
| 181 | 
            +
                formats:
         | 
| 182 | 
            +
                  default: 
         | 
| 183 | 
            +
                  long: 
         | 
| 184 | 
            +
                  short: 
         | 
| 185 | 
            +
                pm: 
         | 
| @@ -0,0 +1,226 @@ | |
| 1 | 
            +
            en:
         | 
| 2 | 
            +
              date:
         | 
| 3 | 
            +
                abbr_day_names:
         | 
| 4 | 
            +
                - Sun
         | 
| 5 | 
            +
                - Mon
         | 
| 6 | 
            +
                - Tue
         | 
| 7 | 
            +
                - Wed
         | 
| 8 | 
            +
                - Thu
         | 
| 9 | 
            +
                - Fri
         | 
| 10 | 
            +
                - Sat
         | 
| 11 | 
            +
                abbr_month_names:
         | 
| 12 | 
            +
                - 
         | 
| 13 | 
            +
                - Jan
         | 
| 14 | 
            +
                - Feb
         | 
| 15 | 
            +
                - Mar
         | 
| 16 | 
            +
                - Apr
         | 
| 17 | 
            +
                - May
         | 
| 18 | 
            +
                - Jun
         | 
| 19 | 
            +
                - Jul
         | 
| 20 | 
            +
                - Aug
         | 
| 21 | 
            +
                - Sep
         | 
| 22 | 
            +
                - Oct
         | 
| 23 | 
            +
                - Nov
         | 
| 24 | 
            +
                - Dec
         | 
| 25 | 
            +
                day_names:
         | 
| 26 | 
            +
                - Sunday
         | 
| 27 | 
            +
                - Monday
         | 
| 28 | 
            +
                - Tuesday
         | 
| 29 | 
            +
                - Wednesday
         | 
| 30 | 
            +
                - Thursday
         | 
| 31 | 
            +
                - Friday
         | 
| 32 | 
            +
                - Saturday
         | 
| 33 | 
            +
                formats:
         | 
| 34 | 
            +
                  default: ! '%Y-%m-%d'
         | 
| 35 | 
            +
                  long: ! '%B %d, %Y'
         | 
| 36 | 
            +
                  short: ! '%b %d'
         | 
| 37 | 
            +
                month_names:
         | 
| 38 | 
            +
                - 
         | 
| 39 | 
            +
                - January
         | 
| 40 | 
            +
                - February
         | 
| 41 | 
            +
                - March
         | 
| 42 | 
            +
                - April
         | 
| 43 | 
            +
                - May
         | 
| 44 | 
            +
                - June
         | 
| 45 | 
            +
                - July
         | 
| 46 | 
            +
                - August
         | 
| 47 | 
            +
                - September
         | 
| 48 | 
            +
                - October
         | 
| 49 | 
            +
                - November
         | 
| 50 | 
            +
                - December
         | 
| 51 | 
            +
                order:
         | 
| 52 | 
            +
                - :year
         | 
| 53 | 
            +
                - :month
         | 
| 54 | 
            +
                - :day
         | 
| 55 | 
            +
              datetime:
         | 
| 56 | 
            +
                distance_in_words:
         | 
| 57 | 
            +
                  about_x_hours:
         | 
| 58 | 
            +
                    one: about 1 hour
         | 
| 59 | 
            +
                    other: about %{count} hours
         | 
| 60 | 
            +
                  about_x_months:
         | 
| 61 | 
            +
                    one: about 1 month
         | 
| 62 | 
            +
                    other: about %{count} months
         | 
| 63 | 
            +
                  about_x_years:
         | 
| 64 | 
            +
                    one: about 1 year
         | 
| 65 | 
            +
                    other: about %{count} years
         | 
| 66 | 
            +
                  almost_x_years:
         | 
| 67 | 
            +
                    one: almost 1 year
         | 
| 68 | 
            +
                    other: almost %{count} years
         | 
| 69 | 
            +
                  half_a_minute: half a minute
         | 
| 70 | 
            +
                  less_than_x_minutes:
         | 
| 71 | 
            +
                    one: less than a minute
         | 
| 72 | 
            +
                    other: less than %{count} minutes
         | 
| 73 | 
            +
                  less_than_x_seconds:
         | 
| 74 | 
            +
                    one: less than 1 second
         | 
| 75 | 
            +
                    other: less than %{count} seconds
         | 
| 76 | 
            +
                  over_x_years:
         | 
| 77 | 
            +
                    one: over 1 year
         | 
| 78 | 
            +
                    other: over %{count} years
         | 
| 79 | 
            +
                  x_days:
         | 
| 80 | 
            +
                    one: 1 day
         | 
| 81 | 
            +
                    other: ! '%{count} days'
         | 
| 82 | 
            +
                  x_minutes:
         | 
| 83 | 
            +
                    one: 1 minute
         | 
| 84 | 
            +
                    other: ! '%{count} minutes'
         | 
| 85 | 
            +
                  x_months:
         | 
| 86 | 
            +
                    one: 1 month
         | 
| 87 | 
            +
                    other: ! '%{count} months'
         | 
| 88 | 
            +
                  x_seconds:
         | 
| 89 | 
            +
                    one: 1 second
         | 
| 90 | 
            +
                    other: ! '%{count} seconds'
         | 
| 91 | 
            +
                prompts:
         | 
| 92 | 
            +
                  day: Day
         | 
| 93 | 
            +
                  hour: Hour
         | 
| 94 | 
            +
                  minute: Minute
         | 
| 95 | 
            +
                  month: Month
         | 
| 96 | 
            +
                  second: Seconds
         | 
| 97 | 
            +
                  year: Year
         | 
| 98 | 
            +
              errors: &errors
         | 
| 99 | 
            +
                format: ! '%{attribute} %{message}'
         | 
| 100 | 
            +
                messages:
         | 
| 101 | 
            +
                  accepted: must be accepted
         | 
| 102 | 
            +
                  blank: can't be blank
         | 
| 103 | 
            +
                  confirmation: doesn't match confirmation
         | 
| 104 | 
            +
                  empty: can't be empty
         | 
| 105 | 
            +
                  equal_to: must be equal to %{count}
         | 
| 106 | 
            +
                  even: must be even
         | 
| 107 | 
            +
                  exclusion: is reserved
         | 
| 108 | 
            +
                  greater_than: must be greater than %{count}
         | 
| 109 | 
            +
                  greater_than_or_equal_to: must be greater than or equal to %{count}
         | 
| 110 | 
            +
                  inclusion: is not included in the list
         | 
| 111 | 
            +
                  invalid: is invalid
         | 
| 112 | 
            +
                  less_than: must be less than %{count}
         | 
| 113 | 
            +
                  less_than_or_equal_to: must be less than or equal to %{count}
         | 
| 114 | 
            +
                  not_a_number: is not a number
         | 
| 115 | 
            +
                  not_an_integer: must be an integer
         | 
| 116 | 
            +
                  odd: must be odd
         | 
| 117 | 
            +
                  record_invalid: ! 'Validation failed: %{errors}'
         | 
| 118 | 
            +
                  taken: has already been taken
         | 
| 119 | 
            +
                  too_long:
         | 
| 120 | 
            +
                    one: is too long (maximum is 1 character)
         | 
| 121 | 
            +
                    other: is too long (maximum is %{count} characters)
         | 
| 122 | 
            +
                  too_short:
         | 
| 123 | 
            +
                    one: is too short (minimum is 1 character)
         | 
| 124 | 
            +
                    other: is too short (minimum is %{count} characters)
         | 
| 125 | 
            +
                  wrong_length:
         | 
| 126 | 
            +
                    one: is the wrong length (should be 1 character)
         | 
| 127 | 
            +
                    other: is the wrong length (should be %{count} characters)
         | 
| 128 | 
            +
                template:
         | 
| 129 | 
            +
                  body: ! 'There were problems with the following fields:'
         | 
| 130 | 
            +
                  header:
         | 
| 131 | 
            +
                    one: 1 error prohibited this %{model} from being saved
         | 
| 132 | 
            +
                    other: ! '%{count} errors prohibited this %{model} from being saved'
         | 
| 133 | 
            +
              helpers:
         | 
| 134 | 
            +
                select:
         | 
| 135 | 
            +
                  prompt: Please select
         | 
| 136 | 
            +
                  prompt_allow_nil: Please select or leave blank
         | 
| 137 | 
            +
                submit:
         | 
| 138 | 
            +
                  create: Create %{model}
         | 
| 139 | 
            +
                  submit: Save %{model}
         | 
| 140 | 
            +
                  update: Update %{model}
         | 
| 141 | 
            +
                  reset: Reset %{model}
         | 
| 142 | 
            +
                  add: Add %{model}
         | 
| 143 | 
            +
                links:
         | 
| 144 | 
            +
                  new: New %{model}
         | 
| 145 | 
            +
                  add: Add %{model}
         | 
| 146 | 
            +
                  edit: Edit %{model}
         | 
| 147 | 
            +
                  reset: Reset
         | 
| 148 | 
            +
                  back: Back
         | 
| 149 | 
            +
                  cancel: Cancel
         | 
| 150 | 
            +
                  confirm: Are you sure?
         | 
| 151 | 
            +
                  destroy: Delete %{model}
         | 
| 152 | 
            +
                  show: "Show %{model}"
         | 
| 153 | 
            +
                titles:
         | 
| 154 | 
            +
                  index: Listing %{model}
         | 
| 155 | 
            +
                  edit: Edit %{model}
         | 
| 156 | 
            +
                  new: New %{model}
         | 
| 157 | 
            +
                  show: "%{model} summary"
         | 
| 158 | 
            +
                tooltips:
         | 
| 159 | 
            +
                  edit: Edit this %{model}
         | 
| 160 | 
            +
                  save: Save this %{model}
         | 
| 161 | 
            +
                  new: Create a new %{model}
         | 
| 162 | 
            +
                  destroy: Delete this %{model}
         | 
| 163 | 
            +
                  back: Back to the list
         | 
| 164 | 
            +
                  show: Show this %{model}
         | 
| 165 | 
            +
                  add: Add a new %{model}
         | 
| 166 | 
            +
              sign_out: Sign out    
         | 
| 167 | 
            +
              number:
         | 
| 168 | 
            +
                currency:
         | 
| 169 | 
            +
                  format:
         | 
| 170 | 
            +
                    delimiter: ! ','
         | 
| 171 | 
            +
                    format: ! '%u%n'
         | 
| 172 | 
            +
                    precision: 2
         | 
| 173 | 
            +
                    separator: .
         | 
| 174 | 
            +
                    significant: false
         | 
| 175 | 
            +
                    strip_insignificant_zeros: false
         | 
| 176 | 
            +
                    unit: $
         | 
| 177 | 
            +
                format:
         | 
| 178 | 
            +
                  delimiter: ! ','
         | 
| 179 | 
            +
                  precision: 3
         | 
| 180 | 
            +
                  separator: .
         | 
| 181 | 
            +
                  significant: false
         | 
| 182 | 
            +
                  strip_insignificant_zeros: false
         | 
| 183 | 
            +
                human:
         | 
| 184 | 
            +
                  decimal_units:
         | 
| 185 | 
            +
                    format: ! '%n %u'
         | 
| 186 | 
            +
                    units:
         | 
| 187 | 
            +
                      billion: Billion
         | 
| 188 | 
            +
                      million: Million
         | 
| 189 | 
            +
                      quadrillion: Quadrillion
         | 
| 190 | 
            +
                      thousand: Thousand
         | 
| 191 | 
            +
                      trillion: Trillion
         | 
| 192 | 
            +
                      unit: ''
         | 
| 193 | 
            +
                  format:
         | 
| 194 | 
            +
                    delimiter: ''
         | 
| 195 | 
            +
                    precision: 3
         | 
| 196 | 
            +
                    significant: true
         | 
| 197 | 
            +
                    strip_insignificant_zeros: true
         | 
| 198 | 
            +
                  storage_units:
         | 
| 199 | 
            +
                    format: ! '%n %u'
         | 
| 200 | 
            +
                    units:
         | 
| 201 | 
            +
                      byte:
         | 
| 202 | 
            +
                        one: Byte
         | 
| 203 | 
            +
                        other: Bytes
         | 
| 204 | 
            +
                      gb: GB
         | 
| 205 | 
            +
                      kb: KB
         | 
| 206 | 
            +
                      mb: MB
         | 
| 207 | 
            +
                      tb: TB
         | 
| 208 | 
            +
                percentage:
         | 
| 209 | 
            +
                  format:
         | 
| 210 | 
            +
                    delimiter: ''
         | 
| 211 | 
            +
                precision:
         | 
| 212 | 
            +
                  format:
         | 
| 213 | 
            +
                    delimiter: ''
         | 
| 214 | 
            +
              support:
         | 
| 215 | 
            +
                array:
         | 
| 216 | 
            +
                  last_word_connector: ! ', and '
         | 
| 217 | 
            +
                  two_words_connector: ! ' and '
         | 
| 218 | 
            +
                  words_connector: ! ', '
         | 
| 219 | 
            +
              time:
         | 
| 220 | 
            +
                am: am
         | 
| 221 | 
            +
                formats:
         | 
| 222 | 
            +
                  default: ! '%a, %d %b %Y %H:%M:%S %z'
         | 
| 223 | 
            +
                  long: ! '%B %d, %Y %H:%M'
         | 
| 224 | 
            +
                  short: ! '%d %b %H:%M'
         | 
| 225 | 
            +
                pm: pm
         | 
| 226 | 
            +
             
         | 
| @@ -0,0 +1,229 @@ | |
| 1 | 
            +
            it:
         | 
| 2 | 
            +
              date:
         | 
| 3 | 
            +
                abbr_day_names:
         | 
| 4 | 
            +
                - Dom
         | 
| 5 | 
            +
                - Lun
         | 
| 6 | 
            +
                - Mar
         | 
| 7 | 
            +
                - Mer
         | 
| 8 | 
            +
                - Gio
         | 
| 9 | 
            +
                - Ven
         | 
| 10 | 
            +
                - Sab
         | 
| 11 | 
            +
                abbr_month_names:
         | 
| 12 | 
            +
                - 
         | 
| 13 | 
            +
                - Gen
         | 
| 14 | 
            +
                - Feb
         | 
| 15 | 
            +
                - Mar
         | 
| 16 | 
            +
                - Apr
         | 
| 17 | 
            +
                - Mag
         | 
| 18 | 
            +
                - Giu
         | 
| 19 | 
            +
                - Lug
         | 
| 20 | 
            +
                - Ago
         | 
| 21 | 
            +
                - Set
         | 
| 22 | 
            +
                - Ott
         | 
| 23 | 
            +
                - Nov
         | 
| 24 | 
            +
                - Dic
         | 
| 25 | 
            +
                day_names:
         | 
| 26 | 
            +
                - Domenica
         | 
| 27 | 
            +
                - Lunedì
         | 
| 28 | 
            +
                - Martedì
         | 
| 29 | 
            +
                - Mercoledì
         | 
| 30 | 
            +
                - Giovedì
         | 
| 31 | 
            +
                - Venerdì
         | 
| 32 | 
            +
                - Sabato
         | 
| 33 | 
            +
                formats:
         | 
| 34 | 
            +
                  default: ! '%d-%m-%Y'
         | 
| 35 | 
            +
                  long: ! '%d %B %Y'
         | 
| 36 | 
            +
                  short: ! '%d %b'
         | 
| 37 | 
            +
                month_names:
         | 
| 38 | 
            +
                - 
         | 
| 39 | 
            +
                - Gennaio
         | 
| 40 | 
            +
                - Febbraio
         | 
| 41 | 
            +
                - Marzo
         | 
| 42 | 
            +
                - Aprile
         | 
| 43 | 
            +
                - Maggio
         | 
| 44 | 
            +
                - Giugno
         | 
| 45 | 
            +
                - Luglio
         | 
| 46 | 
            +
                - Agosto
         | 
| 47 | 
            +
                - Settembre
         | 
| 48 | 
            +
                - Ottobre
         | 
| 49 | 
            +
                - Novembre
         | 
| 50 | 
            +
                - Dicembre
         | 
| 51 | 
            +
                order:
         | 
| 52 | 
            +
                - :day
         | 
| 53 | 
            +
                - :month
         | 
| 54 | 
            +
                - :year
         | 
| 55 | 
            +
              datetime:
         | 
| 56 | 
            +
                distance_in_words:
         | 
| 57 | 
            +
                  about_x_hours:
         | 
| 58 | 
            +
                    one: circa un'ora
         | 
| 59 | 
            +
                    other: circa %{count} ore
         | 
| 60 | 
            +
                  about_x_months:
         | 
| 61 | 
            +
                    one: circa un mese
         | 
| 62 | 
            +
                    other: circa %{count} mesi
         | 
| 63 | 
            +
                  about_x_years:
         | 
| 64 | 
            +
                    one: circa un anno
         | 
| 65 | 
            +
                    other: circa %{count} anni
         | 
| 66 | 
            +
                  almost_x_years:
         | 
| 67 | 
            +
                    one: circa 1 anno
         | 
| 68 | 
            +
                    other: circa %{count} anni
         | 
| 69 | 
            +
                  half_a_minute: mezzo minuto
         | 
| 70 | 
            +
                  less_than_x_minutes:
         | 
| 71 | 
            +
                    one: meno di un minuto
         | 
| 72 | 
            +
                    other: meno di %{count} minuti
         | 
| 73 | 
            +
                  less_than_x_seconds:
         | 
| 74 | 
            +
                    one: meno di un secondo
         | 
| 75 | 
            +
                    other: meno di %{count} secondi
         | 
| 76 | 
            +
                  over_x_years:
         | 
| 77 | 
            +
                    one: oltre un anno
         | 
| 78 | 
            +
                    other: oltre %{count} anni
         | 
| 79 | 
            +
                  x_days:
         | 
| 80 | 
            +
                    one: 1 giorno
         | 
| 81 | 
            +
                    other: ! '%{count} giorni'
         | 
| 82 | 
            +
                  x_minutes:
         | 
| 83 | 
            +
                    one: 1 minuto
         | 
| 84 | 
            +
                    other: ! '%{count} minuti'
         | 
| 85 | 
            +
                  x_months:
         | 
| 86 | 
            +
                    one: 1 mese
         | 
| 87 | 
            +
                    other: ! '%{count} mesi'
         | 
| 88 | 
            +
                  x_seconds:
         | 
| 89 | 
            +
                    one: 1 secondo
         | 
| 90 | 
            +
                    other: ! '%{count} secondi'
         | 
| 91 | 
            +
                prompts:
         | 
| 92 | 
            +
                  day: Giorno
         | 
| 93 | 
            +
                  hour: Ora
         | 
| 94 | 
            +
                  minute: Minuto
         | 
| 95 | 
            +
                  month: Mese
         | 
| 96 | 
            +
                  second: Secondi
         | 
| 97 | 
            +
                  year: Anno
         | 
| 98 | 
            +
              errors: &errors
         | 
| 99 | 
            +
                format: ! '%{attribute} %{message}'
         | 
| 100 | 
            +
                messages:
         | 
| 101 | 
            +
                  accepted: deve essere accettata
         | 
| 102 | 
            +
                  blank: non può essere lasciato in bianco
         | 
| 103 | 
            +
                  confirmation: non coincide con la conferma
         | 
| 104 | 
            +
                  empty: non può essere vuoto
         | 
| 105 | 
            +
                  equal_to: deve essere uguale a %{count}
         | 
| 106 | 
            +
                  even: deve essere pari
         | 
| 107 | 
            +
                  exclusion: è riservato
         | 
| 108 | 
            +
                  greater_than: deve essere superiore a %{count}
         | 
| 109 | 
            +
                  greater_than_or_equal_to: deve essere superiore o uguale a %{count}
         | 
| 110 | 
            +
                  inclusion: non è incluso nella lista
         | 
| 111 | 
            +
                  invalid: non è valido
         | 
| 112 | 
            +
                  less_than: deve essere meno di %{count}
         | 
| 113 | 
            +
                  less_than_or_equal_to: deve essere meno o uguale a %{count}
         | 
| 114 | 
            +
                  not_a_number: non è un numero
         | 
| 115 | 
            +
                  not_an_integer: non è un intero
         | 
| 116 | 
            +
                  odd: deve essere dispari
         | 
| 117 | 
            +
                  record_invalid: ! 'Validazione fallita: %{errors}'
         | 
| 118 | 
            +
                  taken: è già in uso
         | 
| 119 | 
            +
                  too_long:
         | 
| 120 | 
            +
                    one: è troppo lungo (il massimo è 1 carattere)
         | 
| 121 | 
            +
                    other: è troppo lungo (il massimo è %{count} caratteri)
         | 
| 122 | 
            +
                  too_short:
         | 
| 123 | 
            +
                    one: è troppo corto (il minimo è 1 carattere)
         | 
| 124 | 
            +
                    other: è troppo corto (il minimo è %{count} caratteri)
         | 
| 125 | 
            +
                  wrong_length:
         | 
| 126 | 
            +
                    one: è della lunghezza sbagliata (deve essere di 1 carattere)
         | 
| 127 | 
            +
                    other: è della lunghezza sbagliata (deve essere di %{count} caratteri)
         | 
| 128 | 
            +
                template:
         | 
| 129 | 
            +
                  body: ! 'Per favore ricontrolla i seguenti campi:'
         | 
| 130 | 
            +
                  header:
         | 
| 131 | 
            +
                    one: ! 'Non posso salvare questo %{model}: 1 errore'
         | 
| 132 | 
            +
                    other: ! 'Non posso salvare questo %{model}: %{count} errori.'
         | 
| 133 | 
            +
              helpers:
         | 
| 134 | 
            +
                select:
         | 
| 135 | 
            +
                  prompt: Per favore, seleziona
         | 
| 136 | 
            +
                  prompt_allow_nil: Per favore, seleziona o lascia in binaco
         | 
| 137 | 
            +
                submit:
         | 
| 138 | 
            +
                  create: Crea %{model}
         | 
| 139 | 
            +
                  submit: Invia %{model}
         | 
| 140 | 
            +
                  update: Aggiorna %{model}
         | 
| 141 | 
            +
                  cancel: Annulla %{model}
         | 
| 142 | 
            +
                  reset: Cancella %{model}
         | 
| 143 | 
            +
                  add: Aggiungi %{model}
         | 
| 144 | 
            +
                links:
         | 
| 145 | 
            +
                  new: Nuovo %{model}
         | 
| 146 | 
            +
                  add: Aggiungi %{model}
         | 
| 147 | 
            +
                  edit: Modifica %{model}
         | 
| 148 | 
            +
                  reset: Reset
         | 
| 149 | 
            +
                  back: Indietro
         | 
| 150 | 
            +
                  cancel: Annulla
         | 
| 151 | 
            +
                  confirm: Sei sicuro?
         | 
| 152 | 
            +
                  destroy: Elimina %{model}
         | 
| 153 | 
            +
                  show: Visualizza %{model}
         | 
| 154 | 
            +
                titles:
         | 
| 155 | 
            +
                  index: Lista %{model}
         | 
| 156 | 
            +
                  edit: Modifica %{model}
         | 
| 157 | 
            +
                  new: Nuovo %{model}
         | 
| 158 | 
            +
                  show: "Riepilogo %{model}"
         | 
| 159 | 
            +
                tooltips:
         | 
| 160 | 
            +
                  edit: Modifica %{model}
         | 
| 161 | 
            +
                  save: Salva %{model}
         | 
| 162 | 
            +
                  new: Crea %{model}
         | 
| 163 | 
            +
                  destroy: Elimina %{model}
         | 
| 164 | 
            +
                  back: Torna alla lista
         | 
| 165 | 
            +
                  show: Visualizza %{model}
         | 
| 166 | 
            +
                  add: Aggiungi %{model}
         | 
| 167 | 
            +
              sign_out: Esci
         | 
| 168 | 
            +
              sign_in: Accedi
         | 
| 169 | 
            +
             | 
| 170 | 
            +
              number:
         | 
| 171 | 
            +
                currency:
         | 
| 172 | 
            +
                  format:
         | 
| 173 | 
            +
                    delimiter: ! ','
         | 
| 174 | 
            +
                    format: ! '%n %u'
         | 
| 175 | 
            +
                    precision: 2
         | 
| 176 | 
            +
                    separator: .
         | 
| 177 | 
            +
                    significant: false
         | 
| 178 | 
            +
                    strip_insignificant_zeros: false
         | 
| 179 | 
            +
                    unit: €
         | 
| 180 | 
            +
                format:
         | 
| 181 | 
            +
                  delimiter: ! ','
         | 
| 182 | 
            +
                  precision: 2
         | 
| 183 | 
            +
                  separator: .
         | 
| 184 | 
            +
                  significant: false
         | 
| 185 | 
            +
                  strip_insignificant_zeros: false
         | 
| 186 | 
            +
                human:
         | 
| 187 | 
            +
                  decimal_units:
         | 
| 188 | 
            +
                    format: ! '%n %u'
         | 
| 189 | 
            +
                    units:
         | 
| 190 | 
            +
                      billion: Miliardi
         | 
| 191 | 
            +
                      million: Milioni
         | 
| 192 | 
            +
                      quadrillion: Biliardi
         | 
| 193 | 
            +
                      thousand: Mila
         | 
| 194 | 
            +
                      trillion: Bilioni
         | 
| 195 | 
            +
                      unit: ''
         | 
| 196 | 
            +
                  format:
         | 
| 197 | 
            +
                    delimiter: ''
         | 
| 198 | 
            +
                    precision: 1
         | 
| 199 | 
            +
                    significant: true
         | 
| 200 | 
            +
                    strip_insignificant_zeros: true
         | 
| 201 | 
            +
                  storage_units:
         | 
| 202 | 
            +
                    format: ! '%n %u'
         | 
| 203 | 
            +
                    units:
         | 
| 204 | 
            +
                      byte:
         | 
| 205 | 
            +
                        one: Byte
         | 
| 206 | 
            +
                        other: Byte
         | 
| 207 | 
            +
                      gb: GB
         | 
| 208 | 
            +
                      kb: KB
         | 
| 209 | 
            +
                      mb: MB
         | 
| 210 | 
            +
                      tb: TB
         | 
| 211 | 
            +
                percentage:
         | 
| 212 | 
            +
                  format:
         | 
| 213 | 
            +
                    delimiter: ''
         | 
| 214 | 
            +
                precision:
         | 
| 215 | 
            +
                  format:
         | 
| 216 | 
            +
                    delimiter: ''
         | 
| 217 | 
            +
              support:
         | 
| 218 | 
            +
                array:
         | 
| 219 | 
            +
                  last_word_connector: ! ' e '
         | 
| 220 | 
            +
                  two_words_connector: ! ' e '
         | 
| 221 | 
            +
                  words_connector: ! ', '
         | 
| 222 | 
            +
              time:
         | 
| 223 | 
            +
                am: am
         | 
| 224 | 
            +
                formats:
         | 
| 225 | 
            +
                  default: ! '%a %d %b %Y, %H:%M:%S %z'
         | 
| 226 | 
            +
                  long: ! '%d %B %Y %H:%M'
         | 
| 227 | 
            +
                  short: ! '%d %b %H:%M'
         | 
| 228 | 
            +
                pm: pm
         | 
| 229 | 
            +
             |