Merge commit 'eb264889e3' into traffic
@@ -4,6 +4,7 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface UIColor (MapsMeColor)
|
||||
|
||||
+ (UIColor *)black;
|
||||
+ (UIColor *)blackPrimaryText;
|
||||
+ (UIColor *)blackSecondaryText;
|
||||
+ (UIColor *)blackHintText;
|
||||
|
||||
@@ -68,6 +68,11 @@ static BOOL isNightMode = NO;
|
||||
{
|
||||
return StyleManager.shared.theme.colors.buttonRed;
|
||||
}
|
||||
+ (UIColor *)black
|
||||
{
|
||||
return StyleManager.shared.theme.colors.black;
|
||||
}
|
||||
|
||||
+ (UIColor *)blackPrimaryText
|
||||
{
|
||||
return StyleManager.shared.theme.colors.blackPrimaryText;
|
||||
|
||||
@@ -17,11 +17,7 @@ static CGFloat const kButtonExtraWidth = 16.0;
|
||||
|
||||
- (UIBarButtonItem *)buttonWithImage:(UIImage *)image action:(SEL)action
|
||||
{
|
||||
UIButton * button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, image.size.width + kButtonExtraWidth, image.size.height)];
|
||||
[button setImage:image forState:UIControlStateNormal];
|
||||
[button matchInterfaceOrientation];
|
||||
[button addTarget:self action:action forControlEvents:UIControlEventTouchUpInside];
|
||||
return [[UIBarButtonItem alloc] initWithCustomView:button];
|
||||
return [[UIBarButtonItem alloc] initWithImage:image style:UIBarButtonItemStylePlain target:self action:action];
|
||||
}
|
||||
|
||||
- (NSArray<UIBarButtonItem *> *)alignedNavBarButtonItems:(NSArray<UIBarButtonItem *> *)items
|
||||
|
||||
@@ -55,7 +55,7 @@ final class CarPlayService: NSObject {
|
||||
router.restoreTripPreviewOnCarplay(beforeRootTemplateDidAppear: true)
|
||||
}
|
||||
updateContentStyle(configuration.contentStyle)
|
||||
FrameworkHelper.updatePositionArrowOffset(false, offset: 5)
|
||||
FrameworkHelper.updatePositionArrowOffset(false, offset: (Int32(window.height * window.screen.scale)/3))
|
||||
|
||||
CarPlayWindowScaleAdjuster.updateAppearance(
|
||||
fromWindow: MapsAppDelegate.theApp().window,
|
||||
|
||||
@@ -32,6 +32,7 @@ API_AVAILABLE(ios(12.0))
|
||||
self.lastResults = @[];
|
||||
self.completionHandler = completionHandler;
|
||||
/// @todo Didn't find pure category request in CarPlay.
|
||||
[MWMSearch setSearchMode:SearchModeEverywhere];
|
||||
SearchQuery * query = [[SearchQuery alloc] init:text locale:inputLocale source:SearchTextSourceTypedText];
|
||||
[MWMSearch searchQuery:query];
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ final class ListTemplateBuilder {
|
||||
case search
|
||||
}
|
||||
|
||||
// MARK: - CPListTemplate bilder
|
||||
// MARK: - CPListTemplate builder
|
||||
class func buildListTemplate(for type: ListTemplateType) -> CPListTemplate {
|
||||
var title = ""
|
||||
var trailingNavigationBarButtons = [CPBarButton]()
|
||||
@@ -40,38 +40,38 @@ final class ListTemplateBuilder {
|
||||
case .bookmarks(let category):
|
||||
title = category.title
|
||||
}
|
||||
let template = CPListTemplate(title: title, sections: [])
|
||||
|
||||
let sections = buildSectionsForType(type)
|
||||
let template = CPListTemplate(title: title, sections: sections)
|
||||
template.trailingNavigationBarButtons = trailingNavigationBarButtons
|
||||
obtainResources(for: type, template: template)
|
||||
return template
|
||||
}
|
||||
|
||||
private class func obtainResources(for type: ListTemplateType, template: CPListTemplate) {
|
||||
|
||||
private class func buildSectionsForType(_ type: ListTemplateType) -> [CPListSection] {
|
||||
switch type {
|
||||
case .history:
|
||||
obtainHistory(template: template)
|
||||
return buildHistorySections()
|
||||
case .bookmarks(let category):
|
||||
obtainBookmarks(template: template, categoryId: category.categoryId)
|
||||
return buildBookmarksSections(categoryId: category.categoryId)
|
||||
case .bookmarkLists:
|
||||
obtainCategories(template: template)
|
||||
return buildBookmarkListsSections()
|
||||
case .searchResults(let results):
|
||||
convertSearchResults(results, template: template)
|
||||
return buildSearchResultsSections(results)
|
||||
}
|
||||
}
|
||||
|
||||
private class func obtainHistory(template: CPListTemplate) {
|
||||
|
||||
private class func buildHistorySections() -> [CPListSection] {
|
||||
let searchQueries = FrameworkHelper.obtainLastSearchQueries()
|
||||
let items = searchQueries.map({ (text) -> CPListItem in
|
||||
let item = CPListItem(text: text, detailText: nil, image: UIImage(named: "ic_carplay_recent"))
|
||||
let item = CPListItem(text: text, detailText: nil, image: UIImage(named: "recent"))
|
||||
item.userInfo = ListItemInfo(type: CPConstants.ListItemType.history,
|
||||
metadata: nil)
|
||||
return item
|
||||
})
|
||||
let section = CPListSection(items: items)
|
||||
template.updateSections([section])
|
||||
return [CPListSection(items: items)]
|
||||
}
|
||||
|
||||
private class func obtainCategories(template: CPListTemplate) {
|
||||
|
||||
private class func buildBookmarkListsSections() -> [CPListSection] {
|
||||
let bookmarkManager = BookmarksManager.shared()
|
||||
let categories = bookmarkManager.sortedUserCategories()
|
||||
let items: [CPListItem] = categories.compactMap({ category in
|
||||
@@ -82,11 +82,10 @@ final class ListTemplateBuilder {
|
||||
metadata: CategoryInfo(category: category))
|
||||
return item
|
||||
})
|
||||
let section = CPListSection(items: items)
|
||||
template.updateSections([section])
|
||||
return [CPListSection(items: items)]
|
||||
}
|
||||
|
||||
private class func obtainBookmarks(template: CPListTemplate, categoryId: MWMMarkGroupID) {
|
||||
|
||||
private class func buildBookmarksSections(categoryId: MWMMarkGroupID) -> [CPListSection] {
|
||||
let bookmarkManager = BookmarksManager.shared()
|
||||
let bookmarks = bookmarkManager.bookmarks(forCategory: categoryId)
|
||||
var items = bookmarks.map({ (bookmark) -> CPListItem in
|
||||
@@ -103,11 +102,10 @@ final class ListTemplateBuilder {
|
||||
cropWarning.isEnabled = false
|
||||
items.append(cropWarning)
|
||||
}
|
||||
let section = CPListSection(items: items)
|
||||
template.updateSections([section])
|
||||
return [CPListSection(items: items)]
|
||||
}
|
||||
|
||||
private class func convertSearchResults(_ results: [MWMCarPlaySearchResultObject], template: CPListTemplate) {
|
||||
|
||||
private class func buildSearchResultsSections(_ results: [MWMCarPlaySearchResultObject]) -> [CPListSection] {
|
||||
var items = [CPListItem]()
|
||||
for object in results {
|
||||
let item = CPListItem(text: object.title, detailText: object.address)
|
||||
@@ -115,10 +113,10 @@ final class ListTemplateBuilder {
|
||||
metadata: SearchResultInfo(originalRow: object.originalRow))
|
||||
items.append(item)
|
||||
}
|
||||
let section = CPListSection(items: items)
|
||||
template.updateSections([section])
|
||||
return [CPListSection(items: items)]
|
||||
}
|
||||
|
||||
|
||||
|
||||
// MARK: - CPBarButton builder
|
||||
private class func buildBarButton(type: BarButtonType, action: ((CPBarButton) -> Void)?) -> CPBarButton {
|
||||
switch type {
|
||||
|
||||
@@ -153,11 +153,11 @@ final class MapTemplateBuilder {
|
||||
let button = CPMapButton(handler: action)
|
||||
switch type {
|
||||
case .startPanning:
|
||||
button.image = UIImage(named: "btn_carplay_pan_light")
|
||||
button.image = UIImage(systemName: "arrow.up.and.down.and.arrow.left.and.right")
|
||||
case .zoomIn:
|
||||
button.image = UIImage(named: "btn_zoom_in_light")
|
||||
button.image = UIImage(systemName: "plus")
|
||||
case .zoomOut:
|
||||
button.image = UIImage(named: "btn_zoom_out_light")
|
||||
button.image = UIImage(systemName: "minus")
|
||||
}
|
||||
return button
|
||||
}
|
||||
@@ -174,9 +174,9 @@ final class MapTemplateBuilder {
|
||||
case .settings:
|
||||
return CPBarButton(image: UIImage(systemName: "gearshape.fill")!, handler: action)
|
||||
case .mute:
|
||||
return CPBarButton(image: UIImage(named: "ic_carplay_unmuted")!, handler: action)
|
||||
return CPBarButton(image: UIImage(systemName: "speaker.wave.3")!, handler: action)
|
||||
case .unmute:
|
||||
return CPBarButton(image: UIImage(named: "ic_carplay_muted")!, handler: action)
|
||||
return CPBarButton(image: UIImage(systemName: "speaker.slash")!, handler: action)
|
||||
case .redirectRoute:
|
||||
return CPBarButton(image: UIImage(named: "ic_carplay_redirect_route")!, handler: action)
|
||||
case .endRoute:
|
||||
|
||||
@@ -20,10 +20,15 @@ final class SettingsTemplateBuilder {
|
||||
|
||||
// MARK: - CPGridButton builders
|
||||
private class func createTollButton(options: RoutingOptions) -> CPGridButton {
|
||||
var tollIconName = "ic_carplay_toll"
|
||||
if options.avoidToll { tollIconName += "_active" }
|
||||
let tollButton = CPGridButton(titleVariants: [L("avoid_tolls")],
|
||||
image: UIImage(named: tollIconName)!) { _ in
|
||||
var tollIconName = "options.tolls"
|
||||
if options.avoidToll { tollIconName += ".slash" }
|
||||
let configuration = UIImage.SymbolConfiguration(textStyle: .title1)
|
||||
var image = UIImage(named: tollIconName, in: nil, with: configuration)!
|
||||
if #unavailable(iOS 26) {
|
||||
image = image.withTintColor(.white, renderingMode: .alwaysTemplate)
|
||||
image = UIImage(data: image.pngData()!)!.withRenderingMode(.alwaysTemplate)
|
||||
}
|
||||
let tollButton = CPGridButton(titleVariants: [L("avoid_tolls")], image: image) { _ in
|
||||
options.avoidToll = !options.avoidToll
|
||||
options.save()
|
||||
CarPlayService.shared.updateRouteAfterChangingSettings()
|
||||
@@ -33,10 +38,15 @@ final class SettingsTemplateBuilder {
|
||||
}
|
||||
|
||||
private class func createUnpavedButton(options: RoutingOptions) -> CPGridButton {
|
||||
var unpavedIconName = "ic_carplay_unpaved"
|
||||
if options.avoidDirty { unpavedIconName += "_active" }
|
||||
let unpavedButton = CPGridButton(titleVariants: [L("avoid_unpaved")],
|
||||
image: UIImage(named: unpavedIconName)!) { _ in
|
||||
var unpavedIconName = "options.unpaved"
|
||||
if options.avoidDirty { unpavedIconName += ".slash" }
|
||||
let configuration = UIImage.SymbolConfiguration(textStyle: .title1)
|
||||
var image = UIImage(named: unpavedIconName, in: nil, with: configuration)!
|
||||
if #unavailable(iOS 26) {
|
||||
image = image.withTintColor(.white, renderingMode: .alwaysTemplate)
|
||||
image = UIImage(data: image.pngData()!)!.withRenderingMode(.alwaysTemplate)
|
||||
}
|
||||
let unpavedButton = CPGridButton(titleVariants: [L("avoid_unpaved")], image: image) { _ in
|
||||
options.avoidDirty = !options.avoidDirty
|
||||
options.save()
|
||||
CarPlayService.shared.updateRouteAfterChangingSettings()
|
||||
@@ -46,10 +56,15 @@ final class SettingsTemplateBuilder {
|
||||
}
|
||||
|
||||
private class func createFerryButton(options: RoutingOptions) -> CPGridButton {
|
||||
var ferryIconName = "ic_carplay_ferry"
|
||||
if options.avoidFerry { ferryIconName += "_active" }
|
||||
let ferryButton = CPGridButton(titleVariants: [L("avoid_ferry")],
|
||||
image: UIImage(named: ferryIconName)!) { _ in
|
||||
var ferryIconName = "options.ferries"
|
||||
if options.avoidFerry { ferryIconName += ".slash" }
|
||||
let configuration = UIImage.SymbolConfiguration(textStyle: .title1)
|
||||
var image = UIImage(named: ferryIconName, in: nil, with: configuration)!
|
||||
if #unavailable(iOS 26) {
|
||||
image = image.withTintColor(.white, renderingMode: .alwaysTemplate)
|
||||
image = UIImage(data: image.pngData()!)!.withRenderingMode(.alwaysTemplate)
|
||||
}
|
||||
let ferryButton = CPGridButton(titleVariants: [L("avoid_ferry")], image: image) { _ in
|
||||
options.avoidFerry = !options.avoidFerry
|
||||
options.save()
|
||||
CarPlayService.shared.updateRouteAfterChangingSettings()
|
||||
@@ -59,12 +74,16 @@ final class SettingsTemplateBuilder {
|
||||
}
|
||||
|
||||
private class func createSpeedcamButton() -> CPGridButton {
|
||||
var speedcamIconName = "ic_carplay_speedcam"
|
||||
var speedcamIconName = "options.speedcamera"
|
||||
let isSpeedCamActivated = CarPlayService.shared.isSpeedCamActivated
|
||||
if isSpeedCamActivated { speedcamIconName += "_active" }
|
||||
let speedButton = CPGridButton(titleVariants: [L("speedcams_alert_title_carplay_1"),
|
||||
L("speedcams_alert_title_carplay_2")],
|
||||
image: UIImage(named: speedcamIconName)!) { _ in
|
||||
if !isSpeedCamActivated { speedcamIconName += ".slash" }
|
||||
let configuration = UIImage.SymbolConfiguration(textStyle: .title1)
|
||||
var image = UIImage(named: speedcamIconName, in: nil, with: configuration)!
|
||||
if #unavailable(iOS 26) {
|
||||
image = image.withTintColor(.white, renderingMode: .alwaysTemplate)
|
||||
image = UIImage(data: image.pngData()!)!.withRenderingMode(.alwaysTemplate)
|
||||
}
|
||||
let speedButton = CPGridButton(titleVariants: [L("speedcams_alert_title_carplay_1"), L("speedcams_alert_title_carplay_2")], image: image) { _ in
|
||||
CarPlayService.shared.isSpeedCamActivated = !isSpeedCamActivated
|
||||
CarPlayService.shared.popTemplate(animated: true)
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@property (nonatomic, readonly) NSUInteger index;
|
||||
@property (nonatomic, readonly) NSString * titleText;
|
||||
@property (nonatomic, readonly, nullable) NSString * branchText;
|
||||
@property (nonatomic, readonly) NSString * iconImageName;
|
||||
@property (nonatomic, readonly) NSString * addressText;
|
||||
@property (nonatomic, readonly) NSString * infoText;
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
_titleText = result.GetString().empty() ? @(result.GetLocalizedFeatureType().c_str()) : @(result.GetString().c_str());
|
||||
_addressText = @(result.GetAddress().c_str());
|
||||
_infoText = @(result.GetFeatureDescription().c_str());
|
||||
_branchText = result.GetBranch().empty() ? nil : @(result.GetBranch().c_str());
|
||||
if (result.IsSuggest())
|
||||
_suggestion = @(result.GetSuggestionString().c_str());
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@ class DayColors: IColors {
|
||||
var linkBlueDark = UIColor.accent
|
||||
var buttonRed = UIColor(244, 67, 67, alpha100)
|
||||
var buttonRedHighlighted = UIColor(183, 28, 28, alpha100)
|
||||
var black = UIColor(0, 0, 0, alpha100)
|
||||
var blackPrimaryText = UIColor(0, 0, 0, alpha87)
|
||||
var blackSecondaryText = UIColor(0, 0, 0, alpha54)
|
||||
var blackHintText = UIColor(0, 0, 0, alpha26)
|
||||
@@ -83,6 +84,7 @@ class NightColors: IColors {
|
||||
var linkBlueDark = UIColor.accent
|
||||
var buttonRed = UIColor(244, 67, 67, alpha100)
|
||||
var buttonRedHighlighted = UIColor(183, 28, 28, alpha100)
|
||||
var black = UIColor(255, 255, 255, alpha100)
|
||||
var blackPrimaryText = UIColor(255, 255, 255, alpha90)
|
||||
var blackSecondaryText = UIColor(255, 255, 255, alpha70)
|
||||
var blackHintText = UIColor(255, 255, 255, alpha30)
|
||||
|
||||
@@ -32,6 +32,7 @@ let alpha100: CGFloat = 1.0
|
||||
var linkBlueDark: UIColor { get }
|
||||
var buttonRed: UIColor { get }
|
||||
var buttonRedHighlighted: UIColor { get }
|
||||
var black: UIColor { get }
|
||||
var blackPrimaryText: UIColor { get }
|
||||
var blackSecondaryText: UIColor { get }
|
||||
var blackHintText: UIColor { get }
|
||||
|
||||
@@ -56,4 +56,5 @@
|
||||
var semibold15: UIFont { get }
|
||||
var semibold16: UIFont { get }
|
||||
var semibold18: UIFont { get }
|
||||
var semibold20: UIFont { get }
|
||||
}
|
||||
|
||||
@@ -60,6 +60,7 @@ enum FontStyleSheet: String, CaseIterable {
|
||||
case semibold15
|
||||
case semibold16
|
||||
case semibold18
|
||||
case semibold20
|
||||
}
|
||||
|
||||
extension FontStyleSheet: IStyleSheet {
|
||||
@@ -127,6 +128,7 @@ extension FontStyleSheet: IStyleSheet {
|
||||
case .semibold15: return fonts.semibold15
|
||||
case .semibold16: return fonts.semibold16
|
||||
case .semibold18: return fonts.semibold18
|
||||
case .semibold20: return fonts.semibold20
|
||||
}
|
||||
}()
|
||||
return .add { s in s.font = font }
|
||||
|
||||
@@ -55,4 +55,5 @@ class Fonts: IFonts {
|
||||
var semibold15 = UIFont.systemFont(ofSize: 15, weight:UIFont.Weight.semibold)
|
||||
var semibold16 = UIFont.systemFont(ofSize: 16, weight:UIFont.Weight.semibold)
|
||||
var semibold18 = UIFont.systemFont(ofSize: 18, weight:UIFont.Weight.semibold)
|
||||
var semibold20 = UIFont.systemFont(ofSize: 20, weight:UIFont.Weight.semibold)
|
||||
}
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
import Foundation
|
||||
extension UISearchBar {
|
||||
@objc override func applyTheme() {
|
||||
if #available(iOS 26, *) {
|
||||
return;
|
||||
}
|
||||
|
||||
if styleName.isEmpty {
|
||||
setStyle(.searchBar)
|
||||
}
|
||||
@@ -25,6 +29,10 @@ class UISearchBarRenderer: UIViewRenderer {
|
||||
class func render(_ control: UISearchBar, style: Style) {
|
||||
super.render(control, style: style)
|
||||
|
||||
if #available(iOS 26, *) {
|
||||
return;
|
||||
}
|
||||
|
||||
let searchTextField = control.searchTextField
|
||||
// Default search bar implementation adds the grey transparent image for background. This code removes it and updates the corner radius. This is not working on iPad designed for mac.
|
||||
if !ProcessInfo.processInfo.isiOSAppOnMac {
|
||||
@@ -65,24 +73,6 @@ class UISearchBarRenderer: UIViewRenderer {
|
||||
}
|
||||
}
|
||||
|
||||
//fix for iOS 12 and below
|
||||
class func setAppearance() {
|
||||
for style in StyleManager.shared.getStyle("SearchBar") {
|
||||
if let backgroundColor = style.backgroundColor {
|
||||
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).backgroundColor = backgroundColor
|
||||
}
|
||||
if let font = style.font {
|
||||
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).font = font
|
||||
}
|
||||
if let fontColor = style.fontColor {
|
||||
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).defaultTextAttributes = [.foregroundColor: fontColor]
|
||||
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).textColor = fontColor
|
||||
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).leftView?.tintColor = fontColor
|
||||
UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).tintColor = fontColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@available(iOS, deprecated: 13.0)
|
||||
private static let kiOS12DefaultSystemTextFieldHeight = 36
|
||||
|
||||
@@ -91,27 +81,4 @@ class UISearchBarRenderer: UIViewRenderer {
|
||||
|
||||
@available(iOS, deprecated: 13.0)
|
||||
private static var searchBarBackgroundImage: UIImage?
|
||||
|
||||
// Draws the background image for the UITextField using the default system's text field height.
|
||||
// This approach is used only for iOS 12.
|
||||
@available(iOS, deprecated: 13.0)
|
||||
private static func getSearchBarBackgroundImage(color: UIColor) -> UIImage? {
|
||||
if color != searchBarBackgroundColor {
|
||||
let size = CGSize(width: kiOS12DefaultSystemTextFieldHeight, height: kiOS12DefaultSystemTextFieldHeight)
|
||||
UIGraphicsBeginImageContextWithOptions(size, false, 0.0)
|
||||
guard let context = UIGraphicsGetCurrentContext() else { return nil }
|
||||
let rect = CGRect(origin: .zero, size: size)
|
||||
let cornerRadius = CGFloat(8)
|
||||
let path = UIBezierPath(roundedRect: rect, byRoundingCorners: [.topLeft, .topRight, .bottomLeft, .bottomRight], cornerRadii: CGSize(width: cornerRadius, height: cornerRadius))
|
||||
context.addPath(path.cgPath)
|
||||
context.setFillColor(color.cgColor)
|
||||
context.fillPath()
|
||||
let image = UIGraphicsGetImageFromCurrentImageContext()
|
||||
UIGraphicsEndImageContext()
|
||||
searchBarBackgroundImage = image
|
||||
searchBarBackgroundColor = color
|
||||
return image
|
||||
}
|
||||
return searchBarBackgroundImage
|
||||
}
|
||||
}
|
||||
|
||||
1
iphone/Maps/Debug Icon.icon/Assets/Part 1.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="820" viewBox="0 0 619 820" width="619" xmlns="http://www.w3.org/2000/svg"><path d="m614.992052 739.531345c3.435118 4.523637 4.743157 10.311409 3.589539 15.870577-1.155132 5.560682-4.659891 10.349257-9.610457 13.130355-58.948074 32.776686-126.793542 51.467723-198.970377 51.467723-226.284786 0-410.000757-183.714457-410.000757-410.000757 0-226.284786 183.715971-409.999243 410.000757-409.999243 65.544287 0 127.517203 15.4133688 182.48817 42.8095304 5.209449 2.617593 8.983688 7.4167659 10.300811 13.0955348 1.317124 5.6787689.040877 11.6497272-3.485077 16.2929648-12.506614 16.5109714-30.598134 40.332733-41.615036 54.840769-5.541001 7.295651-15.387632 9.790616-23.733954 6.016377-37.846852-17.006029-79.805551-26.456009-123.954914-26.456009-167.451771 0-303.400076 135.949819-303.400076 303.400076 0 167.451771 135.948305 303.400076 303.400076 303.400076 50.094584 0 97.368708-12.165979 139.027648-33.703214 8.478034-4.420689 18.90753-2.084688 24.689246 5.52889 11.174352 14.67154 29.047865 38.205655 41.274401 54.30635z" fill="#fefdf6" fill-rule="evenodd" transform="translate(-.0008)"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
11
iphone/Maps/Debug Icon.icon/Assets/Part 2.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="581px" height="546px" viewBox="0 0 581 546" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Shape</title>
|
||||
<g id="Logo" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Light-Debug" transform="translate(-341, -232)" fill="#FBE0A6">
|
||||
<g id="Logo" transform="translate(101.9992, 102)">
|
||||
<path d="M685.947142,138.64008 C689.483693,133.981704 694.912663,131.143076 700.75645,130.894791 C706.598724,130.646505 712.248728,133.015813 716.168305,137.357778 C780.730049,209.857081 820.001514,305.378788 820.001514,409.999243 C820.001514,507.873605 785.632169,597.783157 728.316117,668.308289 C724.508571,672.937901 718.791954,675.570633 712.798287,675.459195 C706.804619,675.339001 701.193977,672.486748 697.568104,667.711799 C684.625477,650.734535 666.214517,626.490386 655.332355,612.160994 C650.05932,605.21809 649.995735,595.630341 655.174906,588.617796 C691.793957,538.508073 713.400833,476.757706 713.400833,409.999243 C713.400833,337.147193 687.666971,270.257018 644.802939,217.930894 C638.986402,210.915321 638.76991,200.817377 644.282146,193.559574 C655.25363,179.057594 673.378456,155.191928 685.947142,138.64008 Z M255.977536,448.275555 C247.858648,447.052537 241.35705,440.908593 239.677486,432.871498 C237.996681,424.836029 241.494417,416.601113 248.44317,412.230994 C318.958378,367.875586 455.07465,282.256965 525.465986,237.979436 C532.406519,233.613336 541.32986,234.019325 547.846332,238.997912 C554.361178,243.975258 557.09855,252.47806 554.710442,260.322215 C530.493707,339.877161 483.666757,493.712867 459.407443,573.407801 C457.017618,581.260944 449.991753,586.800367 441.797047,587.29094 C433.601098,587.78314 425.96579,583.12648 422.651586,575.614611 C402.170709,529.189681 374.341062,466.098907 374.341062,466.098907 C374.341062,466.098907 306.151927,455.831285 255.977536,448.275555 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
139
iphone/Maps/Debug Icon.icon/icon.json
Normal file
@@ -0,0 +1,139 @@
|
||||
{
|
||||
"fill" : {
|
||||
"solid" : "srgb:0.97255,0.70588,0.18039,1.00000"
|
||||
},
|
||||
"groups" : [
|
||||
{
|
||||
"blur-material" : null,
|
||||
"layers" : [
|
||||
{
|
||||
"blend-mode" : "normal",
|
||||
"fill" : {
|
||||
"solid" : "srgb:0.99608,0.99216,0.96471,1.00000"
|
||||
},
|
||||
"glass" : true,
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 1.svg",
|
||||
"name" : "Part 1",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
-100.2890625,
|
||||
0.984375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"blend-mode" : "normal",
|
||||
"blur-material" : null,
|
||||
"hidden" : false,
|
||||
"layers" : [
|
||||
{
|
||||
"blend-mode" : "normal",
|
||||
"fill" : {
|
||||
"linear-gradient" : [
|
||||
"display-p3:0.99608,0.99216,0.96471,0.00000",
|
||||
"srgb:0.99608,0.99216,0.96471,1.00000"
|
||||
]
|
||||
},
|
||||
"glass" : true,
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 1.svg",
|
||||
"name" : "Part 1",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
-100.2890625,
|
||||
0.984375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"specular" : true,
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.4
|
||||
}
|
||||
},
|
||||
{
|
||||
"layers" : [
|
||||
{
|
||||
"fill" : {
|
||||
"solid" : "srgb:0.98431,0.87843,0.65098,1.00000"
|
||||
},
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 2.svg",
|
||||
"name" : "Part 2",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
119.9296875,
|
||||
-6.0859375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"blur-material" : null,
|
||||
"layers" : [
|
||||
{
|
||||
"fill" : {
|
||||
"linear-gradient" : [
|
||||
"display-p3:0.98431,0.87843,0.65098,0.00000",
|
||||
"srgb:0.98431,0.87843,0.65098,1.00000"
|
||||
]
|
||||
},
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 2.svg",
|
||||
"name" : "Part 2",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
119.9296875,
|
||||
-6.0859375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"specular" : true,
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.3
|
||||
}
|
||||
}
|
||||
],
|
||||
"supported-platforms" : {
|
||||
"squares" : "shared"
|
||||
}
|
||||
}
|
||||
1
iphone/Maps/Icon.icon/Assets/Part 1.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="820" viewBox="0 0 619 820" width="619" xmlns="http://www.w3.org/2000/svg"><path d="m614.992052 739.531345c3.435118 4.523637 4.743157 10.311409 3.589539 15.870577-1.155132 5.560682-4.659891 10.349257-9.610457 13.130355-58.948074 32.776686-126.793542 51.467723-198.970377 51.467723-226.284786 0-410.000757-183.714457-410.000757-410.000757 0-226.284786 183.715971-409.999243 410.000757-409.999243 65.544287 0 127.517203 15.4133688 182.48817 42.8095304 5.209449 2.617593 8.983688 7.4167659 10.300811 13.0955348 1.317124 5.6787689.040877 11.6497272-3.485077 16.2929648-12.506614 16.5109714-30.598134 40.332733-41.615036 54.840769-5.541001 7.295651-15.387632 9.790616-23.733954 6.016377-37.846852-17.006029-79.805551-26.456009-123.954914-26.456009-167.451771 0-303.400076 135.949819-303.400076 303.400076 0 167.451771 135.948305 303.400076 303.400076 303.400076 50.094584 0 97.368708-12.165979 139.027648-33.703214 8.478034-4.420689 18.90753-2.084688 24.689246 5.52889 11.174352 14.67154 29.047865 38.205655 41.274401 54.30635z" fill="#fefdf6" fill-rule="evenodd" transform="translate(-.0008)"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
1
iphone/Maps/Icon.icon/Assets/Part 2.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="546" viewBox="0 0 581 546" width="581" xmlns="http://www.w3.org/2000/svg"><path d="m685.947142 138.64008c3.536551-4.658376 8.965521-7.497004 14.809308-7.745289 5.842274-.248286 11.492278 2.121022 15.411855 6.462987 64.561744 72.499303 103.833209 168.02101 103.833209 272.641465 0 97.874362-34.369345 187.783914-91.685397 258.309046-3.807546 4.629612-9.524163 7.262344-15.51783 7.150906-5.993668-.120194-11.60431-2.972447-15.230183-7.747396-12.942627-16.977264-31.353587-41.221413-42.235749-55.550805-5.273035-6.942904-5.33662-16.530653-.157449-23.543198 36.619051-50.109723 58.225927-111.86009 58.225927-178.618553 0-72.85205-25.733862-139.742225-68.597894-192.068349-5.816537-7.015573-6.033029-17.113517-.520793-24.37132 10.971484-14.50198 29.09631-38.367646 41.664996-54.919494zm-429.969606 309.635475c-8.118888-1.223018-14.620486-7.366962-16.30005-15.404057-1.680805-8.035469 1.816931-16.270385 8.765684-20.640504 70.515208-44.355408 206.63148-129.974029 277.022816-174.251558 6.940533-4.3661 15.863874-3.960111 22.380346 1.018476 6.514846 4.977346 9.252218 13.480148 6.86411 21.324303-24.216735 79.554946-71.043685 233.390652-95.302999 313.085586-2.389825 7.853143-9.41569 13.392566-17.610396 13.883139-8.195949.4922-15.831257-4.16446-19.145461-11.676329-20.480877-46.42493-48.310524-109.515704-48.310524-109.515704s-68.189135-10.267622-118.363526-17.823352z" fill="#ccdfca" fill-rule="evenodd" transform="translate(-239.0008 -130)"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
139
iphone/Maps/Icon.icon/icon.json
Normal file
@@ -0,0 +1,139 @@
|
||||
{
|
||||
"fill" : {
|
||||
"solid" : "srgb:0.34510,0.50588,0.34118,1.00000"
|
||||
},
|
||||
"groups" : [
|
||||
{
|
||||
"blur-material" : null,
|
||||
"layers" : [
|
||||
{
|
||||
"blend-mode" : "normal",
|
||||
"fill" : {
|
||||
"solid" : "srgb:0.99608,0.99216,0.96471,1.00000"
|
||||
},
|
||||
"glass" : true,
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 1.svg",
|
||||
"name" : "Part 1",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
-100.2890625,
|
||||
0.984375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"blend-mode" : "normal",
|
||||
"blur-material" : null,
|
||||
"hidden" : false,
|
||||
"layers" : [
|
||||
{
|
||||
"blend-mode" : "normal",
|
||||
"fill" : {
|
||||
"linear-gradient" : [
|
||||
"display-p3:0.99608,0.99216,0.96471,0.00000",
|
||||
"srgb:0.99608,0.99216,0.96471,1.00000"
|
||||
]
|
||||
},
|
||||
"glass" : true,
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 1.svg",
|
||||
"name" : "Part 1",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
-100.2890625,
|
||||
0.984375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"specular" : true,
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.3
|
||||
}
|
||||
},
|
||||
{
|
||||
"layers" : [
|
||||
{
|
||||
"fill" : {
|
||||
"solid" : "srgb:0.80000,0.87451,0.79216,1.00000"
|
||||
},
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 2.svg",
|
||||
"name" : "Part 2",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
119.9296875,
|
||||
-6.0859375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"blur-material" : null,
|
||||
"layers" : [
|
||||
{
|
||||
"fill" : {
|
||||
"linear-gradient" : [
|
||||
"display-p3:0.80000,0.87451,0.79216,0.00000",
|
||||
"srgb:0.80000,0.87451,0.79216,1.00000"
|
||||
]
|
||||
},
|
||||
"hidden" : false,
|
||||
"image-name" : "Part 2.svg",
|
||||
"name" : "Part 2",
|
||||
"position" : {
|
||||
"scale" : 1,
|
||||
"translation-in-points" : [
|
||||
119.9296875,
|
||||
-6.0859375
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"lighting" : "combined",
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"specular" : true,
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.3
|
||||
}
|
||||
}
|
||||
],
|
||||
"supported-platforms" : {
|
||||
"squares" : "shared"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "btn_carplay_pan.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_ferry.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_ferry_active.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_muted.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_recent.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_speedcam.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_speedcam_active.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_toll.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_toll_active.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_volumn.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_unpaved.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_carplay_unpaved_active.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.ferries.slash.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 55cd4bd80694509d circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 55cd4bd80694509d 58be399073040090 ferry.fill}
|
||||
.monochrome-2 {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 _slash}
|
||||
.monochrome-3 {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 _slash}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 55cd4bd80694509d circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 55cd4bd80694509d 58be399073040090 ferry.fill}
|
||||
.multicolor-2:tintColor {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 _slash}
|
||||
.multicolor-3:tintColor {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 _slash}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 55cd4bd80694509d circle}
|
||||
.hierarchical-1:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 55cd4bd80694509d 58be399073040090 ferry.fill}
|
||||
.hierarchical-2:primary {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 _slash}
|
||||
.hierarchical-3:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-32d7b1fcd256f1d5 _slash}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from </text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M48.829-9.01598C55.3163-9.01598 55.8936-13.1003 58.3449-13.1003C60.7828-13.1003 61.1783-9.01598 68.2624-9.01598L68.4757-9.01598C70.127-9.01598 71.4492-10.3352 71.4492-11.985C71.4492-13.6088 70.127-14.9295 68.4757-14.9295L68.2624-14.9295C67.1991-14.9295 66.2508-15.2728 64.3765-16.6193C63.0735-17.5805 61.0775-19.0138 58.3449-19.0138C55.6244-19.0138 53.6299-17.591 52.3269-16.6344C50.9218-15.6045 50.1015-14.9295 48.829-14.9295C47.5581-14.9295 46.7378-15.6045 45.3327-16.6344C44.0298-17.591 42.0353-19.0138 39.3132-19.0138C36.5821-19.0138 34.5831-17.5805 33.2802-16.6193C31.4059-15.2728 30.4605-14.9295 29.3958-14.9295L29.1825-14.9295C27.5297-14.9295 26.2104-13.6088 26.2104-11.985C26.2104-10.3352 27.5297-9.01598 29.1825-9.01598L29.3958-9.01598C36.4814-9.01598 36.8753-13.1003 39.3132-13.1003C41.7646-13.1003 42.3434-9.01598 48.829-9.01598ZM48.829-18.0758C48.9416-18.0758 49.1015-18.1865 50.4702-19.1815C53.5086-21.4108 55.7007-22.1601 58.3449-22.1601C60.8999-22.1601 62.9853-21.4299 65.3875-19.7993L70.3123-26.6533C72.5857-29.9023 71.532-33.245 68.2743-34.7335L52.7587-41.8051C52.0349-42.1289 50.7019-42.8759 48.829-42.8759C46.9578-42.8759 45.6248-42.1289 44.901-41.8051L29.3854-34.7335C26.1277-33.245 25.0741-29.9023 27.3473-26.6533L32.2722-19.7993C34.6743-21.4299 36.7582-22.1601 39.3132-22.1601C41.959-22.1601 44.1511-21.4108 47.1894-19.1815C48.5581-18.1865 48.718-18.0758 48.829-18.0758ZM48.829-45.9937C50.6857-45.9937 51.8166-45.65 54.0591-44.6362L65.8039-39.2883L64.1772-50.6423C63.6254-54.5765 62.0193-56.0425 58.3379-56.0425L39.3141-56.0425C35.6328-56.0425 34.0222-54.5765 33.475-50.6709L31.8452-39.2838L43.6006-44.6362C45.8431-45.65 46.9739-45.9937 48.829-45.9937ZM40.9486-48.1613C40.2078-48.1613 39.7049-48.6323 39.7049-49.4568L39.7049-51.5972C39.7049-52.4217 40.2078-52.8912 40.9486-52.8912L45.3974-52.8912C46.2997-52.8912 46.859-52.4217 46.859-51.5972L46.859-49.4568C46.859-48.6323 46.2997-48.1613 45.3974-48.1613ZM52.0368-48.1613C51.2398-48.1613 50.7947-48.6323 50.7947-49.4568L50.7947-51.5972C50.7947-52.4217 51.2398-52.8912 52.0368-52.8912L56.4871-52.8912C57.3894-52.8912 57.9487-52.4217 57.9487-51.5972L57.9487-49.4568C57.9487-48.6323 57.3894-48.1613 56.4871-48.1613ZM39.3945-54.2512L58.2576-54.2512L58.2576-57.9306C58.2576-60.4919 57.0451-61.4107 54.4868-61.4107L43.1668-61.4107C40.6055-61.4107 39.3945-60.4919 39.3945-57.9306Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M92.7999-4.48836C96.451-0.837264 96.451 5.09118 92.7999 8.74227C89.1488 12.3934 83.2204 12.3934 79.5693 8.74227L4.85636-65.9706C1.20527-69.6217 1.20527-75.5502 4.85636-79.2013C8.50745-82.8524 14.4359-82.8524 18.087-79.2013Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.6082697 0 1.0 0.10826972 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M88.6498-0.338247C90.0104 1.02234 90.0104 3.23158 88.6498 4.59217C87.2892 5.95275 85.08 5.95275 83.7194 4.59217L9.00647-70.1207C7.64588-71.4813 7.64588-73.6906 9.00647-75.0511C10.3671-76.4117 12.5763-76.4117 13.9369-75.0511Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5458696 0 1.0 0.04586959 0.0"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M46.2715-10.0974C52.1084-10.0974 52.8481-14.0642 55.5355-14.0642C58.2596-14.0642 58.7083-10.0974 65.2513-10.0974L65.3975-10.0974C66.5804-10.0974 67.539-11.0545 67.539-12.2512C67.539-13.4374 66.5804-14.3806 65.3975-14.3806L65.2513-14.3806C63.6482-14.3806 62.602-15.0036 60.9796-16.1641C59.7103-17.0916 57.9478-18.3474 55.5355-18.3474C53.0708-18.3474 51.2944-17.0532 50.025-16.1133C48.6702-15.1002 47.7494-14.3806 46.2715-14.3806C44.7796-14.3806 43.8588-15.1002 42.504-16.1133C41.2346-17.0532 39.4583-18.3474 37.0074-18.3474C34.5812-18.3474 32.8171-17.0916 31.5478-16.1641C29.9253-15.0036 28.8808-14.3806 27.2916-14.3806L27.1454-14.3806C25.947-14.3806 24.99-13.4374 24.99-12.2512C24.99-11.0545 25.947-10.0974 27.1454-10.0974L27.2916-10.0974C33.8207-10.0974 34.2833-14.0642 37.0074-14.0642C39.6948-14.0642 40.4206-10.0974 46.2715-10.0974ZM46.2715-17.1034C46.732-17.1034 46.9895-17.2418 48.4017-18.2984C50.3989-19.7721 52.6445-21.0701 55.5355-21.0701C57.6625-21.0701 59.3927-20.4938 61.4468-19.1638L66.7063-27.5552C68.6426-30.5931 67.8044-33.2798 64.7438-34.6873L49.9618-41.4486C49.2228-41.7807 47.9961-42.4509 46.2715-42.4509C44.533-42.4509 43.3062-41.7807 42.5672-41.4486L27.7852-34.6873C24.7246-33.2798 23.8865-30.5931 25.8227-27.5552L31.0822-19.1638C33.1363-20.4938 34.8804-21.0701 37.0074-21.0701C39.8845-21.0701 42.1301-19.7721 44.1273-18.2984C45.5395-17.2418 45.7971-17.1034 46.2715-17.1034ZM46.2715-45.4379C48.0427-45.4379 49.1371-45.0986 51.2108-44.1573L61.9959-39.2194L60.365-51.118C59.9784-53.941 58.5542-55.4688 55.8217-55.4688L36.7179-55.4688C33.9854-55.4688 32.603-53.941 32.1747-50.8538L30.5422-39.2317L41.3182-44.1573C43.3919-45.0986 44.4863-45.4379 46.2715-45.4379ZM38.0129-47.5708C37.4162-47.5708 37.0195-47.9537 37.0195-48.5852L37.0195-51.2053C37.0195-51.8368 37.4162-52.2336 38.0129-52.2336L43.2745-52.2336C44.0258-52.2336 44.4901-51.8368 44.4901-51.2053L44.4901-48.5852C44.4901-47.9537 44.0258-47.5708 43.2745-47.5708ZM49.0135-47.5708C48.4081-47.5708 48.0357-47.9537 48.0357-48.5852L48.0357-51.2053C48.0357-51.8368 48.4081-52.2336 49.0135-52.2336L54.2907-52.2336C55.042-52.2336 55.5063-51.8368 55.5063-51.2053L55.5063-48.5852C55.5063-47.9537 55.042-47.5708 54.2907-47.5708ZM37.5948-54.3602L54.9449-54.3602L54.9449-56.7714C54.9449-58.972 53.7658-60.0126 51.5669-60.0126L40.9589-60.0126C38.7583-60.0126 37.5948-58.972 37.5948-56.7714Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M87.318-6.06714C90.5994-2.78573 90.5994 2.54245 87.318 5.82386C84.0366 9.10527 78.7084 9.10527 75.427 5.82386L5.2113-64.3918C1.92989-67.6733 1.92989-73.0014 5.2113-76.2828C8.49271-79.5643 13.8209-79.5643 17.1023-76.2828Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.60452837 0 1.0 0.104528375 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M83.8515-2.60066C85.2197-1.23245 85.2197 0.98917 83.8515 2.35738C82.4833 3.72558 80.2617 3.72558 78.8935 2.35738L8.67778-67.8583C7.30957-69.2265 7.30957-71.4482 8.67778-72.8164C10.046-74.1846 12.2676-74.1846 13.6358-72.8164Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5487678 0 1.0 0.048767686 0.0"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M44.0668-12.5902C48.9385-12.5902 49.7355-16.472 53.1488-16.472C56.6353-16.472 57.1524-12.5902 62.7191-12.5902L62.8168-12.5902C63.3158-12.5902 63.7116-13.0004 63.7116-13.5095C63.7116-14.0042 63.3158-14.4044 62.8168-14.4044L62.7191-14.4044C60.5157-14.4044 59.2487-15.3496 57.8083-16.3606C56.5632-17.2639 55.1346-18.2862 53.1488-18.2862C51.0941-18.2862 49.6555-17.2051 48.4104-16.2773C47.092-15.2764 45.9183-14.4044 44.0668-14.4044C42.2051-14.4044 41.0315-15.2764 39.7131-16.2773C38.468-17.2051 37.0294-18.2862 34.9847-18.2862C32.9889-18.2862 31.5747-17.2639 30.3296-16.3606C28.8891-15.3496 27.6078-14.4044 25.4144-14.4044L25.3168-14.4044C24.822-14.4044 24.4119-14.0042 24.4119-13.5095C24.4119-13.0004 24.822-12.5902 25.3168-12.5902L25.4144-12.5902C30.9711-12.5902 31.4982-16.472 34.9847-16.472C38.398-16.472 39.1849-12.5902 44.0668-12.5902ZM44.0668-16.2357C45.2741-16.2357 45.9325-16.6945 47.3009-17.7355C48.546-18.6633 50.5-20.1176 53.1488-20.1176C54.6964-20.1176 55.9598-19.6825 57.2671-18.9148L62.5732-28.8824C64.0707-31.6626 63.3583-33.5001 60.7553-34.6989L47.5392-40.7858C46.6241-41.2139 45.5342-41.7235 44.0668-41.7235C42.5893-41.7235 41.4994-41.2139 40.5843-40.7858L27.3682-34.6989C24.7651-33.5001 24.0528-31.6626 25.5503-28.8824L30.8563-18.9148C32.1637-19.6825 33.4371-20.1176 34.9847-20.1176C37.6235-20.1176 39.5775-18.6633 40.8226-17.7355C42.191-16.6945 42.8494-16.2357 44.0668-16.2357ZM44.0668-43.7453C45.7614-43.7453 46.9795-43.274 48.3758-42.6253L58.2573-38.0587L56.5784-50.0655C56.281-52.2358 54.9583-53.568 52.8212-53.568L35.3411-53.568C33.204-53.568 31.9113-52.2358 31.5839-49.8751L29.9194-38.0831L39.7477-42.6253C41.144-43.274 42.3621-43.7453 44.0668-43.7453ZM35.8053-45.6579C35.4177-45.6579 35.1579-45.9321 35.1579-46.334L35.1579-49.5859C35.1579-49.9879 35.4177-50.2721 35.8053-50.2721L41.9093-50.2721C42.3714-50.2721 42.6469-49.9879 42.6469-49.5859L42.6469-46.334C42.6469-45.9321 42.3714-45.6579 41.9093-45.6579ZM46.1572-45.6579C45.7652-45.6579 45.5054-45.9321 45.5054-46.334L45.5054-49.5859C45.5054-49.9879 45.7652-50.2721 46.1572-50.2721L52.2568-50.2721C52.7189-50.2721 52.9944-49.9879 52.9944-49.5859L52.9944-46.334C52.9944-45.9321 52.7189-45.6579 52.2568-45.6579ZM36.5081-53.0728L51.6542-53.0728L51.6542-55.0182C51.6542-56.6878 50.6794-57.6814 48.9953-57.6814L39.157-57.6814C37.4873-57.6814 36.5081-56.6878 36.5081-55.0182Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M81.7485-3.06064C83.2711-1.53808 83.2711 0.934172 81.7485 2.45673C80.2259 3.97929 77.7537 3.97929 76.2311 2.45673L6.37605-67.3983C4.85349-68.9209 4.85349-71.3932 6.37605-72.9157C7.89861-74.4383 10.3709-74.4383 11.8934-72.9157Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.55392593 0 1.0 0.053925958 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M79.6976-1.00975C80.0883-0.619106 80.0883 0.0152006 79.6976 0.405845C79.307 0.796489 78.6727 0.796489 78.282 0.405845L8.42694-69.4492C8.03629-69.8399 8.03629-70.4742 8.42694-70.8648C8.81758-71.2555 9.45189-71.2555 9.84253-70.8648Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5139301 0 1.0 0.013930082 0.0"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 26 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.ferries.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:55cd4bd80694509d circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:55cd4bd80694509d 58be399073040090 ferry.fill}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:55cd4bd80694509d circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:55cd4bd80694509d 58be399073040090 ferry.fill}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:55cd4bd80694509d circle}
|
||||
.hierarchical-1:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:55cd4bd80694509d 58be399073040090 ferry.fill}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from circle</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M48.829-9.01598C55.3163-9.01598 55.8936-13.1003 58.3449-13.1003C60.7828-13.1003 61.1783-9.01598 68.2624-9.01598L68.4757-9.01598C70.127-9.01598 71.4492-10.3352 71.4492-11.985C71.4492-13.6088 70.127-14.9295 68.4757-14.9295L68.2624-14.9295C67.1991-14.9295 66.2508-15.2728 64.3765-16.6193C63.0735-17.5805 61.0775-19.0138 58.3449-19.0138C55.6244-19.0138 53.6299-17.591 52.3269-16.6344C50.9218-15.6045 50.1015-14.9295 48.829-14.9295C47.5581-14.9295 46.7378-15.6045 45.3327-16.6344C44.0298-17.591 42.0353-19.0138 39.3132-19.0138C36.5821-19.0138 34.5831-17.5805 33.2802-16.6193C31.4059-15.2728 30.4605-14.9295 29.3958-14.9295L29.1825-14.9295C27.5297-14.9295 26.2104-13.6088 26.2104-11.985C26.2104-10.3352 27.5297-9.01598 29.1825-9.01598L29.3958-9.01598C36.4814-9.01598 36.8753-13.1003 39.3132-13.1003C41.7646-13.1003 42.3434-9.01598 48.829-9.01598ZM48.829-18.0758C48.9416-18.0758 49.1015-18.1865 50.4702-19.1815C53.5086-21.4108 55.7007-22.1601 58.3449-22.1601C60.8999-22.1601 62.9853-21.4299 65.3875-19.7993L70.3123-26.6533C72.5857-29.9023 71.532-33.245 68.2743-34.7335L52.7587-41.8051C52.0349-42.1289 50.7019-42.8759 48.829-42.8759C46.9578-42.8759 45.6248-42.1289 44.901-41.8051L29.3854-34.7335C26.1277-33.245 25.0741-29.9023 27.3473-26.6533L32.2722-19.7993C34.6743-21.4299 36.7582-22.1601 39.3132-22.1601C41.959-22.1601 44.1511-21.4108 47.1894-19.1815C48.5581-18.1865 48.718-18.0758 48.829-18.0758ZM48.829-45.9937C50.6857-45.9937 51.8166-45.65 54.0591-44.6362L65.8039-39.2883L64.1772-50.6423C63.6254-54.5765 62.0193-56.0425 58.3379-56.0425L39.3141-56.0425C35.6328-56.0425 34.0222-54.5765 33.475-50.6709L31.8452-39.2838L43.6006-44.6362C45.8431-45.65 46.9739-45.9937 48.829-45.9937ZM40.9486-48.1613C40.2078-48.1613 39.7049-48.6323 39.7049-49.4568L39.7049-51.5972C39.7049-52.4217 40.2078-52.8912 40.9486-52.8912L45.3974-52.8912C46.2997-52.8912 46.859-52.4217 46.859-51.5972L46.859-49.4568C46.859-48.6323 46.2997-48.1613 45.3974-48.1613ZM52.0368-48.1613C51.2398-48.1613 50.7947-48.6323 50.7947-49.4568L50.7947-51.5972C50.7947-52.4217 51.2398-52.8912 52.0368-52.8912L56.4871-52.8912C57.3894-52.8912 57.9487-52.4217 57.9487-51.5972L57.9487-49.4568C57.9487-48.6323 57.3894-48.1613 56.4871-48.1613ZM39.3945-54.2512L58.2576-54.2512L58.2576-57.9306C58.2576-60.4919 57.0451-61.4107 54.4868-61.4107L43.1668-61.4107C40.6055-61.4107 39.3945-60.4919 39.3945-57.9306Z"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M46.2715-10.0974C52.1084-10.0974 52.8481-14.0642 55.5355-14.0642C58.2596-14.0642 58.7083-10.0974 65.2513-10.0974L65.3975-10.0974C66.5804-10.0974 67.539-11.0545 67.539-12.2512C67.539-13.4374 66.5804-14.3806 65.3975-14.3806L65.2513-14.3806C63.6482-14.3806 62.602-15.0036 60.9796-16.1641C59.7103-17.0916 57.9478-18.3474 55.5355-18.3474C53.0708-18.3474 51.2944-17.0532 50.025-16.1133C48.6702-15.1002 47.7494-14.3806 46.2715-14.3806C44.7796-14.3806 43.8588-15.1002 42.504-16.1133C41.2346-17.0532 39.4583-18.3474 37.0074-18.3474C34.5812-18.3474 32.8171-17.0916 31.5478-16.1641C29.9253-15.0036 28.8808-14.3806 27.2916-14.3806L27.1454-14.3806C25.947-14.3806 24.99-13.4374 24.99-12.2512C24.99-11.0545 25.947-10.0974 27.1454-10.0974L27.2916-10.0974C33.8207-10.0974 34.2833-14.0642 37.0074-14.0642C39.6948-14.0642 40.4206-10.0974 46.2715-10.0974ZM46.2715-17.1034C46.732-17.1034 46.9895-17.2418 48.4017-18.2984C50.3989-19.7721 52.6445-21.0701 55.5355-21.0701C57.6625-21.0701 59.3927-20.4938 61.4468-19.1638L66.7063-27.5552C68.6426-30.5931 67.8044-33.2798 64.7438-34.6873L49.9618-41.4486C49.2228-41.7807 47.9961-42.4509 46.2715-42.4509C44.533-42.4509 43.3062-41.7807 42.5672-41.4486L27.7852-34.6873C24.7246-33.2798 23.8865-30.5931 25.8227-27.5552L31.0822-19.1638C33.1363-20.4938 34.8804-21.0701 37.0074-21.0701C39.8845-21.0701 42.1301-19.7721 44.1273-18.2984C45.5395-17.2418 45.7971-17.1034 46.2715-17.1034ZM46.2715-45.4379C48.0427-45.4379 49.1371-45.0986 51.2108-44.1573L61.9959-39.2194L60.365-51.118C59.9784-53.941 58.5542-55.4688 55.8217-55.4688L36.7179-55.4688C33.9854-55.4688 32.603-53.941 32.1747-50.8538L30.5422-39.2317L41.3182-44.1573C43.3919-45.0986 44.4863-45.4379 46.2715-45.4379ZM38.0129-47.5708C37.4162-47.5708 37.0195-47.9537 37.0195-48.5852L37.0195-51.2053C37.0195-51.8368 37.4162-52.2336 38.0129-52.2336L43.2745-52.2336C44.0258-52.2336 44.4901-51.8368 44.4901-51.2053L44.4901-48.5852C44.4901-47.9537 44.0258-47.5708 43.2745-47.5708ZM49.0135-47.5708C48.4081-47.5708 48.0357-47.9537 48.0357-48.5852L48.0357-51.2053C48.0357-51.8368 48.4081-52.2336 49.0135-52.2336L54.2907-52.2336C55.042-52.2336 55.5063-51.8368 55.5063-51.2053L55.5063-48.5852C55.5063-47.9537 55.042-47.5708 54.2907-47.5708ZM37.5948-54.3602L54.9449-54.3602L54.9449-56.7714C54.9449-58.972 53.7658-60.0126 51.5669-60.0126L40.9589-60.0126C38.7583-60.0126 37.5948-58.972 37.5948-56.7714Z"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M44.0668-12.5902C48.9385-12.5902 49.7355-16.472 53.1488-16.472C56.6353-16.472 57.1524-12.5902 62.7191-12.5902L62.8168-12.5902C63.3158-12.5902 63.7116-13.0004 63.7116-13.5095C63.7116-14.0042 63.3158-14.4044 62.8168-14.4044L62.7191-14.4044C60.5157-14.4044 59.2487-15.3496 57.8083-16.3606C56.5632-17.2639 55.1346-18.2862 53.1488-18.2862C51.0941-18.2862 49.6555-17.2051 48.4104-16.2773C47.092-15.2764 45.9183-14.4044 44.0668-14.4044C42.2051-14.4044 41.0315-15.2764 39.7131-16.2773C38.468-17.2051 37.0294-18.2862 34.9847-18.2862C32.9889-18.2862 31.5747-17.2639 30.3296-16.3606C28.8891-15.3496 27.6078-14.4044 25.4144-14.4044L25.3168-14.4044C24.822-14.4044 24.4119-14.0042 24.4119-13.5095C24.4119-13.0004 24.822-12.5902 25.3168-12.5902L25.4144-12.5902C30.9711-12.5902 31.4982-16.472 34.9847-16.472C38.398-16.472 39.1849-12.5902 44.0668-12.5902ZM44.0668-16.2357C45.2741-16.2357 45.9325-16.6945 47.3009-17.7355C48.546-18.6633 50.5-20.1176 53.1488-20.1176C54.6964-20.1176 55.9598-19.6825 57.2671-18.9148L62.5732-28.8824C64.0707-31.6626 63.3583-33.5001 60.7553-34.6989L47.5392-40.7858C46.6241-41.2139 45.5342-41.7235 44.0668-41.7235C42.5893-41.7235 41.4994-41.2139 40.5843-40.7858L27.3682-34.6989C24.7651-33.5001 24.0528-31.6626 25.5503-28.8824L30.8563-18.9148C32.1637-19.6825 33.4371-20.1176 34.9847-20.1176C37.6235-20.1176 39.5775-18.6633 40.8226-17.7355C42.191-16.6945 42.8494-16.2357 44.0668-16.2357ZM44.0668-43.7453C45.7614-43.7453 46.9795-43.274 48.3758-42.6253L58.2573-38.0587L56.5784-50.0655C56.281-52.2358 54.9583-53.568 52.8212-53.568L35.3411-53.568C33.204-53.568 31.9113-52.2358 31.5839-49.8751L29.9194-38.0831L39.7477-42.6253C41.144-43.274 42.3621-43.7453 44.0668-43.7453ZM35.8053-45.6579C35.4177-45.6579 35.1579-45.9321 35.1579-46.334L35.1579-49.5859C35.1579-49.9879 35.4177-50.2721 35.8053-50.2721L41.9093-50.2721C42.3714-50.2721 42.6469-49.9879 42.6469-49.5859L42.6469-46.334C42.6469-45.9321 42.3714-45.6579 41.9093-45.6579ZM46.1572-45.6579C45.7652-45.6579 45.5054-45.9321 45.5054-46.334L45.5054-49.5859C45.5054-49.9879 45.7652-50.2721 46.1572-50.2721L52.2568-50.2721C52.7189-50.2721 52.9944-49.9879 52.9944-49.5859L52.9944-46.334C52.9944-45.9321 52.7189-45.6579 52.2568-45.6579ZM36.5081-53.0728L51.6542-53.0728L51.6542-55.0182C51.6542-56.6878 50.6794-57.6814 48.9953-57.6814L39.157-57.6814C37.4873-57.6814 36.5081-56.6878 36.5081-55.0182Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.speedcamera.slash.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-20a5448f01d71e28 2dfdbdebbc93f6a circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-20a5448f01d71e28 2dfdbdebbc93f6a 68627a11f315162f}
|
||||
.monochrome-2 {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-20a5448f01d71e28 _slash}
|
||||
.monochrome-3 {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-20a5448f01d71e28 _slash}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-20a5448f01d71e28 2dfdbdebbc93f6a circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-20a5448f01d71e28 2dfdbdebbc93f6a 68627a11f315162f}
|
||||
.multicolor-2:tintColor {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-20a5448f01d71e28 _slash}
|
||||
.multicolor-3:tintColor {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-20a5448f01d71e28 _slash}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-20a5448f01d71e28 2dfdbdebbc93f6a circle}
|
||||
.hierarchical-1:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-20a5448f01d71e28 2dfdbdebbc93f6a 68627a11f315162f}
|
||||
.hierarchical-2:primary {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-20a5448f01d71e28 _slash}
|
||||
.hierarchical-3:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-20a5448f01d71e28 _slash}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from </text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M55.6171-48.8244C59.3466-48.8244 62.37-45.8163 62.37-42.1058L62.37-28.6685C62.37-24.9579 59.3466-21.9499 55.6171-21.9499L52.2406-21.9499L52.2406-15.2313L45.4877-15.2313L45.4877-21.9499L42.1113-21.9499C38.3818-21.9499 35.3584-24.9579 35.3584-28.6685L35.3584-42.1058C35.3584-45.8163 38.3818-48.8244 42.1113-48.8244L55.6171-48.8244ZM40.1464-28.4875C39.1559-28.4875 38.353-27.6846 38.353-26.6941C38.353-25.7036 39.1559-24.9006 40.1464-24.9006C41.1369-24.9006 41.9399-25.7036 41.9399-26.6941C41.9399-27.6846 41.1369-28.4875 40.1464-28.4875ZM48.8177-42.2429C45.019-42.2429 41.9399-39.1636 41.9399-35.3652C41.9399-31.7187 44.7776-28.735 48.3652-28.5022L48.8177-28.4875C52.6161-28.4875 55.6952-31.5668 55.6952-35.3652C55.6952-39.1636 52.6161-42.2429 48.8177-42.2429ZM55.3625-55.9982C62.8674-55.9982 68.9514-49.7513 68.9514-42.0454L68.9514-35.069L65.5542-35.069L65.5542-42.0454C65.5542-47.8248 60.9912-52.51 55.3625-52.51L41.7735-52.51C36.1448-52.51 31.5818-47.8248 31.5818-42.0454L31.5818-35.069L28.1845-35.069L28.1845-42.0454C28.1845-49.7513 34.2685-55.9982 41.7735-55.9982L55.3625-55.9982Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M92.7999-4.48836C96.451-0.837264 96.451 5.09118 92.7999 8.74227C89.1488 12.3934 83.2204 12.3934 79.5693 8.74227L4.85636-65.9706C1.20527-69.6217 1.20527-75.5502 4.85636-79.2013C8.50745-82.8524 14.4359-82.8524 18.087-79.2013Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.6082697 0 1.0 0.10826972 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M88.6498-0.338247C90.0104 1.02234 90.0104 3.23158 88.6498 4.59217C87.2892 5.95275 85.08 5.95275 83.7194 4.59217L9.00647-70.1207C7.64588-71.4813 7.64588-73.6906 9.00647-75.0511C10.3671-76.4117 12.5763-76.4117 13.9369-75.0511Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5458696 0 1.0 0.04586959 0.0"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M52.815-48.4732C56.4001-48.4732 59.3063-45.5664 59.3063-41.9807L59.3063-28.9956C59.3063-25.4099 56.4001-22.5031 52.815-22.5031L49.5694-22.5031L49.5694-16.0106L43.078-16.0106L43.078-22.5031L39.8324-22.5031C36.2473-22.5031 33.341-25.4099 33.341-28.9956L33.341-41.9807C33.341-45.5664 36.2473-48.4732 39.8324-48.4732L52.815-48.4732ZM38.1519-28.7329C37.2205-28.7329 36.4655-27.9778 36.4655-27.0464C36.4655-26.115 37.2205-25.36 38.1519-25.36C39.0833-25.36 39.8383-26.115 39.8383-27.0464C39.8383-27.9778 39.0833-28.7329 38.1519-28.7329ZM46.46-41.9759C42.8028-41.9759 39.8383-39.0113 39.8383-35.3544C39.8383-31.8437 42.5704-28.9711 46.0243-28.747L46.46-28.7329C50.1169-28.7329 53.0813-31.6974 53.0813-35.3544C53.0813-39.0113 50.1169-41.9759 46.46-41.9759ZM52.7342-55.2189C59.9522-55.2189 65.8036-49.2527 65.8036-41.8931L65.8036-35.2302L62.5363-35.2302L62.5363-41.8931C62.5363-47.4128 58.1477-51.8874 52.7342-51.8874L39.6648-51.8874C34.2512-51.8874 29.8627-47.4128 29.8627-41.8931L29.8627-35.2302L26.5953-35.2302L26.5953-41.8931C26.5953-49.2527 32.4467-55.2189 39.6648-55.2189L52.7342-55.2189Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M87.318-6.06714C90.5994-2.78573 90.5994 2.54245 87.318 5.82386C84.0366 9.10527 78.7084 9.10527 75.427 5.82386L5.2113-64.3918C1.92989-67.6733 1.92989-73.0014 5.2113-76.2828C8.49271-79.5643 13.8209-79.5643 17.1023-76.2828Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.60452837 0 1.0 0.104528375 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M83.8515-2.60066C85.2197-1.23245 85.2197 0.98917 83.8515 2.35738C82.4833 3.72558 80.2617 3.72558 78.8935 2.35738L8.67778-67.8583C7.30957-69.2265 7.30957-71.4482 8.67778-72.8164C10.046-74.1846 12.2676-74.1846 13.6358-72.8164Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5487678 0 1.0 0.048767686 0.0"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M50.1563-47.5629C53.4557-47.5629 56.1304-44.8768 56.1304-41.5634L56.1304-29.5644C56.1304-26.251 53.4557-23.5649 50.1563-23.5649L47.1693-23.5649L47.1693-17.5654L41.1952-17.5654L41.1952-23.5649L38.2082-23.5649C34.9088-23.5649 32.2341-26.251 32.2341-29.5644L32.2341-41.5634C32.2341-44.8768 34.9088-47.5629 38.2082-47.5629L50.1563-47.5629ZM36.81-29.2594C35.9676-29.2594 35.2847-28.5765 35.2847-27.7341C35.2847-26.8917 35.9676-26.2088 36.81-26.2088C37.6524-26.2088 38.3353-26.8917 38.3353-27.7341C38.3353-28.5765 37.6524-29.2594 36.81-29.2594ZM44.4366-41.4617C41.0668-41.4617 38.3353-38.7301 38.3353-35.3605C38.3353-32.1257 40.8526-29.4789 44.0351-29.2723L44.4366-29.2594C47.8061-29.2594 50.5376-31.991 50.5376-35.3605C50.5376-38.7301 47.8061-41.4617 44.4366-41.4617ZM50.1987-53.664C56.8442-53.664 62.2315-48.2009 62.2315-41.4617L62.2315-35.3605L59.2233-35.3605L59.2233-41.4617C59.2233-46.5161 55.1829-50.6135 50.1987-50.6135L38.1658-50.6135C33.1816-50.6135 29.1412-46.5161 29.1412-41.4617L29.1412-35.3605L26.1329-35.3605L26.1329-41.4617C26.1329-48.2009 31.5202-53.664 38.1658-53.664L50.1987-53.664Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M81.7485-3.06064C83.2711-1.53808 83.2711 0.934172 81.7485 2.45673C80.2259 3.97929 77.7537 3.97929 76.2311 2.45673L6.37605-67.3983C4.85349-68.9209 4.85349-71.3932 6.37605-72.9157C7.89861-74.4383 10.3709-74.4383 11.8934-72.9157Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.55392593 0 1.0 0.053925958 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M79.6976-1.00975C80.0883-0.619106 80.0883 0.0152006 79.6976 0.405845C79.307 0.796489 78.6727 0.796489 78.282 0.405845L8.42694-69.4492C8.03629-69.8399 8.03629-70.4742 8.42694-70.8648C8.81758-71.2555 9.45189-71.2555 9.84253-70.8648Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5139301 0 1.0 0.013930082 0.0"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.speedcamera.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:2dfdbdebbc93f6a circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:2dfdbdebbc93f6a 68627a11f315162f}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:2dfdbdebbc93f6a circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:2dfdbdebbc93f6a 68627a11f315162f}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:2dfdbdebbc93f6a circle}
|
||||
.hierarchical-1:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:2dfdbdebbc93f6a 68627a11f315162f}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from circle</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M55.6171-48.8244C59.3466-48.8244 62.37-45.8163 62.37-42.1058L62.37-28.6685C62.37-24.9579 59.3466-21.9499 55.6171-21.9499L52.2406-21.9499L52.2406-15.2313L45.4877-15.2313L45.4877-21.9499L42.1113-21.9499C38.3818-21.9499 35.3584-24.9579 35.3584-28.6685L35.3584-42.1058C35.3584-45.8163 38.3818-48.8244 42.1113-48.8244L55.6171-48.8244ZM40.1464-28.4875C39.1559-28.4875 38.353-27.6846 38.353-26.6941C38.353-25.7036 39.1559-24.9006 40.1464-24.9006C41.1369-24.9006 41.9399-25.7036 41.9399-26.6941C41.9399-27.6846 41.1369-28.4875 40.1464-28.4875ZM48.8177-42.2429C45.019-42.2429 41.9399-39.1636 41.9399-35.3652C41.9399-31.7187 44.7776-28.735 48.3652-28.5022L48.8177-28.4875C52.6161-28.4875 55.6952-31.5668 55.6952-35.3652C55.6952-39.1636 52.6161-42.2429 48.8177-42.2429ZM55.3625-55.9982C62.8674-55.9982 68.9514-49.7513 68.9514-42.0454L68.9514-35.069L65.5542-35.069L65.5542-42.0454C65.5542-47.8248 60.9912-52.51 55.3625-52.51L41.7735-52.51C36.1448-52.51 31.5818-47.8248 31.5818-42.0454L31.5818-35.069L28.1845-35.069L28.1845-42.0454C28.1845-49.7513 34.2685-55.9982 41.7735-55.9982L55.3625-55.9982Z"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M52.815-48.4732C56.4001-48.4732 59.3063-45.5664 59.3063-41.9807L59.3063-28.9956C59.3063-25.4099 56.4001-22.5031 52.815-22.5031L49.5694-22.5031L49.5694-16.0106L43.078-16.0106L43.078-22.5031L39.8324-22.5031C36.2473-22.5031 33.341-25.4099 33.341-28.9956L33.341-41.9807C33.341-45.5664 36.2473-48.4732 39.8324-48.4732L52.815-48.4732ZM38.1519-28.7329C37.2205-28.7329 36.4655-27.9778 36.4655-27.0464C36.4655-26.115 37.2205-25.36 38.1519-25.36C39.0833-25.36 39.8383-26.115 39.8383-27.0464C39.8383-27.9778 39.0833-28.7329 38.1519-28.7329ZM46.46-41.9759C42.8028-41.9759 39.8383-39.0113 39.8383-35.3544C39.8383-31.8437 42.5704-28.9711 46.0243-28.747L46.46-28.7329C50.1169-28.7329 53.0813-31.6974 53.0813-35.3544C53.0813-39.0113 50.1169-41.9759 46.46-41.9759ZM52.7342-55.2189C59.9522-55.2189 65.8036-49.2527 65.8036-41.8931L65.8036-35.2302L62.5363-35.2302L62.5363-41.8931C62.5363-47.4128 58.1477-51.8874 52.7342-51.8874L39.6648-51.8874C34.2512-51.8874 29.8627-47.4128 29.8627-41.8931L29.8627-35.2302L26.5953-35.2302L26.5953-41.8931C26.5953-49.2527 32.4467-55.2189 39.6648-55.2189L52.7342-55.2189Z"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M50.1563-47.5629C53.4557-47.5629 56.1304-44.8768 56.1304-41.5634L56.1304-29.5644C56.1304-26.251 53.4557-23.5649 50.1563-23.5649L47.1693-23.5649L47.1693-17.5654L41.1952-17.5654L41.1952-23.5649L38.2082-23.5649C34.9088-23.5649 32.2341-26.251 32.2341-29.5644L32.2341-41.5634C32.2341-44.8768 34.9088-47.5629 38.2082-47.5629L50.1563-47.5629ZM36.81-29.2594C35.9676-29.2594 35.2847-28.5765 35.2847-27.7341C35.2847-26.8917 35.9676-26.2088 36.81-26.2088C37.6524-26.2088 38.3353-26.8917 38.3353-27.7341C38.3353-28.5765 37.6524-29.2594 36.81-29.2594ZM44.4366-41.4617C41.0668-41.4617 38.3353-38.7301 38.3353-35.3605C38.3353-32.1257 40.8526-29.4789 44.0351-29.2723L44.4366-29.2594C47.8061-29.2594 50.5376-31.991 50.5376-35.3605C50.5376-38.7301 47.8061-41.4617 44.4366-41.4617ZM50.1987-53.664C56.8442-53.664 62.2315-48.2009 62.2315-41.4617L62.2315-35.3605L59.2233-35.3605L59.2233-41.4617C59.2233-46.5161 55.1829-50.6135 50.1987-50.6135L38.1658-50.6135C33.1816-50.6135 29.1412-46.5161 29.1412-41.4617L29.1412-35.3605L26.1329-35.3605L26.1329-41.4617C26.1329-48.2009 31.5202-53.664 38.1658-53.664L50.1987-53.664Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.tolls.slash.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f -761f0bc1bb718741 dollarsign.circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f -761f0bc1bb718741 dollarsign.circle}
|
||||
.monochrome-2 {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-761f0bc1bb718741 _slash}
|
||||
.monochrome-3 {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-761f0bc1bb718741 _slash}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f -761f0bc1bb718741 dollarsign.circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f -761f0bc1bb718741 dollarsign.circle}
|
||||
.multicolor-2:tintColor {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-761f0bc1bb718741 _slash}
|
||||
.multicolor-3:tintColor {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-761f0bc1bb718741 _slash}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f -761f0bc1bb718741 dollarsign.circle}
|
||||
.hierarchical-1:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f -761f0bc1bb718741 dollarsign.circle}
|
||||
.hierarchical-2:primary {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-761f0bc1bb718741 _slash}
|
||||
.hierarchical-3:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-761f0bc1bb718741 _slash}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from </text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M48.4375-19.2871C55.3711-19.2871 62.5488-22.168 62.5488-29.4922C62.5488-35.2539 58.6426-37.3047 52.5879-38.623L49.1699-39.3555C45.3613-40.1855 44.043-40.918 44.043-42.3828C44.043-43.8965 45.6543-44.7266 48.584-44.7266C50.3418-44.7266 52.2461-44.2383 53.3203-42.7734C54.3945-41.3086 55.7129-40.3809 57.5684-40.3809C59.668-40.3809 61.4746-41.4551 61.4746-43.5547C61.4746-48.291 55.7129-51.416 48.4375-51.416C41.6504-51.416 35.1562-48.2422 35.1562-41.5039C35.1562-35.791 39.3555-33.1543 44.9707-32.0312L48.4375-31.3477C51.416-30.7617 53.7109-30.2734 53.7109-28.418C53.7109-26.8555 51.8555-25.9766 48.584-25.9766C46.0449-25.9766 44.5801-26.5625 43.75-27.9297C42.7246-29.541 41.6016-30.4688 39.6973-30.4688C37.2559-30.4688 35.5469-29.1992 35.5469-26.7578C35.5469-25.8789 35.791-25.0488 36.2305-24.2188C37.8418-21.4355 42.1387-19.2871 48.4375-19.2871ZM48.8281-15.3809C49.3164-15.3809 49.7559-15.8203 49.7559-16.3086L49.7559-54.541C49.7559-55.0293 49.3164-55.4688 48.8281-55.4688C48.3398-55.4688 47.9004-55.0293 47.9004-54.541L47.9004-16.3086C47.9004-15.8203 48.3398-15.3809 48.8281-15.3809Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M92.8018-4.48836C96.4529-0.837264 96.4529 5.09118 92.8018 8.74227C89.1507 12.3934 83.2222 12.3934 79.5711 8.74227L4.85823-65.9706C1.20714-69.6217 1.20714-75.5502 4.85823-79.2013C8.50933-82.8524 14.4378-82.8524 18.0889-79.2013Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.6082697 0 1.0 0.10826972 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M88.6517-0.338247C90.0122 1.02234 90.0122 3.23158 88.6517 4.59217C87.2911 5.95275 85.0818 5.95275 83.7212 4.59217L9.00834-70.1207C7.64776-71.4813 7.64776-73.6906 9.00834-75.0511C10.3689-76.4117 12.5782-76.4117 13.9388-75.0511Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5458696 0 1.0 0.04586959 0.0"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M46.2402-18.3105C52.8809-18.3105 58.6914-21.3867 58.6914-28.125C58.6914-34.082 53.9062-36.3281 48.6816-37.5488L44.9707-38.4277C41.6504-39.1602 39.0625-40.5762 39.0625-43.5547C39.0625-47.0215 42.8223-48.584 46.2402-48.584C50-48.584 52.3438-47.0215 53.418-43.9453C53.9062-42.6758 54.6387-42.041 55.8594-42.041C56.8848-42.041 58.1055-42.7246 58.1055-44.1895C58.1055-49.3652 51.5137-52.7344 46.2402-52.7344C39.9414-52.7344 34.3262-49.2188 34.3262-43.1641C34.3262-37.2559 39.209-35.0586 43.9453-33.9355L47.6562-33.0566C50.9766-32.2754 53.9551-31.1523 53.9551-27.7344C53.9551-23.6816 50.0488-22.5098 46.3379-22.5098C42.4316-22.5098 39.8926-23.6328 38.3789-27.1973C37.793-28.4668 37.1582-29.0039 35.9863-29.0039C34.7656-29.0039 33.7402-28.1738 33.7402-26.8066C33.7402-26.416 33.8379-25.9766 33.9844-25.4883C35.498-20.459 41.2598-18.3105 46.2402-18.3105ZM46.1914-13.7695C46.9727-13.7695 47.6074-14.4043 47.6074-15.1855L47.6074-55.9082C47.6074-56.6406 46.9727-57.2754 46.1914-57.2754C45.459-57.2754 44.8242-56.6406 44.8242-55.9082L44.8242-15.1855C44.8242-14.4043 45.459-13.7695 46.1914-13.7695Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M87.3183-6.06714C90.5998-2.78573 90.5998 2.54245 87.3183 5.82386C84.0369 9.10527 78.7088 9.10527 75.4274 5.82386L5.21165-64.3918C1.93024-67.6733 1.93024-73.0014 5.21165-76.2828C8.49306-79.5643 13.8212-79.5643 17.1026-76.2828Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.60452837 0 1.0 0.104528375 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M83.8519-2.60066C85.2201-1.23245 85.2201 0.98917 83.8519 2.35738C82.4837 3.72558 80.262 3.72558 78.8938 2.35738L8.67813-67.8583C7.30992-69.2265 7.30992-71.4482 8.67813-72.8164C10.0463-74.1846 12.268-74.1846 13.6362-72.8164Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5487678 0 1.0 0.048767686 0.0"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M44.106-19.4912C49.8838-19.4912 55.4219-22.2041 55.4219-28.0796C55.4219-32.9922 51.4541-35.1021 46.2749-36.3228L42.7456-37.1563C39.5615-37.8887 35.5659-39.3047 35.5659-43.2368C35.5659-47.5664 40.1431-49.4014 44.106-49.4014C48.1836-49.4014 51.9351-47.521 52.7368-43.7183C52.8164-43.0845 53.2764-42.7222 53.7705-42.7222C54.3872-42.7222 54.836-43.1333 54.836-43.7354C54.836-47.5943 50.0151-51.3721 44.106-51.3721C38.7608-51.3721 33.418-48.4468 33.418-43.1187C33.418-38.3457 37.7105-36.2392 42.3106-35.1616L45.8399-34.3281C49.7051-33.4106 53.3193-31.8789 53.3193-27.916C53.3193-23.3184 48.7774-21.3745 44.1582-21.3745C39.4346-21.3745 35.4878-23.542 34.7915-27.6968C34.7051-28.376 34.252-28.6406 33.7158-28.6406C33.0855-28.6406 32.6504-28.2192 32.6504-27.5332C32.6504-27.2788 32.7026-26.9756 32.7583-26.7598C33.9087-21.7759 38.9893-19.4912 44.106-19.4912ZM44.0571-14.9048C44.4751-14.9048 44.8374-15.2217 44.8374-15.6396L44.8374-54.8184C44.8374-55.2329 44.4751-55.5952 44.0571-55.5952C43.6426-55.5952 43.2803-55.2329 43.2803-54.8184L43.2803-15.6396C43.2803-15.2217 43.6426-14.9048 44.0571-14.9048Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M81.7482-3.06064C83.2708-1.53808 83.2708 0.934172 81.7482 2.45673C80.2257 3.97929 77.7534 3.97929 76.2309 2.45673L6.37578-67.3983C4.85322-68.9209 4.85322-71.3932 6.37578-72.9157C7.89834-74.4383 10.3706-74.4383 11.8931-72.9157Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.55392593 0 1.0 0.053925958 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M79.6973-1.00975C80.088-0.619106 80.088 0.0152006 79.6973 0.405845C79.3067 0.796489 78.6724 0.796489 78.2817 0.405845L8.42666-69.4492C8.03602-69.8399 8.03602-70.4742 8.42666-70.8648C8.81731-71.2555 9.45161-71.2555 9.84226-70.8648Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5139301 0 1.0 0.013930082 0.0"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.tolls.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f dollarsign.circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:-69b20cbcd497736f dollarsign.circle}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f dollarsign.circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:-69b20cbcd497736f dollarsign.circle}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-69b20cbcd497736f dollarsign.circle}
|
||||
.hierarchical-1:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-69b20cbcd497736f dollarsign.circle}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from options.tolls</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M48.4375-19.2871C55.3711-19.2871 62.5488-22.168 62.5488-29.4922C62.5488-35.2539 58.6426-37.3047 52.5879-38.623L49.1699-39.3555C45.3613-40.1855 44.043-40.918 44.043-42.3828C44.043-43.8965 45.6543-44.7266 48.584-44.7266C50.3418-44.7266 52.2461-44.2383 53.3203-42.7734C54.3945-41.3086 55.7129-40.3809 57.5684-40.3809C59.668-40.3809 61.4746-41.4551 61.4746-43.5547C61.4746-48.291 55.7129-51.416 48.4375-51.416C41.6504-51.416 35.1562-48.2422 35.1562-41.5039C35.1562-35.791 39.3555-33.1543 44.9707-32.0312L48.4375-31.3477C51.416-30.7617 53.7109-30.2734 53.7109-28.418C53.7109-26.8555 51.8555-25.9766 48.584-25.9766C46.0449-25.9766 44.5801-26.5625 43.75-27.9297C42.7246-29.541 41.6016-30.4688 39.6973-30.4688C37.2559-30.4688 35.5469-29.1992 35.5469-26.7578C35.5469-25.8789 35.791-25.0488 36.2305-24.2188C37.8418-21.4355 42.1387-19.2871 48.4375-19.2871ZM48.8281-15.3809C49.3164-15.3809 49.7559-15.8203 49.7559-16.3086L49.7559-54.541C49.7559-55.0293 49.3164-55.4688 48.8281-55.4688C48.3398-55.4688 47.9004-55.0293 47.9004-54.541L47.9004-16.3086C47.9004-15.8203 48.3398-15.3809 48.8281-15.3809Z"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M46.2402-18.3105C52.8809-18.3105 58.6914-21.3867 58.6914-28.125C58.6914-34.082 53.9062-36.3281 48.6816-37.5488L44.9707-38.4277C41.6504-39.1602 39.0625-40.5762 39.0625-43.5547C39.0625-47.0215 42.8223-48.584 46.2402-48.584C50-48.584 52.3438-47.0215 53.418-43.9453C53.9062-42.6758 54.6387-42.041 55.8594-42.041C56.8848-42.041 58.1055-42.7246 58.1055-44.1895C58.1055-49.3652 51.5137-52.7344 46.2402-52.7344C39.9414-52.7344 34.3262-49.2188 34.3262-43.1641C34.3262-37.2559 39.209-35.0586 43.9453-33.9355L47.6562-33.0566C50.9766-32.2754 53.9551-31.1523 53.9551-27.7344C53.9551-23.6816 50.0488-22.5098 46.3379-22.5098C42.4316-22.5098 39.8926-23.6328 38.3789-27.1973C37.793-28.4668 37.1582-29.0039 35.9863-29.0039C34.7656-29.0039 33.7402-28.1738 33.7402-26.8066C33.7402-26.416 33.8379-25.9766 33.9844-25.4883C35.498-20.459 41.2598-18.3105 46.2402-18.3105ZM46.1914-13.7695C46.9727-13.7695 47.6074-14.4043 47.6074-15.1855L47.6074-55.9082C47.6074-56.6406 46.9727-57.2754 46.1914-57.2754C45.459-57.2754 44.8242-56.6406 44.8242-55.9082L44.8242-15.1855C44.8242-14.4043 45.459-13.7695 46.1914-13.7695Z"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M44.106-19.4912C49.8838-19.4912 55.4219-22.2041 55.4219-28.0796C55.4219-32.9922 51.4541-35.1021 46.2749-36.3228L42.7456-37.1563C39.5615-37.8887 35.5659-39.3047 35.5659-43.2368C35.5659-47.5664 40.1431-49.4014 44.106-49.4014C48.1836-49.4014 51.9351-47.521 52.7368-43.7183C52.8164-43.0845 53.2764-42.7222 53.7705-42.7222C54.3872-42.7222 54.836-43.1333 54.836-43.7354C54.836-47.5943 50.0151-51.3721 44.106-51.3721C38.7608-51.3721 33.418-48.4468 33.418-43.1187C33.418-38.3457 37.7105-36.2392 42.3106-35.1616L45.8399-34.3281C49.7051-33.4106 53.3193-31.8789 53.3193-27.916C53.3193-23.3184 48.7774-21.3745 44.1582-21.3745C39.4346-21.3745 35.4878-23.542 34.7915-27.6968C34.7051-28.376 34.252-28.6406 33.7158-28.6406C33.0855-28.6406 32.6504-28.2192 32.6504-27.5332C32.6504-27.2788 32.7026-26.9756 32.7583-26.7598C33.9087-21.7759 38.9893-19.4912 44.106-19.4912ZM44.0571-14.9048C44.4751-14.9048 44.8374-15.2217 44.8374-15.6396L44.8374-54.8184C44.8374-55.2329 44.4751-55.5952 44.0571-55.5952C43.6426-55.5952 43.2803-55.2329 43.2803-54.8184L43.2803-15.6396C43.2803-15.2217 43.6426-14.9048 44.0571-14.9048Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.unpaved.slash.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd 4ec3da09fb63f761 exclamationmark.circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd 4ec3da09fb63f761 exclamationmark.circle}
|
||||
.monochrome-2 {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:4ec3da09fb63f761 _slash}
|
||||
.monochrome-3 {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:4ec3da09fb63f761 _slash}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd 4ec3da09fb63f761 exclamationmark.circle}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd 4ec3da09fb63f761 exclamationmark.circle}
|
||||
.multicolor-2:tintColor {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:4ec3da09fb63f761 _slash}
|
||||
.multicolor-3:tintColor {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:4ec3da09fb63f761 _slash}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd 4ec3da09fb63f761 exclamationmark.circle}
|
||||
.hierarchical-1:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd 4ec3da09fb63f761 exclamationmark.circle}
|
||||
.hierarchical-2:primary {opacity:0.0;-sfsymbols-clear-behind:true;-sfsymbols-motion-group:0;-sfsymbols-layer-tags:4ec3da09fb63f761 _slash}
|
||||
.hierarchical-3:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:4ec3da09fb63f761 _slash}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from </text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M48.877-31.4941C52.0996-31.4941 54.0039-33.252 54.1992-36.5723L54.8828-47.1191C55.127-50.6836 52.6367-53.0273 48.8281-53.0273C45.0195-53.0273 42.5293-50.6836 42.7734-47.1191L43.457-36.4746C43.6523-33.252 45.6055-31.4941 48.877-31.4941ZM48.877-17.627C52.4902-17.627 55.0293-19.5312 55.0293-22.9004C55.0293-26.2207 52.4902-28.1738 48.877-28.1738C45.2637-28.1738 42.627-26.2695 42.627-22.9004C42.627-19.5312 45.2637-17.627 48.877-17.627Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M92.8018-4.48836C96.4529-0.837264 96.4529 5.09118 92.8018 8.74227C89.1507 12.3934 83.2222 12.3934 79.5711 8.74227L4.85823-65.9706C1.20714-69.6217 1.20714-75.5502 4.85823-79.2013C8.50933-82.8524 14.4378-82.8524 18.0889-79.2013Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.6082697 0 1.0 0.10826972 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M88.6517-0.338247C90.0122 1.02234 90.0122 3.23158 88.6517 4.59217C87.2911 5.95275 85.0818 5.95275 83.7212 4.59217L9.00834-70.1207C7.64776-71.4813 7.64776-73.6906 9.00834-75.0511C10.3689-76.4117 12.5782-76.4117 13.9388-75.0511Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5458696 0 1.0 0.04586959 0.0"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M46.1914-28.3203C48.291-28.3203 49.4629-29.4922 49.5117-31.6895L50.1465-51.709C50.1465-53.9062 48.4375-55.5176 46.1426-55.5176C43.8477-55.5176 42.1875-53.9551 42.2363-51.7578L42.8223-31.6895C42.8711-29.4922 44.043-28.3203 46.1914-28.3203ZM46.1914-15.5273C48.584-15.5273 50.6836-17.4316 50.6836-19.8242C50.6836-22.2656 48.6328-24.1211 46.1914-24.1211C43.7988-24.1211 41.748-22.2168 41.748-19.8242C41.748-17.4805 43.8477-15.5273 46.1914-15.5273Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M87.3183-6.06714C90.5998-2.78573 90.5998 2.54245 87.3183 5.82386C84.0369 9.10527 78.7088 9.10527 75.4274 5.82386L5.21165-64.3918C1.93024-67.6733 1.93024-73.0014 5.21165-76.2828C8.49306-79.5643 13.8212-79.5643 17.1026-76.2828Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.60452837 0 1.0 0.104528375 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M83.8519-2.60066C85.2201-1.23245 85.2201 0.98917 83.8519 2.35738C82.4837 3.72558 80.262 3.72558 78.8938 2.35738L8.67813-67.8583C7.30992-69.2265 7.30992-71.4482 8.67813-72.8164C10.0463-74.1846 12.268-74.1846 13.6362-72.8164Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5487678 0 1.0 0.048767686 0.0"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:secondary SFSymbolsPreviewWireframe" d="M44.0571-28.4565C44.7945-28.4565 45.3306-29.0835 45.334-30.0093L45.5601-50.937C45.5601-51.8628 44.9864-52.5205 44.0537-52.5205C43.0757-52.5205 42.5054-51.8662 42.5088-50.9404L42.7769-30.0093C42.7803-29.0835 43.271-28.4565 44.0571-28.4565ZM44.0571-17.6162C45.4507-17.6162 46.5967-18.8393 46.5967-20.1421C46.5967-21.5391 45.4541-22.668 44.0571-22.668C42.6182-22.668 41.4756-21.5356 41.4756-20.1421C41.4756-18.8428 42.6216-17.6162 44.0571-17.6162Z"/>
|
||||
<path class="monochrome-2 multicolor-2:tintColor hierarchical-2:primary SFSymbolsPreviewWireframe" d="M81.7482-3.06064C83.2708-1.53808 83.2708 0.934172 81.7482 2.45673C80.2257 3.97929 77.7534 3.97929 76.2309 2.45673L6.37578-67.3983C4.85322-68.9209 4.85322-71.3932 6.37578-72.9157C7.89834-74.4383 10.3706-74.4383 11.8931-72.9157Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.55392593 0 1.0 0.053925958 0.0"/>
|
||||
<path class="monochrome-3 multicolor-3:tintColor hierarchical-3:primary SFSymbolsPreviewWireframe" d="M79.6973-1.00975C80.088-0.619106 80.088 0.0152006 79.6973 0.405845C79.3067 0.796489 78.6724 0.796489 78.2817 0.405845L8.42666-69.4492C8.03602-69.8399 8.03602-70.4742 8.42666-70.8648C8.81731-71.2555 9.45161-71.2555 9.84226-70.8648Z" data-clipstroke-keyframes="0 0 0.0 0.5 0.5139301 0 1.0 0.013930082 0.0"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "options.unpaved.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd exclamationmark.circle}
|
||||
.monochrome-1 {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:-4171a9aafd5daacd exclamationmark.circle}
|
||||
|
||||
.multicolor-0:systemRedColor {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd exclamationmark.circle}
|
||||
.multicolor-1:systemRedColor {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:-4171a9aafd5daacd exclamationmark.circle}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-layer-tags:-4171a9aafd5daacd exclamationmark.circle}
|
||||
.hierarchical-1:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-4171a9aafd5daacd exclamationmark.circle}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from options.unpaved</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:systemRedColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539C6.83594-12.0605 25.6348 6.73828 48.8281 6.73828ZM48.8281-7.42188C33.4473-7.42188 20.9961-19.873 20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188Z"/>
|
||||
<path class="monochrome-1 multicolor-1:systemRedColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M48.877-31.4941C52.0996-31.4941 54.0039-33.252 54.1992-36.5723L54.8828-47.1191C55.127-50.6836 52.6367-53.0273 48.8281-53.0273C45.0195-53.0273 42.5293-50.6836 42.7734-47.1191L43.457-36.4746C43.6523-33.252 45.6055-31.4941 48.877-31.4941ZM48.877-17.627C52.4902-17.627 55.0293-19.5312 55.0293-22.9004C55.0293-26.2207 52.4902-28.1738 48.877-28.1738C45.2637-28.1738 42.627-26.2695 42.627-22.9004C42.627-19.5312 45.2637-17.627 48.877-17.627Z"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:systemRedColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539C6.83594-13.4766 24.5117 4.15039 46.2402 4.15039ZM46.2402-3.27148C28.5645-3.27148 14.3066-17.5781 14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148Z"/>
|
||||
<path class="monochrome-1 multicolor-1:systemRedColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M46.1914-28.3203C48.291-28.3203 49.4629-29.4922 49.5117-31.6895L50.1465-51.709C50.1465-53.9062 48.4375-55.5176 46.1426-55.5176C43.8477-55.5176 42.1875-53.9551 42.2363-51.7578L42.8223-31.6895C42.8711-29.4922 44.043-28.3203 46.1914-28.3203ZM46.1914-15.5273C48.584-15.5273 50.6836-17.4316 50.6836-19.8242C50.6836-22.2656 48.6328-24.1211 46.1914-24.1211C43.7988-24.1211 41.748-22.2168 41.748-19.8242C41.748-17.4805 43.8477-15.5273 46.1914-15.5273Z"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:systemRedColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539C6.83594-14.7026 23.5127 1.97072 44.0606 1.97072ZM44.0606-0.274438C24.7046-0.274438 9.0391-15.898 9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438Z"/>
|
||||
<path class="monochrome-1 multicolor-1:systemRedColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M44.0571-28.4565C44.7945-28.4565 45.3306-29.0835 45.334-30.0093L45.5601-50.937C45.5601-51.8628 44.9864-52.5205 44.0537-52.5205C43.0757-52.5205 42.5054-51.8662 42.5088-50.9404L42.7769-30.0093C42.7803-29.0835 43.271-28.4565 44.0571-28.4565ZM44.0571-17.6162C45.4507-17.6162 46.5967-18.8393 46.5967-20.1421C46.5967-21.5391 45.4541-22.668 44.0571-22.668C42.6182-22.668 41.4756-21.5356 41.4756-20.1421C41.4756-18.8428 42.6216-17.6162 44.0571-17.6162Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "recent.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.defaults {-sfsymbols-wiggle-style:counterClockwise;-sfsymbols-rotates-clockwise:false}
|
||||
|
||||
.monochrome-0 {-sfsymbols-motion-group:1;-sfsymbols-always-rotates:true;-sfsymbols-layer-tags:-6fe394bf3bc19a8d clock.arrow.trianglehead.counterclockwise.rotate.90}
|
||||
.monochrome-1 {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:-6fe394bf3bc19a8d clock.arrow.trianglehead.counterclockwise.rotate.90}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:1;-sfsymbols-always-rotates:true;-sfsymbols-layer-tags:-6fe394bf3bc19a8d clock.arrow.trianglehead.counterclockwise.rotate.90}
|
||||
.multicolor-1:tintColor {-sfsymbols-motion-group:0;-sfsymbols-always-pulses:true;-sfsymbols-layer-tags:-6fe394bf3bc19a8d clock.arrow.trianglehead.counterclockwise.rotate.90}
|
||||
|
||||
.hierarchical-0:secondary {-sfsymbols-motion-group:1;-sfsymbols-always-rotates:true;-sfsymbols-layer-tags:-6fe394bf3bc19a8d clock.arrow.trianglehead.counterclockwise.rotate.90}
|
||||
.hierarchical-1:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:-6fe394bf3bc19a8d clock.arrow.trianglehead.counterclockwise.rotate.90}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from recent</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2982.23" x2="2982.23" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2884.57" x2="2884.57" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1496.11" x2="1496.11" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#FF3B30;stroke-width:0.5;opacity:1.0;" x1="1403.58" x2="1403.58" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="603.773" x2="603.773" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#FF3B30;stroke-width:0.5;opacity:1.0;" x1="515.649" x2="515.649" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2884.57 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M48.8281 6.73828C72.0215 6.73828 90.8203-12.0605 90.8203-35.2539C90.8203-58.4473 72.0215-77.2461 48.8281-77.2461C25.6348-77.2461 6.83594-58.4473 6.83594-35.2539L20.9961-35.2539C20.9961-50.6348 33.4473-63.0859 48.8281-63.0859C64.209-63.0859 76.6602-50.6348 76.6602-35.2539C76.6602-19.873 64.209-7.42188 48.8281-7.42188C41.6016-7.42188 35.5469-9.91211 30.127-14.5996C26.8555-17.4805 22.5098-18.4082 19.3359-15.2832C16.5527-12.5 16.6992-8.34961 20.166-4.54102C26.2695 2.19727 38.8184 6.73828 48.8281 6.73828ZM5.0293-43.7988C1.66016-43.7988 0.830078-40.3809 2.63672-38.1348L13.1348-24.9023C14.2578-23.4375 16.5039-23.4375 17.6758-24.9023L28.125-38.1348C29.8828-40.3809 29.1016-43.7988 25.7812-43.7988Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M48.8281-56.543C46.7773-56.543 45.0684-54.834 45.0684-52.7832L45.0684-33.2031C45.0684-32.2754 45.4102-31.3477 46.0938-30.4199L54.4922-19.3848C56.0059-17.3828 58.1543-17.041 60.1074-18.3594C61.8652-19.5312 62.0117-21.875 60.6445-23.7305L46.8262-42.4316L52.5879-24.8047L52.5879-52.7832C52.5879-54.834 50.8789-56.543 48.8281-56.543Z"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1403.58 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M46.2402 4.15039C68.0176 4.15039 85.6934-13.4766 85.6934-35.2539C85.6934-57.0312 68.0176-74.6582 46.2402-74.6582C24.5117-74.6582 6.83594-57.0312 6.83594-35.2539L14.3066-35.2539C14.3066-52.9297 28.5645-67.2363 46.2402-67.2363C63.916-67.2363 78.2227-52.9297 78.2227-35.2539C78.2227-17.5781 63.916-3.27148 46.2402-3.27148C35.8398-3.27148 26.6113-8.25195 20.8496-15.8691C19.4824-17.6758 17.3828-18.2129 15.5762-17.0898C13.8184-16.0156 13.2812-13.5254 14.7949-11.6211C22.0703-1.9043 33.5449 4.15039 46.2402 4.15039ZM2.39258-42.8711C-0.683594-42.8711-1.41602-40.7715 0.244141-38.4277L8.93555-26.0742C10.3027-24.1699 12.3535-24.1699 13.6719-26.0742L22.3633-38.4766C23.9746-40.7715 23.2422-42.8711 20.2148-42.8711Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M46.2402-58.0078C44.3359-58.0078 42.7734-56.4453 42.7734-54.4922L42.7734-32.8125C42.7734-31.8848 43.0664-31.0547 43.75-30.0781L53.0273-17.8711C54.4922-15.9668 56.543-15.625 58.3496-16.8457C60.0098-17.9688 60.1562-20.1172 58.7891-21.9238L45.7031-39.6973L49.7559-27.1973L49.7559-54.4922C49.7559-56.4453 48.1934-58.0078 46.2402-58.0078Z"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 515.649 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:secondary SFSymbolsPreviewWireframe" d="M44.0606 1.97072C64.6118 1.97072 81.2886-14.7026 81.2886-35.2539C81.2886-55.8052 64.6118-72.4785 44.0606-72.4785C23.5127-72.4785 6.83594-55.8052 6.83594-35.2539L9.0391-35.2539C9.0391-54.6099 24.7046-70.2334 44.0606-70.2334C63.4165-70.2334 79.04-54.6099 79.04-35.2539C79.04-15.898 63.4165-0.274438 44.0606-0.274438C31.1626-0.274438 19.6636-7.38917 13.8111-17.7309C13.4429-18.2661 12.7964-18.4399 12.2158-18.1797C11.7295-17.8774 11.5557-17.2036 11.9341-16.5708C18.1197-5.6279 30.23 1.97072 44.0606 1.97072ZM0.984874-41.645C-0.320315-41.645-0.825688-40.7261 0.0625014-39.5176L8.02735-28.1177C8.71339-27.0761 9.67434-27.0761 10.357-28.1177L18.3218-39.4756C19.2066-40.7261 18.7012-41.645 17.3994-41.645Z"/>
|
||||
<path class="monochrome-1 multicolor-1:tintColor hierarchical-1:primary SFSymbolsPreviewWireframe" d="M44.0606-56.0552C43.1553-56.0552 42.501-55.3555 42.501-54.4922L42.501-33.1304C42.501-32.2026 42.7031-31.7812 43.1143-31.3042L52.3916-19.0972C53.1299-18.1011 54.2271-18.1225 54.8531-18.7075C55.4234-19.1948 55.6153-20.0718 54.9292-20.9702L44.7949-34.7022L45.6236-32.0561L45.6236-54.4922C45.6236-55.3555 44.9239-56.0552 44.0606-56.0552Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "speedcamera.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Generator: Apple Native CoreSVG 341-->
|
||||
<!DOCTYPE svg
|
||||
PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 3300 2200">
|
||||
<!--glyph: "", point size: 100.0, font version: "20.0d10e1", template writer version: "138.0.0"-->
|
||||
<style>.monochrome-0 {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:68627a11f315162f}
|
||||
|
||||
.multicolor-0:tintColor {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:68627a11f315162f}
|
||||
|
||||
.hierarchical-0:primary {-sfsymbols-motion-group:0;-sfsymbols-layer-tags:68627a11f315162f}
|
||||
|
||||
.SFSymbolsPreviewWireframe {fill:none;opacity:1.0;stroke:black;stroke-width:0.5}
|
||||
</style>
|
||||
<g id="Notes">
|
||||
<rect height="2200" id="artboard" style="fill:white;opacity:1" width="3300" x="0" y="0"/>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="292" y2="292"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 322)">Weight/Scale Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 559.711 322)">Ultralight</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 856.422 322)">Thin</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1153.13 322)">Light</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1449.84 322)">Regular</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 1746.56 322)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2043.27 322)">Semibold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2339.98 322)">Bold</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2636.69 322)">Heavy</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:middle;" transform="matrix(1 0 0 1 2933.4 322)">Black</text>
|
||||
<line style="fill:none;stroke:black;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1903" y2="1903"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 263 1933)">
|
||||
<path d="m46.2402 4.15039c21.7773 0 39.4531-17.627 39.4531-39.4043s-17.6758-39.4043-39.4531-39.4043c-21.7285 0-39.4043 17.627-39.4043 39.4043s17.6758 39.4043 39.4043 39.4043Zm0-7.42188c-17.6758 0-31.9336-14.3066-31.9336-31.9824s14.2578-31.9824 31.9336-31.9824 31.9824 14.3066 31.9824 31.9824-14.3066 31.9824-31.9824 31.9824Zm-17.9688-31.9824c0 2.14844 1.51367 3.61328 3.75977 3.61328h10.498v10.5957c0 2.19727 1.46484 3.71094 3.61328 3.71094 2.24609 0 3.71094-1.51367 3.71094-3.71094v-10.5957h10.5957c2.19727 0 3.71094-1.46484 3.71094-3.61328 0-2.19727-1.51367-3.71094-3.71094-3.71094h-10.5957v-10.5469c0-2.24609-1.46484-3.75977-3.71094-3.75977-2.14844 0-3.61328 1.51367-3.61328 3.75977v10.5469h-10.498c-2.24609 0-3.75977 1.51367-3.75977 3.71094Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 281.506 1933)">
|
||||
<path d="m58.5449 14.5508c27.4902 0 49.8047-22.3145 49.8047-49.8047s-22.3145-49.8047-49.8047-49.8047-49.8047 22.3145-49.8047 49.8047 22.3145 49.8047 49.8047 49.8047Zm0-8.30078c-22.9492 0-41.5039-18.5547-41.5039-41.5039s18.5547-41.5039 41.5039-41.5039 41.5039 18.5547 41.5039 41.5039-18.5547 41.5039-41.5039 41.5039Zm-22.6562-41.5039c0 2.39258 1.66016 4.00391 4.15039 4.00391h14.3555v14.4043c0 2.44141 1.66016 4.15039 4.05273 4.15039 2.44141 0 4.15039-1.66016 4.15039-4.15039v-14.4043h14.4043c2.44141 0 4.15039-1.61133 4.15039-4.00391 0-2.44141-1.70898-4.15039-4.15039-4.15039h-14.4043v-14.3555c0-2.49023-1.70898-4.19922-4.15039-4.19922-2.39258 0-4.05273 1.70898-4.05273 4.19922v14.3555h-14.3555c-2.49023 0-4.15039 1.70898-4.15039 4.15039Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.2 0 0 0.2 304.924 1933)">
|
||||
<path d="m74.8535 28.3203c35.1074 0 63.623-28.4668 63.623-63.5742s-28.5156-63.623-63.623-63.623-63.5742 28.5156-63.5742 63.623 28.4668 63.5742 63.5742 63.5742Zm0-9.08203c-30.127 0-54.4922-24.3652-54.4922-54.4922s24.3652-54.4922 54.4922-54.4922 54.4922 24.3652 54.4922 54.4922-24.3652 54.4922-54.4922 54.4922Zm-28.8574-54.4922c0 2.58789 1.85547 4.39453 4.58984 4.39453h19.7266v19.7754c0 2.68555 1.85547 4.58984 4.44336 4.58984 2.68555 0 4.54102-1.85547 4.54102-4.58984v-19.7754h19.7754c2.68555 0 4.58984-1.80664 4.58984-4.39453 0-2.73438-1.85547-4.58984-4.58984-4.58984h-19.7754v-19.7266c0-2.73438-1.85547-4.63867-4.54102-4.63867-2.58789 0-4.44336 1.9043-4.44336 4.63867v19.7266h-19.7266c-2.73438 0-4.58984 1.85547-4.58984 4.58984Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 263 1953)">Design Variations</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1971)">Symbols are supported in up to nine weights and three scales.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1989)">For optimal layout with text and other symbols, vertically align</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 2007)">symbols with the adjacent text.</text>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="776" x2="776" y1="1919" y2="1933"/>
|
||||
<g transform="matrix(0.2 0 0 0.2 776 1933)">
|
||||
<path d="m16.5527 0.78125c2.58789 0 3.85742-0.976562 4.78516-3.71094l6.29883-17.2363h28.8086l6.29883 17.2363c0.927734 2.73438 2.19727 3.71094 4.73633 3.71094 2.58789 0 4.24805-1.5625 4.24805-4.00391 0-0.830078-0.146484-1.61133-0.537109-2.63672l-22.9004-60.9863c-1.12305-2.97852-3.125-4.49219-6.25-4.49219-3.02734 0-5.07812 1.46484-6.15234 4.44336l-22.9004 61.084c-0.390625 1.02539-0.537109 1.80664-0.537109 2.63672 0 2.44141 1.5625 3.95508 4.10156 3.95508Zm13.4766-28.3691 11.8652-32.8613h0.244141l11.8652 32.8613Z"/>
|
||||
</g>
|
||||
<line style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="792.836" x2="792.836" y1="1919" y2="1933"/>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 776 1953)">Margins</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1971)">Leading and trailing margins on the left and right side of each symbol</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 1989)">can be adjusted by modifying the x-location of the margin guidelines.</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2007)">Modifications are automatically applied proportionally to all</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 776 2025)">scales and weights.</text>
|
||||
<g transform="matrix(0.2 0 0 0.2 1289 1933)">
|
||||
<path d="m14.209 9.32617 8.49609 8.54492c4.29688 4.3457 9.22852 4.05273 13.8672-1.07422l53.4668-58.9355-4.83398-4.88281-53.0762 58.3984c-1.75781 2.00195-3.41797 2.49023-5.76172 0.146484l-5.85938-5.81055c-2.34375-2.29492-1.80664-4.00391 0.195312-5.81055l57.373-54.0039-4.88281-4.83398-57.959 54.4434c-4.93164 4.58984-5.32227 9.47266-1.02539 13.8184Zm32.0801-90.9668c-2.09961 2.05078-2.24609 4.93164-1.07422 6.88477 1.17188 1.80664 3.4668 2.97852 6.68945 2.14844 7.32422-1.70898 14.9414-2.00195 22.0703 2.68555l-2.92969 7.27539c-1.70898 4.15039-0.830078 7.08008 1.85547 9.81445l11.4746 11.5723c2.44141 2.44141 4.49219 2.53906 7.32422 2.05078l5.32227-0.976562 3.32031 3.36914-0.195312 2.7832c-0.195312 2.49023 0.439453 4.39453 2.88086 6.78711l3.80859 3.71094c2.39258 2.39258 5.46875 2.53906 7.8125 0.195312l14.5508-14.5996c2.34375-2.34375 2.24609-5.32227-0.146484-7.71484l-3.85742-3.80859c-2.39258-2.39258-4.24805-3.17383-6.64062-2.97852l-2.88086 0.244141-3.22266-3.17383 1.2207-5.61523c0.634766-2.83203-0.146484-5.0293-3.07617-7.95898l-10.9863-10.9375c-16.6992-16.6016-38.8672-16.2109-53.3203-1.75781Zm7.4707 1.85547c12.1582-8.88672 28.6133-7.37305 39.7461 3.75977l12.1582 12.0605c1.17188 1.17188 1.36719 2.09961 1.02539 3.80859l-1.61133 7.42188 7.51953 7.42188 4.93164-0.292969c1.26953-0.0488281 1.66016 0.0488281 2.63672 1.02539l2.88086 2.88086-12.207 12.207-2.88086-2.88086c-0.976562-0.976562-1.12305-1.36719-1.07422-2.68555l0.341797-4.88281-7.4707-7.42188-7.61719 1.26953c-1.61133 0.341797-2.34375 0.195312-3.56445-0.976562l-10.0098-10.0098c-1.26953-1.17188-1.41602-2.00195-0.634766-3.85742l4.39453-10.4492c-7.8125-7.27539-17.9688-10.4004-28.125-7.42188-0.78125 0.195312-1.07422-0.439453-0.439453-0.976562Z"/>
|
||||
</g>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;font-weight:bold;" transform="matrix(1 0 0 1 1289 1953)">Exporting</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1971)">Symbols should be outlined when exporting to ensure the</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 1289 1989)">design is preserved when submitting to Xcode.</text>
|
||||
<text id="template-version" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1933)">Template v.6.0</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1951)">Requires Xcode 16 or greater</text>
|
||||
<text id="descriptive-name" style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1969)">Generated from speedcamera</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;text-anchor:end;" transform="matrix(1 0 0 1 3036 1987)">Typeset at 100.0 points</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 726)">Small</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1156)">Medium</text>
|
||||
<text style="stroke:none;fill:black;font-family:sans-serif;font-size:13;" transform="matrix(1 0 0 1 263 1586)">Large</text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 696)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="696" y2="696"/>
|
||||
<line id="Capline-S" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="625.541" y2="625.541"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1126)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1126" y2="1126"/>
|
||||
<line id="Capline-M" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1055.54" y2="1055.54"/>
|
||||
<g id="H-reference" style="fill:#27AAE1;stroke:none;" transform="matrix(1 0 0 1 339 1556)">
|
||||
<path d="M0.993654 0L3.63775 0L29.3281-67.1323L30.0303-67.1323L30.0303-70.459L28.1226-70.459ZM11.6885-24.4799L46.9815-24.4799L46.2315-26.7285L12.4385-26.7285ZM55.1196 0L57.7637 0L30.6382-70.459L29.4326-70.459L29.4326-67.1323Z"/>
|
||||
</g>
|
||||
<line id="Baseline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1556" y2="1556"/>
|
||||
<line id="Capline-L" style="fill:none;stroke:#27AAE1;opacity:1;stroke-width:0.5;" x1="263" x2="3036" y1="1485.54" y2="1485.54"/>
|
||||
<line id="right-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2991.9" x2="2991.9" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Black-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="2874.9" x2="2874.9" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1507.07" x2="1507.07" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Regular-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="1392.62" x2="1392.62" y1="600.785" y2="720.121"/>
|
||||
<line id="right-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="614.281" x2="614.281" y1="600.785" y2="720.121"/>
|
||||
<line id="left-margin-Ultralight-S" style="fill:none;stroke:#00AEEF;stroke-width:0.5;opacity:1.0;" x1="505.141" x2="505.141" y1="600.785" y2="720.121"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Black-S" transform="matrix(1 0 0 1 2874.9 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:primary SFSymbolsPreviewWireframe" d="M71.85-62C79.1678-62 85.1-56.0901 85.1-48.8L85.1-22.4C85.1-15.1098 79.1678-9.20001 71.85-9.20001L65.225-9.20001L65.225 4L51.975 4L51.975-9.20001L45.35-9.20001C38.0322-9.20001 32.1-15.1098 32.1-22.4L32.1-48.8C32.1-56.0901 38.0322-62 45.35-62L71.85-62ZM41.6-22C39.667-22 38.1-20.433 38.1-18.5C38.1-16.567 39.667-15 41.6-15C43.533-15 45.1-16.567 45.1-18.5C45.1-20.433 43.533-22 41.6-22ZM58.6004-49C51.144-49 45.1-42.9559 45.1-35.5C45.1-28.3424 50.6701-22.4858 57.712-22.0287L58.6004-22C66.056-22 72.1-28.0442 72.1-35.5C72.1-42.9559 66.056-49 58.6004-49ZM71.4333-76C86.1609-76 98.1-63.7624 98.1-48.6667L98.1-35L91.4334-35L91.4334-48.6667C91.4334-59.9885 82.479-69.1667 71.4333-69.1667L44.7667-69.1667C33.721-69.1667 24.7667-59.9885 24.7667-48.6667L24.7667-35L18.1-35L18.1-48.6667C18.1-63.7624 30.0391-76 44.7667-76L71.4333-76Z"/>
|
||||
</g>
|
||||
<g id="Regular-S" transform="matrix(1 0 0 1 1392.62 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:primary SFSymbolsPreviewWireframe" d="M69.9575-61.1549C76.9038-61.1549 82.5349-55.4998 82.5349-48.524L82.5349-23.262C82.5349-16.2861 76.9038-10.631 69.9575-10.631L63.6687-10.631L63.6687 2L51.0913 2L51.0913-10.631L44.8025-10.631C37.8562-10.631 32.2251-16.2861 32.2251-23.262L32.2251-48.524C32.2251-55.4998 37.8562-61.1549 44.8025-61.1549L69.9575-61.1549ZM41.8589-22.6197C40.0853-22.6197 38.6476-21.182 38.6476-19.4085C38.6476-17.6349 40.0853-16.1972 41.8589-16.1972C43.6324-16.1972 45.0701-17.6349 45.0701-19.4085C45.0701-21.182 43.6324-22.6197 41.8589-22.6197ZM57.9156-48.3099C50.8209-48.3099 45.0701-42.5589 45.0701-35.4648C45.0701-28.6544 50.3701-23.0819 57.0703-22.647L57.9156-22.6197C65.0095-22.6197 70.7603-28.3707 70.7603-35.4648C70.7603-42.5589 65.0095-48.3099 57.9156-48.3099ZM70.0467-74C84.0379-74 95.38-62.4981 95.38-48.3099L95.38-35.4648L89.0467-35.4648L89.0467-48.3099C89.0467-58.9511 80.5401-67.5775 70.0467-67.5775L44.7133-67.5775C34.2199-67.5775 25.7133-58.9511 25.7133-48.3099L25.7133-35.4648L19.38-35.4648L19.38-48.3099C19.38-62.4981 30.7221-74 44.7133-74L70.0467-74Z"/>
|
||||
</g>
|
||||
<g id="Ultralight-S" transform="matrix(1 0 0 1 505.141 696)">
|
||||
<path class="monochrome-0 multicolor-0:tintColor hierarchical-0:primary SFSymbolsPreviewWireframe" d="M66.4435-59.169C72.8414-59.169 78.028-53.9604 78.028-47.5352L78.028-24.2676C78.028-17.8424 72.8414-12.6338 66.4435-12.6338L60.6513-12.6338L60.6513-1L49.0668-1L49.0668-12.6338L43.2745-12.6338C36.8765-12.6338 31.69-17.8424 31.69-24.2676L31.69-47.5352C31.69-53.9604 36.8765-59.169 43.2745-59.169L66.4435-59.169ZM40.5632-23.6761C38.9297-23.6761 37.6055-22.3518 37.6055-20.7183C37.6055-19.0848 38.9297-17.7606 40.5632-17.7606C42.1967-17.7606 43.521-19.0848 43.521-20.7183C43.521-22.3518 42.1967-23.6761 40.5632-23.6761ZM55.3523-47.338C48.8177-47.338 43.521-42.0411 43.521-35.5071C43.521-29.2343 48.4025-24.1018 54.5738-23.7012L55.3523-23.6761C61.8862-23.6761 67.1829-28.973 67.1829-35.5071C67.1829-42.0411 61.8862-47.338 55.3523-47.338ZM66.5257-71C79.4123-71 89.859-60.4062 89.859-47.338L89.859-35.507L84.0257-35.507L84.0257-47.338C84.0257-57.1391 76.1907-65.0845 66.5257-65.0845L43.1923-65.0845C33.5273-65.0845 25.6923-57.1391 25.6923-47.338L25.6923-35.507L19.859-35.507L19.859-47.338C19.859-60.4062 30.3057-71 43.1923-71L66.5257-71Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Voetgangerbrug";
|
||||
|
||||
"type.highway.pedestrian.square" = "Plein";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Voetgangertonnel";
|
||||
"type.highway.primary" = "Primêre pad";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "جسر";
|
||||
|
||||
"type.highway.pedestrian.square" = "ميدان";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "نفق";
|
||||
"type.highway.primary" = "شارع رئيسي";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -528,6 +528,8 @@
|
||||
"type.railway.subway_entrance.stockholm" = "Subway Entrance";
|
||||
"type.place.locality" = "Locality";
|
||||
"type.highway.pedestrian.bridge" = "Pedestrian Bridge";
|
||||
|
||||
"type.highway.pedestrian.square" = "Square";
|
||||
"type.cuisine.turkish" = "Turkish";
|
||||
"type.historic.anchor" = "Historic Anchor";
|
||||
"type.leisure.bowling_alley" = "Bowling Alley";
|
||||
@@ -1298,3 +1300,6 @@
|
||||
"type.amenity.ranger_station" = "Ranger Station";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Körpü";
|
||||
|
||||
"type.highway.pedestrian.square" = "Kvadrat";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Tunel";
|
||||
"type.highway.primary" = "Əsas yol";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Мост";
|
||||
|
||||
"type.highway.pedestrian.square" = "Плошча";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Тунэль";
|
||||
"type.highway.primary" = "Primary Road";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
1
iphone/Maps/LocalizedStrings/ber.lproj/InfoPlist.strings
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -464,6 +464,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Мост";
|
||||
|
||||
"type.highway.pedestrian.square" = "Площад";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Тунел";
|
||||
"type.highway.primary" = "Главен път";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.amenity.bicycle_parking.covered" = "Покрит паркинг за колела";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -25,15 +25,15 @@
|
||||
"type.amenity.music_school" = "Music School";
|
||||
"type.amenity.exhibition_centre" = "Exhibition Center";
|
||||
"type.amenity.doctors" = "Doctor";
|
||||
"type.amenity.grave_yard.christian" = "Christian Graveyard";
|
||||
"type.amenity.ferry_terminal" = "Ferry";
|
||||
"type.amenity.ice_cream" = "Ice Cream";
|
||||
"type.amenity.library" = "Library";
|
||||
"type.amenity.parking.multi.storey" = "Multi Storey Parking";
|
||||
"type.amenity.motorcycle_parking" = "Motorcycle Parking";
|
||||
"type.amenity.grave_yard.christian" = "খ্রিস্টান কবরস্থান";
|
||||
"type.amenity.ferry_terminal" = "ফেরি";
|
||||
"type.amenity.ice_cream" = "আইসক্রিম";
|
||||
"type.amenity.library" = "গ্রন্থাগার";
|
||||
"type.amenity.parking.multi.storey" = "বহুতল পার্কিং";
|
||||
"type.amenity.motorcycle_parking" = "বাইক পার্কিং";
|
||||
"type.amenity.parking.street_side.fee" = "Street-Side Parking";
|
||||
"type.amenity.parking.underground.fee" = "Underground Parking";
|
||||
"type.amenity.parking.street_side" = "Street-Side Parking";
|
||||
"type.amenity.parking.underground.fee" = "আন্ডারগ্রাউন্ড পার্কিং";
|
||||
"type.amenity.parking.street_side" = "রোড-পার্শ্ববর্তী পার্কিং";
|
||||
"type.amenity.parking.lane.private" = "Private Lane Parking";
|
||||
"type.amenity.parking_space.disabled" = "Disabled Parking Space";
|
||||
"type.amenity.place_of_worship.taoist" = "Taoist Temple";
|
||||
@@ -371,9 +371,9 @@
|
||||
"type.railway.subway_entrance.osaka" = "Subway Entrance";
|
||||
"type.attraction.carousel" = "Carousel";
|
||||
"type.aerialway.cable_car" = "Cable Car";
|
||||
"type.amenity.marketplace" = "Marketplace";
|
||||
"type.amenity.marketplace" = "মার্কেটপ্লেস";
|
||||
"type.leisure.ice_rink" = "Ice Rink";
|
||||
"type.amenity.parking.lane" = "Lane Parking";
|
||||
"type.amenity.parking.lane" = "লেন পার্কিং";
|
||||
"type.railway.subway_entrance.mashhad" = "Subway Entrance";
|
||||
"type.highway.path.bridge" = "Bridge";
|
||||
"type.amenity.conference_centre" = "Conference Center";
|
||||
@@ -381,8 +381,8 @@
|
||||
"type.shop.variety_store" = "Variety Store";
|
||||
"type.shop.baby_goods" = "Baby Goods Shop";
|
||||
"type.railway.subway_entrance.pyongyang" = "Subway Entrance";
|
||||
"type.amenity.parking.multi.storey.fee" = "Multi Storey Parking";
|
||||
"type.amenity.fast_food" = "Fast Food";
|
||||
"type.amenity.parking.multi.storey.fee" = "বহুতল পার্কিং";
|
||||
"type.amenity.fast_food" = "ফাস্ট ফুড";
|
||||
"type.recycling.glass_bottles" = "Glass Bottles";
|
||||
"type.amenity.shelter" = "Shelter";
|
||||
"type.landuse.grass" = "Grass";
|
||||
@@ -394,7 +394,7 @@
|
||||
"type.shop.outpost" = "Pickup Point";
|
||||
"type.recycling.small_appliances" = "Electronic Waste";
|
||||
"type.amenity.pub" = "Pub";
|
||||
"type.amenity.parking.underground" = "Underground Parking";
|
||||
"type.amenity.parking.underground" = "আন্ডারগ্রাউন্ড পার্কিং";
|
||||
"type.tourism.artwork.painting" = "Painting";
|
||||
"type.amenity.pharmacy" = "Pharmacy";
|
||||
"type.landuse.military" = "Military Area";
|
||||
@@ -409,7 +409,7 @@
|
||||
"type.aeroway" = "Airspace Infrastructure";
|
||||
"type.healthcare.alternative" = "Alternative Medicine";
|
||||
"type.highway.cycleway.bridge" = "Bridge";
|
||||
"type.amenity.fire_station" = "Fire Station";
|
||||
"type.amenity.fire_station" = "দমকল স্টেশন";
|
||||
"type.sport.table_tennis" = "Table Tennis";
|
||||
"type.railway.station.subway.dnepro" = "Subway Station";
|
||||
"type.railway.subway_entrance.valencia" = "Subway Entrance";
|
||||
@@ -441,7 +441,7 @@
|
||||
"type.craft.electrician" = "Electrician";
|
||||
"type.amenity.recycling.container" = "Recycling Container";
|
||||
"type.natural.beach.sand" = "Sandy Beach";
|
||||
"type.amenity.nursing_home" = "Nursing Home";
|
||||
"type.amenity.nursing_home" = "নার্সিংহোম";
|
||||
"type.natural.earth_bank" = "Earth Bank";
|
||||
"type.railway.subway_entrance.manila" = "Subway Entrance";
|
||||
"type.railway.monorail.tunnel" = "Monorail Tunnel";
|
||||
@@ -575,10 +575,10 @@
|
||||
"type.boundary.administrative.4" = "Regional Boundary";
|
||||
"type.tourism.apartment" = "Holiday Apartment";
|
||||
"type.railway.station.subway.istanbul" = "Subway Station";
|
||||
"type.amenity.grave_yard" = "Graveyard";
|
||||
"type.amenity.grave_yard" = "কবরস্থান";
|
||||
"type.recycling.cardboard" = "Cardboard";
|
||||
"type.shop.interior_decoration" = "Interior Decorations Store";
|
||||
"type.amenity.parking.underground.private" = "Private Underground Parking";
|
||||
"type.amenity.parking.underground.private" = "ব্যক্তিগত আন্ডারগ্রাউন্ড পার্কিং";
|
||||
"type.amenity.taxi" = "Taxi Stand";
|
||||
"type.cuisine.fish_and_chips" = "Fish and Chips";
|
||||
"type.cuisine.greek" = "Greek";
|
||||
@@ -628,8 +628,8 @@
|
||||
"type.natural.beach" = "Beach";
|
||||
"type.leisure.dance" = "Dance Hall";
|
||||
"type.emergency.defibrillator" = "Defibrillator";
|
||||
"type.amenity.food_court" = "Food Court";
|
||||
"type.amenity.parking.no.access" = "Private Parking";
|
||||
"type.amenity.food_court" = "ফুড কোর্ট";
|
||||
"type.amenity.parking.no.access" = "ব্যক্তিগত পার্কিং";
|
||||
"type.railway.level_crossing" = "Level Crossing";
|
||||
"type.amenity.vending_machine.fuel" = "Fuel Pump";
|
||||
"type.railway.station.subway.maracaibo" = "Subway Station";
|
||||
@@ -980,6 +980,7 @@
|
||||
"type.shop.greengrocer" = "Greengrocer";
|
||||
"type.cuisine.local" = "Local";
|
||||
"type.highway.pedestrian.bridge" = "Pedestrian Bridge";
|
||||
"type.highway.pedestrian.square" = "Square";
|
||||
"type.cuisine.turkish" = "Turkish";
|
||||
"type.highway.primary.tunnel" = "Tunnel";
|
||||
"type.historic.anchor" = "Historic Anchor";
|
||||
@@ -1026,7 +1027,7 @@
|
||||
"type.boundary.administrative.2" = "National Border";
|
||||
"type.place.locality" = "Locality";
|
||||
"type.piste_type.hike" = "Snow Hiking Trail";
|
||||
"type.amenity.parking.private" = "Private Parking";
|
||||
"type.amenity.parking.private" = "প্রাইভেট পার্কিং";
|
||||
"type.recycling.scrap_metal" = "Scrap Metal";
|
||||
"type.highway.secondary" = "Secondary Road";
|
||||
"type.piste_type.nordic" = "Nordic Ski Trail";
|
||||
@@ -1113,7 +1114,7 @@
|
||||
"type.leisure.slipway" = "Slipway";
|
||||
"type.landuse.greenfield" = "Greenfield";
|
||||
"type.aerialway.magic_carpet" = "Magic Carpet";
|
||||
"type.amenity.hospital" = "Hospital";
|
||||
"type.amenity.hospital" = "হাসপাতাল";
|
||||
"type.railway.subway_entrance.amsterdam" = "Subway Entrance";
|
||||
"type.railway.subway_entrance.lisboa" = "Subway Entrance";
|
||||
"type.noexit" = "Dead End";
|
||||
@@ -1145,7 +1146,7 @@
|
||||
"type.railway.subway_entrance.kolkata" = "Subway Entrance";
|
||||
"type.railway.station.subway.cairo" = "Subway Station";
|
||||
"type.railway.station.subway.rennes" = "Subway Station";
|
||||
"type.amenity.fuel" = "Gas Station";
|
||||
"type.amenity.fuel" = "গ্যাস স্টেশন";
|
||||
"type.highway.motorway_junction" = "Road Exit";
|
||||
"type.cuisine.kebab" = "Kebab";
|
||||
"type.cuisine.sushi" = "Sushi";
|
||||
@@ -1166,7 +1167,7 @@
|
||||
"type.natural.water.pond" = "Pond";
|
||||
"type.waterway.dam" = "Dam";
|
||||
"type.amenity.parking.park_and_ride" = "Park And Ride Parking";
|
||||
"type.amenity.fountain" = "Fountain";
|
||||
"type.amenity.fountain" = "ফাউন্টেন";
|
||||
"type.amenity.vending_machine.coffee" = "Coffee Dispenser";
|
||||
"type.railway.station.subway.hamburg" = "Subway Station";
|
||||
"type.railway.station.subway.sf" = "Subway Station";
|
||||
@@ -1181,11 +1182,11 @@
|
||||
"type.highway.cycleway" = "Cycle Path";
|
||||
"type.cuisine.vegetarian" = "Vegetarian";
|
||||
"type.cuisine.malaysian" = "Malaysian";
|
||||
"type.amenity.parking.street_side.private" = "Private Street-Side Parking";
|
||||
"type.amenity.parking.street_side.private" = "ব্যক্তিগত সড়ক-পার্শ্ববর্তী পার্কিং";
|
||||
"type.shop.beverages" = "Beverages";
|
||||
"type.waterway.fish_pass" = "Fish Pass";
|
||||
"type.natural.cave_entrance" = "Cave Entrance";
|
||||
"type.amenity.parking" = "Parking";
|
||||
"type.amenity.parking" = "পার্কিং";
|
||||
"type.railway.subway_entrance.chongqing" = "Subway Entrance";
|
||||
"type.natural.coastline" = "Coastline";
|
||||
"type.highway.road.bridge" = "Bridge";
|
||||
@@ -1205,7 +1206,7 @@
|
||||
"type.railway.station.subway.moscow" = "Subway Station";
|
||||
"type.natural.water.moat" = "Moat";
|
||||
"type.railway.subway_entrance.ekb" = "Subway Entrance";
|
||||
"type.amenity.internet_cafe" = "Internet Cafe";
|
||||
"type.amenity.internet_cafe" = "ইন্টারনেট ক্যাফে";
|
||||
"type.tourism.chalet" = "Holiday Cottage";
|
||||
"type.historic" = "Historic Object";
|
||||
"type.railway.subway_entrance.guangzhou" = "Subway Entrance";
|
||||
@@ -1221,8 +1222,8 @@
|
||||
"type.amenity.compressed_air" = "Compressed Air";
|
||||
"type.highway.rest_area" = "Rest Area";
|
||||
"type.shop.kitchen" = "Kitchen Store";
|
||||
"type.amenity.parking.fee" = "Parking";
|
||||
"type.amenity.kindergarten" = "Kindergarten";
|
||||
"type.amenity.parking.fee" = "পার্কিং";
|
||||
"type.amenity.kindergarten" = "কিন্ডারগার্টেন";
|
||||
"type.highway.bus_stop" = "Bus Stop";
|
||||
"type.railway.station.subway.hiroshima" = "Subway Station";
|
||||
"type.railway.subway_entrance.samara" = "Subway Entrance";
|
||||
@@ -1243,7 +1244,7 @@
|
||||
"type.amenity.parking_space.private" = "Parking Space";
|
||||
"type.historic.memorial.cross" = "Memorial Cross";
|
||||
"type.railway.subway_entrance.vienna" = "Subway Entrance";
|
||||
"type.amenity.parking.permissive" = "Private Parking";
|
||||
"type.amenity.parking.permissive" = "প্রাইভেট পার্কিং";
|
||||
"type.historic.castle.fortress" = "Fortress";
|
||||
"type.railway.subway_entrance.shiraz" = "Subway Entrance";
|
||||
"type.aeroway.terminal" = "Terminal";
|
||||
@@ -1253,7 +1254,7 @@
|
||||
"type.craft.painter" = "House Painter";
|
||||
"type.highway.path.difficult" = "Difficult or Indistinct Trail";
|
||||
"type.highway.secondary_link.bridge" = "Bridge";
|
||||
"type.amenity.nightclub" = "Nightclub";
|
||||
"type.amenity.nightclub" = "নাইটক্লাব";
|
||||
"type.amenity.vending_machine.drinks" = "Drinks Dispenser";
|
||||
"type.shop.travel_agency" = "Travel Agency";
|
||||
"type.amenity.place_of_worship.buddhist" = "Buddhist Temple";
|
||||
@@ -1298,3 +1299,6 @@
|
||||
"type.amenity.ranger_station" = "Ranger Station";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "সিকিউরিটি গার্ড অফিস";
|
||||
"type.power.portal" = "পাওয়ার পোর্টাল";
|
||||
"type.building.guardhouse" = "সিকিউরিটি বুথ";
|
||||
|
||||
@@ -247,7 +247,7 @@
|
||||
"pref_tts_language_title" = "Llengua de la veu";
|
||||
|
||||
/* Settings «Route» category: «Test Voice Directions» title */
|
||||
"pref_tts_test_voice_title" = "Prova les indicacions de veu (TTS, Text-To-Speech)";
|
||||
"pref_tts_test_voice_title" = "Prova les indicacions de veu";
|
||||
|
||||
/* Title for "Other" section in TTS settings. */
|
||||
"pref_tts_other_section_title" = "Altre";
|
||||
|
||||
@@ -209,7 +209,7 @@
|
||||
"type.barrier.retaining_wall" = "Mur de contenció";
|
||||
"type.barrier.stile" = "Escala";
|
||||
"type.barrier.turnstile" = "Torniquet";
|
||||
"type.barrier.swing_gate" = "Swing Gate";
|
||||
"type.barrier.swing_gate" = "Barrera abatible";
|
||||
"type.barrier.toll_booth" = "Cabina de peatge";
|
||||
"type.barrier.wall" = "Mur";
|
||||
"type.boundary" = "Frontera";
|
||||
@@ -245,7 +245,7 @@
|
||||
"type.craft" = "Manualitats";
|
||||
"type.craft.beekeeper" = "Abellaire";
|
||||
"type.craft.blacksmith" = "Ferrer";
|
||||
"type.craft.brewery" = "Craft Brewery";
|
||||
"type.craft.brewery" = "Cerveseria artesana";
|
||||
"type.craft.caterer" = "Càtering";
|
||||
"type.craft.carpenter" = "Fuster";
|
||||
"type.craft.confectionery" = "Confiteria";
|
||||
@@ -260,17 +260,17 @@
|
||||
"type.craft.key_cutter" = "Tall de claus";
|
||||
"type.craft.locksmith" = "Serraller";
|
||||
"type.craft.metal_construction" = "Metal Worker";
|
||||
"type.craft.painter" = "House Painter";
|
||||
"type.craft.painter" = "Pintor";
|
||||
"type.craft.photographer" = "Fotògraf";
|
||||
"type.shop.camera" = "Botiga de càmeres";
|
||||
"type.craft.plumber" = "Plumber";
|
||||
"type.craft.sawmill" = "Sawmill";
|
||||
"type.craft.shoemaker" = "Shoe Repair";
|
||||
"type.craft.plumber" = "Lampista";
|
||||
"type.craft.sawmill" = "Serradora";
|
||||
"type.craft.shoemaker" = "Sabater";
|
||||
"type.craft.winery" = "Celler";
|
||||
"type.craft.tailor" = "Sastre";
|
||||
"type.cuisine.african" = "Africana";
|
||||
"type.cuisine.american" = "Estatunidenca";
|
||||
"type.cuisine.arab" = "Arab";
|
||||
"type.cuisine.arab" = "Àrab";
|
||||
"type.cuisine.argentinian" = "Argentina";
|
||||
"type.cuisine.asian" = "Asiàtica";
|
||||
"type.cuisine.austrian" = "Austríaca";
|
||||
@@ -278,10 +278,9 @@
|
||||
"type.cuisine.balkan" = "Balcànica";
|
||||
"type.cuisine.barbecue" = "Barbacoa";
|
||||
"type.cuisine.bavarian" = "Bavaresa";
|
||||
"type.cuisine.beef_bowl" = "Beef Bowl";
|
||||
"type.cuisine.brazilian" = "Brasilera";
|
||||
"type.cuisine.breakfast" = "Esmorzar";
|
||||
"type.cuisine.bubble_tea" = "Bubble Tea";
|
||||
"type.cuisine.bubble_tea" = "Té de bombolles";
|
||||
"type.cuisine.burger" = "Hamburgueses";
|
||||
"type.cuisine.buschenschank" = "Buschenschank";
|
||||
"type.cuisine.cake" = "Pastissos";
|
||||
@@ -289,25 +288,25 @@
|
||||
"type.cuisine.chicken" = "Pollastre";
|
||||
"type.cuisine.chinese" = "Xinesa";
|
||||
"type.cuisine.coffee_shop" = "Cafè";
|
||||
"type.cuisine.crepe" = "Crepe";
|
||||
"type.cuisine.crepe" = "Crep";
|
||||
"type.cuisine.croatian" = "Croata";
|
||||
"type.cuisine.curry" = "Curri";
|
||||
"type.cuisine.deli" = "Deli";
|
||||
"type.cuisine.deli" = "Delicatessen";
|
||||
"type.cuisine.diner" = "Diner";
|
||||
"type.cuisine.donut" = "Donut";
|
||||
"type.cuisine.ethiopian" = "Etiòpica";
|
||||
"type.cuisine.filipino" = "Filipina";
|
||||
"type.cuisine.fine_dining" = "Fine Dining";
|
||||
"type.cuisine.fish" = "Fish";
|
||||
"type.cuisine.fish" = "Peix";
|
||||
"type.cuisine.fish_and_chips" = "Fish and Chips";
|
||||
"type.cuisine.french" = "Francesa";
|
||||
"type.cuisine.friture" = "Friture";
|
||||
"type.cuisine.friture" = "Fregida";
|
||||
"type.cuisine.georgian" = "Georgiana";
|
||||
"type.cuisine.german" = "Alemanya";
|
||||
"type.cuisine.greek" = "Grega";
|
||||
"type.cuisine.grill" = "Graellada";
|
||||
"type.cuisine.heuriger" = "Heuriger";
|
||||
"type.cuisine.hotdog" = "Hotdog";
|
||||
"type.cuisine.heuriger" = "Heuriger (local tradicional austríac)";
|
||||
"type.cuisine.hotdog" = "Frànkfurt";
|
||||
"type.cuisine.hungarian" = "Hongaresa";
|
||||
"type.cuisine.ice_cream" = "Gelat";
|
||||
"type.cuisine.indian" = "Índia";
|
||||
@@ -328,7 +327,7 @@
|
||||
"type.cuisine.mexican" = "Mexicana";
|
||||
"type.cuisine.moroccan" = "Marroquina";
|
||||
"type.cuisine.noodles" = "Fideus xinesos";
|
||||
"type.cuisine.oriental" = "East Asian";
|
||||
"type.cuisine.oriental" = "Oriental";
|
||||
"type.cuisine.pancake" = "Pancake";
|
||||
"type.cuisine.pasta" = "Pasta";
|
||||
"type.cuisine.persian" = "Persa";
|
||||
@@ -339,25 +338,25 @@
|
||||
"type.cuisine.ramen" = "Ramen";
|
||||
"type.cuisine.regional" = "Regional";
|
||||
"type.cuisine.russian" = "Rusa";
|
||||
"type.cuisine.sandwich" = "Sandwich";
|
||||
"type.cuisine.sausage" = "Sausage";
|
||||
"type.cuisine.savory_pancakes" = "Savory Pancakes";
|
||||
"type.cuisine.seafood" = "Seafood";
|
||||
"type.cuisine.soba" = "Soba";
|
||||
"type.cuisine.sandwich" = "Sandvitx";
|
||||
"type.cuisine.sausage" = "Salsitxes";
|
||||
"type.cuisine.savory_pancakes" = "Pancakes salats";
|
||||
"type.cuisine.seafood" = "Productes del mar";
|
||||
"type.cuisine.soba" = "Fideus soba";
|
||||
"type.cuisine.spanish" = "Espanyola";
|
||||
"type.cuisine.steak_house" = "Steak House";
|
||||
"type.cuisine.sushi" = "Sushi";
|
||||
"type.cuisine.tapas" = "Tapas";
|
||||
"type.cuisine.tapas" = "Tapes";
|
||||
"type.cuisine.tea" = "Te";
|
||||
"type.cuisine.thai" = "Thai";
|
||||
"type.cuisine.thai" = "Tailandès";
|
||||
"type.cuisine.turkish" = "Turca";
|
||||
"type.cuisine.vegan" = "Vegan";
|
||||
"type.cuisine.vegetarian" = "Vegetarian";
|
||||
"type.cuisine.vegan" = "Vegana";
|
||||
"type.cuisine.vegetarian" = "Vegetariana";
|
||||
"type.cuisine.vietnamese" = "Vietnamita";
|
||||
"type.emergency" = "Emergències";
|
||||
"type.emergency.assembly_point" = "Punt de reunió d’emergència";
|
||||
"type.emergency.defibrillator" = "Desfibril·lador";
|
||||
"type.emergency.fire_hydrant" = "Fire Hydrant";
|
||||
"type.emergency.fire_hydrant" = "Boca d'incendis";
|
||||
"type.emergency.phone" = "Telèfon d’emergència";
|
||||
|
||||
/* A place where a lifeguard is on duty. */
|
||||
@@ -367,7 +366,7 @@
|
||||
"type.emergency.mountain_rescue" = "Estació de rescat de muntanya";
|
||||
|
||||
/* This is for secondary entrances, for main entrances see type.entrance.main */
|
||||
"type.entrance" = "Entrance";
|
||||
"type.entrance" = "Entrada";
|
||||
|
||||
/* This is for main/primary entrances, for secondary entrances see type.entrance */
|
||||
"type.entrance.main" = "Entrada principal";
|
||||
@@ -376,14 +375,14 @@
|
||||
"type.fee.no" = "Gratuït";
|
||||
"type.healthcare.laboratory" = "Laboratori mèdic";
|
||||
"type.healthcare.physiotherapist" = "Fisioterapeuta";
|
||||
"type.healthcare.alternative" = "Alternative Medicine";
|
||||
"type.healthcare.audiologist" = "Audiologist";
|
||||
"type.healthcare.alternative" = "Medicina alternativa";
|
||||
"type.healthcare.audiologist" = "Audiòleg";
|
||||
"type.healthcare.blood_donation" = "Centre de donació de sang";
|
||||
"type.healthcare.optometrist" = "Optometrist";
|
||||
"type.healthcare.optometrist" = "Optometrista";
|
||||
"type.healthcare.podiatrist" = "Podòleg";
|
||||
"type.healthcare.psychotherapist" = "Psicoterapeuta";
|
||||
"type.healthcare.sample_collection" = "Sample Collection Centre";
|
||||
"type.healthcare.speech_therapist" = "Logopedics";
|
||||
"type.healthcare.speech_therapist" = "Logopeda";
|
||||
"type.highway" = "Carretera";
|
||||
"type.highway.bridleway" = "Bridle Path";
|
||||
|
||||
@@ -402,16 +401,16 @@
|
||||
"type.highway.busway.tunnel" = "Túnel";
|
||||
"type.highway.bus_stop" = "Parada d’autobús";
|
||||
"type.highway.construction" = "Via en construcció";
|
||||
"type.highway.cycleway" = "Cycle Path";
|
||||
"type.highway.cycleway" = "Carril bici";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.cycleway.bridge" = "Pont";
|
||||
"type.highway.cycleway.permissive" = "Cycle Path";
|
||||
"type.highway.cycleway.permissive" = "Carril bici";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.cycleway.tunnel" = "Túnel";
|
||||
"type.highway.elevator" = "Ascensor";
|
||||
"type.highway.footway" = "Foot Path";
|
||||
"type.highway.footway" = "Sender";
|
||||
"type.highway.footway.sidewalk" = "Vorera";
|
||||
"type.highway.footway.crossing" = "Pas de vianants";
|
||||
"type.highway.footway.area" = "Àrea de vianants";
|
||||
@@ -422,21 +421,21 @@
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.footway.tunnel" = "Túnel de vianants";
|
||||
"type.highway.ford" = "Gual";
|
||||
"type.highway.living_street" = "Living Street";
|
||||
"type.highway.living_street" = "Carrer de prioritat peatonal";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.living_street.bridge" = "Pont";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.living_street.tunnel" = "Túnel";
|
||||
"type.highway.motorway" = "Motorway";
|
||||
"type.highway.motorway" = "Autopista";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.motorway.bridge" = "Motorway Bridge";
|
||||
"type.highway.motorway.bridge" = "Pont d'autopista";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.motorway.tunnel" = "Motorway Tunnel";
|
||||
"type.highway.motorway_junction" = "Road Exit";
|
||||
"type.highway.motorway.tunnel" = "Túnel d'autopista";
|
||||
"type.highway.motorway_junction" = "Sortida";
|
||||
"type.highway.motorway_link" = "Accés d’autopista";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
@@ -465,6 +464,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Pont de vianants";
|
||||
"type.highway.pedestrian.square" = "Plaça";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Túnel de vianants";
|
||||
@@ -483,15 +483,15 @@
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.primary_link.tunnel" = "Túnel";
|
||||
"type.highway.raceway" = "Circuit";
|
||||
"type.highway.residential" = "Residential Street";
|
||||
"type.highway.residential.area" = "Residential Street";
|
||||
"type.highway.residential" = "Carrer residencial";
|
||||
"type.highway.residential.area" = "Carrer residencial";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.residential.bridge" = "Pont";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.residential.tunnel" = "Túnel";
|
||||
"type.highway.rest_area" = "Rest Area";
|
||||
"type.highway.rest_area" = "Àrea de descans";
|
||||
"type.highway.road" = "Carretera";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
@@ -516,8 +516,8 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.secondary_link.tunnel" = "Túnel";
|
||||
"type.highway.service" = "Service Road";
|
||||
"type.highway.service.area" = "Service Road";
|
||||
"type.highway.service" = "Via de servei";
|
||||
"type.highway.service.area" = "Via de servei";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.service.bridge" = "Pont";
|
||||
@@ -526,7 +526,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.service.tunnel" = "Túnel";
|
||||
"type.highway.services" = "Service Area";
|
||||
"type.highway.services" = "Àrea de servei";
|
||||
"type.highway.speed_camera" = "Càmera de trànsit";
|
||||
"type.highway.steps" = "Escales";
|
||||
|
||||
@@ -535,7 +535,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.steps.tunnel" = "Túnel";
|
||||
"type.highway.tertiary" = "Tertiary Road";
|
||||
"type.highway.tertiary" = "Carretera terciària";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.tertiary.bridge" = "Pont";
|
||||
@@ -574,22 +574,22 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.trunk_link.tunnel" = "Túnel";
|
||||
"type.highway.unclassified" = "Minor Road";
|
||||
"type.highway.unclassified.area" = "Minor Road";
|
||||
"type.highway.unclassified" = "Carretera sense classificar";
|
||||
"type.highway.unclassified.area" = "Carretera sense classificar";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.unclassified.bridge" = "Pont";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.unclassified.tunnel" = "Túnel";
|
||||
"type.area_highway.cycleway" = "Cycle Path";
|
||||
"type.area_highway.footway" = "Foot Path";
|
||||
"type.area_highway.cycleway" = "Carril bici";
|
||||
"type.area_highway.footway" = "Sender";
|
||||
"type.area_highway.living_street" = "Living Street";
|
||||
"type.area_highway.motorway" = "Autopista";
|
||||
"type.area_highway.path" = "Camí";
|
||||
"type.area_highway.pedestrian" = "Pedestrian Street";
|
||||
"type.area_highway.pedestrian" = "Carrer de vianants";
|
||||
"type.area_highway.primary" = "Carretera primària";
|
||||
"type.area_highway.residential" = "Residential Street";
|
||||
"type.area_highway.residential" = "Carrer residencial";
|
||||
"type.area_highway.secondary" = "Carretera secundària";
|
||||
"type.area_highway.service" = "Service Road";
|
||||
"type.area_highway.tertiary" = "Carretera terciària";
|
||||
@@ -1464,7 +1464,7 @@
|
||||
"type.amenity.studio" = "Estudi";
|
||||
"type.barrier.guard_rail" = "Barrera de seguretat";
|
||||
"type.amenity.love_hotel" = "Love Hotel";
|
||||
"type.highway.ladder" = "Ladder";
|
||||
"type.highway.ladder" = "Escala";
|
||||
"type.landuse.plant_nursery" = "Plant Nursery";
|
||||
"type.leisure.firepit" = "Firepit";
|
||||
"type.natural.wetland.tidalflat" = "Tidal Flat";
|
||||
@@ -1478,9 +1478,12 @@
|
||||
"type.natural.wetland.reedbed" = "Reed Bed";
|
||||
"type.railway.station.subway.qingdao" = "Subway Station";
|
||||
"type.leisure.escape_game" = "Escape Room";
|
||||
"type.amenity.luggage_locker" = "Luggage Locker";
|
||||
"type.amenity.luggage_locker" = "Taquilla d'equipatge";
|
||||
"type.amenity.ranger_station" = "Ranger Station";
|
||||
"type.amenity.bicycle_parking.covered" = "Covered Bicycle Parking";
|
||||
"type.amenity.bicycle_parking.covered" = "Aparcament de bicicletes cobert";
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.amenity.animal_shelter" = "Refugi d'animals";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Torre d'alta tensió";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Most";
|
||||
"type.highway.pedestrian.square" = "Náměstí";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Tunel pro pěší";
|
||||
@@ -1484,3 +1485,7 @@
|
||||
"type.post_office.post_partner" = "Poštovní partner";
|
||||
"type.amenity.animal_shelter" = "Útulek pro zvířata";
|
||||
"type.barrier.wicket_gate" = "Branka";
|
||||
"type.office.security" = "Strážnice";
|
||||
"type.power.portal" = "Portál el. vedení";
|
||||
"type.building.guardhouse" = "Vrátnice";
|
||||
"type.shop.lighting" = "Obchod s osvětlením";
|
||||
|
||||
@@ -251,6 +251,8 @@
|
||||
"type.railway.station.subway.buenos_aires" = "Subway Station";
|
||||
"type.shop.greengrocer" = "Greengrocer";
|
||||
"type.highway.pedestrian.bridge" = "Pedestrian Bridge";
|
||||
|
||||
"type.highway.pedestrian.square" = "Square";
|
||||
"type.cuisine.turkish" = "Turkish";
|
||||
"type.highway.primary.tunnel" = "Tunnel";
|
||||
"type.railway.station.subway.samara" = "Subway Station";
|
||||
@@ -1298,3 +1300,6 @@
|
||||
"type.cuisine.italian_pizza" = "Italian, Pizza";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -322,7 +322,7 @@
|
||||
"report_incorrect_map_bug" = "Rapporter eller ret forkerte kortdata";
|
||||
|
||||
/* Button in the About screen */
|
||||
"volunteer" = "At melde sig som frivillig";
|
||||
"volunteer" = "Bliv frivillig og forbedr CoMaps";
|
||||
|
||||
/* "Social media" section header in the About screen */
|
||||
"follow_us" = "Følg os";
|
||||
@@ -1093,5 +1093,5 @@
|
||||
"pref_maplanguage_title" = "Kortsprog";
|
||||
"transliteration_title_disabled_summary" = "Deaktiveret, når det lokale sprog altid bruges til kortet";
|
||||
"pref_maplanguage_local" = "Lokalt sprog";
|
||||
"hours_confirmed_time_ago" = "Confirmed %@";
|
||||
"existence_confirmed_time_ago" = "Existence confirmed %@";
|
||||
"hours_confirmed_time_ago" = "Bekræftet %@";
|
||||
"existence_confirmed_time_ago" = "Eksistens bekræftet %@";
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Bro";
|
||||
"type.highway.pedestrian.square" = "Torv";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Tunnel";
|
||||
@@ -1475,12 +1476,16 @@
|
||||
"type.natural.wetland.mangrove" = "Mangrove";
|
||||
"type.natural.wetland.fen" = "Fen";
|
||||
"type.natural.wetland.saltmarsh.tidal" = "Tidevandspåvirket strandeng";
|
||||
"type.natural.wetland.reedbed" = "Reed Bed";
|
||||
"type.natural.wetland.reedbed" = "Rørskov";
|
||||
"type.railway.station.subway.qingdao" = "Undergrundsstation";
|
||||
"type.leisure.escape_game" = "Escape Room";
|
||||
"type.amenity.luggage_locker" = "Bagageboks";
|
||||
"type.post_office.post_partner" = "Postpartner";
|
||||
"type.amenity.ranger_station" = "Ranger Station";
|
||||
"type.amenity.bicycle_parking.covered" = "Overdækket cykelparkering";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.barrier.wicket_gate" = "Portlåge";
|
||||
"type.amenity.animal_shelter" = "Dyreinternat";
|
||||
"type.office.security" = "Sikkerhedsvagtkontor";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Sikkerhedsbås";
|
||||
"type.shop.lighting" = "Lysbutik";
|
||||
|
||||
@@ -99,13 +99,13 @@
|
||||
"category_fuel" = "Tankstelle";
|
||||
|
||||
/* Search category for parking lots; any changes should be duplicated in categories.txt @category_parking! */
|
||||
"category_parking" = "Parkplätze";
|
||||
"category_parking" = "Parkplätze|Parkplatz|Stellplatz";
|
||||
|
||||
/* Search category for malls/clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @category_shopping! */
|
||||
"category_shopping" = "Shopping";
|
||||
|
||||
/* Search category for second_hand/charity/antique/auction shops; any changes should be duplicated in categories.txt @category_secondhand! */
|
||||
"category_secondhand" = "Second-hand";
|
||||
"category_secondhand" = "Second-hand|Gebrauchte Artikel|Gebrauchte Ware";
|
||||
|
||||
/* Search category for places to stay; any changes should be duplicated in categories.txt @category_hotel! */
|
||||
"category_hotel" = "Hotel";
|
||||
@@ -340,7 +340,7 @@
|
||||
"pref_calibration_title" = "Kompass-Kalibrierung";
|
||||
|
||||
/* Toast text when user hides UI with a long tap anywhere on the map */
|
||||
"long_tap_toast" = "Tippe erneut lange auf die Karte, um das Interface zu sehen";
|
||||
"long_tap_toast" = "Tippe erneut lange auf die Karte, um die Benutzeroberfläche zu sehen";
|
||||
|
||||
/* Update all button text */
|
||||
"downloader_update_all_button" = "Alle aktualisieren";
|
||||
@@ -456,10 +456,10 @@
|
||||
"dialog_routing_unable_locate_route" = "Route kann nicht ermittelt werden";
|
||||
"dialog_routing_change_start_or_end" = "Bitte passen Sie Ihren Startpunkt oder Ihr Ziel an.";
|
||||
"dialog_routing_change_start" = "Startpunkt anpassen";
|
||||
"dialog_routing_start_not_determined" = "Route wurde nicht erstellt. Startpunkt kann nicht gefunden werden.";
|
||||
"dialog_routing_start_not_determined" = "Route wurde nicht erstellt. Startpunkt konnte nicht gefunden werden.";
|
||||
"dialog_routing_select_closer_start" = "Bitte wählen Sie einen Startpunkt, der näher an einer Straße liegt.";
|
||||
"dialog_routing_change_end" = "Ziel anpassen";
|
||||
"dialog_routing_end_not_determined" = "Route wurde nicht erstellt. Ziel kann nicht gefunden werden.";
|
||||
"dialog_routing_end_not_determined" = "Route wurde nicht erstellt. Ziel konnte nicht gefunden werden.";
|
||||
"dialog_routing_select_closer_end" = "Bitte wählen Sie einen Zielort, der näher an einer Straße liegt.";
|
||||
"dialog_routing_change_intermediate" = "Zwischenstopp kann nicht gefunden werden.";
|
||||
"dialog_routing_intermediate_not_determined" = "Bitte passen Sie Ihren Zwischenstopp an.";
|
||||
@@ -467,7 +467,7 @@
|
||||
"dialog_routing_application_error" = "Route kann wegen eines Anwendungsfehlers nicht erstellt werden.";
|
||||
"dialog_routing_try_again" = "Bitte versuchen Sie es erneut";
|
||||
"dialog_routing_download_and_build_cross_route" = "Möchten Sie die Karte herunterladen und eine bessere Route erstellen, die mehr als eine Karte umfasst?";
|
||||
"dialog_routing_download_cross_route" = "Laden Sie zusätzliche Karten herunter, um eine bessere Route zu erstellen, die die Grenzen dieser Karte überschreitet.";
|
||||
"dialog_routing_download_cross_route" = "Laden Sie zusätzliche Karten herunter, um eine bessere Route zu erstellen, welche die Grenzen dieser Karte überschreitet.";
|
||||
|
||||
/* «Show» context menu */
|
||||
"show" = "Anzeigen";
|
||||
@@ -514,7 +514,7 @@
|
||||
"editor_time_add_closed" = "Schließzeiten hinzufügen";
|
||||
"editor_time_title" = "Öffnungszeiten";
|
||||
"editor_time_advanced" = "Erweiterter Modus";
|
||||
"editor_time_simple" = "Einfachmodus";
|
||||
"editor_time_simple" = "Einfacher Modus";
|
||||
"editor_hours_closed" = "Schließzeiten";
|
||||
"editor_example_values" = "Beispiele";
|
||||
"editor_add_select_location" = "Standort auswählen";
|
||||
@@ -619,7 +619,7 @@
|
||||
"downloader_of" = "%1$d von %2$d";
|
||||
"download_over_mobile_header" = "Über eine Mobilfunknetzverbindung herunterladen?";
|
||||
"download_over_mobile_message" = "Das könnte mit einigen Tarifen oder beim Roaming sehr teuer werden.";
|
||||
"error_enter_correct_house_number" = "Richtige Hausnummer eingeben";
|
||||
"error_enter_correct_house_number" = "Gültige Hausnummer eingeben";
|
||||
"editor_storey_number" = "Anzahl der Etagen (maximal %d)";
|
||||
|
||||
/* Error message in Editor when a user tries to set the number of floors for a building higher than %d floors */
|
||||
@@ -699,7 +699,7 @@
|
||||
"placepage_add_place_button" = "Ort zu OpenStreetMap hinzufügen";
|
||||
|
||||
/* Displayed when saving some edits to the map to warn against publishing personal data */
|
||||
"editor_share_to_all_dialog_title" = "An alle Benutzer senden?";
|
||||
"editor_share_to_all_dialog_title" = "An alle Nutzer*innen senden?";
|
||||
|
||||
/* Dialog before publishing the modifications to the public map. */
|
||||
"editor_share_to_all_dialog_message_1" = "Stellen Sie sicher, dass Sie keine persönlichen oder privaten Daten eingegeben haben.";
|
||||
@@ -740,7 +740,7 @@
|
||||
"traffic_data_unavailable" = "Verkehrsdaten sind nicht verfügbar";
|
||||
"enable_logging" = "Protokollierung aktivieren";
|
||||
"log_file_size" = "Größe der Protokolldatei: %@";
|
||||
"transliteration_title" = "Transliteration ins Lateinische alphabet";
|
||||
"transliteration_title" = "Transliteration ins lateinische Alphabet";
|
||||
|
||||
/* Subway exits for public transport marks on the map */
|
||||
"core_exit" = "Ausgang";
|
||||
@@ -778,7 +778,7 @@
|
||||
"bookmarks_error_title_share_empty" = "Fehler beim Teilen";
|
||||
"bookmarks_error_message_share_empty" = "Eine leere Liste kann nicht geteilt werden";
|
||||
"bookmarks_error_message_empty_list_name" = "Bitte geben Sie den Listennamen ein";
|
||||
"bookmarks_error_title_list_name_already_taken" = "Dieser Name ist bereits vergeben";
|
||||
"bookmarks_error_title_list_name_already_taken" = "Dieser Name wird bereits verwendet";
|
||||
"bookmarks_error_title_list_name_too_long" = "Dieser Name ist zu lang";
|
||||
"profile" = "OpenStreetMap-Profil";
|
||||
"bookmarks_detect_title" = "Neue Dateien erkannt";
|
||||
@@ -803,7 +803,7 @@
|
||||
"place_description_title" = "Ortsbeschreibung";
|
||||
|
||||
/* "Speed cameras" settings menu option (should be short! no more than 47-50 chars) to warn a driver if there is a risk of exceeding the speed limit */
|
||||
"pref_tts_speedcams_auto" = "Warnen wenn zu schnell";
|
||||
"pref_tts_speedcams_auto" = "Warnen bei Geschwindigkeitsübertretung";
|
||||
|
||||
/* Speed camera settings menu option - Always warn (about speedcams) */
|
||||
"pref_tts_speedcams_always" = "Immer warnen";
|
||||
@@ -909,7 +909,7 @@
|
||||
"religious_places" = "Religiöse Orte";
|
||||
"transit_not_found" = "Die U-Bahn-Navigation ist in dieser Region noch nicht verfügbar";
|
||||
"dialog_pedestrian_route_is_long_header" = "Keine U-Bahn-Route gefunden";
|
||||
"dialog_pedestrian_route_is_long_message" = "Wählen Sie einen zu einer U-Bahn-Station nähergelegenen Start- oder Endpunkt";
|
||||
"dialog_pedestrian_route_is_long_message" = "Wählen Sie einen Start- oder Endpunkt näher an einer U-Bahn-Station";
|
||||
"button_layer_isolines" = "Höhelinien";
|
||||
"isolines_activation_error_dialog" = "Um die Topographieebene nutzen zu können, aktualisieren Sie die Karte des betreffenden Gebiets oder laden Sie diese herunter";
|
||||
"isolines_location_error_dialog" = "Topographieebene ist für dieses Gebiet noch nicht verfügbar";
|
||||
@@ -965,7 +965,7 @@
|
||||
"app_tip_02" = "Gefällt Ihnen unsere App? Bitte spenden Sie, um die Entwicklung zu unterstützen! Gefällt es Ihnen noch nicht? Bitte lassen Sie uns wissen warum und wir werden das Problem beheben!";
|
||||
|
||||
/* App tip #03 */
|
||||
"app_tip_03" = "Wenn Sie einen Softwareentwickler kennen, können Sie ihn oder sie bitten, eine Funktion zu implementieren, die Sie benötigen.";
|
||||
"app_tip_03" = "Wenn Sie eine*n Softwareentwickler*in kennen, können Sie ihn oder sie bitten, eine Funktion zu implementieren, die Sie benötigen.";
|
||||
|
||||
/* App tip #04 */
|
||||
"app_tip_04" = "Tippen Sie irgendwo auf die Karte, um etwas auszuwählen. Tippen Sie lange, um die Oberfläche aus- und wieder einzublenden.";
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Brücke";
|
||||
"type.highway.pedestrian.square" = "Platz";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Fußgängertunnel";
|
||||
@@ -1484,3 +1485,7 @@
|
||||
"type.post_office.post_partner" = "Postpartner";
|
||||
"type.barrier.wicket_gate" = "Schlupfpforte";
|
||||
"type.amenity.animal_shelter" = "Tierheim";
|
||||
"type.office.security" = "Büro des Sicherheitsdienstes";
|
||||
"type.power.portal" = "Abspannportal";
|
||||
"type.building.guardhouse" = "Pförtnerhäuschen";
|
||||
"type.shop.lighting" = "Lampenladen";
|
||||
|
||||
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Γέφυρα";
|
||||
|
||||
"type.highway.pedestrian.square" = "Πλατεία";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Σήραγγα";
|
||||
"type.highway.primary" = "Οδός";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Pedestrian Bridge";
|
||||
|
||||
"type.highway.pedestrian.square" = "Square";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Pedestrian Tunnel";
|
||||
"type.highway.primary" = "Primary Road";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -69,6 +69,9 @@
|
||||
"type.amenity.music_school" = "Music School";
|
||||
"type.amenity.language_school" = "Language School";
|
||||
"type.office.diplomatic" = "Embassy";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.amenity.fast_food" = "Fast Food";
|
||||
"type.amenity.ferry_terminal" = "Ferry";
|
||||
"type.amenity.fire_station" = "Fire Station";
|
||||
@@ -486,6 +489,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Pedestrian Bridge";
|
||||
|
||||
"type.highway.pedestrian.square" = "Square";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Pedestrian Tunnel";
|
||||
"type.highway.primary" = "Primary Road";
|
||||
@@ -1342,6 +1347,7 @@
|
||||
"type.shop.trade" = "Trade Supplies";
|
||||
"type.shop.watches" = "Watch Store";
|
||||
"type.shop.wholesale" = "Wholesale Store";
|
||||
"type.shop.lighting" = "Lighting Shop";
|
||||
"type.sport" = "Sport";
|
||||
"type.sport.american_football" = "American Football";
|
||||
"type.sport.archery" = "Archery";
|
||||
|
||||
@@ -466,6 +466,8 @@
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Puente peatonal";
|
||||
|
||||
"type.highway.pedestrian.square" = "Plaza";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Túnel peatonal";
|
||||
"type.highway.primary" = "Carretera principal";
|
||||
@@ -1484,3 +1486,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
"category_eat" = "Dónde comer";
|
||||
|
||||
/* Search category for grocery stores; any changes should be duplicated in categories.txt @category_food! */
|
||||
"category_food" = "Provisiones";
|
||||
"category_food" = "Tienda de comestibles";
|
||||
|
||||
/* Search category for public transport; any changes should be duplicated in categories.txt @category_transport! */
|
||||
"category_transport" = "Transporte";
|
||||
@@ -325,7 +325,7 @@
|
||||
"report_incorrect_map_bug" = "Informar o corregir datos de mapa incorrectos";
|
||||
|
||||
/* Button in the About screen */
|
||||
"volunteer" = "Voluntariado";
|
||||
"volunteer" = "Hazte voluntario y mejora CoMaps";
|
||||
|
||||
/* "Social media" section header in the About screen */
|
||||
"follow_us" = "Conecta con nosotros";
|
||||
@@ -1095,5 +1095,5 @@
|
||||
"pref_maplanguage_title" = "Idioma del mapa";
|
||||
"transliteration_title_disabled_summary" = "Deshabilitado cuando siempre se usa el idioma local para el mapa";
|
||||
"pref_maplanguage_local" = "Idioma local";
|
||||
"existence_confirmed_time_ago" = "Existence confirmed %@";
|
||||
"hours_confirmed_time_ago" = "Confirmed %@";
|
||||
"existence_confirmed_time_ago" = "Existencia confirmada %@";
|
||||
"hours_confirmed_time_ago" = "Confirmado %@";
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
"type.amenity.hunting_stand" = "Puesto de caza";
|
||||
"type.amenity.ice_cream" = "Heladería";
|
||||
"type.amenity.internet_cafe" = "Cibercafé";
|
||||
"type.amenity.kindergarten" = "Escuela infantil";
|
||||
"type.amenity.kindergarten" = "Guardería";
|
||||
"type.amenity.library" = "Biblioteca";
|
||||
"type.amenity.loading_dock" = "Muelle de carga";
|
||||
"type.amenity.marketplace" = "Mercado";
|
||||
@@ -451,8 +451,8 @@
|
||||
|
||||
/* Hiking trail tagged as sac_scale=alpine_hiking (4+ of 6) or trail_visibility=horrible or more extreme. */
|
||||
"type.highway.path.expert" = "Sendero muy difícil o indistinguible";
|
||||
"type.highway.path.bicycle" = "Camino para bicicletas";
|
||||
"type.highway.footway.bicycle" = "Camino para bicicletas";
|
||||
"type.highway.path.bicycle" = "Camino para bicicletas y peatones";
|
||||
"type.highway.footway.bicycle" = "Camino para bicicletas y peatones";
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.path.bridge" = "Puente";
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Puente peatonal";
|
||||
"type.highway.pedestrian.square" = "Plaza";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Túnel peatonal";
|
||||
@@ -1473,7 +1474,7 @@
|
||||
"type.natural.wetland.saltmarsh.tidal" = "Marisma Salina de Marea";
|
||||
"type.natural.wetland.reedbed" = "Juncal";
|
||||
"type.natural.wetland.tidalflat" = "Llanura de marea";
|
||||
"type.natural.wetland.swamp" = "Ciénaga";
|
||||
"type.natural.wetland.swamp" = "Pantano";
|
||||
"type.natural.wetland.saltmarsh" = "Marisma salina";
|
||||
"type.natural.wetland.mangrove" = "Manglares";
|
||||
"type.railway.station.subway.qingdao" = "Estación de Metro";
|
||||
@@ -1483,4 +1484,8 @@
|
||||
"type.amenity.ranger_station" = "Estación de guardabosques";
|
||||
"type.amenity.bicycle_parking.covered" = "Parking de bici cubierto";
|
||||
"type.amenity.animal_shelter" = "Refugio de animales";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.barrier.wicket_gate" = "Portillo";
|
||||
"type.office.security" = "Oficina de Seguridad Privada";
|
||||
"type.power.portal" = "Torre de alta tensión";
|
||||
"type.building.guardhouse" = "Garita de seguridad";
|
||||
"type.shop.lighting" = "Tienda de iluminación";
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Jalakäijate sild";
|
||||
"type.highway.pedestrian.square" = "Väljak";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Jalakäijate tunnel";
|
||||
@@ -1484,3 +1485,7 @@
|
||||
"type.post_office.post_partner" = "Postiteenused partneri juures";
|
||||
"type.barrier.wicket_gate" = "Jalgvärav";
|
||||
"type.amenity.animal_shelter" = "Loomade varjupaik";
|
||||
"type.office.security" = "Turvafirma kontor";
|
||||
"type.power.portal" = "Õhuliini värava-tüüpi mast";
|
||||
"type.building.guardhouse" = "Valvuriputka";
|
||||
"type.shop.lighting" = "Lambipood";
|
||||
|
||||
@@ -31,9 +31,9 @@
|
||||
<key>NSStringFormatValueTypeKey</key>
|
||||
<string>d</string>
|
||||
<key>one</key>
|
||||
<string>fitxategi %d aurkitu da. Elkarrizketaren ondoren ikusiko duzu.</string>
|
||||
<string>fitxategi %d aurkitu da. Bihurketaren ondoren ikusiko duzu.</string>
|
||||
<key>other</key>
|
||||
<string>%d fitxategi aurkitu da. Elkarrizketaren ondoren ikusiko dituzu.</string>
|
||||
<string>%d fitxategi aurkitu da. Bihurketaren ondoren ikusiko dituzu.</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>tracks</key>
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Oinezkoen zubia";
|
||||
"type.highway.pedestrian.square" = "Plaza";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Oinezkoen tunela";
|
||||
@@ -1482,5 +1483,8 @@
|
||||
"type.amenity.ranger_station" = "Ranger Station";
|
||||
"type.amenity.bicycle_parking.covered" = "Txirrinduen aparkaleku estalia";
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.amenity.animal_shelter" = "Animalien babeslekua";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
|
||||
/* Button text (should be short) */
|
||||
"cancel" = "لغو";
|
||||
"cancel" = "وازدن";
|
||||
|
||||
/* Button which interrupts country download */
|
||||
"cancel_download" = "لغو دانلود";
|
||||
|
||||
/* Button which deletes downloaded country */
|
||||
"delete" = "حذف";
|
||||
"download_maps" = "دانلود نقشهها";
|
||||
"delete" = "سِتُردن";
|
||||
"download_maps" = "بارگیری نقشهها";
|
||||
|
||||
/* Settings/Downloader - info for country which started downloading */
|
||||
"downloading" = "درحال دانلود…";
|
||||
@@ -22,7 +22,7 @@
|
||||
"miles" = "مایل";
|
||||
|
||||
/* A text for current gps location point/arrow selected on the map */
|
||||
"core_my_position" = "مکان من";
|
||||
"core_my_position" = "ایستار من";
|
||||
|
||||
/* Update maps later button text */
|
||||
"later" = "بعدًا";
|
||||
@@ -69,7 +69,7 @@
|
||||
"bookmarks_and_tracks" = "نشانهها و مسیر ها";
|
||||
|
||||
/* Default bookmark list name */
|
||||
"core_my_places" = "مکان من";
|
||||
"core_my_places" = "گیاگهای من";
|
||||
|
||||
/* Editor title above street and house number, duplicates [type.building.address] in types_strings.txt */
|
||||
"address" = "آدرس";
|
||||
@@ -138,7 +138,7 @@
|
||||
"category_police" = "پلیس";
|
||||
|
||||
/* Search category for WiFi access; any changes should be duplicated in categories.txt @category_wifi! */
|
||||
"category_wifi" = "وای فای";
|
||||
"category_wifi" = "وایفای";
|
||||
|
||||
/* Search category for recycling; any changes should be duplicated in categories.txt @category_recycling! */
|
||||
"category_recycling" = "بازیافت";
|
||||
@@ -620,7 +620,7 @@
|
||||
"error_enter_correct_zip_code" = "یک کد پستی معتبر وارد کنید";
|
||||
|
||||
/* Place Page title for long tap */
|
||||
"core_placepage_unknown_place" = "نقطه نقشه";
|
||||
"core_placepage_unknown_place" = "خَجَکِ نقشه";
|
||||
|
||||
/* Title for OSM note section in the editor */
|
||||
"editor_other_info" = "توجه به داوطلبان OpenStreetMap (اختیاری)";
|
||||
@@ -662,7 +662,7 @@
|
||||
"mi" = "مایل";
|
||||
|
||||
/* A unit of measure */
|
||||
"ft" = "فوت";
|
||||
"ft" = "پای";
|
||||
"miles_per_hour" = "مایل بر ساعت (mph)";
|
||||
"hour" = "ساعت";
|
||||
"minute" = "دقیقه";
|
||||
@@ -735,7 +735,7 @@
|
||||
"transliteration_title" = "ترجمه به لاتین";
|
||||
|
||||
/* Subway exits for public transport marks on the map */
|
||||
"core_exit" = "خروج";
|
||||
"core_exit" = "اوزیدن";
|
||||
|
||||
/* User selected the destination by pressing Route To, but the current position is unknown. User needs to select a starting point of a route using search or by tapping on the map and then pressing "Route From". */
|
||||
"routing_add_start_point" = "برای افزودن نقطه شروع مسیر، از جستجو استفاده کنید یا روی نقشه ضربه بزنید";
|
||||
@@ -751,7 +751,7 @@
|
||||
|
||||
/* Title for button when a route was saved. */
|
||||
"saved" = "ذخیره شد";
|
||||
"core_entrance" = "ورودی";
|
||||
"core_entrance" = "آدین";
|
||||
"error_enter_correct_name" = "لطفا نام صحیح را وارد کنید";
|
||||
"bookmark_lists" = "لیستها";
|
||||
|
||||
@@ -782,7 +782,7 @@
|
||||
"terms_of_use" = "شرایط استفاده";
|
||||
"button_layer_subway" = "مترو";
|
||||
"layers_title" = "سبک ها و لایه های نقشه";
|
||||
"subway_data_unavailable" = "نقشه مترو موجود نیست";
|
||||
"subway_data_unavailable" = "نقشه مترو ناهَندِمان است";
|
||||
"title_error_downloading_bookmarks" = "خطایی رخ داد";
|
||||
"popular_place" = "مشهور";
|
||||
"export_file" = "صادرات KMZ";
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
"type.addr_interpolation.even" = "نشانی/بست";
|
||||
"type.addr_interpolation.odd" = "نشانی/بست";
|
||||
"type.aerialway" = "راه هوایی";
|
||||
"type.aerialway.cable_car" = "خودردو کابلی";
|
||||
"type.aerialway.chair_lift" = "Chair Lift";
|
||||
"type.aerialway.drag_lift" = "Drag Lift";
|
||||
"type.aerialway.gondola" = "Gondola";
|
||||
"type.aerialway.mixed_lift" = "Mixed Lift";
|
||||
"type.aerialway.cable_car" = "رَسَنرو";
|
||||
"type.aerialway.chair_lift" = "تختِ وَزان";
|
||||
"type.aerialway.drag_lift" = "اَهرامَنده";
|
||||
"type.aerialway.gondola" = "کَدیزگوار";
|
||||
"type.aerialway.mixed_lift" = "بالابر گُمیخته";
|
||||
"type.aerialway.station" = "ایستگاه راههوایی";
|
||||
"type.aeroway" = "زیرساخت مرزهوایی";
|
||||
"type.aeroway.aerodrome" = "فرودگاه";
|
||||
@@ -14,7 +14,7 @@
|
||||
"type.aeroway.apron" = "پیشگاه";
|
||||
"type.aeroway.gate" = "دروازه";
|
||||
"type.aeroway.helipad" = "بالگَردنشین";
|
||||
"type.aeroway.runway" = "Runway";
|
||||
"type.aeroway.runway" = "نوار فرودگاه";
|
||||
"type.aeroway.taxiway" = "رج وزیگ";
|
||||
"type.aeroway.terminal" = "پایانه";
|
||||
"type.amenity" = "امکانات آسایشی";
|
||||
@@ -26,19 +26,19 @@
|
||||
"type.amenity.bench" = "نیمکت";
|
||||
"type.amenity.bicycle_parking" = "ایستگاه دوچرخه";
|
||||
"type.amenity.bicycle_rental" = "جایگاه کرایه دوچرخه";
|
||||
"type.amenity.bicycle_repair_station" = "ایستگاه تعمیر دوچرخه";
|
||||
"type.amenity.bicycle_repair_station" = "ایستگاه نوسازی دوچرخه";
|
||||
"type.amenity.biergarten" = "غذا";
|
||||
"type.amenity.brothel" = "فاحشه خانه";
|
||||
"type.amenity.brothel" = "جهخانه";
|
||||
"type.amenity.bureau_de_change" = "صرافی";
|
||||
"type.amenity.bus_station" = "حمل و نقل";
|
||||
"type.amenity.cafe" = "کافه";
|
||||
"type.amenity.bus_station" = "ایستگاه اتوبوس";
|
||||
"type.amenity.cafe" = "قهوهخانه";
|
||||
"type.amenity.car_rental" = "مکان اجاره ماشین";
|
||||
"type.amenity.motorcycle_rental" = "اجاره موتور سیکلت";
|
||||
"type.amenity.car_sharing" = "Car Sharing";
|
||||
"type.amenity.car_wash" = "کارواش";
|
||||
"type.amenity.casino" = "قمارخانه";
|
||||
"type.amenity.gambling" = "قمار";
|
||||
"type.leisure.adult_gaming_centre" = "مرکز بازی بزرگسالان";
|
||||
"type.leisure.adult_gaming_centre" = "کانون بازی بزرگسالان";
|
||||
"type.leisure.amusement_arcade" = "گذرگاه طاقدار";
|
||||
"type.amenity.charging_station" = "ایستگاه شارژ";
|
||||
"type.amenity.charging_station.bicycle" = "ایستگاه شارژ دوچرخه";
|
||||
@@ -53,30 +53,30 @@
|
||||
"type.amenity.conference_centre" = "مرکز کنفرانس";
|
||||
"type.amenity.courthouse" = "دادگاه";
|
||||
"type.amenity.dentist" = "دندان پزشکی";
|
||||
"type.amenity.doctors" = "کلینیک";
|
||||
"type.amenity.drinking_water" = "اب اشامیدنی";
|
||||
"type.drinking_water.yes" = "اب اشامیدنی";
|
||||
"type.amenity.driving_school" = "اموزشگاه رانندگی";
|
||||
"type.amenity.doctors" = "پزشک";
|
||||
"type.amenity.drinking_water" = "آب آشامیدنی";
|
||||
"type.drinking_water.yes" = "آب آشامیدنی";
|
||||
"type.amenity.driving_school" = "آموزشگاه رانندگی";
|
||||
"type.amenity.exhibition_centre" = "مرکز نمایشگاه";
|
||||
"type.amenity.money_transfer" = "انتقال پول";
|
||||
"type.amenity.music_school" = "ﯽﻘﯿﺳﻮﻣ ﻩﺎﮕﺷﺯﻮﻣﺁ";
|
||||
"type.amenity.language_school" = "ﻥﺎﺑﺯ ﻪﺳﺭﺪﻣ";
|
||||
"type.amenity.music_school" = "آموزشگاه هونا";
|
||||
"type.amenity.language_school" = "آموزشگاه زبان";
|
||||
"type.office.diplomatic" = "سفارت";
|
||||
"type.amenity.fast_food" = "فست فود";
|
||||
"type.amenity.ferry_terminal" = "حمل و نقل";
|
||||
"type.amenity.fire_station" = "ایستگاه اتش نشانی";
|
||||
"type.amenity.fire_station" = "ایستگاه آتشنشانی";
|
||||
"type.amenity.food_court" = "Food Court";
|
||||
"type.amenity.fountain" = "فواره";
|
||||
"type.amenity.fuel" = "سوخت";
|
||||
|
||||
/* In most (European) countries, сemeteries are usually independent of places of worship (e.g. military cemeteries), while grave yards are usually the yard of a place of worship. */
|
||||
"type.amenity.grave_yard" = "قبرستان";
|
||||
"type.amenity.grave_yard" = "گورستان";
|
||||
|
||||
/* In most (European) countries, сemeteries are usually independent of places of worship (e.g. military cemeteries), while grave yards are usually the yard of a place of worship. */
|
||||
"type.amenity.grave_yard.christian" = "قبرستان";
|
||||
"type.amenity.grave_yard.christian" = "گورستان مسیحیان";
|
||||
"type.amenity.hospital" = "بیمارستان";
|
||||
"type.amenity.hunting_stand" = "شکارگاه";
|
||||
"type.amenity.ice_cream" = "غذا";
|
||||
"type.amenity.ice_cream" = "بستنی";
|
||||
"type.amenity.internet_cafe" = "کافی نت";
|
||||
"type.amenity.kindergarten" = "مهدکودک";
|
||||
"type.amenity.library" = "کتابخانه";
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "پل";
|
||||
"type.highway.pedestrian.square" = "میدان";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "تونل";
|
||||
@@ -1268,7 +1269,7 @@
|
||||
"type.shop.stationery" = "لوازم التحریر";
|
||||
"type.shop.supermarket" = "فروشگاه";
|
||||
"type.shop.tattoo" = "سالن خالکوبی";
|
||||
"type.shop.tea" = "فروشگاه";
|
||||
"type.shop.tea" = "چایخانه";
|
||||
"type.shop.ticket" = "فروشگاه";
|
||||
"type.shop.toys" = "فروشگاه";
|
||||
"type.shop.travel_agency" = "اژانس مسافرتی";
|
||||
@@ -1284,23 +1285,23 @@
|
||||
/* maybe change to Art Gallery for en-US when supported */
|
||||
"type.shop.art" = "ﺮﻨﻫ ﻩﺎﮕﺷﻭﺮﻓ";
|
||||
"type.shop.baby_goods" = "ﻥﺎﮐﺩﻮﮐ ﻩﺎﮕﺷﻭﺮﻓ";
|
||||
"type.shop.bag" = "ﻒﯿﮐ ﻩﺎﮕﺷﻭﺮﻓ";
|
||||
"type.shop.bag" = "کیف فروشی";
|
||||
"type.shop.bed" = "فروشگاه تخت";
|
||||
"type.shop.boutique" = "ﮏﯿﺗﻮﺑ";
|
||||
"type.shop.charity" = "ﻪﯾﺮﯿﺧ ﻩﺎﮕﺷﻭﺮﻓ";
|
||||
"type.shop.cheese" = "ﺮﯿﻨﭘ ﻩﺎﮕﺷﻭﺮﻓ";
|
||||
"type.shop.cheese" = "پنیر فروشی";
|
||||
"type.shop.craft" = "ﯽﺘﺳﺩ ﻊﯾﺎﻨﺻ ﻭ ﺮﻨﻫ";
|
||||
"type.shop.dairy" = "ﯽﻨﺒﻟ ﺕﻻﻮﺼﺤﻣ";
|
||||
"type.shop.electrical" = "ﯽﮑﯾﺮﺘﮑﻟﺍ ﻡﺯﺍﻮﻟ ﻩﺯﺎﻐﻣ";
|
||||
"type.shop.fishing" = "ﯼﺮﯿﮕﯿﻫﺎﻣ ﻩﺎﮕﺷﻭﺮﻓ";
|
||||
"type.shop.fishing" = "فروشگاه ماهیگیری";
|
||||
"type.shop.interior_decoration" = "ﯽﻠﺧﺍﺩ ﻥﻮﯿﺳﺍﺭﻮﮐﺩ";
|
||||
"type.shop.lottery" = "ﯽﯾﺎﻣﺯﺁ ﺖﺨﺑ ﻂﯿﻠﺑ";
|
||||
"type.shop.medical_supply" = "ﯽﮑﺷﺰﭘ ﻡﺯﺍﻮﻟ";
|
||||
"type.shop.medical_supply" = "فروشگاه ابزار پزشکی";
|
||||
"type.shop.nutrition_supplements" = "ﯽﯾﺍﺬﻏ ﯼﺎﻫ ﻞﻤﮑﻣ";
|
||||
"type.shop.paint" = "ﺪﻨﮐ ﯽﻣ ﮓﻧﺭ";
|
||||
"type.shop.perfumery" = "ﯼﺯﺎﺳﺮﻄﻋ";
|
||||
"type.shop.perfumery" = "مشگ فروشی";
|
||||
"type.shop.sewing" = "ﯽﻃﺎﯿﺧ ﻡﺯﺍﻮﻟ";
|
||||
"type.shop.storage_rental" = "ﺭﺎﺒﻧﺍ ﻩﺭﺎﺟﺍ";
|
||||
"type.shop.storage_rental" = "انباری کرایهای";
|
||||
"type.shop.tobacco" = "ﻮﮐﺎﺒﻨﺗ";
|
||||
"type.shop.trade" = "ﻡﺯﺍﻮﻟ ﺕﺭﺎﺠﺗ";
|
||||
"type.shop.watches" = "ﺖﻋﺎﺳ";
|
||||
@@ -1341,7 +1342,7 @@
|
||||
"type.sport.field_hockey" = "ﻦﻤﭼ ﯼﻭﺭ ﯽﮐﺎﻫ";
|
||||
"type.sport.badminton" = "ﻥﻮﺘﻨﯿﻣﺪﺑ";
|
||||
"type.sport.pelota" = "ﯽﮑﺳﺎﺑ ﯼﺎﺗﻮﻠﭘ";
|
||||
"type.tourism" = "Tourism";
|
||||
"type.tourism" = "گردشگری";
|
||||
"type.tourism.aquarium" = "آکواریوم";
|
||||
|
||||
/* Typically serviced, staff is present and food is available (compared to wilderness_hut). */
|
||||
@@ -1386,9 +1387,9 @@
|
||||
"type.tourism.viewpoint" = "گردشگری";
|
||||
|
||||
/* Typically more basic, not staffed and free (compared to alpine_hut). */
|
||||
"type.tourism.wilderness_hut" = "کلبهی صحرایی";
|
||||
"type.tourism.zoo" = "گردشگری";
|
||||
"type.tourism.zoo.petting" = "باغ وحش پتینگ";
|
||||
"type.tourism.wilderness_hut" = "کلبهی بِیدایی";
|
||||
"type.tourism.zoo" = "جانورگاه";
|
||||
"type.tourism.zoo.petting" = "جانورگاه اهلی";
|
||||
"type.traffic_calming" = "Traffic Calming";
|
||||
"type.traffic_calming.bump" = "Traffic Bump";
|
||||
"type.traffic_calming.hump" = "Traffic Hump";
|
||||
@@ -1396,13 +1397,13 @@
|
||||
"type.waterway.canal" = "کانال اب";
|
||||
"type.waterway.canal.tunnel" = "کانال اب";
|
||||
"type.waterway.fish_pass" = "نردبان ماهی";
|
||||
"type.waterway.dam" = "Dam";
|
||||
"type.barrier.ditch" = "Ditch";
|
||||
"type.natural.water.ditch" = "خندق زهکشی";
|
||||
"type.waterway.dam" = "آببند";
|
||||
"type.barrier.ditch" = "جوی";
|
||||
"type.natural.water.ditch" = "جوی زهکش";
|
||||
"type.waterway.ditch.tunnel" = "کولورت";
|
||||
"type.waterway.dock" = "Waterway Dock";
|
||||
"type.waterway.drain" = "Drain";
|
||||
"type.natural.water.drain" = "Drain";
|
||||
"type.waterway.drain" = "زهکش";
|
||||
"type.natural.water.drain" = "زهکش";
|
||||
"type.waterway.drain.tunnel" = "کولورت";
|
||||
"type.waterway.lock_gate" = "Lock Gate";
|
||||
"type.waterway.river" = "رودخانه";
|
||||
@@ -1411,10 +1412,10 @@
|
||||
"type.waterway.stream.ephemeral" = "رودخانه";
|
||||
"type.waterway.stream.intermittent" = "رودخانه";
|
||||
"type.waterway.stream.tunnel" = "رودخانه";
|
||||
"type.waterway.waterfall" = "گردشگری";
|
||||
"type.waterway.weir" = "Weir";
|
||||
"type.wheelchair" = "Wheelchair";
|
||||
"type.wheelchair.limited" = "دسترسی محدود با صندلی چرخ دار";
|
||||
"type.waterway.waterfall" = "آبشار";
|
||||
"type.waterway.weir" = "سرریز";
|
||||
"type.wheelchair" = "رواگصندلی";
|
||||
"type.wheelchair.limited" = "دسترسی کرانمند با رواگصندلی";
|
||||
"type.wheelchair.no" = "بدون دسترسی با صندلی چرخ دار";
|
||||
"type.wheelchair.yes" = "دسترسی کامل با صندلی چرخ دار";
|
||||
"type.aerialway.j.bar" = "J-bar Lift";
|
||||
@@ -1460,7 +1461,7 @@
|
||||
"type.amenity.dojo" = "دوجو";
|
||||
|
||||
/* https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall */
|
||||
"type.leisure.sports_hall" = "سالن ورزشی";
|
||||
"type.leisure.sports_hall" = "سرای ورزش";
|
||||
"type.amenity.studio" = "Studio";
|
||||
"type.barrier.guard_rail" = "Guard Rail";
|
||||
"type.man_made.crane" = "Crane";
|
||||
@@ -1484,3 +1485,6 @@
|
||||
"type.post_office.post_partner" = "Post Partner";
|
||||
"type.amenity.animal_shelter" = "Animal Shelter";
|
||||
"type.barrier.wicket_gate" = "Wicket gate";
|
||||
"type.office.security" = "Security Guards Office";
|
||||
"type.power.portal" = "Power Portal";
|
||||
"type.building.guardhouse" = "Security Booth";
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
"country_status_download_failed" = "Lataus epäonnistui";
|
||||
|
||||
/* Text in About screen */
|
||||
"about_headline" = "Avoin projekti yhteisön voimin";
|
||||
"about_headline" = "Avoin projekti yhteisön toteuttamana";
|
||||
|
||||
/* Text in About screen */
|
||||
"about_proposition_1" = "Yhteydetön tila, nopea ja helppokäyttöinen";
|
||||
@@ -325,7 +325,7 @@
|
||||
"report_incorrect_map_bug" = "Ilmoita tai korjaa virheelliset karttatiedot";
|
||||
|
||||
/* Button in the About screen */
|
||||
"volunteer" = "Ryhdy vapaaehtoiseksi ja auta parantamaan CoMapsia";
|
||||
"volunteer" = "Auta parantamaan CoMapsia";
|
||||
|
||||
/* "Social media" section header in the About screen */
|
||||
"follow_us" = "Ota yhteyttä";
|
||||
|
||||
@@ -465,6 +465,7 @@
|
||||
|
||||
/* These translations are used for all type.highway.*.bridge. */
|
||||
"type.highway.pedestrian.bridge" = "Jalankulkusilta";
|
||||
"type.highway.pedestrian.square" = "Tori";
|
||||
|
||||
/* These translations are used for all type.highway.*.tunnel. */
|
||||
"type.highway.pedestrian.tunnel" = "Jalankulkutunneli";
|
||||
@@ -1484,3 +1485,6 @@
|
||||
"type.amenity.bicycle_parking.covered" = "Pyöräkatos";
|
||||
"type.amenity.animal_shelter" = "Eläinsuoja";
|
||||
"type.barrier.wicket_gate" = "Käyntiportti";
|
||||
"type.office.security" = "Vartijoiden toimisto";
|
||||
"type.power.portal" = "Sähköportaali";
|
||||
"type.building.guardhouse" = "Vartijankoppi";
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"route" = "Itinéraire";
|
||||
|
||||
/* Needed to explain why we always require access to GPS coordinates, and not only when the app is active. */
|
||||
"NSLocationAlwaysUsageDescription" = "La localisation actuelle en arrière-plan est nécessaire pour profiter pleinement de toutes les fonctionnalités de l'application. Elle est utilisée dans les options de navigation et d'enregistrement de votre chemin récemment parcouru.";
|
||||
"NSLocationAlwaysUsageDescription" = "La localisation actuelle en arrière-plan est nécessaire pour profiter pleinement de toutes les fonctionnalités de l’application. Elle est utilisée dans les options de navigation et d’enregistrement de votre chemin récemment parcouru.";
|
||||
|
||||
/* Needed to explain why we require access to GPS coordinates when the app is active. */
|
||||
"NSLocationWhenInUseUsageDescription" = "La définition de lemplacement actuel est utilisée dans certaines fonctions comme le suivi dun trajet et la sauvegarde des trajets récemment effectués.";
|
||||
"NSLocationWhenInUseUsageDescription" = "La définition de l’emplacement actuel est utilisée dans certaines fonctions comme le suivi d’un trajet et l’enregistrement des trajets récemment effectués.";
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
"category_shopping" = "Shopping";
|
||||
|
||||
/* Search category for second_hand/charity/antique/auction shops; any changes should be duplicated in categories.txt @category_secondhand! */
|
||||
"category_secondhand" = "D'occasion";
|
||||
"category_secondhand" = "D’occasion";
|
||||
|
||||
/* Search category for places to stay; any changes should be duplicated in categories.txt @category_hotel! */
|
||||
"category_hotel" = "Hôtel";
|
||||
@@ -154,13 +154,13 @@
|
||||
|
||||
/* Search category for RV facilities; any changes should be duplicated in categories.txt @category_rv! */
|
||||
"category_rv" = "Aménagements pour camping-car";
|
||||
"share_bookmarks_email_body" = "Bonjour !\n\nVous trouverez ci-joint mes signets de l'appli CoMaps. Veuillez les ouvrir si vous avez installé CoMaps. Si vous ne l'avez pas, téléchargez l'application pour votre appareil iOS ou Android en suivant ce lien : https://www.comaps.app/download/\n\nBon voyage avec CoMaps !";
|
||||
"share_bookmarks_email_body" = "Bonjour !\n\nVous trouverez ci-joint mes signets de l’appli CoMaps. Veuillez les ouvrir si vous avez installé CoMaps. Si vous ne l’avez pas, téléchargez l’application pour votre appareil iOS ou Android en suivant ce lien : https://www.comaps.app/download/\n\nBon voyage avec CoMaps !";
|
||||
|
||||
/* message title of loading file */
|
||||
"load_kmz_title" = "Chargement des signets";
|
||||
|
||||
/* Kmz file successful loading */
|
||||
"load_kmz_successful" = "Les signets ont été chargés avec succès ! Vous pouvez les trouver sur la carte ou sur l'écran du Gestionnaire de signets.";
|
||||
"load_kmz_successful" = "Les signets ont été chargés avec succès ! Vous pouvez les trouver sur la carte ou sur l’écran du Gestionnaire de signets.";
|
||||
|
||||
/* Kml file loading failed */
|
||||
"load_kmz_failed" = "Échec lors du chargement des signets. Le fichier pourrait être corrompu ou défectueux.";
|
||||
@@ -169,13 +169,13 @@
|
||||
"edit" = "Modifier";
|
||||
|
||||
/* Warning message when doing search around current position */
|
||||
"unknown_current_position" = "Votre position n'a pas encore été déterminée";
|
||||
"unknown_current_position" = "Votre position n’a pas encore été déterminée";
|
||||
|
||||
/* Subject for emailed bookmark */
|
||||
"bookmark_share_email_subject" = "Hé, regardez ce lieu dans CoMaps !";
|
||||
|
||||
/* Subject for emailed position */
|
||||
"my_position_share_email_subject" = "Hé, regardez ma position actuelle sur la carte CoMaps !";
|
||||
"my_position_share_email_subject" = "Hé, regardez ma position actuelle sur la carte CoMaps !";
|
||||
|
||||
/* Share by email button text, also used in editor and About. */
|
||||
"email" = "Email";
|
||||
@@ -184,7 +184,7 @@
|
||||
"copy_to_clipboard" = "Copier dans le presse-papiers";
|
||||
|
||||
/* Text for message when used successfully copied something */
|
||||
"copied_to_clipboard" = "Copié dans le presse-papiers : %@";
|
||||
"copied_to_clipboard" = "Copié dans le presse-papiers : %@";
|
||||
|
||||
/* place preview title */
|
||||
"info" = "Infos";
|
||||
@@ -193,9 +193,9 @@
|
||||
"done" = "Terminé";
|
||||
|
||||
/* Prints version number in About dialog */
|
||||
"version" = "Version d'CoMaps : %@";
|
||||
"version" = "Version de CoMaps : %@";
|
||||
"version %@ (%@)" = "Version %@ (%@)";
|
||||
"version: %@ (%@)\nmap data: %@" = "Version : %@ (%@)\nDonnées cartographiques : %@";
|
||||
"version: %@ (%@)\nmap data: %@" = "Version : %@ (%@)\nDonnées cartographiques : %@";
|
||||
|
||||
/* Title for tracks category in bookmarks manager */
|
||||
"tracks_title" = "Traces";
|
||||
@@ -205,7 +205,7 @@
|
||||
"share_my_location" = "Partager ma position";
|
||||
"prefs_group_route" = "Navigation";
|
||||
"pref_zoom_title" = "Boutons de zoom";
|
||||
"pref_left_button_type" = "Left Main Button";
|
||||
"pref_left_button_type" = "Bouton de gauche";
|
||||
|
||||
/* Settings «Map» category: «Appearance» title */
|
||||
"pref_appearance_title" = "Apparence";
|
||||
@@ -217,7 +217,7 @@
|
||||
"pref_appearance_dark" = "Sombre";
|
||||
|
||||
/* Generic «Disabled» string */
|
||||
"disabled" = "Disabled";
|
||||
"disabled" = "Désactivé";
|
||||
|
||||
/* Generic «Off» string */
|
||||
"off" = "Désactivé";
|
||||
@@ -235,13 +235,13 @@
|
||||
"pref_map_3d_buildings_title" = "Bâtiments en 3D";
|
||||
|
||||
/* A message in Settings/Preferences explaining why is it not possible to enable 3D buildings when max power saving mode is enabled */
|
||||
"pref_map_3d_buildings_disabled_summary" = "Les bâtiments 3D sont désactivés en mode d'économie d'énergie";
|
||||
"pref_map_3d_buildings_disabled_summary" = "Les bâtiments 3D sont désactivés en mode d’économie d’énergie";
|
||||
|
||||
/* Settings «Route» category: «Tts enabled» title */
|
||||
"pref_tts_title" = "Instructions vocales";
|
||||
|
||||
/* Settings «Route» category: «Tts enable» title */
|
||||
"pref_tts_enable_title" = "Enable Voice Instructions";
|
||||
"pref_tts_enable_title" = "Activer les instructions vocales";
|
||||
|
||||
/* Settings «Route» category: «Tts announce street names» title */
|
||||
"pref_tts_street_names_title" = "Annoncer les noms de rue";
|
||||
@@ -250,7 +250,7 @@
|
||||
"pref_tts_street_names_description" = "Quand activé, le nom de la rue ou de la sortie à prendre sera prononcé à haute voix.";
|
||||
|
||||
/* Settings «Route» category: «Tts language» title */
|
||||
"pref_tts_language_title" = "Langue des annonces vocales";
|
||||
"pref_tts_language_title" = "Langue des instructions vocales";
|
||||
|
||||
/* Settings «Route» category: «Test Voice Directions» title */
|
||||
"pref_tts_test_voice_title" = "Tester les instructions vocales";
|
||||
@@ -274,7 +274,7 @@
|
||||
"social_matrix" = "Matrix";
|
||||
"social_bluesky" = "Bluesky";
|
||||
"social_pixelfed" = "Pixelfed";
|
||||
"social_email" = "E-Mail";
|
||||
"social_email" = "Courriel";
|
||||
|
||||
/* Text in the editor */
|
||||
"fediverse" = "Mastodon";
|
||||
@@ -304,7 +304,7 @@
|
||||
"panoramax_picture" = "Image Panoramax";
|
||||
|
||||
/* Text in menu */
|
||||
"rate_the_app" = "Évaluer l'appli";
|
||||
"rate_the_app" = "Évaluer l’appli";
|
||||
|
||||
/* Text in menu */
|
||||
"help" = "Aide";
|
||||
@@ -319,7 +319,7 @@
|
||||
"copyright" = "Tous droits réservés";
|
||||
|
||||
/* Text in menu + Button in the main Help dialog */
|
||||
"report_a_bug" = "Signaler un bug";
|
||||
"report_a_bug" = "Signaler un bogue";
|
||||
|
||||
/* Button in the About screen */
|
||||
"report_incorrect_map_bug" = "Signaler ou corriger des données cartographiques incorrectes";
|
||||
@@ -328,19 +328,19 @@
|
||||
"volunteer" = "Contribuer à CoMaps";
|
||||
|
||||
/* "Social media" section header in the About screen */
|
||||
"follow_us" = "Rentrez en contact avec nous";
|
||||
"follow_us" = "Rentrons en contact";
|
||||
|
||||
/* Alert text */
|
||||
"email_error_body" = "Le client de courriel n'a pas été configuré. Veuillez le configurer ou nous contacter à %@";
|
||||
"email_error_body" = "Le client de courriel n’a pas été configuré. Veuillez le configurer ou nous contacter à %@";
|
||||
|
||||
/* Alert title */
|
||||
"email_error_title" = "Erreur d'envoi de courriel";
|
||||
"email_error_title" = "Erreur d’envoi de courriel";
|
||||
|
||||
/* Settings item title */
|
||||
"pref_calibration_title" = "Étalonnage de la boussole";
|
||||
|
||||
/* Toast text when user hides UI with a long tap anywhere on the map */
|
||||
"long_tap_toast" = "Appuyez à nouveau longuement sur la carte pour voir l'interface";
|
||||
"long_tap_toast" = "Appuyez à nouveau longuement sur la carte pour voir l’interface";
|
||||
|
||||
/* Update all button text */
|
||||
"downloader_update_all_button" = "Tout mettre à jour";
|
||||
@@ -352,26 +352,26 @@
|
||||
"downloader_available_maps" = "Disponible";
|
||||
|
||||
/* Country queued for download */
|
||||
"downloader_queued" = "En file d'attente";
|
||||
"downloader_queued" = "En file d’attente";
|
||||
"downloader_near_me_subtitle" = "Près de moi";
|
||||
|
||||
/* In maps downloader and country place page shows how many maps are downloaded / to download, e.g. "Maps: 3 of 10" */
|
||||
"downloader_status_maps" = "Cartes";
|
||||
"downloader_download_all_button" = "Tout télécharger";
|
||||
"downloader_downloading" = "Téléchargement en cours :";
|
||||
"downloader_downloading" = "Téléchargement en cours :";
|
||||
"downloader_search_results" = "Trouvé";
|
||||
|
||||
/* Status of outdated country in the list */
|
||||
"downloader_status_outdated" = "Mettre à jour";
|
||||
|
||||
/* Status of failed country in the list */
|
||||
"downloader_status_failed" = "Echec";
|
||||
"downloader_status_failed" = "Échec";
|
||||
|
||||
/* Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode */
|
||||
"downloader_delete_map_while_routing_dialog" = "Veuillez arrêter la navigation pour supprimer la carte.";
|
||||
|
||||
/* PointsInDifferentMWM */
|
||||
"routing_failed_cross_mwm_building" = "Les itinéraires ne peuvent être créés que s'ils sont entièrement contenus dans la carte d'une seule région.";
|
||||
"routing_failed_cross_mwm_building" = "Les itinéraires ne peuvent être créés que s’ils sont entièrement contenus dans la carte d’une seule région.";
|
||||
|
||||
/* Context menu item for downloader. */
|
||||
"downloader_download_map" = "Télécharger la carte";
|
||||
@@ -386,11 +386,11 @@
|
||||
"routing_download_maps_along" = "Téléchargez toutes les cartes le long de votre itinéraire";
|
||||
|
||||
/* Text for routing error dialog */
|
||||
"routing_requires_all_map" = "La création d'un itinéraire nécessite que toutes les cartes de votre localisation vers votre destination soient téléchargées et actualisées.";
|
||||
"routing_requires_all_map" = "La création d’un itinéraire nécessite que toutes les cartes de votre localisation vers votre destination soient téléchargées et actualisées.";
|
||||
|
||||
/* bookmark button text */
|
||||
"bookmark" = "signet";
|
||||
"save" = "Sauvegarder";
|
||||
"save" = "Enregistrer";
|
||||
"create" = "créer";
|
||||
|
||||
/* red color */
|
||||
@@ -440,33 +440,33 @@
|
||||
|
||||
/* blue gray color */
|
||||
"blue_gray" = "Gris-bleu";
|
||||
"dialog_routing_disclaimer_title" = "Lorsque vous suivez l'itinéraire, gardez à l'esprit les points suivants :";
|
||||
"dialog_routing_disclaimer_priority" = "— Les conditions de circulation, le code de la route et les panneaux de signalisation ont la priorité sur les conseils de navigation ;";
|
||||
"dialog_routing_disclaimer_precision" = "— La carte peut être erronée et l'itinéraire proposé n'est pas forcément optimal pour arriver à destination ;";
|
||||
"dialog_routing_disclaimer_recommendations" = "— L'itinéraire proposé doit être considéré comme une simple recommandation ;";
|
||||
"dialog_routing_disclaimer_borders" = "— Faites attention à proximité des zones frontalières : les itinéraires générés par l'application peuvent parfois franchir les frontières entre états dans des zones interdites ;";
|
||||
"dialog_routing_disclaimer_beware" = "Restez vigilants et soyez prudents sur la route !";
|
||||
"dialog_routing_disclaimer_title" = "Lorsque vous suivez l’itinéraire, gardez à l’esprit les points suivants :";
|
||||
"dialog_routing_disclaimer_priority" = "— Les conditions de circulation, le code de la route et les panneaux de signalisation ont la priorité sur les conseils de navigation ;";
|
||||
"dialog_routing_disclaimer_precision" = "— La carte peut être erronée et l’itinéraire proposé n’est pas forcément optimal pour arriver à destination ;";
|
||||
"dialog_routing_disclaimer_recommendations" = "— L’itinéraire proposé doit être considéré comme une simple recommandation ;";
|
||||
"dialog_routing_disclaimer_borders" = "— Faites attention à proximité des zones frontalières : les itinéraires calculés par l’application peuvent emprunter des zones interdites.";
|
||||
"dialog_routing_disclaimer_beware" = "Restez vigilant(e)s et soyez prudent(e)s sur la route !";
|
||||
"dialog_routing_check_gps" = "Vérifiez le signal GPS";
|
||||
"dialog_routing_error_location_not_found" = "Impossible de créer l'itinéraire. Les coordonnées GPS actuelles n'ont pas pu être déterminées.";
|
||||
"dialog_routing_error_location_not_found" = "Impossible de créer l’itinéraire. Les coordonnées GPS actuelles n’ont pas pu être déterminées.";
|
||||
"dialog_routing_location_turn_wifi" = "Vérifiez le signal GPS. Activez le Wi-Fi pour améliorer la précision de votre localisation.";
|
||||
"dialog_routing_location_turn_on" = "Activez les services de localisation";
|
||||
"dialog_routing_location_unknown_turn_on" = "Impossible de déterminer les coordonnées GPS actuelles. Activez les services de localisation pour calculer l'itinéraire.";
|
||||
"dialog_routing_location_unknown_turn_on" = "Impossible de déterminer les coordonnées GPS actuelles. Activez les services de localisation pour calculer l’itinéraire.";
|
||||
"dialog_routing_download_files" = "Téléchargez les fichiers requis";
|
||||
"dialog_routing_download_and_update_all" = "Téléchargez et mettez à jour les informations de carte et d'itinéraire de votre trajet pour calculer l'itinéraire.";
|
||||
"dialog_routing_unable_locate_route" = "Impossible de localiser l'itinéraire";
|
||||
"dialog_routing_download_and_update_all" = "Téléchargez et mettez à jour les informations de carte et d’itinéraire de votre trajet pour calculer l’itinéraire.";
|
||||
"dialog_routing_unable_locate_route" = "Impossible de localiser l’itinéraire";
|
||||
"dialog_routing_change_start_or_end" = "Veuillez ajuster votre point de départ ou votre destination.";
|
||||
"dialog_routing_change_start" = "Modifiez votre point de départ";
|
||||
"dialog_routing_start_not_determined" = "Impossible de localiser le point de départ. L'itinéraire n'a pas pu être créé.";
|
||||
"dialog_routing_select_closer_start" = "Choisissez un point de départ à proximité d'une route.";
|
||||
"dialog_routing_start_not_determined" = "Impossible de localiser le point de départ. L’itinéraire n’a pas pu être créé.";
|
||||
"dialog_routing_select_closer_start" = "Choisissez un point de départ à proximité d’une route.";
|
||||
"dialog_routing_change_end" = "Ajustez la destination";
|
||||
"dialog_routing_end_not_determined" = "Impossible de localiser la destination. L'itinéraire n'a pas pu être créé.";
|
||||
"dialog_routing_select_closer_end" = "Choisissez un lieu de destination à proximité d'une route.";
|
||||
"dialog_routing_end_not_determined" = "Impossible de localiser la destination. L’itinéraire n’a pas pu être créé.";
|
||||
"dialog_routing_select_closer_end" = "Choisissez un lieu de destination à proximité d’une route.";
|
||||
"dialog_routing_change_intermediate" = "Impossible de localiser le point intermédiaire.";
|
||||
"dialog_routing_intermediate_not_determined" = "Veuillez modifier votre point intermédiaire";
|
||||
"dialog_routing_system_error" = "Erreur système";
|
||||
"dialog_routing_application_error" = "Impossible de créer l'itinéraire à cause d'une erreur dans l'application.";
|
||||
"dialog_routing_application_error" = "Impossible de créer l’itinéraire à cause d’une erreur dans l’application.";
|
||||
"dialog_routing_try_again" = "Veuillez réessayer";
|
||||
"dialog_routing_download_and_build_cross_route" = "Voulez-vous télécharger la carte et créer un itinéraire plus direct s'étendant sur plus d'une carte ?";
|
||||
"dialog_routing_download_and_build_cross_route" = "Voulez-vous télécharger la carte et créer un itinéraire plus direct s’étendant sur plus d’une carte ?";
|
||||
"dialog_routing_download_cross_route" = "Téléchargez des cartes supplémentaires pour calculer un meilleur itinéraire sortant des limites de la carte courante.";
|
||||
|
||||
/* «Show» context menu */
|
||||
@@ -476,10 +476,10 @@
|
||||
"hide" = "Masquer";
|
||||
|
||||
/* Failed planning route message in navigation view */
|
||||
"routing_planning_error" = "La planification de l'itinéraire a échoué";
|
||||
"routing_planning_error" = "La planification de l’itinéraire a échoué";
|
||||
|
||||
/* Arrive routing message in navigation view */
|
||||
"routing_arrive" = "Arrivée : %@";
|
||||
"routing_arrive" = "Arrivée : %@";
|
||||
|
||||
/* Text for routing::RouterResultCode::FileTooOld dialog. */
|
||||
"dialog_routing_download_and_update_maps" = "Pour créer un trajet, veuillez télécharger et mettre à jour toutes les cartes concernant ce trajet.";
|
||||
@@ -488,10 +488,10 @@
|
||||
"search_not_found" = "Oups, aucun résultat trouvé.";
|
||||
|
||||
/* The message when user did not find anything in the search. */
|
||||
"search_not_found_query" = "Téléchargez la région dans laquelle vous effectuez votre recherche ou essayez d'ajouter le nom d'une ville ou d'un village proche.";
|
||||
"search_not_found_query" = "Téléchargez la région dans laquelle vous effectuez votre recherche ou essayez d’ajouter le nom d’une ville ou d’un village proche.";
|
||||
"search_history_title" = "Historique de recherche";
|
||||
"search_history_text" = "Accédez à vos dernières recherches.";
|
||||
"clear_search" = "Effacer l'historique de recherche";
|
||||
"search_history_text" = "Accéder à vos dernières recherches.";
|
||||
"clear_search" = "Effacer l’historique de recherche";
|
||||
|
||||
/* Place Page link to Wikipedia article (if map object has it). */
|
||||
"read_in_wikipedia" = "Wikipédia";
|
||||
@@ -503,35 +503,35 @@
|
||||
"p2p_from_here" = "Depuis";
|
||||
"p2p_to_here" = "Itinéraire vers";
|
||||
"p2p_only_from_current" = "La navigation est disponible uniquement à partir de votre emplacement actuel.";
|
||||
"p2p_reroute_from_current" = "Souhaitez-vous planifier un itinéraire à partir de votre emplacement actuel ?";
|
||||
"editor_time_add" = "Ajouter un horaire d'ouverture";
|
||||
"editor_time_delete" = "Supprimer un horaire d'ouverture";
|
||||
"p2p_reroute_from_current" = "Souhaitez-vous planifier un itinéraire à partir de votre emplacement actuel ?";
|
||||
"editor_time_add" = "Ajouter un horaire d’ouverture";
|
||||
"editor_time_delete" = "Supprimer un horaire d’ouverture";
|
||||
|
||||
/* Text for allday switch. */
|
||||
"editor_time_allday" = "Toute la journée (24 heures)";
|
||||
"editor_time_open" = "Ouvert";
|
||||
"editor_time_close" = "Fermé";
|
||||
"editor_time_add_closed" = "Ajouter les heures de fermeture";
|
||||
"editor_time_title" = "Heures d'ouverture";
|
||||
"editor_time_title" = "Heures d’ouverture";
|
||||
"editor_time_advanced" = "Mode avancé";
|
||||
"editor_time_simple" = "Mode simplifié";
|
||||
"editor_hours_closed" = "Heures de fermeture";
|
||||
"editor_example_values" = "Exemple de valeurs";
|
||||
"editor_add_select_location" = "Sélectionnez un emplacement";
|
||||
"editor_done_dialog_1" = "Vous avez modifié la carte du monde ! Ne le cachez pas ! Dites-le à vos amis, et modifiez-la ensemble.";
|
||||
"editor_done_dialog_1" = "Vous avez modifié la carte du monde ! Ne le cachez pas ! Dites-le à vos amis, et modifiez-la ensemble.";
|
||||
"share_with_friends" = "Partagez avec vos amis";
|
||||
"editor_report_problem_send_button" = "Envoyer";
|
||||
"autodownload" = "Téléchargement automatique des cartes";
|
||||
|
||||
/* Place Page opening hours text */
|
||||
"closed_now" = "Fermé actuellement";
|
||||
"closed_now" = "Actuellement fermé";
|
||||
|
||||
/* Place Page opening hours text */
|
||||
"daily" = "Quotidien";
|
||||
"twentyfour_seven" = "24/24 et 7/7";
|
||||
"day_off_today" = "Fermé aujourd'hui";
|
||||
"day_off_today" = "Fermé aujourd’hui";
|
||||
"day_off" = "Fermé";
|
||||
"today" = "Aujourd'hui";
|
||||
"today" = "Aujourd’hui";
|
||||
"opens_tomorrow_at" = "Ouvre demain à %@";
|
||||
"opens_dayoftheweek_at" = "Ouvre le %1$@ à %2$@";
|
||||
"opens_at" = "Ouvre à %@";
|
||||
@@ -539,25 +539,25 @@
|
||||
"closes_at" = "Ferme à %@";
|
||||
"closes_in" = "Fermé dans %@";
|
||||
"closed" = "Fermé";
|
||||
"add_opening_hours" = "Ajouter les heures d'ouverture";
|
||||
"add_opening_hours" = "Ajouter les heures d’ouverture";
|
||||
|
||||
/* OpenStreetMap */
|
||||
"osm_mapdata" = "Données cartographiques d'OpenStreetMap";
|
||||
"osm_mapdata_explanation %@" = "Données cartographiques créées par la communauté en date du *%@*. Pour en savoir plus sur la façon de modifier et de mettre à jour la carte, consulte le site [OpenStreetMap.org](https://openstreetmap.org).";
|
||||
"osm_mapdata" = "Données cartographiques d’OpenStreetMap";
|
||||
"osm_mapdata_explanation %@" = "Données cartographiques créées par la communauté en date du *%@*. Pour en savoir plus sur la façon de modifier et de mettre à jour la carte, consultez le site [OpenStreetMap.org](https://openstreetmap.org).";
|
||||
"osm_more_about" = "En savoir plus sur OpenStreetMap";
|
||||
"osm_more_about_url" = "https://wiki.openstreetmap.org/wiki/FR:À_propos_d’OpenStreetMap";
|
||||
|
||||
/* OpenStreetMap Profile */
|
||||
"osm_profile" = "Profil OpenStreetMap";
|
||||
"osm_profile_promt" = "Créez un compte OpenStreetMap ou connectez-vous pour publier vos modifications de cartes dans le monde entier.";
|
||||
"osm_profile_explanation" = "[OpenStreetMap.org](https://openstreetmap.org) (OSM) est un projet communautaire visant à créer une carte libre et ouverte. C'est la principale source de données cartographiques d'CoMaps et son fonctionnement est similaire à celui de Wikipédia. Vous pouvez ajouter ou modifier des lieux et ils deviennent accessibles à des millions d'utilisateurs dans le monde entier. \nRejoignez la communauté et aidez-nous à créer une meilleure carte pour tout le monde !";
|
||||
"osm_profile_promt" = "Créez un compte OpenStreetMap ou connectez-vous pour publier vos modifications de la carte dans le monde entier.";
|
||||
"osm_profile_explanation" = "[OpenStreetMap.org](https://openstreetmap.org) (OSM) est un projet communautaire visant à créer une carte libre et ouverte. C’est la principale source de données cartographiques de CoMaps et son fonctionnement est similaire à celui de Wikipédia. Vous pouvez ajouter ou modifier des lieux et ils deviennent accessibles à des millions d’utilisateurs dans le monde entier. \nRejoignez la communauté et aidez-nous à créer une meilleure carte pour tout le monde !";
|
||||
"osm_profile_login" = "Se connecter au compte OpenStreetMap";
|
||||
"osm_profile_reauthorize_promt" = "Le compte OpenStreetMap a été déconnecté de cette application";
|
||||
"osm_profile_reauthorize" = "Se reconnecter à OpenStreetMap";
|
||||
"osm_profile_remove_promt" = "Si vous ne pouvez pas ou ne voulez pas reconnecter votre compte, vous pouvez simplement le supprimer de cette application";
|
||||
"osm_profile_remove" = "Supprimer la mémoire du compte OpenStreetMap de cette application";
|
||||
"osm_profile_register_promt" = "Vous n'avez pas de compte sur OpenStreetMap ?";
|
||||
"osm_profile_register" = "S'inscrire sur OpenStreetMap";
|
||||
"osm_profile_register_promt" = "Vous n’avez pas de compte sur OpenStreetMap ?";
|
||||
"osm_profile_register" = "S’inscrire sur OpenStreetMap";
|
||||
"osm_profile_verfied_changes" = "Modifications vérifiées";
|
||||
"osm_profile_logout" = "Se déconnecter du compte OpenStreetMap";
|
||||
"osm_profile_delete" = "Supprimer le compte OpenStreetMap";
|
||||
@@ -582,7 +582,7 @@
|
||||
"select_cuisine" = "Sélectionner un type de cuisine";
|
||||
|
||||
/* login text field */
|
||||
"email_or_username" = "Email ou nom d'utilisateur";
|
||||
"email_or_username" = "Courriel ou nom d’utilisateur";
|
||||
"phone" = "Numéro de téléphone";
|
||||
"level" = "Étage";
|
||||
"please_note" = "À noter";
|
||||
@@ -592,9 +592,9 @@
|
||||
"migration_download_error_dialog" = "Erreur de téléchargement";
|
||||
"common_check_internet_connection_dialog" = "Veuillez vérifier que votre appareil est bien connecté à Internet.";
|
||||
"downloader_no_space_title" = "Espace insuffisant";
|
||||
"downloader_no_space_message" = "Veuillez supprimer les données inutiles";
|
||||
"downloader_no_space_message" = "Veuillez supprimer des données inutiles";
|
||||
"editor_profile_changes" = "Modifications vérifiées";
|
||||
"editor_focus_map_on_location" = "Déplacez la carte pour placer la croix à l'emplacement du lieu ou de l'entreprise.";
|
||||
"editor_focus_map_on_location" = "Déplacez la carte pour positionner la croix à l’emplacement du lieu ou de l’entreprise.";
|
||||
"editor_add_select_category" = "Sélectionner une catégorie";
|
||||
"editor_add_select_category_popular_subtitle" = "Populaire";
|
||||
"editor_add_select_category_all_subtitle" = "Toutes les catégories";
|
||||
@@ -605,23 +605,23 @@
|
||||
/* The second part of the editor_edit_place_name_hint to explain that name should be entered in a local language, see https://wiki.openstreetmap.org/wiki/Key:name */
|
||||
"editor_default_language_hint" = "Comme écrit dans la langue locale";
|
||||
"editor_edit_place_category_title" = "Catégorie";
|
||||
"whatsnew_editor_message_1" = "Ajoutez de nouveaux lieux sur la carte et modifiez les lieux existants directement depuis l'appli.";
|
||||
"dialog_incorrect_feature_position" = "Modifier l'emplacement";
|
||||
"whatsnew_editor_message_1" = "Ajoutez de nouveaux lieux sur la carte et modifiez les lieux existants directement depuis l’appli.";
|
||||
"dialog_incorrect_feature_position" = "Modifier l’emplacement";
|
||||
"message_invalid_feature_position" = "Aucun objet ne peut être localisé ici";
|
||||
|
||||
/* Error dialog no space */
|
||||
"migration_no_space_message" = "Pour télécharger, vous avez besoin de plus d'espace. Veuillez supprimer les données non nécessaires.";
|
||||
"editor_sharing_title" = "J'ai amélioré les cartes de CoMaps";
|
||||
"migration_no_space_message" = "Pour télécharger, vous avez besoin de plus d’espace. Veuillez supprimer des données non nécessaires.";
|
||||
"editor_sharing_title" = "J’ai amélioré les cartes de CoMaps";
|
||||
|
||||
/* Downloaded 10 **of** 20 <- it is that "of" */
|
||||
"downloader_of" = "%1$d de %2$d";
|
||||
"download_over_mobile_header" = "Télécharger avec une connexion réseau cellulaire ?";
|
||||
"download_over_mobile_header" = "Télécharger avec une connexion réseau cellulaire ?";
|
||||
"download_over_mobile_message" = "Cela pourrait coûter cher avec certains abonnements ou si vous êtes en déplacement.";
|
||||
"error_enter_correct_house_number" = "Saisir un numéro de bâtiment valide";
|
||||
"editor_storey_number" = "Nombre d'étages (max %d)";
|
||||
"editor_storey_number" = "Nombre d’étages (max %d)";
|
||||
|
||||
/* Error message in Editor when a user tries to set the number of floors for a building higher than %d floors */
|
||||
"error_enter_correct_storey_number" = "Le nombre d'étages ne doit pas dépasser %d";
|
||||
"error_enter_correct_storey_number" = "Le nombre d’étages ne doit pas dépasser %d";
|
||||
"editor_zip_code" = "Code postal";
|
||||
"error_enter_correct_zip_code" = "Saisissez un code postal valide";
|
||||
|
||||
@@ -637,23 +637,23 @@
|
||||
|
||||
/* To indicate the operator of ATMs, bicycle rentals, electric vehicle charging stations... */
|
||||
"operator" = "Opérateur : %@";
|
||||
"editor_category_unsuitable_title" = "Vous ne trouvez pas de catégorie appropriée ?";
|
||||
"editor_category_unsuitable_text" = "CoMaps ne permet d'ajouter que des catégories de points simples, c'est-à-dire pas de villes, de routes, de lacs, de contours de bâtiments, etc. Merci d'ajouter ces catégories directement sur <a href=\"https://www.openstreetmap.org\">OpenStreetMap.org</a>. Consultez notre <a href=\"https://www.comaps.app/support/advanced-map-editing/\">guide</a> pour obtenir des instructions détaillées étape par étape.";
|
||||
"downloader_no_downloaded_maps_title" = "Vous n'avez téléchargé aucune carte";
|
||||
"editor_category_unsuitable_title" = "Vous ne trouvez pas de catégorie appropriée ?";
|
||||
"editor_category_unsuitable_text" = "CoMaps ne permet d’ajouter que des catégories de points simples, c’est-à-dire pas de villes, de routes, de lacs, de contours de bâtiments, etc. Merci d’ajouter ces catégories directement sur <a href=\"https://www.openstreetmap.org\">OpenStreetMap.org</a>. Consultez notre <a href=\"https://www.comaps.app/support/advanced-map-editing/\">guide</a> pour obtenir des instructions détaillées étape par étape.";
|
||||
"downloader_no_downloaded_maps_title" = "Vous n’avez téléchargé aucune carte";
|
||||
"downloader_no_downloaded_maps_message" = "Téléchargez des cartes pour rechercher un lieu et utiliser la navigation hors ligne";
|
||||
"current_location_unknown_error_title" = "L'emplacement actuel est inconnu.";
|
||||
"current_location_unknown_error_title" = "L’emplacement actuel est inconnu.";
|
||||
"current_location_unknown_error_message" = "Une erreur est survenue lors de la recherche de votre emplacement. Vérifiez que le périphérique fonctionne correctement et réessayez ultérieurement";
|
||||
"location_services_disabled_header" = "L'identification de la localisation est désactivée";
|
||||
"location_services_disabled_message" = "Permettre l'accès à la géolocalisation dans les paramètres de l'appareil";
|
||||
"location_services_disabled_header" = "L’identification de la localisation est désactivée";
|
||||
"location_services_disabled_message" = "Permettre l’accès à la géolocalisation dans les paramètres de l’appareil";
|
||||
"location_services_disabled_1" = "1. Ouvrir les paramètres";
|
||||
"location_services_disabled_2" = "2. Appuyer sur Localisation";
|
||||
|
||||
/* iOS Dialog for the case when the location permission is not granted; you might find the exact wording for your language here: https://support.apple.com/en-us/102647 (replace 'en-us' in URL with your language/region) */
|
||||
"location_services_disabled_3" = "3. Sélectionner tout en utilisant l'app";
|
||||
"location_services_disabled_on_device_2" = "2. Sélectionne Privacy";
|
||||
"location_services_disabled_on_device_3" = "3. Sélectionne les services de localisation";
|
||||
"location_services_disabled_on_device_4" = "4. Active les services de localisation";
|
||||
"location_services_disabled_on_device_additional_message" = "Ou continuer à utiliser CoMaps sans Location";
|
||||
"location_services_disabled_3" = "3. Sélectionner tout en utilisant l’app";
|
||||
"location_services_disabled_on_device_2" = "2. Sélectionner Confidentialité";
|
||||
"location_services_disabled_on_device_3" = "3. Sélectionner les services de localisation";
|
||||
"location_services_disabled_on_device_4" = "4. Activer les services de localisation";
|
||||
"location_services_disabled_on_device_additional_message" = "Ou continuer à utiliser CoMaps sans localisation";
|
||||
|
||||
/* abbreviation for meters */
|
||||
"m" = "m";
|
||||
@@ -676,17 +676,17 @@
|
||||
"placepage_more_button" = "Plus";
|
||||
"book_button" = "Réserver";
|
||||
"placepage_call_button" = "Appeler";
|
||||
"placepage_edit_bookmark_button" = "Éditer le signet";
|
||||
"placepage_edit_bookmark_button" = "Modifier le signet";
|
||||
"placepage_bookmark_name_hint" = "Nom du signet";
|
||||
"placepage_personal_notes_hint" = "Notes personnelles (texte ou html)";
|
||||
"placepage_delete_bookmark_button" = "Supprimer le signet";
|
||||
"editor_edits_sent_message" = "Ta note sera envoyée à OpenStreetMap";
|
||||
"editor_comment_hint" = "Commentaire…";
|
||||
"editor_reset_edits_message" = "Abandonner toutes les modifications locales ?";
|
||||
"editor_reset_edits_message" = "Abandonner toutes les modifications locales ?";
|
||||
"editor_reset_edits_button" = "Ignorer";
|
||||
"editor_remove_place_message" = "Supprimer le lieu ajouté ?";
|
||||
"editor_remove_place_message" = "Supprimer le lieu ajouté ?";
|
||||
"editor_remove_place_button" = "Supprimer";
|
||||
"editor_place_doesnt_exist" = "Ce lieu n'existe pas";
|
||||
"editor_place_doesnt_exist" = "Ce lieu n’existe pas";
|
||||
"text_more_button" = "…plus";
|
||||
|
||||
/* Phone number error message */
|
||||
@@ -697,15 +697,15 @@
|
||||
"placepage_add_place_button" = "Ajouter un lieu sur OpenStreetMap";
|
||||
|
||||
/* Displayed when saving some edits to the map to warn against publishing personal data */
|
||||
"editor_share_to_all_dialog_title" = "Souhaitez-vous l’envoyer à tous les utilisateurs ?";
|
||||
"editor_share_to_all_dialog_title" = "Souhaitez-vous l’envoyer à tous les utilisateurs ?";
|
||||
|
||||
/* Dialog before publishing the modifications to the public map. */
|
||||
"editor_share_to_all_dialog_message_1" = "Assurez-vous de n’avoir pas saisi de données personnelles.";
|
||||
"editor_share_to_all_dialog_message_2" = "Les contributeurs d'OpenStreetMap vérifieront vos modifications et vous contacteront s'ils ont des questions.";
|
||||
"editor_share_to_all_dialog_message_2" = "Les contributeurs d’OpenStreetMap vérifieront vos modifications et vous contacteront s’ils ont des questions.";
|
||||
"navigation_stop_button" = "Stop";
|
||||
|
||||
/* iOS dialog for the case when recent track recording is on and the app comes back from background */
|
||||
"recent_track_background_dialog_title" = "Souhaitez-vous désactiver l'enregistrement de vos itinéraires récents ?";
|
||||
"recent_track_background_dialog_title" = "Souhaitez-vous désactiver l’enregistrement de vos itinéraires récents ?";
|
||||
"off_recent_track_background_button" = "Désactiver";
|
||||
|
||||
/* For sharing via SMS and so on */
|
||||
@@ -718,39 +718,39 @@
|
||||
|
||||
/* For the first routing */
|
||||
"decline" = "Refuser";
|
||||
"mobile_data_dialog" = "Utiliser l'Internet mobile pour afficher les informations détaillées ?";
|
||||
"mobile_data_dialog" = "Utiliser l’Internet mobile pour afficher les informations détaillées ?";
|
||||
"mobile_data_option_always" = "Toujours utiliser";
|
||||
"mobile_data_option_today" = "Aujourd'hui seulement";
|
||||
"mobile_data_option_not_today" = "Ne pas utiliser aujourd'hui";
|
||||
"mobile_data_option_not_today" = "Ne pas utiliser aujourd’hui";
|
||||
"mobile_data" = "Internet mobile";
|
||||
|
||||
/* NOTE to translators: please synchronize your translation with the English one. */
|
||||
"mobile_data_description" = "L'Internet mobile est nécessaire pour afficher des informations détaillées sur les lieux, telles que les photos, les prix et les avis.";
|
||||
"mobile_data_description" = "L’Internet mobile est nécessaire pour afficher des informations détaillées sur les lieux, telles que les photos, les prix et les avis.";
|
||||
"mobile_data_option_never" = "Ne jamais utiliser";
|
||||
"mobile_data_option_ask" = "Toujours demander";
|
||||
"traffic_update_maps_text" = "Pour afficher les données de circulation, les cartes doivent être actualisées.";
|
||||
"big_font" = "Augmenter la taille de police sur la carte";
|
||||
"big_font" = "Augmenter la taille de la police sur la carte";
|
||||
|
||||
/* "traffic" as in road congestion */
|
||||
"traffic_update_app_message" = "Pour afficher les données de circulation, l'application doit être actualisée.";
|
||||
"traffic_update_app_message" = "Pour afficher les données de circulation, l’application doit être actualisée.";
|
||||
|
||||
/* "traffic" as in "road congestion" */
|
||||
"traffic_data_unavailable" = "Les données de circulation ne sont pas disponibles";
|
||||
"enable_logging" = "Activer le journal";
|
||||
"log_file_size" = "Taille du fichier journal : %@";
|
||||
"transliteration_title" = "Translittératisé en alphabet latin";
|
||||
"enable_logging" = "Activer la journalisation";
|
||||
"log_file_size" = "Taille du fichier journal : %@";
|
||||
"transliteration_title" = "Translittéré en alphabet latin";
|
||||
|
||||
/* Subway exits for public transport marks on the map */
|
||||
"core_exit" = "Sortie";
|
||||
|
||||
/* User selected the destination by pressing Route To, but the current position is unknown. User needs to select a starting point of a route using search or by tapping on the map and then pressing "Route From". */
|
||||
"routing_add_start_point" = "Utilise la recherche ou tape sur la carte pour ajouter un point de départ d'itinéraire";
|
||||
"routing_add_start_point" = "Utilisez la recherche ou tapez sur la carte pour ajouter un point de départ d’itinéraire";
|
||||
|
||||
/* User selected the start of a route by pressing Route From. Now the destination of a route should be selected using search or by tapping on the map and then pressing "Route To". */
|
||||
"routing_add_finish_point" = "Utilise la recherche ou tape sur la carte pour ajouter un point de destination";
|
||||
"routing_add_finish_point" = "Utilisez la recherche ou tapez sur la carte pour ajouter un point de destination";
|
||||
"planning_route_manage_route" = "Gérer l’itinéraire";
|
||||
"button_plan" = "Planifier";
|
||||
"placepage_remove_stop" = "Supprimer l'arrêt";
|
||||
"placepage_remove_stop" = "Supprimer l’arrêt";
|
||||
"planning_route_remove_title" = "Faire glisser ici pour supprimer";
|
||||
"placepage_add_stop" = "Ajouter un arrêt";
|
||||
"start_from_my_position" = "Commencer à partir de";
|
||||
@@ -758,7 +758,7 @@
|
||||
/* Title for button when a route was saved. */
|
||||
"saved" = "Enregistré";
|
||||
"core_entrance" = "Entrée";
|
||||
"error_enter_correct_name" = "Veuillez entrer un nom correct";
|
||||
"error_enter_correct_name" = "Veuillez saisir un nom correct";
|
||||
"bookmark_lists" = "Listes";
|
||||
|
||||
/* Do not display all bookmark lists on the map */
|
||||
@@ -772,33 +772,33 @@
|
||||
"downloader_percent" = "%@ (%@ de %@)";
|
||||
"downloader_process" = "Téléchargement de %@…";
|
||||
"downloader_applying" = "Application de %@…";
|
||||
"bookmarks_error_message_share_general" = "Impossible de partager en raison d'une erreur d'application";
|
||||
"bookmarks_error_message_share_general" = "Impossible de partager en raison d’une erreur d’application";
|
||||
"bookmarks_error_title_share_empty" = "Erreur de partage";
|
||||
"bookmarks_error_message_share_empty" = "Impossible de partager une liste vide";
|
||||
"bookmarks_error_message_empty_list_name" = "Veuillez entrer le nom de la liste";
|
||||
"bookmarks_error_message_empty_list_name" = "Veuillez saisir le nom de la liste";
|
||||
"bookmarks_error_title_list_name_already_taken" = "Ce nom est déjà pris";
|
||||
"bookmarks_error_title_list_name_too_long" = "Ce nom est trop long";
|
||||
"profile" = "Profil OpenStreetMap";
|
||||
"bookmarks_detect_title" = "Nouveaux fichiers détectés";
|
||||
"button_convert" = "Convertir";
|
||||
"bookmarks_convert_error_title" = "Erreur";
|
||||
"bookmarks_convert_error_message" = "Certains fichiers n'ont pas été convertis.";
|
||||
"bookmarks_convert_error_message" = "Certains fichiers n’ont pas été convertis.";
|
||||
"restore" = "Restaurer";
|
||||
"privacy_policy" = "Politique de confidentialité";
|
||||
"terms_of_use" = "Conditions d'utilisation";
|
||||
"terms_of_use" = "Conditions d’utilisation";
|
||||
"button_layer_subway" = "Métro";
|
||||
"layers_title" = "Styles et couches de cartes";
|
||||
"subway_data_unavailable" = "La carte du métro n'est pas disponible";
|
||||
"subway_data_unavailable" = "La carte du métro n’est pas disponible";
|
||||
"title_error_downloading_bookmarks" = "Une erreur est survenue";
|
||||
"popular_place" = "Populaire";
|
||||
"export_file" = "Exporter KMZ";
|
||||
"export_file_gpx" = "Exporter GPX";
|
||||
"export_file" = "Exporter en KMZ";
|
||||
"export_file_gpx" = "Exporter en GPX";
|
||||
"delete_list" = "Supprimer la liste";
|
||||
"hide_from_map" = "Masquer sur la carte";
|
||||
"tags_loading_error_subtitle" = "Une erreur s'est produite lors du chargement des tags, veuillez réessayer";
|
||||
"tags_loading_error_subtitle" = "Une erreur s’est produite lors du chargement des tags, veuillez réessayer";
|
||||
"download_button" = "Téléchargez";
|
||||
"speedcams_alert_title" = "Radars de vitesse";
|
||||
"place_description_title" = "Description d'endroit";
|
||||
"place_description_title" = "Description d’endroit";
|
||||
|
||||
/* "Speed cameras" settings menu option (should be short! no more than 47-50 chars) to warn a driver if there is a risk of exceeding the speed limit */
|
||||
"pref_tts_speedcams_auto" = "Avertir en cas de dépassement de la limite de vitesse";
|
||||
@@ -807,17 +807,17 @@
|
||||
"pref_tts_speedcams_always" = "Toujours avertir";
|
||||
|
||||
/* Speed camera settings menu option - Never warn (about speedcams) */
|
||||
"pref_tts_speedcams_never" = "Jamais avertir";
|
||||
"power_managment_title" = "Mode économie d'énergie";
|
||||
"power_managment_description" = "Si le mode d'économie d'énergie est activé, l'application désactive les fonctions consommant de l'énergie en fonction de la charge actuelle du téléphone";
|
||||
"pref_tts_speedcams_never" = "Ne jamais avertir";
|
||||
"power_managment_title" = "Mode économie d’énergie";
|
||||
"power_managment_description" = "Si le mode d’économie d’énergie est activé, l’application désactive les fonctions consommant de l’énergie en fonction de la charge actuelle du téléphone";
|
||||
"power_managment_setting_never" = "Jamais";
|
||||
"power_managment_setting_auto" = "Automatique";
|
||||
"power_managment_setting_manual_max" = "Économie d'énergie maximale";
|
||||
"enable_logging_warning_message" = "Cette option est activée pour l'identification des actions à des fins de diagnostic. Cela aide l’équipe à identifier les problèmes liés à l’application. Activez cette option uniquement à la demande du support CoMaps.";
|
||||
"power_managment_setting_manual_max" = "Économie d’énergie maximale";
|
||||
"enable_logging_warning_message" = "Cette option est activée pour l’identification des actions à des fins de diagnostic. Cela aide l’équipe à identifier les problèmes liés à l’application. Activez cette option uniquement à la demande du support CoMaps.";
|
||||
"driving_options_title" = "Paramètres des itinéraires";
|
||||
|
||||
/* Recommended length for CarPlay and Android Auto is around 25-27 characters */
|
||||
"avoid_tolls" = "Éviter les routes à péage";
|
||||
"avoid_tolls" = "Éviter les routes à péages";
|
||||
|
||||
/* Recommended length for CarPlay and Android Auto is around 25-27 characters */
|
||||
"avoid_unpaved" = "Éviter les routes non pavées";
|
||||
@@ -825,19 +825,19 @@
|
||||
/* Recommended length for CarPlay and Android Auto is around 25-27 characters */
|
||||
"avoid_ferry" = "Éviter les ferries";
|
||||
"avoid_motorways" = "Éviter les autoroutes";
|
||||
"unable_to_calc_alert_title" = "Impossible de calculer l'itinéraire";
|
||||
"unable_to_calc_alert_subtitle" = "Malheureusement, nous n'avons pas pu créer l'itinéraire avec les options sélectionnées. Modifiez les paramètres et réessayez.";
|
||||
"unable_to_calc_alert_title" = "Impossible de calculer l’itinéraire";
|
||||
"unable_to_calc_alert_subtitle" = "Malheureusement aucun itinéraire n’a pu être calculé soit en raison d’un manque de données OpenStreetMap soit à cause des options de routage choisies. Modifiez les paramètres de routage et réessayez.";
|
||||
"define_to_avoid_btn" = "Définissez les routes à éviter";
|
||||
"change_driving_options_btn" = "Paramètres d'itinéraire activés";
|
||||
"toll_road" = "Route à péage";
|
||||
"change_driving_options_btn" = "Paramètres d’itinéraire activés";
|
||||
"toll_road" = "Route à péages";
|
||||
"unpaved_road" = "Routes non revêtues";
|
||||
"ferry_crossing" = "Traversées en ferry";
|
||||
"trip_start" = "On y va";
|
||||
"pick_destination" = "Point d'arrivée";
|
||||
"pick_destination" = "Point d’arrivée";
|
||||
"follow_my_position" = "Recentrer";
|
||||
"search_results" = "Résultats de la recherche";
|
||||
"then_turn" = "Ensuite";
|
||||
"redirect_route_alert" = "Voulez-vous reconstruire l'itinéraire ?";
|
||||
"redirect_route_alert" = "Voulez-vous reconstruire l’itinéraire ?";
|
||||
|
||||
/* A generic "Yes" button in dialogs */
|
||||
"yes" = "Oui";
|
||||
@@ -852,26 +852,26 @@
|
||||
"no_available" = "Non";
|
||||
|
||||
/* To indicate the capacity of car parkings, bicycle parkings, electric vehicle charging stations... */
|
||||
"capacity" = "Capacité : %@";
|
||||
"capacity" = "Capacité : %@";
|
||||
|
||||
/* To indicate the network of ATMs, bicycle rentals, electric vehicle charging stations... */
|
||||
"network" = "Réseau : %@";
|
||||
"trip_finished" = "Vous êtes arrivé !";
|
||||
"network" = "Réseau : %@";
|
||||
"trip_finished" = "Vous êtes arrivé(e) !";
|
||||
"keyboard_availability_alert" = "Clavier non disponible en conduisant";
|
||||
"dialog_routing_change_start_carplay" = "Impossible de créer un itinéraire à partir de votre position actuelle";
|
||||
"dialog_routing_change_end_carplay" = "Impossible de créer un itinéraire jusqu'au point final. Choisissez-en un autre";
|
||||
"dialog_routing_change_end_carplay" = "Impossible de créer un itinéraire jusqu’au point final. Choisissez-en un autre";
|
||||
"dialog_routing_check_gps_carplay" = "Pas de signal GPS. Veuillez vous déplacer vers une zone dégagée";
|
||||
"dialog_routing_unable_locate_route_carplay" = "Impossible de calculer l'itinéraire. Sélectionnez d'autres points d'itinéraire";
|
||||
"dialog_routing_download_files_carplay" = "Pour créer l'itinéraire, téléchargez les cartes manquantes sur votre appareil";
|
||||
"dialog_routing_system_error_carplay" = "Une erreur est survenue. Redémarrez l'application";
|
||||
"dialog_routing_rebuild_from_current_location_carplay" = "L'itinéraire sera reconstruit à partir de votre position actuelle";
|
||||
"dialog_routing_rebuild_for_vehicle_carplay" = "L'itinéraire sera changé en mode Voiture";
|
||||
"dialog_routing_unable_locate_route_carplay" = "Impossible de calculer l’itinéraire. Sélectionnez d’autres points d’itinéraire";
|
||||
"dialog_routing_download_files_carplay" = "Pour créer l’itinéraire, téléchargez les cartes manquantes sur votre appareil";
|
||||
"dialog_routing_system_error_carplay" = "Une erreur est survenue. Redémarrez l’application";
|
||||
"dialog_routing_rebuild_from_current_location_carplay" = "L’itinéraire sera reconstruit à partir de votre position actuelle";
|
||||
"dialog_routing_rebuild_for_vehicle_carplay" = "L’itinéraire sera changé en mode Voiture";
|
||||
"not_all_shown_bookmarks_carplay" = "Tous les signets ne sont pas affichés";
|
||||
"switch_to_phone_bookmarks_carplay" = "Passe au téléphone pour voir tous les signets";
|
||||
"switch_to_phone_bookmarks_carplay" = "Basculer sur le téléphone pour voir tous les signets";
|
||||
"ok" = "Ok";
|
||||
"speedcams_alert_title_carplay_1" = "Radars de vitesse";
|
||||
"speedcams_alert_title_carplay_2" = "Avertissements radars de vitesse";
|
||||
"download_map_carplay" = "Téléchargez des cartes dans l'application CoMaps sur votre appareil";
|
||||
"speedcams_alert_title_carplay_2" = "Avertissements des radars de vitesse";
|
||||
"download_map_carplay" = "Téléchargez des cartes dans l’application CoMaps sur votre appareil";
|
||||
"carplay_roundabout_exit" = "%@ sortie";
|
||||
|
||||
/* max. 10 symbols, both iOS and Android */
|
||||
@@ -881,12 +881,12 @@
|
||||
"sort_default" = "Trier par défaut";
|
||||
"sort_type" = "Trier par type";
|
||||
"sort_distance" = "Trier par distance";
|
||||
"sort_date" = "Classer par date";
|
||||
"sort_date" = "Trier par date";
|
||||
"sort_name" = "Trier par nom";
|
||||
"week_ago_sorttype" = "Il y a une semaine";
|
||||
"month_ago_sorttype" = "Il y a un mois";
|
||||
"moremonth_ago_sorttype" = "Il y a plus d'un mois";
|
||||
"moreyear_ago_sorttype" = "Il y a plus d'un an";
|
||||
"moremonth_ago_sorttype" = "Il y a plus d’un mois";
|
||||
"moreyear_ago_sorttype" = "Il y a plus d’un an";
|
||||
"near_me_sorttype" = "Près de moi";
|
||||
"others_sorttype" = "Autres";
|
||||
"food_places" = "Aliments";
|
||||
@@ -905,20 +905,20 @@
|
||||
"medicine" = "Médicament";
|
||||
"search_in_the_list" = "Chercher dans la liste";
|
||||
"religious_places" = "Lieux saints";
|
||||
"transit_not_found" = "La navigation en métro n'est pas encore disponible dans la région";
|
||||
"transit_not_found" = "La navigation en métro n’est pas encore disponible dans la région";
|
||||
"dialog_pedestrian_route_is_long_header" = "Itinéraire de métro non trouvé";
|
||||
"dialog_pedestrian_route_is_long_message" = "Choisissez un point de départ ou d'arrivée plus proche d'une station de métro";
|
||||
"dialog_pedestrian_route_is_long_message" = "Choisissez un point de départ ou d’arrivée plus proche d’une station de métro";
|
||||
"button_layer_isolines" = "Terrain";
|
||||
"isolines_activation_error_dialog" = "Pour activer et utiliser la couche topographique, mettez à jour ou téléchargez la carte de l'endroit désiré";
|
||||
"isolines_location_error_dialog" = "Les lignes d'élévation ne sont pas encore disponibles dans cette région";
|
||||
"isolines_activation_error_dialog" = "Pour activer et utiliser la couche topographique, mettez à jour ou téléchargez la carte de l’endroit désiré";
|
||||
"isolines_location_error_dialog" = "Les lignes d’élévation ne sont pas encore disponibles dans cette région";
|
||||
"elevation_profile_diff_level" = "Niveau de difficulté";
|
||||
"elevation_profile_diff_level_easy" = "Facile";
|
||||
"elevation_profile_diff_level_moderate" = "Moyen";
|
||||
"elevation_profile_diff_level_hard" = "Difficile";
|
||||
"elevation_profile_ascent" = "Montée";
|
||||
"elevation_profile_descent" = "Descente";
|
||||
"elevation_profile_min_elevation" = "Min. élévation";
|
||||
"elevation_profile_max_elevation" = "Max. élévation";
|
||||
"elevation_profile_min_elevation" = "Élévation min.";
|
||||
"elevation_profile_max_elevation" = "Élévation max.";
|
||||
"isolines_toast_zooms_1_10" = "Zoomez pour voir les courbes de niveaux";
|
||||
"downloader_updating_ios" = "Misе à jour";
|
||||
"downloader_loading_ios" = "Téléchargement";
|
||||
@@ -927,7 +927,7 @@
|
||||
"whats_new_auto_update_title" = "Mettez à jour vos cartes téléchargées";
|
||||
|
||||
/* Autoupdate dialog on start */
|
||||
"whats_new_auto_update_message" = "Actualiser les cartes permet d'actualiser également les informations sur les objets";
|
||||
"whats_new_auto_update_message" = "Actualiser les cartes permet d’actualiser également les informations sur les objets";
|
||||
|
||||
/* Autoupdate dialog on start */
|
||||
"whats_new_auto_update_button_size" = "Mettre à jour (%@)";
|
||||
@@ -936,10 +936,10 @@
|
||||
"whats_new_auto_update_button_later" = "Mettre à jour manuellement plus tard";
|
||||
|
||||
/* Delete track button on track edit screen */
|
||||
"placepage_delete_track_button" = "Supprimer la route";
|
||||
"placepage_delete_track_button" = "Supprimer la trace";
|
||||
|
||||
/* The track deletion confirmaion alert message. */
|
||||
"placepage_delete_track_confirmation_alert_message" = "Êtes-vous sûr de vouloir supprimer ce track ?";
|
||||
"placepage_delete_track_confirmation_alert_message" = "Voulez-vous vraiment supprimer cette trace ?";
|
||||
|
||||
/* Placeholder for track name input on track edit screen */
|
||||
"placepage_track_name_hint" = "Nom de la route";
|
||||
@@ -954,19 +954,19 @@
|
||||
"translated_om_site_url" = "https://www.comaps.app/fr/";
|
||||
|
||||
/* App Tip #00 */
|
||||
"app_tip_00" = "Merci d'utiliser nos cartes créées par la communauté !";
|
||||
"app_tip_00" = "Merci d’utiliser nos cartes créées par la communauté !";
|
||||
|
||||
/* App tip #01 */
|
||||
"app_tip_01" = "Avec vos dons et votre soutien, nous pouvons créer les meilleures cartes du monde !";
|
||||
|
||||
/* App tip #02 */
|
||||
"app_tip_02" = "Aimez-vous notre application ? Veuillez faire un don pour soutenir le développement ! Vous ne l'aimez pas encore ? S'il vous plaît laissez-nous savoir et nous y remédierons !";
|
||||
"app_tip_02" = "Aimez-vous notre application ? Veuillez faire un don pour soutenir le développement ! Vous ne l’aimez pas encore ? S’il vous plaît faites-le-nous savoir et nous y remédierons !";
|
||||
|
||||
/* App tip #03 */
|
||||
"app_tip_03" = "Si vous connaissez un développeur de logiciels, vous pouvez lui demander d'implémenter une fonctionnalité dont vous avez besoin.";
|
||||
"app_tip_03" = "Si vous connaissez un développeur de logiciels, vous pouvez lui demander d’implémenter une fonctionnalité dont vous avez besoin.";
|
||||
|
||||
/* App tip #04 */
|
||||
"app_tip_04" = "Tapez n'importe où sur la carte pour sélectionner quelque chose. Touchez longuement pour masquer et réafficher l'interface.";
|
||||
"app_tip_04" = "Tapez n’importe où sur la carte pour sélectionner quelque chose. Touchez longuement pour masquer ou réafficher l’interface.";
|
||||
|
||||
/* App tip #05 */
|
||||
"app_tip_05" = "Savez-vous que vous pouvez sélectionner votre position actuelle sur la carte ?";
|
||||
@@ -999,10 +999,10 @@
|
||||
"button_layer_outdoor" = "Randonnée";
|
||||
|
||||
/* Bookmark categories screen, button that opens share dialog to export all bookmarks and tracks */
|
||||
"bookmarks_export" = "Exporter tous les signets et toutes les pistes";
|
||||
"bookmarks_export" = "Exporter tous les signets et toutes les traces";
|
||||
|
||||
/* Text for the editing the Track's color button. */
|
||||
"change_color" = "Change de couleur";
|
||||
"change_color" = "Changer de couleur";
|
||||
|
||||
/* Main screen title "Map" displayed in the navigation back button's menu. */
|
||||
"map" = "Carte";
|
||||
@@ -1012,40 +1012,40 @@
|
||||
"website_menu" = "Lien vers le menu";
|
||||
|
||||
/* Message for the bug report alert. */
|
||||
"bugreport_alert_message" = "Veux-tu envoyer un rapport de bogue aux développeurs ?\nNous comptons sur nos utilisateurs, car CoMaps ne recueille pas automatiquement d'informations sur les erreurs. Merci d'avance de soutenir CoMaps !";
|
||||
"bugreport_alert_message" = "Voulez-vous envoyer un rapport de bogue aux développeurs ?\nNous comptons sur nos utilisateurs, car CoMaps ne recueille pas automatiquement d’informations sur les erreurs. Merci d’avance de soutenir CoMaps !";
|
||||
|
||||
/* Title for the iCloud syncronization setting */
|
||||
"icloud_sync" = "iCloud Syncronization (Beta)";
|
||||
"icloud_sync" = "Synchronisation iCloud (bêta)";
|
||||
|
||||
/* Title for the "Enable iCloud Syncronization" alert. */
|
||||
"enable_icloud_synchronization_title" = "Activer la synchronisation iCloud";
|
||||
|
||||
/* Message for the "Enable iCloud Syncronization" alert. */
|
||||
"enable_icloud_synchronization_message" = "La synchronisation iCloud est une fonctionnalité expérimentale en cours de développement. Assure-toi d'avoir fait une sauvegarde de tous tes signets et pistes.";
|
||||
"enable_icloud_synchronization_message" = "La synchronisation iCloud est une fonctionnalité expérimentale en cours de développement. Assurez-vous d’avoir enregistrer tous vos signets et toutes vos traces.";
|
||||
|
||||
/* Title for the "iCloud Is Disabled" alert. */
|
||||
"icloud_disabled_title" = "iCloud est désactivé";
|
||||
|
||||
/* Message for the "iCloud is Disabled" alert. */
|
||||
"icloud_disabled_message" = "Active iCloud dans les paramètres de ton appareil pour utiliser cette fonctionnalité.";
|
||||
"icloud_disabled_message" = "Activez iCloud dans les paramètres de votre appareil pour utiliser cette fonctionnalité.";
|
||||
|
||||
/* Title for the "Enable iCloud Syncronization" alert's "Enable" action button. */
|
||||
"enable" = "Activer";
|
||||
|
||||
/* Title for the "Enable iCloud Syncronization" alert's "Backup" action button. */
|
||||
"backup" = "Sauvegarde";
|
||||
"backup" = "Enregistrement";
|
||||
|
||||
/* Title for the "iCloud synchronization failure" alert. */
|
||||
"icloud_synchronization_error_alert_title" = "Échec de la synchronisation iCloud";
|
||||
|
||||
/* iCloud error message: Failed to synchronize due to connection error */
|
||||
"icloud_synchronization_error_connection_error" = "Erreur : La synchronisation a échoué en raison d'une erreur de connexion";
|
||||
"icloud_synchronization_error_connection_error" = "Erreur : la synchronisation a échoué en raison d’une erreur de connexion";
|
||||
|
||||
/* iCloud error message: Failed to synchronize due to iCloud quota exceeded */
|
||||
"icloud_synchronization_error_quota_exceeded" = "Erreur : Échec de la synchronisation en raison du dépassement du quota iCloud.";
|
||||
"icloud_synchronization_error_quota_exceeded" = "Erreur : échec de la synchronisation en raison du dépassement du quota iCloud";
|
||||
|
||||
/* iCloud error message: iCloud is not available */
|
||||
"icloud_synchronization_error_cloud_is_unavailable" = "Erreur : iCloud n'est pas disponible";
|
||||
"icloud_synchronization_error_cloud_is_unavailable" = "Erreur : iCloud n’est pas disponible";
|
||||
|
||||
/* Title for the "Open in Another App" button on the PlacePage. */
|
||||
"open_in_app" = "Ouvrir dans une autre application";
|
||||
@@ -1075,25 +1075,25 @@
|
||||
"start_track_recording" = "Enregistrer la trace";
|
||||
|
||||
/* Prompt for stopping a track recording. */
|
||||
"stop_track_recording" = "Arrêter l'enregistrement de la trace";
|
||||
"stop_track_recording" = "Arrêter l’enregistrement de la trace";
|
||||
|
||||
/* Title for the "Stop Without Saving" action for the alert when saving a track recording. */
|
||||
"stop_without_saving" = "Arrêter sans enregistrer";
|
||||
|
||||
/* Title for the "Stop Without Saving" action for the alert when saving a track recording. */
|
||||
"continue_recording" = "Continuer l'enregistrement";
|
||||
"continue_recording" = "Continuer l’enregistrement";
|
||||
|
||||
/* Title for the alert when saving a track recording. */
|
||||
"track_recording_alert_title" = "Sauvegarder dans les signets et parcours ?";
|
||||
"track_recording_alert_title" = "Enregistrer dans les signets et traces ?";
|
||||
|
||||
/* Message for the toast when saving the track recording is finished but nothing to save. */
|
||||
"track_recording_toast_nothing_to_save" = "L'itinéraire est vide - il n'y a rien à sauvegarder";
|
||||
"track_recording_toast_nothing_to_save" = "L’itinéraire est vide - il n’y a rien à enregistrer";
|
||||
"edit_track" = "Modifier la trace";
|
||||
"osm_profile_view_notes" = "Afficher les notes";
|
||||
"osm_profile_view_edit_history" = "Afficher l'historique des modifications";
|
||||
"osm_profile_view_edit_history" = "Afficher l’historique des modifications";
|
||||
"pref_mapappearance_title" = "Apparence de la carte";
|
||||
"pref_maplanguage_title" = "Langue de la carte";
|
||||
"transliteration_title_disabled_summary" = "Désactivé lorsque la langue locale est toujours utilisée pour la carte";
|
||||
"pref_maplanguage_local" = "Langue locale";
|
||||
"existence_confirmed_time_ago" = "Existance confirmée %@";
|
||||
"existence_confirmed_time_ago" = "Existence confirmée %@";
|
||||
"hours_confirmed_time_ago" = "Confirmées %@";
|
||||
|
||||