-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add China text localization and fixes #6.
- Loading branch information
Showing
13 changed files
with
291 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "UberRides" | ||
s.version = "0.1.1" | ||
s.version = "0.2.0" | ||
s.summary = "The Official Uber Rides iOS SDK." | ||
s.description = <<-DESC | ||
This Swift library allows you to integrate Uber into your iOS app. It is designed to make it quick and easy to add a 'Request a Ride' button in your application, seamlessly connecting your users with Uber. | ||
DESC | ||
s.homepage = "https://github.com/uber/rides-ios-sdk" | ||
s.screenshots = "https://raw.githubusercontent.com/uber/rides-ios-sdk/master/img/example_app.png" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Christine Kim" => "[email protected]" } | ||
s.authors = { "Christine Kim" => "christinek@uber.com", "Farwa Naqi" => "farwa@uber.com" } | ||
|
||
s.platform = :ios, "8.0" | ||
s.source = { :git => "https://github.com/uber/rides-ios-sdk.git", :tag => 'v' + s.version.to_s } | ||
s.source = { :git => "https://github.com/uber/rides-ios-sdk.git", :tag => s.version } | ||
s.source_files = "source/UberRides/*.swift" | ||
s.resources = "source/UberRides/Media.xcassets" | ||
s.resource = "source/UberRides/UberRidesResources.bundle/*" | ||
s.requires_arc = true | ||
|
||
end |
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
23 changes: 23 additions & 0 deletions
23
source/UberRides/UberRidesResources.bundle/Media.xcassets/Badge.imageset/Contents.json
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,23 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "uber_badge_24.png", | ||
"scale" : "1x" | ||
}, | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "[email protected]", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "[email protected]", | ||
"scale" : "3x" | ||
} | ||
], | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
} | ||
} |
Binary file added
BIN
+785 Bytes
...Rides/UberRidesResources.bundle/Media.xcassets/Badge.imageset/uber_badge_24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.49 KB
...es/UberRidesResources.bundle/Media.xcassets/Badge.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.1 KB
...es/UberRidesResources.bundle/Media.xcassets/Badge.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions
6
source/UberRides/UberRidesResources.bundle/Media.xcassets/Contents.json
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,6 @@ | ||
{ | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
source/UberRides/UberRidesResources.bundle/en.lproj/Localizable.strings
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,2 @@ | ||
/* The title of the request button that deep links to the Uber app */ | ||
"RequestButton.TitleText" = "Ride there with Uber"; |
2 changes: 2 additions & 0 deletions
2
source/UberRides/UberRidesResources.bundle/zh-Hans.lproj/Localizable.strings
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,2 @@ | ||
/* The title of the request button that deep links to the Uber app */ | ||
"RequestButton.TitleText" = "搭乘优步前往"; |
2 changes: 2 additions & 0 deletions
2
source/UberRides/UberRidesResources.bundle/zh-Hant.lproj/Localizable.strings
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,2 @@ | ||
/* The title of the request button that deep links to the Uber app */ | ||
"RequestButton.TitleText" = "搭乘优步前往"; |
Oops, something went wrong.