forked from marmelroy/Localize-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'marmelroy/master'
- Loading branch information
Showing
10 changed files
with
124 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Change Log | ||
|
||
## [Unreleased](https://github.com/marmelroy/Localize-Swift/tree/HEAD) | ||
|
||
[Full Changelog](https://github.com/marmelroy/Localize-Swift/compare/0.5...HEAD) | ||
|
||
**Merged pull requests:** | ||
|
||
- Spellings [\#10](https://github.com/marmelroy/Localize-Swift/pull/10) ([jameshartt](https://github.com/jameshartt)) | ||
|
||
## [0.5](https://github.com/marmelroy/Localize-Swift/tree/0.5) (2015-11-03) | ||
[Full Changelog](https://github.com/marmelroy/Localize-Swift/compare/0.4...0.5) | ||
|
||
**Merged pull requests:** | ||
|
||
- Much type-safer swift .localize implementation [\#9](https://github.com/marmelroy/Localize-Swift/pull/9) ([rshev](https://github.com/rshev)) | ||
|
||
## [0.4](https://github.com/marmelroy/Localize-Swift/tree/0.4) (2015-10-10) | ||
[Full Changelog](https://github.com/marmelroy/Localize-Swift/compare/0.3...0.4) | ||
|
||
**Closed issues:** | ||
|
||
- Can not get localized string in swift files using genstrings.py [\#8](https://github.com/marmelroy/Localize-Swift/issues/8) | ||
- Suggestion: Change the Localized\(\) method name to localized\(\) to match style best practices [\#7](https://github.com/marmelroy/Localize-Swift/issues/7) | ||
|
||
## [0.3](https://github.com/marmelroy/Localize-Swift/tree/0.3) (2015-09-28) | ||
[Full Changelog](https://github.com/marmelroy/Localize-Swift/compare/0.2...0.3) | ||
|
||
## [0.2](https://github.com/marmelroy/Localize-Swift/tree/0.2) (2015-09-26) | ||
[Full Changelog](https://github.com/marmelroy/Localize-Swift/compare/0.1...0.2) | ||
|
||
**Closed issues:** | ||
|
||
- Swift 2.0 Compatibility [\#6](https://github.com/marmelroy/Localize-Swift/issues/6) | ||
- Add unit tests [\#5](https://github.com/marmelroy/Localize-Swift/issues/5) | ||
- Add support for plurals with .stringsdict [\#4](https://github.com/marmelroy/Localize-Swift/issues/4) | ||
|
||
## [0.1](https://github.com/marmelroy/Localize-Swift/tree/0.1) (2015-08-06) | ||
[Full Changelog](https://github.com/marmelroy/Localize-Swift/compare/0.0.1...0.1) | ||
|
||
**Closed issues:** | ||
|
||
- Create Localize-Swift genstrings equivalent [\#3](https://github.com/marmelroy/Localize-Swift/issues/3) | ||
- Add example code [\#2](https://github.com/marmelroy/Localize-Swift/issues/2) | ||
- Add notification on language change [\#1](https://github.com/marmelroy/Localize-Swift/issues/1) | ||
|
||
## [0.0.1](https://github.com/marmelroy/Localize-Swift/tree/0.0.1) (2015-08-05) | ||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Localize-Swift" | ||
s.version = "0.4" | ||
s.version = "0.6" | ||
s.summary = "Swift-friendly localization and i18n with in-app language switching." | ||
s.description = "Localize-Swift is a simple framework that improves i18n and localization in Swift iOS apps - providing cleaner syntax and in-app language switching." | ||
s.homepage = "https://github.com/marmelroy/Localize-Swift" | ||
s.license = "MIT" | ||
s.author = { "Roy Marmelstein" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/marmelroy" | ||
s.source = { :git => "https://github.com/marmelroy/Localize-Swift.git", :tag => "0.4" } | ||
s.source = { :git => "https://github.com/marmelroy/Localize-Swift.git", :tag => "0.6" } | ||
s.source_files = "Localize" | ||
s.platform = :ios | ||
s.ios.deployment_target = "8.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters