mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
16 lines
357 B
Swift
16 lines
357 B
Swift
//
|
|
// String+.swift
|
|
// Xcodes
|
|
//
|
|
// Created by Jinyu Meng on 2024/01/20.
|
|
// Copyright © 2024 Robots and Pencils. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension String {
|
|
// Declare String as String explicitly. Prevent it from being recognized as a LocalizedStringKey.
|
|
var hideInLocalizations: String {
|
|
return String(self)
|
|
}
|
|
}
|