Skip to content

Commit

Permalink
Merge pull request #17 from AckeeCZ/fix/default-stringsdict
Browse files Browse the repository at this point in the history
🐛 Fix bad file extension
  • Loading branch information
olejnjak authored Sep 7, 2020
2 parents 6169552 + a35d791 commit f7a9515
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@

## master

## 1.1.0

### Added

- Fix bad stringsdict file extension ([#17](https://github.com/AckeeCZ/ACKLocalization/pull/17), kudos to @IgorRosocha)

## 1.1.0

- Add support for plural keys ([#16](https://github.com/AckeeCZ/ACKLocalization/pull/16), kudos to @LukasHromadnik)

### 1.0.1
## 1.0.1

- Add support for specifiying number of decimals for float ([#15](https://github.com/AckeeCZ/ACKLocalization/pull/15), kudos to @fortmarek)

Expand Down
2 changes: 1 addition & 1 deletion Sources/ACKLocalizationCore/ACKLocalization.swift
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public final class ACKLocalization {

/// Saves given `mappedValues` to correct directory file
public func saveMappedValuesPublisher(_ mappedValues: MappedValues, config: Configuration) -> AnyPublisher<Void, LocalizationError> {
saveMappedValuesPublisher(mappedValues, directory: config.destinationDir, stringsFileName: config.stringsFileName ?? "Localizable.strings", stringsDictFileName: config.stringsDictFileName ?? "Localizable.stringsDict")
saveMappedValuesPublisher(mappedValues, directory: config.destinationDir, stringsFileName: config.stringsFileName ?? "Localizable.strings", stringsDictFileName: config.stringsDictFileName ?? "Localizable.stringsdict")
}

/// Fetches sheet values from given `config`
Expand Down

0 comments on commit f7a9515

Please sign in to comment.