Repository: dwarvesf/hidden Branch: develop Commit: a971149e7a66 Files: 93 Total size: 475.2 KB Directory structure: gitextract_4ptmmrx2/ ├── .gitignore ├── CONTRIBUTING.md ├── Hidden Bar.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ ├── Hidden Bar.xcscheme │ └── LauncherApplication.xcscheme ├── LICENSE ├── LauncherApplication/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── Info.plist │ ├── LauncherApplication.entitlements │ ├── ViewController.swift │ ├── ar.lproj/ │ │ └── Main.strings │ ├── de.lproj/ │ │ └── Main.strings │ ├── fr.lproj/ │ │ └── Main.strings │ ├── hr.lproj/ │ │ └── Main.strings │ ├── ja.lproj/ │ │ └── Main.strings │ ├── vi.lproj/ │ │ └── Main.strings │ ├── zh-Hans.lproj/ │ │ └── Main.strings │ └── zh-Hant.lproj/ │ └── Main.strings ├── PRIVACY_POLICY.md ├── README.md └── hidden/ ├── AppDelegate.swift ├── Assets.xcassets/ │ ├── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Contents.json │ ├── arrow.imageset/ │ │ └── Contents.json │ ├── banner.imageset/ │ │ └── Contents.json │ ├── banner_alway_hide.imageset/ │ │ └── Contents.json │ ├── ic_collapse.imageset/ │ │ └── Contents.json │ ├── ic_dot.imageset/ │ │ └── Contents.json │ ├── ic_expand.imageset/ │ │ └── Contents.json │ ├── ic_line.imageset/ │ │ └── Contents.json │ ├── ic_logo.imageset/ │ │ └── Contents.json │ ├── ico_1.imageset/ │ │ └── Contents.json │ ├── ico_2.imageset/ │ │ └── Contents.json │ ├── ico_3.imageset/ │ │ └── Contents.json │ ├── ico_4.imageset/ │ │ └── Contents.json │ ├── ico_5.imageset/ │ │ └── Contents.json │ ├── ico_6.imageset/ │ │ └── Contents.json │ ├── ico_7.imageset/ │ │ └── Contents.json │ ├── ico_collapse.imageset/ │ │ └── Contents.json │ ├── ico_compass.imageset/ │ │ └── Contents.json │ ├── ico_email.imageset/ │ │ └── Contents.json │ ├── ico_fb.imageset/ │ │ └── Contents.json │ ├── ico_github.imageset/ │ │ └── Contents.json │ ├── ico_twitter.imageset/ │ │ └── Contents.json │ ├── seprated.imageset/ │ │ └── Contents.json │ └── seprated_1.imageset/ │ └── Contents.json ├── Base.lproj/ │ └── Main.storyboard ├── Common/ │ ├── Assets.swift │ ├── Constant.swift │ ├── Preferences.swift │ └── Util.swift ├── EventMonitor.swift ├── Extensions/ │ ├── Bundle+Extension.swift │ ├── Date+Extension.swift │ ├── NSWindow+Extension.swift │ ├── Notification.Name+Extension.swift │ ├── StackView+Extension.swift │ ├── String+Extension.swift │ └── UserDefault+Extension.swift ├── Features/ │ ├── About/ │ │ └── AboutViewController.swift │ ├── Preferences/ │ │ ├── PreferencesViewController.swift │ │ └── PreferencesWindowController.swift │ └── StatusBar/ │ └── StatusBarController.swift ├── Hidden.entitlements ├── Info.plist ├── Models/ │ ├── GlobalKeybindingPreferences.swift │ └── SelectedSecond.swift ├── Views/ │ ├── HyperlinkTextField.swift │ ├── NSBarButtonItem+Extension.swift │ └── NSView+Extension.swift ├── ar.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── de.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── en.lproj/ │ └── Localizable.strings ├── fr.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── hr.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── ja.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── vi.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── zh-Hans.lproj/ │ ├── Localizable.strings │ └── Main.strings └── zh-Hant.lproj/ ├── Localizable.strings └── Main.strings ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Created by https://www.gitignore.io/api/macos,swift # Edit at https://www.gitignore.io/?templates=macos,swift ### macOS ### # General .DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear in the root of a volume .DocumentRevisions-V100 .fseventsd .Spotlight-V100 .TemporaryItems .Trashes .VolumeIcon.icns .com.apple.timemachine.donotpresent # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items .apdisk ### Swift ### # Xcode # # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore ## Build generated build/ DerivedData/ ## Various settings *.pbxuser !default.pbxuser *.mode1v3 !default.mode1v3 *.mode2v3 !default.mode2v3 *.perspectivev3 !default.perspectivev3 xcuserdata/ ## Other *.moved-aside *.xccheckout *.xcscmblueprint ## Obj-C/Swift specific *.hmap *.ipa *.dSYM.zip *.dSYM ## Playgrounds timeline.xctimeline playground.xcworkspace # Swift Package Manager # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. # Packages/ # Package.pins # Package.resolved .build/ # CocoaPods # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # Pods/ # Add this line if you want to avoid checking in source code from the Xcode workspace # *.xcworkspace # Carthage # Add this line if you want to avoid checking in source code from Carthage dependencies. # Carthage/Checkouts Carthage/Build # fastlane # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the # screenshots whenever they are needed. # For more information about the recommended setup visit: # https://docs.fastlane.tools/best-practices/source-control/#source-control fastlane/report.xml fastlane/Preview.html fastlane/screenshots/**/*.png fastlane/test_output # Code Injection # After new code Injection tools there's a generated folder /iOSInjectionProject # https://github.com/johnno1962/injectionforxcode iOSInjectionProject/ ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) *.xcscmblueprint *.xccheckout ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) build/ DerivedData/ *.moved-aside *.pbxuser !default.pbxuser *.mode1v3 !default.mode1v3 *.mode2v3 !default.mode2v3 *.perspectivev3 !default.perspectivev3 ### Xcode Patch ### /*.gcno **/xcshareddata/WorkspaceSettings.xcsettings # End of https://www.gitignore.io/api/macos,swift ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. Please note we have a code of conduct, please follow it in all your interactions with the project. ## Pull Request Process 1. Ensure any install or build dependencies are removed before the end of the layer when doing a build. 2. Please fully test whether the existing features are affected by your modifications. 3. Follow the git-flow workflow. You can see more about git-flow [here](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) ### Branch name convention The branch name meaning should be clear and follow these conventions: - Feature branch should be `feature/add-something` - Bugfix branch should be `bugfix/fix-something` ## Code of Conduct ### Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ### Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ### Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ### Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ### Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [INSERT CONTACT METHOD]. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ### Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: #### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. #### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. #### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. #### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the project community. ### Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. ================================================ FILE: Hidden Bar.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 52; objects = { /* Begin PBXBuildFile section */ 00117C4426600671005E517C /* Assets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00117C4326600671005E517C /* Assets.swift */; }; 00137CDF24A63DB1004AC855 /* Notification.Name+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00137CDE24A63DB1004AC855 /* Notification.Name+Extension.swift */; }; 0842CDFB23A9FDD000D14BD4 /* GlobalKeybindingPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0842CDFA23A9FDD000D14BD4 /* GlobalKeybindingPreferences.swift */; }; 08A5F85A23AA007A00981CA5 /* PreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08A5F85923AA007A00981CA5 /* PreferencesViewController.swift */; }; 08A5F85C23AA013100981CA5 /* SelectedSecond.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08A5F85B23AA013100981CA5 /* SelectedSecond.swift */; }; 08A5F85F23AA01EE00981CA5 /* HotKey in Frameworks */ = {isa = PBXBuildFile; productRef = 08A5F85E23AA01EE00981CA5 /* HotKey */; }; 08A5F86123AA085B00981CA5 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08A5F86023AA085B00981CA5 /* Preferences.swift */; }; 08A5F86423AA09F300981CA5 /* UserDefault+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08A5F86323AA09F300981CA5 /* UserDefault+Extension.swift */; }; 08B9F32C2411883300AA0551 /* NSWindow+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B9F32B2411883300AA0551 /* NSWindow+Extension.swift */; }; 08C20FDE23AABDD10035D978 /* HyperlinkTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C20FDD23AABDD10035D978 /* HyperlinkTextField.swift */; }; 08C20FE023AB44E60035D978 /* Bundle+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C20FDF23AB44E60035D978 /* Bundle+Extension.swift */; }; 08C20FE223AB452C0035D978 /* AboutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C20FE123AB452C0035D978 /* AboutViewController.swift */; }; 3CF14C82221FA49D0083D42B /* PreferencesWindowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CF14C81221FA49D0083D42B /* PreferencesWindowController.swift */; }; 55F3F1192608923B0054B881 /* Date+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55F3F1182608923B0054B881 /* Date+Extension.swift */; }; 55F3F11D2608925A0054B881 /* StackView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55F3F11C2608925A0054B881 /* StackView+Extension.swift */; }; 9220587E2212A7C0008A8B03 /* LauncherApplication.app in Copy Files */ = {isa = PBXBuildFile; fileRef = 92C5054E21FEC03B0084719A /* LauncherApplication.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 929113F521F9D04100173149 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 929113F421F9D04100173149 /* AppDelegate.swift */; }; 929113F921F9D04200173149 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 929113F821F9D04200173149 /* Assets.xcassets */; }; 929113FC21F9D04200173149 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 929113FA21F9D04200173149 /* Main.storyboard */; }; 92C5055121FEC03C0084719A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C5055021FEC03C0084719A /* AppDelegate.swift */; }; 92C5055321FEC03C0084719A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C5055221FEC03C0084719A /* ViewController.swift */; }; 92C5055521FEC03C0084719A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 92C5055421FEC03C0084719A /* Assets.xcassets */; }; 92C5055821FEC03C0084719A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 92C5055621FEC03C0084719A /* Main.storyboard */; }; 92C5057F21FEC24C0084719A /* ServiceManagement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92C5057E21FEC24C0084719A /* ServiceManagement.framework */; }; 92C5058121FEC2590084719A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92C5058021FEC2590084719A /* Cocoa.framework */; }; 92C97B88220032ED0007559C /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C97B87220032ED0007559C /* Util.swift */; }; 92C97B8B220049D20007559C /* NSBarButtonItem+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C97B8A220049D10007559C /* NSBarButtonItem+Extension.swift */; }; 92C97B8D220058740007559C /* NSView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C97B8C220058740007559C /* NSView+Extension.swift */; }; 92C97B8F220147FE0007559C /* Constant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C97B8E220147FE0007559C /* Constant.swift */; }; 92C97B9122018C1F0007559C /* StatusBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C97B9022018C1F0007559C /* StatusBarController.swift */; }; 92D2122221FEE06600C92FF4 /* LauncherApplication.app in Sources */ = {isa = PBXBuildFile; fileRef = 92C5054E21FEC03B0084719A /* LauncherApplication.app */; }; 967F4B2524169BC800F18D3C /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 967F4B2424169BC800F18D3C /* String+Extension.swift */; }; 967F4B2824169CAF00F18D3C /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 967F4B2A24169CAF00F18D3C /* Localizable.strings */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ 92C5057B21FEC17A0084719A /* Copy Files */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = Contents/Library/LoginItems; dstSubfolderSpec = 1; files = ( 9220587E2212A7C0008A8B03 /* LauncherApplication.app in Copy Files */, ); name = "Copy Files"; runOnlyForDeploymentPostprocessing = 0; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ 00117C4326600671005E517C /* Assets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Assets.swift; sourceTree = ""; }; 00137CDE24A63DB1004AC855 /* Notification.Name+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Notification.Name+Extension.swift"; sourceTree = ""; }; 0842CDFA23A9FDD000D14BD4 /* GlobalKeybindingPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlobalKeybindingPreferences.swift; sourceTree = ""; }; 08A5F85923AA007A00981CA5 /* PreferencesViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferencesViewController.swift; sourceTree = ""; }; 08A5F85B23AA013100981CA5 /* SelectedSecond.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelectedSecond.swift; sourceTree = ""; }; 08A5F86023AA085B00981CA5 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = ""; }; 08A5F86323AA09F300981CA5 /* UserDefault+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserDefault+Extension.swift"; sourceTree = ""; }; 08B9F32B2411883300AA0551 /* NSWindow+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSWindow+Extension.swift"; sourceTree = ""; }; 08C20FDD23AABDD10035D978 /* HyperlinkTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HyperlinkTextField.swift; sourceTree = ""; }; 08C20FDF23AB44E60035D978 /* Bundle+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extension.swift"; sourceTree = ""; }; 08C20FE123AB452C0035D978 /* AboutViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AboutViewController.swift; sourceTree = ""; }; 3CF14C81221FA49D0083D42B /* PreferencesWindowController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferencesWindowController.swift; sourceTree = ""; }; 55188DF7279A737800A92772 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Main.strings; sourceTree = ""; }; 55188DF8279A737900A92772 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Main.strings; sourceTree = ""; }; 55188DF9279A737900A92772 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Localizable.strings; sourceTree = ""; }; 55D9B6B52660F153007AF073 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Main.strings; sourceTree = ""; }; 55D9B6B62660F153007AF073 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Main.strings; sourceTree = ""; }; 55D9B6B72660F153007AF073 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = ""; }; 55D9B6B82661DEDA007AF073 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Main.strings; sourceTree = ""; }; 55D9B6B92661DEDA007AF073 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Main.strings; sourceTree = ""; }; 55D9B6BA2661DEDA007AF073 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = ""; }; 55D9B6BB2661DEE7007AF073 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Main.strings; sourceTree = ""; }; 55D9B6BC2661DEE8007AF073 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Main.strings; sourceTree = ""; }; 55D9B6BD2661DEE8007AF073 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; 55F3F1182608923B0054B881 /* Date+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Date+Extension.swift"; sourceTree = ""; }; 55F3F11C2608925A0054B881 /* StackView+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StackView+Extension.swift"; sourceTree = ""; }; 9220587D22127050008A8B03 /* Hidden.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = Hidden.entitlements; path = Hidden/Hidden.entitlements; sourceTree = ""; }; 929113F121F9D04100173149 /* Hidden Bar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Hidden Bar.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 929113F421F9D04100173149 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 929113F821F9D04200173149 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 929113FB21F9D04200173149 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 929113FD21F9D04200173149 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 92C5054E21FEC03B0084719A /* LauncherApplication.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LauncherApplication.app; sourceTree = BUILT_PRODUCTS_DIR; }; 92C5055021FEC03C0084719A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 92C5055221FEC03C0084719A /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 92C5055421FEC03C0084719A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 92C5055721FEC03C0084719A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 92C5055921FEC03C0084719A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 92C5055A21FEC03C0084719A /* LauncherApplication.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = LauncherApplication.entitlements; sourceTree = ""; }; 92C5057E21FEC24C0084719A /* ServiceManagement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ServiceManagement.framework; path = System/Library/Frameworks/ServiceManagement.framework; sourceTree = SDKROOT; }; 92C5058021FEC2590084719A /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; 92C97B87220032ED0007559C /* Util.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Util.swift; sourceTree = ""; }; 92C97B8A220049D10007559C /* NSBarButtonItem+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSBarButtonItem+Extension.swift"; sourceTree = ""; }; 92C97B8C220058740007559C /* NSView+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSView+Extension.swift"; sourceTree = ""; }; 92C97B8E220147FE0007559C /* Constant.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constant.swift; sourceTree = ""; }; 92C97B9022018C1F0007559C /* StatusBarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusBarController.swift; sourceTree = ""; }; 967F4B2424169BC800F18D3C /* String+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extension.swift"; sourceTree = ""; }; 967F4B2924169CAF00F18D3C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; 967F4B2B24169CB200F18D3C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; }; 967F4B2C24169CB400F18D3C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; B1326443261D7E0200319D35 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Main.strings; sourceTree = ""; }; B1326444261D7E0200319D35 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Main.strings; sourceTree = ""; }; B1326445261D7E0200319D35 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; B350A2CC23AAFB47003A04AC /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = ""; }; B8404C9A24041A4300E6DBF8 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Main.strings; sourceTree = ""; }; B8404C9B24041A4300E6DBF8 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Main.strings; sourceTree = ""; }; FF57A44A25E6C50200988FC2 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Main.strings"; sourceTree = ""; }; FF57A44B25E6C50200988FC2 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = ""; }; FF8A0FB5265E10DB00C76226 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Main.strings"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 929113EE21F9D04100173149 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 08A5F85F23AA01EE00981CA5 /* HotKey in Frameworks */, 92C5058121FEC2590084719A /* Cocoa.framework in Frameworks */, 92C5057F21FEC24C0084719A /* ServiceManagement.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 92C5054B21FEC03B0084719A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 0842CDF923A9FDB900D14BD4 /* Models */ = { isa = PBXGroup; children = ( 0842CDFA23A9FDD000D14BD4 /* GlobalKeybindingPreferences.swift */, 08A5F85B23AA013100981CA5 /* SelectedSecond.swift */, ); path = Models; sourceTree = ""; }; 0842CDFC23A9FF6D00D14BD4 /* Features */ = { isa = PBXGroup; children = ( 08C20FDC23AABC440035D978 /* About */, 0842CDFE23A9FF7C00D14BD4 /* Preferences */, 0842CDFD23A9FF7500D14BD4 /* StatusBar */, ); path = Features; sourceTree = ""; }; 0842CDFD23A9FF7500D14BD4 /* StatusBar */ = { isa = PBXGroup; children = ( 92C97B9022018C1F0007559C /* StatusBarController.swift */, ); path = StatusBar; sourceTree = ""; }; 0842CDFE23A9FF7C00D14BD4 /* Preferences */ = { isa = PBXGroup; children = ( 08A5F85923AA007A00981CA5 /* PreferencesViewController.swift */, 3CF14C81221FA49D0083D42B /* PreferencesWindowController.swift */, ); path = Preferences; sourceTree = ""; }; 08A5F86223AA09D900981CA5 /* Extensions */ = { isa = PBXGroup; children = ( 08A5F86323AA09F300981CA5 /* UserDefault+Extension.swift */, 08C20FDF23AB44E60035D978 /* Bundle+Extension.swift */, 08B9F32B2411883300AA0551 /* NSWindow+Extension.swift */, 967F4B2424169BC800F18D3C /* String+Extension.swift */, 00137CDE24A63DB1004AC855 /* Notification.Name+Extension.swift */, 55F3F1182608923B0054B881 /* Date+Extension.swift */, 55F3F11C2608925A0054B881 /* StackView+Extension.swift */, ); path = Extensions; sourceTree = ""; }; 08C20FDC23AABC440035D978 /* About */ = { isa = PBXGroup; children = ( 08C20FE123AB452C0035D978 /* AboutViewController.swift */, ); path = About; sourceTree = ""; }; 9267D3212201A49200EFFCE2 /* Common */ = { isa = PBXGroup; children = ( 92C97B87220032ED0007559C /* Util.swift */, 00117C4326600671005E517C /* Assets.swift */, 92C97B8E220147FE0007559C /* Constant.swift */, 08A5F86023AA085B00981CA5 /* Preferences.swift */, ); path = Common; sourceTree = ""; }; 929113E821F9D04100173149 = { isa = PBXGroup; children = ( 9220587D22127050008A8B03 /* Hidden.entitlements */, 929113F321F9D04100173149 /* hidden */, 92C5054F21FEC03C0084719A /* LauncherApplication */, 929113F221F9D04100173149 /* Products */, 92C5057D21FEC24C0084719A /* Frameworks */, ); sourceTree = ""; }; 929113F221F9D04100173149 /* Products */ = { isa = PBXGroup; children = ( 929113F121F9D04100173149 /* Hidden Bar.app */, 92C5054E21FEC03B0084719A /* LauncherApplication.app */, ); name = Products; sourceTree = ""; }; 929113F321F9D04100173149 /* hidden */ = { isa = PBXGroup; children = ( 08A5F86223AA09D900981CA5 /* Extensions */, 0842CDFC23A9FF6D00D14BD4 /* Features */, 0842CDF923A9FDB900D14BD4 /* Models */, 9267D3212201A49200EFFCE2 /* Common */, 92C97B89220049B30007559C /* Views */, 929113F421F9D04100173149 /* AppDelegate.swift */, 929113F821F9D04200173149 /* Assets.xcassets */, 929113FA21F9D04200173149 /* Main.storyboard */, 929113FD21F9D04200173149 /* Info.plist */, 967F4B2A24169CAF00F18D3C /* Localizable.strings */, ); path = hidden; sourceTree = ""; }; 92C5054F21FEC03C0084719A /* LauncherApplication */ = { isa = PBXGroup; children = ( 92C5055021FEC03C0084719A /* AppDelegate.swift */, 92C5055221FEC03C0084719A /* ViewController.swift */, 92C5055421FEC03C0084719A /* Assets.xcassets */, 92C5055621FEC03C0084719A /* Main.storyboard */, 92C5055921FEC03C0084719A /* Info.plist */, 92C5055A21FEC03C0084719A /* LauncherApplication.entitlements */, ); path = LauncherApplication; sourceTree = ""; }; 92C5057D21FEC24C0084719A /* Frameworks */ = { isa = PBXGroup; children = ( 92C5058021FEC2590084719A /* Cocoa.framework */, 92C5057E21FEC24C0084719A /* ServiceManagement.framework */, ); name = Frameworks; sourceTree = ""; }; 92C97B89220049B30007559C /* Views */ = { isa = PBXGroup; children = ( 92C97B8A220049D10007559C /* NSBarButtonItem+Extension.swift */, 92C97B8C220058740007559C /* NSView+Extension.swift */, 08C20FDD23AABDD10035D978 /* HyperlinkTextField.swift */, ); path = Views; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ 929113F021F9D04100173149 /* Hidden Bar */ = { isa = PBXNativeTarget; buildConfigurationList = 9291141721F9D04200173149 /* Build configuration list for PBXNativeTarget "Hidden Bar" */; buildPhases = ( 929113ED21F9D04100173149 /* Sources */, 929113EE21F9D04100173149 /* Frameworks */, 929113EF21F9D04100173149 /* Resources */, 92C5057B21FEC17A0084719A /* Copy Files */, ); buildRules = ( ); dependencies = ( ); name = "Hidden Bar"; packageProductDependencies = ( 08A5F85E23AA01EE00981CA5 /* HotKey */, ); productName = vanillaClone; productReference = 929113F121F9D04100173149 /* Hidden Bar.app */; productType = "com.apple.product-type.application"; }; 92C5054D21FEC03B0084719A /* LauncherApplication */ = { isa = PBXNativeTarget; buildConfigurationList = 92C5057121FEC03D0084719A /* Build configuration list for PBXNativeTarget "LauncherApplication" */; buildPhases = ( 92C5054A21FEC03B0084719A /* Sources */, 92C5054B21FEC03B0084719A /* Frameworks */, 92C5054C21FEC03B0084719A /* Resources */, ); buildRules = ( ); dependencies = ( ); name = LauncherApplication; productName = LauncherApplication; productReference = 92C5054E21FEC03B0084719A /* LauncherApplication.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 929113E921F9D04100173149 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1010; LastUpgradeCheck = 1130; ORGANIZATIONNAME = "Dwarves Foundation"; TargetAttributes = { 929113F021F9D04100173149 = { CreatedOnToolsVersion = 10.1; LastSwiftMigration = 1130; SystemCapabilities = { com.apple.Sandbox = { enabled = 1; }; }; }; 92C5054D21FEC03B0084719A = { CreatedOnToolsVersion = 10.1; LastSwiftMigration = 1130; }; }; }; buildConfigurationList = 929113EC21F9D04100173149 /* Build configuration list for PBXProject "Hidden Bar" */; compatibilityVersion = "Xcode 9.3"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, Base, "zh-Hans", ja, "zh-Hant", fr, vi, ar, de, hr, ); mainGroup = 929113E821F9D04100173149; packageReferences = ( 08A5F85D23AA01EE00981CA5 /* XCRemoteSwiftPackageReference "HotKey" */, ); productRefGroup = 929113F221F9D04100173149 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 929113F021F9D04100173149 /* Hidden Bar */, 92C5054D21FEC03B0084719A /* LauncherApplication */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ 929113EF21F9D04100173149 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 929113F921F9D04200173149 /* Assets.xcassets in Resources */, 967F4B2824169CAF00F18D3C /* Localizable.strings in Resources */, 929113FC21F9D04200173149 /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; 92C5054C21FEC03B0084719A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 92C5055521FEC03C0084719A /* Assets.xcassets in Resources */, 92C5055821FEC03C0084719A /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 929113ED21F9D04100173149 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 92C97B8F220147FE0007559C /* Constant.swift in Sources */, 08C20FE023AB44E60035D978 /* Bundle+Extension.swift in Sources */, 08A5F85C23AA013100981CA5 /* SelectedSecond.swift in Sources */, 08A5F86123AA085B00981CA5 /* Preferences.swift in Sources */, 92C97B9122018C1F0007559C /* StatusBarController.swift in Sources */, 55F3F1192608923B0054B881 /* Date+Extension.swift in Sources */, 92D2122221FEE06600C92FF4 /* LauncherApplication.app in Sources */, 08B9F32C2411883300AA0551 /* NSWindow+Extension.swift in Sources */, 929113F521F9D04100173149 /* AppDelegate.swift in Sources */, 08C20FDE23AABDD10035D978 /* HyperlinkTextField.swift in Sources */, 92C97B88220032ED0007559C /* Util.swift in Sources */, 967F4B2524169BC800F18D3C /* String+Extension.swift in Sources */, 00117C4426600671005E517C /* Assets.swift in Sources */, 08A5F85A23AA007A00981CA5 /* PreferencesViewController.swift in Sources */, 3CF14C82221FA49D0083D42B /* PreferencesWindowController.swift in Sources */, 92C97B8B220049D20007559C /* NSBarButtonItem+Extension.swift in Sources */, 92C97B8D220058740007559C /* NSView+Extension.swift in Sources */, 0842CDFB23A9FDD000D14BD4 /* GlobalKeybindingPreferences.swift in Sources */, 55F3F11D2608925A0054B881 /* StackView+Extension.swift in Sources */, 08C20FE223AB452C0035D978 /* AboutViewController.swift in Sources */, 00137CDF24A63DB1004AC855 /* Notification.Name+Extension.swift in Sources */, 08A5F86423AA09F300981CA5 /* UserDefault+Extension.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 92C5054A21FEC03B0084719A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 92C5055321FEC03C0084719A /* ViewController.swift in Sources */, 92C5055121FEC03C0084719A /* AppDelegate.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXVariantGroup section */ 929113FA21F9D04200173149 /* Main.storyboard */ = { isa = PBXVariantGroup; children = ( 929113FB21F9D04200173149 /* Base */, B350A2CC23AAFB47003A04AC /* zh-Hans */, B8404C9A24041A4300E6DBF8 /* ja */, B1326443261D7E0200319D35 /* fr */, FF8A0FB5265E10DB00C76226 /* zh-Hant */, 55D9B6B52660F153007AF073 /* vi */, 55D9B6B82661DEDA007AF073 /* ar */, 55D9B6BB2661DEE7007AF073 /* de */, 55188DF7279A737800A92772 /* hr */, ); name = Main.storyboard; sourceTree = ""; }; 92C5055621FEC03C0084719A /* Main.storyboard */ = { isa = PBXVariantGroup; children = ( 92C5055721FEC03C0084719A /* Base */, B8404C9B24041A4300E6DBF8 /* ja */, FF57A44A25E6C50200988FC2 /* zh-Hant */, B1326444261D7E0200319D35 /* fr */, 55D9B6B62660F153007AF073 /* vi */, 55D9B6B92661DEDA007AF073 /* ar */, 55D9B6BC2661DEE8007AF073 /* de */, 55188DF8279A737900A92772 /* hr */, ); name = Main.storyboard; sourceTree = ""; }; 967F4B2A24169CAF00F18D3C /* Localizable.strings */ = { isa = PBXVariantGroup; children = ( 967F4B2924169CAF00F18D3C /* en */, 967F4B2B24169CB200F18D3C /* zh-Hans */, 967F4B2C24169CB400F18D3C /* ja */, FF57A44B25E6C50200988FC2 /* zh-Hant */, B1326445261D7E0200319D35 /* fr */, 55D9B6B72660F153007AF073 /* vi */, 55D9B6BA2661DEDA007AF073 /* ar */, 55D9B6BD2661DEE8007AF073 /* de */, 55188DF9279A737900A92772 /* hr */, ); name = Localizable.strings; sourceTree = ""; }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ 9291141521F9D04200173149 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_ENABLE_OBJC_WEAK = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; 9291141621F9D04200173149 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_ENABLE_OBJC_WEAK = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = macosx; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; }; name = Release; }; 9291141821F9D04200173149 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = Hidden/Hidden.entitlements; CODE_SIGN_IDENTITY = "Mac Developer"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 13; DEVELOPMENT_TEAM = W777S7V8TN; ENABLE_HARDENED_RUNTIME = YES; INFOPLIST_FILE = hidden/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.12; MARKETING_VERSION = 1.8; PRODUCT_BUNDLE_IDENTIFIER = com.dwarvesv.minimalbar; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_VERSION = 5.0; }; name = Debug; }; 9291141921F9D04200173149 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = Hidden/Hidden.entitlements; CODE_SIGN_IDENTITY = "Mac Developer"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 13; DEVELOPMENT_TEAM = W777S7V8TN; ENABLE_HARDENED_RUNTIME = YES; INFOPLIST_FILE = hidden/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.12; MARKETING_VERSION = 1.8; PRODUCT_BUNDLE_IDENTIFIER = com.dwarvesv.minimalbar; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_VERSION = 5.0; }; name = Release; }; 92C5057221FEC03D0084719A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = LauncherApplication/LauncherApplication.entitlements; CODE_SIGN_IDENTITY = "Mac Developer"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; DEVELOPMENT_TEAM = W777S7V8TN; ENABLE_HARDENED_RUNTIME = YES; INFOPLIST_FILE = LauncherApplication/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.12; PRODUCT_BUNDLE_IDENTIFIER = com.dwarvesv.LauncherApplication; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_VERSION = 5.0; }; name = Debug; }; 92C5057321FEC03D0084719A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = LauncherApplication/LauncherApplication.entitlements; CODE_SIGN_IDENTITY = "Mac Developer"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; DEVELOPMENT_TEAM = W777S7V8TN; ENABLE_HARDENED_RUNTIME = YES; INFOPLIST_FILE = LauncherApplication/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.12; PRODUCT_BUNDLE_IDENTIFIER = com.dwarvesv.LauncherApplication; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_VERSION = 5.0; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 929113EC21F9D04100173149 /* Build configuration list for PBXProject "Hidden Bar" */ = { isa = XCConfigurationList; buildConfigurations = ( 9291141521F9D04200173149 /* Debug */, 9291141621F9D04200173149 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 9291141721F9D04200173149 /* Build configuration list for PBXNativeTarget "Hidden Bar" */ = { isa = XCConfigurationList; buildConfigurations = ( 9291141821F9D04200173149 /* Debug */, 9291141921F9D04200173149 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 92C5057121FEC03D0084719A /* Build configuration list for PBXNativeTarget "LauncherApplication" */ = { isa = XCConfigurationList; buildConfigurations = ( 92C5057221FEC03D0084719A /* Debug */, 92C5057321FEC03D0084719A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ /* Begin XCRemoteSwiftPackageReference section */ 08A5F85D23AA01EE00981CA5 /* XCRemoteSwiftPackageReference "HotKey" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/soffes/HotKey/"; requirement = { kind = upToNextMajorVersion; minimumVersion = 0.1.3; }; }; /* End XCRemoteSwiftPackageReference section */ /* Begin XCSwiftPackageProductDependency section */ 08A5F85E23AA01EE00981CA5 /* HotKey */ = { isa = XCSwiftPackageProductDependency; package = 08A5F85D23AA01EE00981CA5 /* XCRemoteSwiftPackageReference "HotKey" */; productName = HotKey; }; /* End XCSwiftPackageProductDependency section */ }; rootObject = 929113E921F9D04100173149 /* Project object */; } ================================================ FILE: Hidden Bar.xcodeproj/project.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: Hidden Bar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist ================================================ IDEDidComputeMac32BitWarning ================================================ FILE: Hidden Bar.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved ================================================ { "object": { "pins": [ { "package": "HotKey", "repositoryURL": "https://github.com/soffes/HotKey/", "state": { "branch": null, "revision": "c13662730cb5bc28de4a799854bbb018a90649bf", "version": "0.1.3" } } ] }, "version": 1 } ================================================ FILE: Hidden Bar.xcodeproj/xcshareddata/xcschemes/Hidden Bar.xcscheme ================================================ ================================================ FILE: Hidden Bar.xcodeproj/xcshareddata/xcschemes/LauncherApplication.xcscheme ================================================ ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2019 Dwarves Foundation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: LauncherApplication/AppDelegate.swift ================================================ // // AppDelegate.swift // LauncherApplication // // Created by Thanh Nguyen on 1/28/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Cocoa @NSApplicationMain class AppDelegate: NSObject, NSApplicationDelegate { @objc func terminate() { NSApp.terminate(nil) } func applicationDidFinishLaunching(_ aNotification: Notification) { let mainAppIdentifier = "com.dwarvesv.minimalbar" let runningApps = NSWorkspace.shared.runningApplications let isRunning = !runningApps.filter { $0.bundleIdentifier == mainAppIdentifier }.isEmpty if !isRunning { DistributedNotificationCenter.default().addObserver(self, selector: #selector(self.terminate), name: Notification.Name("killLauncher"), object: mainAppIdentifier) let path = Bundle.main.bundlePath as NSString var components = path.pathComponents components.removeLast(3) components.append("MacOS") let appName = "Hidden Bar" components.append(appName) //main app name let newPath = NSString.path(withComponents: components) NSWorkspace.shared.launchApplication(newPath) } else { self.terminate() } } func applicationWillTerminate(_ aNotification: Notification) { // Insert code here to tear down your application } } ================================================ FILE: LauncherApplication/Assets.xcassets/AppIcon.appiconset/Contents.json ================================================ { "images" : [ { "idiom" : "mac", "size" : "16x16", "scale" : "1x" }, { "idiom" : "mac", "size" : "16x16", "scale" : "2x" }, { "idiom" : "mac", "size" : "32x32", "scale" : "1x" }, { "idiom" : "mac", "size" : "32x32", "scale" : "2x" }, { "idiom" : "mac", "size" : "128x128", "scale" : "1x" }, { "idiom" : "mac", "size" : "128x128", "scale" : "2x" }, { "idiom" : "mac", "size" : "256x256", "scale" : "1x" }, { "idiom" : "mac", "size" : "256x256", "scale" : "2x" }, { "idiom" : "mac", "size" : "512x512", "scale" : "1x" }, { "idiom" : "mac", "size" : "512x512", "scale" : "2x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: LauncherApplication/Assets.xcassets/Contents.json ================================================ { "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: LauncherApplication/Base.lproj/Main.storyboard ================================================ Default Left to Right Right to Left Default Left to Right Right to Left ================================================ FILE: LauncherApplication/Info.plist ================================================ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIconFile CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType APPL CFBundleShortVersionString 1.0 CFBundleVersion 2 LSBackgroundOnly LSMinimumSystemVersion $(MACOSX_DEPLOYMENT_TARGET) NSHumanReadableCopyright Copyright © 2019 Dwarves Foundation. All rights reserved. NSMainStoryboardFile Main NSPrincipalClass NSApplication ================================================ FILE: LauncherApplication/LauncherApplication.entitlements ================================================ com.apple.security.app-sandbox com.apple.security.files.user-selected.read-only ================================================ FILE: LauncherApplication/ViewController.swift ================================================ // // ViewController.swift // LauncherApplication // // Created by Thanh Nguyen on 1/28/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Cocoa class ViewController: NSViewController { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } override var representedObject: Any? { didSet { // Update the view, if already loaded. } } } ================================================ FILE: LauncherApplication/ar.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/de.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/fr.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/hr.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/ja.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSButtonCell"; title = "Enable always hidden section (requires restart)"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "「アイコンを常に非表示機能」を有効にする(再起動する必要がある)"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/vi.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/zh-Hans.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSButtonCell"; title = "Enable always hidden section (requires restart)"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "启用持续隐藏区域(需要重新启动)"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; ================================================ FILE: LauncherApplication/zh-Hant.lproj/Main.strings ================================================ /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "自訂工具列⋯"; /* Class = "NSMenuItem"; title = "LauncherApplication"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "LauncherApplication"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "尋找"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "調低"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "調高"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "轉換"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "拼字檢查"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "使用預設值"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "語音"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "緊密"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "尋找"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "進入全螢幕"; /* Class = "NSMenuItem"; title = "Quit LauncherApplication"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "結束 LauncherApplication"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "編輯"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "複製樣式"; /* Class = "NSMenuItem"; title = "About LauncherApplication"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "關於 LauncherApplication"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "重做"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "自動更正拼字"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "書寫方向"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "替代"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "智慧型拷貝/貼上"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "主選單"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "偏好設定⋯"; /* Class = "NSMenuItem"; title = " Left to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = " 由左至右"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "儲存為…"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "關閉"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "拼字和文法檢查"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "輔助說明"; /* Class = "NSMenuItem"; title = "LauncherApplication Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "LauncherApplication 輔助說明"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "文字"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "替代"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "粗體"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "格式"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "使用預設值"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "字型"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "書寫方向"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "顯示方式"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "替代文字"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "顯示拼字與文法檢查"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "顯示方式"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "下標"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "開啟⋯"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "齊行"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "不使用"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "回復成儲存過的版本"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "顯示全部"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "將此程式所有視窗移至最前"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "貼上尺標"; /* Class = "NSMenuItem"; title = " Left to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = " 由左至右"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "拷貝尺標"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "服務"; /* Class = "NSButtonCell"; title = "Enable always hidden section (requires restart)"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "啟用持續隱藏區域(需要重新啟動)"; /* Class = "NSMenuItem"; title = " Default"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = " 預設值"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "最小化"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "基線"; /* Class = "NSMenuItem"; title = "Hide LauncherApplication"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "隱藏 LauncherApplication"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "尋找上一個"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "停止朗讀"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "放大"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "顯示字體"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "縮放"; /* Class = "NSMenuItem"; title = " Right to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = " 由右至左"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "上標"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "全選"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "跳至所選範圍"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "視窗"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "首字大寫"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "置中"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "隱藏其他"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "斜體"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "編輯"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "底線"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "新增"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "貼上並符合樣式"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "尋找⋯"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "尋找與取代⋯"; /* Class = "NSMenuItem"; title = " Default"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = " 預設值"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "開始朗讀"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "齊左"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "段落"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "列印⋯"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "視窗"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "字體"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "使用預設值"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "顯示顏色"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "檔案"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "使用所選範圍尋找"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "轉換"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "不使用"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "所選範圍"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "智慧型連結"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "小寫"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "文字"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "檔案"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "還原"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "貼上"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "智慧型引號"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "立即檢查文件"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "服務"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "縮小"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "基線"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "字元間距"; /* Class = "NSMenuItem"; title = " Right to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = " 由右至左"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "格式"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "顯示側邊欄"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "檢查拼字文法"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "連字"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "打開最近使用過的檔案"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "寬鬆"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "刪除"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "儲存⋯"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "尋找下一個"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "設定頁面⋯"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "在輸入時同步檢查拼字"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "智慧型破折號"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "顯示工具列"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "資料偵測器"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "打開最近使用過的檔案"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "字元間距"; /* Class = "NSMenu"; title = "LauncherApplication"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "LauncherApplication"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "剪下"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "貼上樣式"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "顯示尺標"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "清除選單"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "大寫"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "連字"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "齊右"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "輔助說明"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "拷貝"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "使用全部"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "語音"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "顯示替代項目"; ================================================ FILE: PRIVACY_POLICY.md ================================================ ## Privacy Policy Dwarves Foundation built the Hidden Bar app as an Open Source app. This app is provided by Dwarves Foundation at no cost and is intended for use as is. **Information Collection and Use** The app does NOT use any third party services that may collect information used to identify you. **Contact Us** If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us at macos@d.foundation. ================================================ FILE: README.md ================================================

download platform systemrequirements

## Hidden Bar Hidden Bar lets you hide menu bar items to give your Mac a cleaner look.

## 🚀 Install ###  App Store [![AppStore](img/appstore.svg)](https://itunes.apple.com/app/hidden-bar/id1452453066) ### Others The Hidden Bar is notarized before distributed out side App Store. It's safe to use 👍 #### Using Homebrew ``` brew install --cask hiddenbar ``` #### Manual download - [Download latest version](https://github.com/dwarvesf/hidden/releases/latest) - Open and drag the app to the Applications folder. - Launch Hidden and drag the icon in your menu bar (hold CMD) to the right so it is between some other icons. ## 🕹 Usage * `⌘` + drag to move the Hidden icons around in the menu bar. * Click the Arrow icon to hide menu bar items.

## ✨Contributors This project exists thanks to all the people who contribute. Thank you guys so much 👏 [![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/0)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/0)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/1)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/1)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/2)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/2)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/3)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/3)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/4)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/4)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/5)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/5)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/6)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/6)[![](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/images/7)](https://sourcerer.io/fame/phucledien/dwarvesf/hidden/links/7) Please read [this](CONTRIBUTING.md) before you make a contribution. ## Requirements macOS version >= 10.13 ## You may also like - [Blurred](https://github.com/dwarvesf/Blurred) - A macOS utility that helps reduce distraction by dimming your inactive noise - [Micro Sniff](https://github.com/dwarvesf/micro-sniff) - An ultra-light macOS utility that notify whenever your micro-device is being used - [VimMotion](https://github.com/dwarvesf/VimMotionPublic) Vim style shortcut for MacOS ## License MIT © [Dwarves Foundation](https://github.com/dwarvesf) ================================================ FILE: hidden/AppDelegate.swift ================================================ // // AppDelegate.swift // vanillaClone // // Created by Thanh Nguyen on 1/24/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import AppKit import HotKey @NSApplicationMain class AppDelegate: NSObject, NSApplicationDelegate{ var statusBarController = StatusBarController() var hotKey: HotKey? { didSet { guard let hotKey = hotKey else { return } hotKey.keyDownHandler = { [weak self] in self?.statusBarController.expandCollapseIfNeeded() } } } func applicationDidFinishLaunching(_ aNotification: Notification) { setupAutoStartApp() registerDefaultValues() setupHotKey() openPreferencesIfNeeded() detectLTRLang() } func openPreferencesIfNeeded() { if Preferences.isShowPreference { Util.showPrefWindow() } } func setupAutoStartApp() { Util.setUpAutoStart(isAutoStart: Preferences.isAutoStart) } func registerDefaultValues() { UserDefaults.standard.register(defaults: [ UserDefaults.Key.isAutoStart: false, UserDefaults.Key.isShowPreference: true, UserDefaults.Key.isAutoHide: true, UserDefaults.Key.numberOfSecondForAutoHide: 10.0, UserDefaults.Key.areSeparatorsHidden: false, UserDefaults.Key.alwaysHiddenSectionEnabled: false ]) } func setupHotKey() { guard let globalKey = Preferences.globalKey else {return} hotKey = HotKey(keyCombo: KeyCombo(carbonKeyCode: globalKey.keyCode, carbonModifiers: globalKey.carbonFlags)) } func detectLTRLang() { // Languages like Arabic uses right to left (RTL) writing direction, // so some behavier of the app needs to be changed in these cases Constant.isUsingLTRLanguage = (NSApplication.shared.userInterfaceLayoutDirection == .leftToRight) } } ================================================ FILE: hidden/Assets.xcassets/AppIcon.appiconset/Contents.json ================================================ { "images" : [ { "filename" : "icon_16@1x.png", "idiom" : "mac", "scale" : "1x", "size" : "16x16" }, { "filename" : "icon_16@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "16x16" }, { "filename" : "icon_32@1x.png", "idiom" : "mac", "scale" : "1x", "size" : "32x32" }, { "filename" : "icon_32@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "32x32" }, { "filename" : "icon_128@1x.png", "idiom" : "mac", "scale" : "1x", "size" : "128x128" }, { "filename" : "icon_128@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "128x128" }, { "filename" : "icon_256@1x.png", "idiom" : "mac", "scale" : "1x", "size" : "256x256" }, { "filename" : "icon_256@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "256x256" }, { "filename" : "icon_512@1x.png", "idiom" : "mac", "scale" : "1x", "size" : "512x512" }, { "filename" : "icon_512@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "512x512" } ], "info" : { "author" : "xcode", "version" : 1 } } ================================================ FILE: hidden/Assets.xcassets/Contents.json ================================================ { "info" : { "author" : "xcode", "version" : 1 } } ================================================ FILE: hidden/Assets.xcassets/arrow.imageset/Contents.json ================================================ { "images" : [ { "filename" : "arrow.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/banner.imageset/Contents.json ================================================ { "images" : [ { "filename" : "banner.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/banner_alway_hide.imageset/Contents.json ================================================ { "images" : [ { "filename" : "banner_alway_hide.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ic_collapse.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "scale" : "1x" }, { "idiom" : "universal", "filename" : "ic_collapse.png", "scale" : "2x" }, { "idiom" : "universal", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ic_dot.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "scale" : "1x" }, { "idiom" : "universal", "filename" : "baseline_lens_white_18dp.png", "scale" : "2x" }, { "idiom" : "universal", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ic_expand.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "scale" : "1x" }, { "idiom" : "universal", "filename" : "ic_expand.png", "scale" : "2x" }, { "idiom" : "universal", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ic_line.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "scale" : "1x" }, { "idiom" : "universal", "filename" : "ic_line.png", "scale" : "2x" }, { "idiom" : "universal", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ic_logo.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "ic_logo.png" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "original", "localizable" : true } } ================================================ FILE: hidden/Assets.xcassets/ico_1.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_1.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_2.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_2.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_3.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_3.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_4.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_4.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_5.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_5.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_6.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_6.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_7.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_7.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_collapse.imageset/Contents.json ================================================ { "images" : [ { "filename" : "ico_collapse.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_compass.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "ico_compass.pdf" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_email.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "ico_email.pdf" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_fb.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "ico_fb.pdf" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_github.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "ico_github.pdf" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/ico_twitter.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "ico_twitter.pdf" } ], "info" : { "version" : 1, "author" : "xcode" }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/seprated.imageset/Contents.json ================================================ { "images" : [ { "filename" : "seprated.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Assets.xcassets/seprated_1.imageset/Contents.json ================================================ { "images" : [ { "filename" : "seprated_1.pdf", "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } } ================================================ FILE: hidden/Base.lproj/Main.storyboard ================================================ In your Mac's menu bar, hold ⌘ and drag icons between sections to configure Hidden Bar. ================================================ FILE: hidden/Common/Assets.swift ================================================ // // Assets.swift // Hidden Bar // // Created by Peter Luo on 2021/5/28. // Copyright © 2021 Dwarves Foundation. All rights reserved. // import AppKit struct Assets { static var expandImage: NSImage? { if (Constant.isUsingLTRLanguage) { return NSImage(named: NSImage.Name("ic_expand")) } else { return NSImage(named: NSImage.Name("ic_collapse")) } } static var collapseImage: NSImage? { if (Constant.isUsingLTRLanguage) { return NSImage(named: NSImage.Name("ic_collapse")) } else { return NSImage(named: NSImage.Name("ic_expand")) } } } ================================================ FILE: hidden/Common/Constant.swift ================================================ // // Constant.swift // vanillaClone // // Created by Thanh Nguyen on 1/30/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation enum Constant { static let appName = "Hidden Bar" static let launcherAppId = "com.dwarvesv.LauncherApplication" static var isUsingLTRLanguage = false } ================================================ FILE: hidden/Common/Preferences.swift ================================================ // // Preferences.swift // Hidden Bar // // Created by phucld on 12/18/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation enum Preferences { static var globalKey: GlobalKeybindPreferences? { get { guard let data = UserDefaults.standard.value(forKey: UserDefaults.Key.globalKey) as? Data else { return nil } return try? JSONDecoder().decode(GlobalKeybindPreferences.self, from: data) } set { guard let data = try? JSONEncoder().encode(newValue) else { return } UserDefaults.standard.set(data, forKey: UserDefaults.Key.globalKey) NotificationCenter.default.post(Notification(name: .prefsChanged)) } } static var isAutoStart: Bool { get { return UserDefaults.standard.bool(forKey: UserDefaults.Key.isAutoStart) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.isAutoStart) Util.setUpAutoStart(isAutoStart: newValue) NotificationCenter.default.post(Notification(name: .prefsChanged)) } } static var numberOfSecondForAutoHide: Double { get { UserDefaults.standard.double(forKey: UserDefaults.Key.numberOfSecondForAutoHide) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.numberOfSecondForAutoHide) NotificationCenter.default.post(Notification(name: .prefsChanged)) } } static var isAutoHide: Bool { get { UserDefaults.standard.bool(forKey: UserDefaults.Key.isAutoHide) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.isAutoHide) NotificationCenter.default.post(Notification(name: .prefsChanged)) } } static var isShowPreference: Bool { get { UserDefaults.standard.bool(forKey: UserDefaults.Key.isShowPreference) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.isShowPreference) NotificationCenter.default.post(Notification(name: .prefsChanged)) } } static var areSeparatorsHidden: Bool { get { UserDefaults.standard.bool(forKey: UserDefaults.Key.areSeparatorsHidden) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.areSeparatorsHidden) } } static var alwaysHiddenSectionEnabled: Bool { get { UserDefaults.standard.bool(forKey: UserDefaults.Key.alwaysHiddenSectionEnabled) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.alwaysHiddenSectionEnabled) NotificationCenter.default.post(Notification(name: .alwayHideToggle)) } } static var useFullStatusBarOnExpandEnabled: Bool { get { UserDefaults.standard.bool(forKey: UserDefaults.Key.useFullStatusBarOnExpandEnabled) } set { UserDefaults.standard.set(newValue, forKey: UserDefaults.Key.useFullStatusBarOnExpandEnabled) } } } ================================================ FILE: hidden/Common/Util.swift ================================================ // // Util.swift // vanillaClone // // Created by Thanh Nguyen on 1/29/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import AppKit import Foundation import ServiceManagement class Util { static func setUpAutoStart(isAutoStart:Bool) { let runningApps = NSWorkspace.shared.runningApplications let isRunning = !runningApps.filter { $0.bundleIdentifier == Constant.launcherAppId }.isEmpty SMLoginItemSetEnabled(Constant.launcherAppId as CFString, isAutoStart) if isRunning { DistributedNotificationCenter.default().post(name: Notification.Name("killLauncher"), object: Bundle.main.bundleIdentifier!) } } static func showPrefWindow() { let prefWindow = PreferencesWindowController.shared.window prefWindow?.bringToFront() } } ================================================ FILE: hidden/EventMonitor.swift ================================================ // // EventMonitor.swift // vanillaClone // // Created by Thanh Nguyen on 1/28/19. // Copyright © 2019 Thanh Nguyen. All rights reserved. // import Foundation import Cocoa public class EventMonitor { private var monitor: Any? private let mask: NSEvent.EventTypeMask private let handler: (NSEvent?) -> Void public init(mask: NSEvent.EventTypeMask, handler: @escaping (NSEvent?) -> Void) { self.mask = mask self.handler = handler } deinit { stop() } public func start() { monitor = NSEvent.addGlobalMonitorForEvents(matching: mask, handler: handler) } public func stop() { if monitor != nil { NSEvent.removeMonitor(monitor!) monitor = nil } } } ================================================ FILE: hidden/Extensions/Bundle+Extension.swift ================================================ // // Bundle+Extension.swift // Hidden Bar // // Created by phucld on 12/19/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation extension Bundle { var releaseVersionNumber: String? { return infoDictionary?["CFBundleShortVersionString"] as? String } var buildVersionNumber: String? { return infoDictionary?["CFBundleVersion"] as? String } } ================================================ FILE: hidden/Extensions/Date+Extension.swift ================================================ // // Date+Extension.swift // Hidden Bar // // Created by Trung Phan on 22/03/2021. // Copyright © 2021 Dwarves Foundation. All rights reserved. // import Foundation extension Date { static func dateString() -> String { let dateFormater = DateFormatter() dateFormater.dateFormat = "EEE dd MMM" return dateFormater.string(from: Date()) } static func timeString() -> String { let dateFormater = DateFormatter() dateFormater.dateFormat = "hh:mm a" return dateFormater.string(from: Date()) } } ================================================ FILE: hidden/Extensions/NSWindow+Extension.swift ================================================ // // NSWindow+Extension.swift // Hidden Bar // // Created by phucld on 3/6/20. // Copyright © 2020 Dwarves Foundation. All rights reserved. // import AppKit extension NSWindow { func bringToFront() { self.makeKeyAndOrderFront(nil) NSApp.activate(ignoringOtherApps: true) } } ================================================ FILE: hidden/Extensions/Notification.Name+Extension.swift ================================================ // // Notification.Name+Extension.swift // Hidden Bar // // Created by Peter Luo on 2020/6/26. // Copyright © 2020 Dwarves Foundation. All rights reserved. // import Cocoa extension Notification.Name { static let prefsChanged = Notification.Name("prefsChanged") static let alwayHideToggle = Notification.Name("alwayHideToggle") } ================================================ FILE: hidden/Extensions/StackView+Extension.swift ================================================ // // StackView+Extension.swift // Hidden Bar // // Created by Trung Phan on 22/03/2021. // Copyright © 2021 Dwarves Foundation. All rights reserved. // import Cocoa extension NSStackView { func removeAllSubViews() { for view in self.views { view.removeFromSuperview() } } } ================================================ FILE: hidden/Extensions/String+Extension.swift ================================================ // // String+Extension.swift // Hidden Bar // // Created by Licardo on 2020/3/9. // Copyright © 2020 Dwarves Foundation. All rights reserved. // import Foundation extension String { // localize var localized: String { return NSLocalizedString(self, comment: self) } } ================================================ FILE: hidden/Extensions/UserDefault+Extension.swift ================================================ // // UserDefault+Extension.swift // Hidden Bar // // Created by phucld on 12/18/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation extension UserDefaults { enum Key { static let globalKey = "globalKey" static let numberOfSecondForAutoHide = "numberOfSecondForAutoHide" static let isAutoStart = "isAutoStart" static let isAutoHide = "isAutoHide" static let isShowPreference = "isShowPreferences" static let areSeparatorsHidden = "areSeparatorsHidden" static let alwaysHiddenSectionEnabled = "alwaysHiddenSectionEnabled" static let useFullStatusBarOnExpandEnabled = "useFullStatusBarOnExpandEnabled" } open override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) { print("hi!") } } ================================================ FILE: hidden/Features/About/AboutViewController.swift ================================================ // // AboutViewController.swift // Hidden Bar // // Created by phucld on 12/19/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Cocoa class AboutViewController: NSViewController { @IBOutlet weak var lblVersion: NSTextField! static func initWithStoryboard() -> AboutViewController { let vc = NSStoryboard(name:"Main", bundle: nil).instantiateController(withIdentifier: "aboutVC") as! AboutViewController return vc } override func viewDidLoad() { super.viewDidLoad() setupUI() } private func setupUI() { guard let version = Bundle.main.releaseVersionNumber, let buildNumber = Bundle.main.buildVersionNumber else { return } lblVersion.stringValue += " \(version) (\(buildNumber))" } } ================================================ FILE: hidden/Features/Preferences/PreferencesViewController.swift ================================================ // // ViewController.swift // vanillaClone // // Created by Thanh Nguyen on 1/24/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Cocoa import Carbon import HotKey class PreferencesViewController: NSViewController { //MARK: - Outlets @IBOutlet weak var checkBoxKeepLastState: NSButton! @IBOutlet weak var textFieldTitle: NSTextField! @IBOutlet weak var imageViewTop: NSImageView! @IBOutlet weak var statusBarStackView: NSStackView! @IBOutlet weak var arrowPointToHiddenImage: NSImageView! @IBOutlet weak var arrowPointToAlwayHiddenImage: NSImageView! @IBOutlet weak var lblAlwayHidden: NSTextField! @IBOutlet weak var checkBoxAutoHide: NSButton! @IBOutlet weak var checkBoxKeepInDock: NSButton! @IBOutlet weak var checkBoxLogin: NSButton! @IBOutlet weak var checkBoxShowPreferences: NSButton! @IBOutlet weak var checkBoxShowAlwaysHiddenSection: NSButton! @IBOutlet weak var checkBoxUseFullStatusbar: NSButton! @IBOutlet weak var timePopup: NSPopUpButton! @IBOutlet weak var btnClear: NSButton! @IBOutlet weak var btnShortcut: NSButton! public var listening = false { didSet { let isHighlight = listening DispatchQueue.main.async { [weak self] in self?.btnShortcut.highlight(isHighlight) } } } //MARK: - VC Life cycle override func viewDidLoad() { super.viewDidLoad() updateData() loadHotkey() createTutorialView() NotificationCenter.default.addObserver(self, selector: #selector(updateData), name: .prefsChanged, object: nil) } static func initWithStoryboard() -> PreferencesViewController { let vc = NSStoryboard(name:"Main", bundle: nil).instantiateController(withIdentifier: "prefVC") as! PreferencesViewController return vc } //MARK: - Actions @IBAction func loginCheckChanged(_ sender: NSButton) { Preferences.isAutoStart = sender.state == .on } @IBAction func autoHideCheckChanged(_ sender: NSButton) { Preferences.isAutoHide = sender.state == .on } @IBAction func showPreferencesChanged(_ sender: NSButton) { Preferences.isShowPreference = sender.state == .on } @IBAction func showAlwaysHiddenSectionChanged(_ sender: NSButton) { Preferences.alwaysHiddenSectionEnabled = sender.state == .on createTutorialView() } @IBAction func useFullStatusBarOnExpandChanged(_ sender: NSButton) { Preferences.useFullStatusBarOnExpandEnabled = sender.state == .on } @IBAction func timePopupDidSelected(_ sender: NSPopUpButton) { let selectedIndex = sender.indexOfSelectedItem if let selectedInSecond = SelectedSecond(rawValue: selectedIndex)?.toSeconds() { Preferences.numberOfSecondForAutoHide = selectedInSecond } } // When the set shortcut button is pressed start listening for the new shortcut @IBAction func register(_ sender: Any) { listening = true view.window?.makeFirstResponder(nil) } // If the shortcut is cleared, clear the UI and tell AppDelegate to stop listening to the previous keybind. @IBAction func unregister(_ sender: Any?) { let appDelegate = NSApplication.shared.delegate as! AppDelegate appDelegate.hotKey = nil btnShortcut.title = "Set Shortcut".localized listening = false btnClear.isEnabled = false // Remove globalkey from userdefault Preferences.globalKey = nil } public func updateGlobalShortcut(_ event: NSEvent) { self.listening = false guard let characters = event.charactersIgnoringModifiers else {return} let newGlobalKeybind = GlobalKeybindPreferences( function: event.modifierFlags.contains(.function), control: event.modifierFlags.contains(.control), command: event.modifierFlags.contains(.command), shift: event.modifierFlags.contains(.shift), option: event.modifierFlags.contains(.option), capsLock: event.modifierFlags.contains(.capsLock), carbonFlags: event.modifierFlags.carbonFlags, characters: characters, keyCode: uint32(event.keyCode)) Preferences.globalKey = newGlobalKeybind updateKeybindButton(newGlobalKeybind) btnClear.isEnabled = true let appDelegate = NSApplication.shared.delegate as! AppDelegate appDelegate.hotKey = HotKey(keyCombo: KeyCombo(carbonKeyCode: UInt32(event.keyCode), carbonModifiers: event.modifierFlags.carbonFlags)) } public func updateModiferFlags(_ event: NSEvent) { let newGlobalKeybind = GlobalKeybindPreferences( function: event.modifierFlags.contains(.function), control: event.modifierFlags.contains(.control), command: event.modifierFlags.contains(.command), shift: event.modifierFlags.contains(.shift), option: event.modifierFlags.contains(.option), capsLock: event.modifierFlags.contains(.capsLock), carbonFlags: 0, characters: nil, keyCode: uint32(event.keyCode)) updateModifierbindButton(newGlobalKeybind) } @objc private func updateData(){ checkBoxUseFullStatusbar.state = Preferences.useFullStatusBarOnExpandEnabled ? .on : .off checkBoxLogin.state = Preferences.isAutoStart ? .on : .off checkBoxAutoHide.state = Preferences.isAutoHide ? .on : .off checkBoxShowPreferences.state = Preferences.isShowPreference ? .on : .off checkBoxShowAlwaysHiddenSection.state = Preferences.alwaysHiddenSectionEnabled ? .on : .off timePopup.selectItem(at: SelectedSecond.secondToPossition(seconds: Preferences.numberOfSecondForAutoHide)) } private func loadHotkey() { if let globalKey = Preferences.globalKey { updateKeybindButton(globalKey) updateClearButton(globalKey) } } // Set the shortcut button to show the keys to press private func updateKeybindButton(_ globalKeybindPreference : GlobalKeybindPreferences) { btnShortcut.title = globalKeybindPreference.description if globalKeybindPreference.description.count <= 1 { unregister(nil) } } // Set the shortcut button to show the modifier to press private func updateModifierbindButton(_ globalKeybindPreference : GlobalKeybindPreferences) { btnShortcut.title = globalKeybindPreference.description if globalKeybindPreference.description.isEmpty { unregister(nil) } } // If a keybind is set, allow users to clear it by enabling the clear button. private func updateClearButton(_ globalKeybindPreference : GlobalKeybindPreferences?) { btnClear.isEnabled = globalKeybindPreference != nil } } //MARK: - Show tutorial extension PreferencesViewController { func createTutorialView() { if Preferences.alwaysHiddenSectionEnabled { alwayHideStatusBar() }else { hideStatusBar() } } func hideStatusBar() { lblAlwayHidden.isHidden = true arrowPointToAlwayHiddenImage.isHidden = true statusBarStackView.removeAllSubViews() let imageWidth: CGFloat = 16 let images = ["ico_1","ico_2","ico_3","seprated", "ico_collapse","ico_4","ico_5","ico_6","ico_7"].map { imageName in NSImageView(image: NSImage(named: imageName)!) } for image in images { statusBarStackView.addArrangedSubview(image) image.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ image.widthAnchor.constraint(equalToConstant: imageWidth), image.heightAnchor.constraint(equalToConstant: imageWidth) ]) if #available(OSX 10.14, *) { image.contentTintColor = .labelColor } else { // Fallback on earlier versions } } let dateTimeLabel = NSTextField() dateTimeLabel.stringValue = Date.dateString() + " " + Date.timeString() dateTimeLabel.translatesAutoresizingMaskIntoConstraints = false dateTimeLabel.isBezeled = false dateTimeLabel.isEditable = false dateTimeLabel.sizeToFit() dateTimeLabel.backgroundColor = .clear statusBarStackView.addArrangedSubview(dateTimeLabel) NSLayoutConstraint.activate([dateTimeLabel.heightAnchor.constraint(equalToConstant: imageWidth) ]) NSLayoutConstraint.activate([ arrowPointToHiddenImage.centerXAnchor.constraint(equalTo: statusBarStackView.arrangedSubviews[3].centerXAnchor) ]) } func alwayHideStatusBar() { lblAlwayHidden.isHidden = false arrowPointToAlwayHiddenImage.isHidden = false statusBarStackView.removeAllSubViews() let imageWidth: CGFloat = 16 let images = ["ico_1","ico_2","ico_3","ico_4", "seprated_1","ico_5","ico_6","seprated", "ico_collapse","ico_7"].map { imageName in NSImageView(image: NSImage(named: imageName)!) } for image in images { statusBarStackView.addArrangedSubview(image) image.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ image.widthAnchor.constraint(equalToConstant: imageWidth), image.heightAnchor.constraint(equalToConstant: imageWidth) ]) if #available(OSX 10.14, *) { image.contentTintColor = .labelColor } else { // Fallback on earlier versions } } let dateTimeLabel = NSTextField() dateTimeLabel.stringValue = Date.dateString() + " " + Date.timeString() dateTimeLabel.translatesAutoresizingMaskIntoConstraints = false dateTimeLabel.isBezeled = false dateTimeLabel.isEditable = false dateTimeLabel.sizeToFit() dateTimeLabel.backgroundColor = .clear statusBarStackView.addArrangedSubview(dateTimeLabel) NSLayoutConstraint.activate([dateTimeLabel.heightAnchor.constraint(equalToConstant: imageWidth) ]) NSLayoutConstraint.activate([ arrowPointToAlwayHiddenImage.centerXAnchor.constraint(equalTo: statusBarStackView.arrangedSubviews[4].centerXAnchor) ]) NSLayoutConstraint.activate([ arrowPointToHiddenImage.centerXAnchor.constraint(equalTo: statusBarStackView.arrangedSubviews[7].centerXAnchor) ]) } @IBAction func btnAlwayHiddenHelpPressed(_ sender: NSButton) { self.showHowToUseAlwayHiddenPopover(sender: sender) } private func showHowToUseAlwayHiddenPopover(sender: NSButton) { let controller = NSViewController() let label = NSTextField() let text = NSLocalizedString("Tutorial text", comment: "Step by step tutorial") label.stringValue = text label.isBezeled = false label.isEditable = false let view = NSView() view.addSubview(label) NSLayoutConstraint.activate([ label.topAnchor.constraint(equalTo: view.topAnchor), label.bottomAnchor.constraint(equalTo: view.bottomAnchor), label.leadingAnchor.constraint(equalTo: view.leadingAnchor), label.trailingAnchor.constraint(equalTo: view.trailingAnchor) ]) label.translatesAutoresizingMaskIntoConstraints = false controller.view = view let popover = NSPopover() popover.contentViewController = controller popover.contentSize = controller.view.frame.size popover.behavior = .transient popover.animates = true popover.show(relativeTo: self.view.bounds, of: sender , preferredEdge: NSRectEdge.maxX) } } ================================================ FILE: hidden/Features/Preferences/PreferencesWindowController.swift ================================================ // // PreferencesWindowController.swift // Hidden Bar // // Created by Phuc Le Dien on 2/22/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Cocoa class PreferencesWindowController: NSWindowController { enum MenuSegment: Int { case general case about } static let shared: PreferencesWindowController = { let wc = NSStoryboard(name:"Main", bundle: nil).instantiateController(withIdentifier: "MainWindow") as! PreferencesWindowController return wc }() private var menuSegment: MenuSegment = .general { didSet { updateVC() } } private let preferencesVC = PreferencesViewController.initWithStoryboard() private let aboutVC = AboutViewController.initWithStoryboard() override func windowDidLoad() { super.windowDidLoad() updateVC() } override func keyDown(with event: NSEvent) { super.keyDown(with: event) if let vc = self.contentViewController as? PreferencesViewController, vc.listening { vc.updateGlobalShortcut(event) } } override func flagsChanged(with event: NSEvent) { super.flagsChanged(with: event) if let vc = self.contentViewController as? PreferencesViewController, vc.listening { vc.updateModiferFlags(event) } } @IBAction func switchSegment(_ sender: NSSegmentedControl) { guard let segment = MenuSegment(rawValue: sender.indexOfSelectedItem) else {return} menuSegment = segment } private func updateVC() { switch menuSegment { case .general: self.window?.contentViewController = preferencesVC case .about: self.window?.contentViewController = aboutVC } } } ================================================ FILE: hidden/Features/StatusBar/StatusBarController.swift ================================================ // // StatusBarController.swift // vanillaClone // // Created by Thanh Nguyen on 1/30/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import AppKit class StatusBarController { //MARK: - Variables private var timer:Timer? = nil //MARK: - BarItems private let btnExpandCollapse = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength) private let btnSeparate = NSStatusBar.system.statusItem(withLength: 1) private var btnAlwaysHidden:NSStatusItem? = nil private var btnHiddenLength: CGFloat = 20 private var btnHiddenCollapseLength: CGFloat = 2000 private var btnAlwaysHiddenLength: CGFloat = Preferences.alwaysHiddenSectionEnabled ? 20 : 0 private var btnAlwaysHiddenEnableExpandCollapseLength: CGFloat = Preferences.alwaysHiddenSectionEnabled ? 2000 : 0 private let imgIconLine = NSImage(named:NSImage.Name("ic_line")) private var isCollapsed: Bool { return self.btnSeparate.length == self.btnHiddenCollapseLength } private var isBtnSeparateValidPosition: Bool { guard let btnExpandCollapseX = self.btnExpandCollapse.button?.getOrigin?.x, let btnSeparateX = self.btnSeparate.button?.getOrigin?.x else {return false} if Constant.isUsingLTRLanguage { return btnExpandCollapseX >= btnSeparateX } else { return btnExpandCollapseX <= btnSeparateX } } private var isBtnAlwaysHiddenValidPosition: Bool { if !Preferences.alwaysHiddenSectionEnabled { return true } guard let btnSeparateX = self.btnSeparate.button?.getOrigin?.x, let btnAlwaysHiddenX = self.btnAlwaysHidden?.button?.getOrigin?.x else {return false} if Constant.isUsingLTRLanguage { return btnSeparateX >= btnAlwaysHiddenX } else { return btnSeparateX <= btnAlwaysHiddenX } } private var isToggle = false //MARK: - Methods init() { updateCollapsedLengths() setupUI() setupAlwayHideStatusBar() NotificationCenter.default.addObserver(self, selector: #selector(handleScreenParametersChanged), name: NSApplication.didChangeScreenParametersNotification, object: nil) DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: { self.collapseMenuBar() }) if Preferences.areSeparatorsHidden {hideSeparators()} autoCollapseIfNeeded() } deinit { NotificationCenter.default.removeObserver(self) } @objc private func handleScreenParametersChanged() { updateCollapsedLengths() } private func updateCollapsedLengths() { let screenWidth = NSScreen.main?.visibleFrame.width ?? 1728 // Keep collapse length bounded to avoid pathological layout/memory behavior // on newer macOS versions while still fully hiding the trailing section. let boundedCollapseLength = max(500, min(screenWidth + 200, 4000)) btnHiddenCollapseLength = boundedCollapseLength btnAlwaysHiddenEnableExpandCollapseLength = Preferences.alwaysHiddenSectionEnabled ? boundedCollapseLength : 0 } private func setupUI() { if let button = btnSeparate.button { button.image = self.imgIconLine } let menu = self.getContextMenu() btnSeparate.menu = menu updateAutoCollapseMenuTitle() if let button = btnExpandCollapse.button { button.image = Assets.collapseImage button.target = self button.action = #selector(self.btnExpandCollapsePressed(sender:)) button.sendAction(on: [.leftMouseUp, .rightMouseUp]) } btnExpandCollapse.autosaveName = "hiddenbar_expandcollapse"; btnSeparate.autosaveName = "hiddenbar_separate"; } @objc func btnExpandCollapsePressed(sender: NSStatusBarButton) { if let event = NSApp.currentEvent { let isOptionKeyPressed = event.modifierFlags.contains(NSEvent.ModifierFlags.option) if event.type == NSEvent.EventType.leftMouseUp && !isOptionKeyPressed{ self.expandCollapseIfNeeded() } else { self.showHideSeparatorsAndAlwayHideArea() } } } func showHideSeparatorsAndAlwayHideArea() { Preferences.areSeparatorsHidden ? self.showSeparators() : self.hideSeparators() if self.isCollapsed {self.expandMenubar()} } private func showSeparators() { Preferences.areSeparatorsHidden = false if !self.isCollapsed { self.btnSeparate.length = self.btnHiddenLength } self.btnAlwaysHidden?.length = self.btnAlwaysHiddenLength } private func hideSeparators() { guard self.isBtnAlwaysHiddenValidPosition else {return} Preferences.areSeparatorsHidden = true if !self.isCollapsed { self.btnSeparate.length = self.btnHiddenLength } self.btnAlwaysHidden?.length = self.btnAlwaysHiddenEnableExpandCollapseLength } func expandCollapseIfNeeded() { //prevented rapid click cause icon show many in Dock if isToggle {return} isToggle = true self.isCollapsed ? self.expandMenubar() : self.collapseMenuBar() DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { self.isToggle = false } } private func collapseMenuBar() { guard self.isBtnSeparateValidPosition && !self.isCollapsed else { autoCollapseIfNeeded() return } btnSeparate.length = self.btnHiddenCollapseLength if let button = btnExpandCollapse.button { button.image = Assets.expandImage } if Preferences.useFullStatusBarOnExpandEnabled { NSApp.setActivationPolicy(.accessory) NSApp.deactivate() } } private func expandMenubar() { guard self.isCollapsed else {return} btnSeparate.length = btnHiddenLength if let button = btnExpandCollapse.button { button.image = Assets.collapseImage } autoCollapseIfNeeded() if Preferences.useFullStatusBarOnExpandEnabled { NSApp.setActivationPolicy(.regular) NSApp.activate(ignoringOtherApps: true) } } private func autoCollapseIfNeeded() { guard Preferences.isAutoHide else {return} guard !isCollapsed else { return } startTimerToAutoHide() } private func startTimerToAutoHide() { timer?.invalidate() self.timer = Timer.scheduledTimer(withTimeInterval: Preferences.numberOfSecondForAutoHide, repeats: false) { [weak self] _ in DispatchQueue.main.async { if Preferences.isAutoHide { self?.collapseMenuBar() } } } } private func getContextMenu() -> NSMenu { let menu = NSMenu() let prefItem = NSMenuItem(title: "Preferences...".localized, action: #selector(openPreferenceViewControllerIfNeeded), keyEquivalent: "P") prefItem.target = self menu.addItem(prefItem) let toggleAutoHideItem = NSMenuItem(title: "Toggle Auto Collapse".localized, action: #selector(toggleAutoHide), keyEquivalent: "t") toggleAutoHideItem.target = self toggleAutoHideItem.tag = 1 NotificationCenter.default.addObserver(self, selector: #selector(updateAutoHide), name: .prefsChanged, object: nil) menu.addItem(toggleAutoHideItem) menu.addItem(NSMenuItem.separator()) menu.addItem(NSMenuItem(title: "Quit".localized, action: #selector(NSApplication.terminate(_:)), keyEquivalent: "q")) return menu } private func updateAutoCollapseMenuTitle() { guard let toggleAutoHideItem = btnSeparate.menu?.item(withTag: 1) else { return } if Preferences.isAutoHide { toggleAutoHideItem.title = "Disable Auto Collapse".localized } else { toggleAutoHideItem.title = "Enable Auto Collapse".localized } } @objc func updateAutoHide() { updateAutoCollapseMenuTitle() autoCollapseIfNeeded() } @objc func openPreferenceViewControllerIfNeeded() { Util.showPrefWindow() } @objc func toggleAutoHide() { Preferences.isAutoHide.toggle() } } //MARK: - Alway hide feature extension StatusBarController { private func setupAlwayHideStatusBar() { NotificationCenter.default.addObserver(self, selector: #selector(toggleStatusBarIfNeeded), name: .alwayHideToggle, object: nil) toggleStatusBarIfNeeded() } @objc private func toggleStatusBarIfNeeded() { updateCollapsedLengths() if Preferences.alwaysHiddenSectionEnabled { if let existing = self.btnAlwaysHidden { NSStatusBar.system.removeStatusItem(existing) } self.btnAlwaysHidden = NSStatusBar.system.statusItem(withLength: btnAlwaysHiddenLength) if let button = btnAlwaysHidden?.button { button.image = self.imgIconLine button.appearsDisabled = true } self.btnAlwaysHidden?.autosaveName = "hiddenbar_terminate" } else { if let existing = self.btnAlwaysHidden { NSStatusBar.system.removeStatusItem(existing) } self.btnAlwaysHidden = nil } } } ================================================ FILE: hidden/Hidden.entitlements ================================================ com.apple.security.app-sandbox com.apple.security.files.user-selected.read-only ================================================ FILE: hidden/Info.plist ================================================ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIconFile CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType APPL CFBundleShortVersionString $(MARKETING_VERSION) CFBundleVersion $(CURRENT_PROJECT_VERSION) LSApplicationCategoryType public.app-category.utilities LSMinimumSystemVersion $(MACOSX_DEPLOYMENT_TARGET) LSUIElement NSHumanReadableCopyright Copyright © 2019 Dwarves Foundation. All rights reserved. NSMainStoryboardFile Main NSPrincipalClass NSApplication ================================================ FILE: hidden/Models/GlobalKeybindingPreferences.swift ================================================ // // GlobalKeybindingPreferences.swift // Hidden Bar // // Created by phucld on 12/18/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation struct GlobalKeybindPreferences: Codable, CustomStringConvertible { let function : Bool let control : Bool let command : Bool let shift : Bool let option : Bool let capsLock : Bool let carbonFlags : UInt32 let characters : String? let keyCode : UInt32 var description: String { print(keyCode) var stringBuilder = "" if self.function { stringBuilder += "Fn" } if self.control { stringBuilder += "⌃" } if self.option { stringBuilder += "⌥" } if self.command { stringBuilder += "⌘" } if self.shift { stringBuilder += "⇧" } if self.capsLock { stringBuilder += "⇪" } if keyCode == 36 { // return stringBuilder += "⏎" return stringBuilder } if keyCode == 51 { // delete stringBuilder += "⌫" return stringBuilder } if keyCode == 49 { // spacer stringBuilder += "⎵" return stringBuilder } if let characters = self.characters { stringBuilder += characters.uppercased() } return "\(stringBuilder)" } } extension GlobalKeybindPreferences { func save() { } } ================================================ FILE: hidden/Models/SelectedSecond.swift ================================================ // // SelectedSecond.swift // Hidden Bar // // Created by phucld on 12/18/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation enum SelectedSecond: Int { case fiveSeconds = 0 case tenSeconds = 1 case fifteenSeconds = 2 case thirdtySeconds = 3 case oneMinus = 4 func toSeconds() -> Double { switch self { case .fiveSeconds: return 5.0 case .tenSeconds: return 10.0 case .fifteenSeconds: return 15.0 case .thirdtySeconds: return 30.0 case .oneMinus: return 60.0 } } static func secondToPossition(seconds: Double) -> Int { switch seconds { case 10.0: return 1 case 15.0: return 2 case 30.0: return 3 case 60.0: return 4 default: return 0 } } } ================================================ FILE: hidden/Views/HyperlinkTextField.swift ================================================ // // HyperlinkTextField.swift // Hidden Bar // // Created by phucld on 12/19/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation import Cocoa @IBDesignable class HyperlinkTextField: NSTextField { @IBInspectable var href: String = "" override func resetCursorRects() { discardCursorRects() addCursorRect(self.bounds, cursor: NSCursor.pointingHand) } override func awakeFromNib() { super.awakeFromNib() // TODO: Fix this and get the hover click to work. } override func mouseDown(with theEvent: NSEvent) { if let localHref = URL(string: href) { NSWorkspace.shared.open(localHref) } } } ================================================ FILE: hidden/Views/NSBarButtonItem+Extension.swift ================================================ // // NSBarButtonItem+Extension.swift // vanillaClone // // Created by Thanh Nguyen on 1/29/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation import AppKit extension NSStatusBarButton { class func collapseBarButtonItem() -> NSStatusBarButton { let btnDot = NSStatusBarButton() btnDot.title = "" btnDot.sendAction(on: [.leftMouseUp, .rightMouseUp]) btnDot.frame = NSRect(x: 0, y: 0, width: 24, height: 24) return btnDot } } ================================================ FILE: hidden/Views/NSView+Extension.swift ================================================ // // NSView+Extension.swift // vanillaClone // // Created by Thanh Nguyen on 1/29/19. // Copyright © 2019 Dwarves Foundation. All rights reserved. // import Foundation import AppKit extension NSView { var getOrigin:CGPoint? { return self.window?.frame.origin } } ================================================ FILE: hidden/ar.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "تفضيلات..."; "Toggle Auto Collapse" = "بدل حالة الطي التلقائي"; "Enable Auto Collapse" = "مكن الطي التلقائي"; "Disable Auto Collapse" = "عطل الطي التلقائي"; "Quit" = "إنهاء"; "Set Shortcut" = "عين اختصارا"; "Tutorial text" = " استخدم ميزة مخفي دائما لتبقي أيقوناتك مرتبة. إليك كيفية تعيينها خطوات التمكين: مكن “􀥤” الخاص بمخفي دائما (شريط اللون الشفاف) استمر بالضغط على 􀆔 واسحبه إلى الجانب الأيمن من الشريط العادي، قم حرك أي أيقونات تريد إخفائها إلى يمين هذا الشريط. أخيرا، فضلا أنقر بالزر الأيمن على أيقونة الطي “􀆊” لجعلها تختفي. خطوات عرض الأيقونات المخفية دائما: أنقر بالزر الأيمن على أيقونة “􀆊” ثاتية للعرض وكرر الإجراء لتمكين الميزة. استمتع 😉! "; ================================================ FILE: hidden/ar.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "الإعدادات"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "الشريط المخفي"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️مخفي دائما"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "الشريط المخفي"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "الإصدار"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "إنهاء الشريط المخفي"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "حول الشريط المخفي"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "استخدم كامل شريط القائمة عند التوسيع"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "القائمة الرئيسية"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "عام"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "حول"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "تفضيلات…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 ثانية"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "الاختصارات المعممة"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "صندوق"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "أظهر الكل"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "عرض مخصص"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "عرض مخصص"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "عرض مخصص"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "عرض مخصص"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "خدمات"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "تمكين القسم المخفي دائما"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "أخف الشريط المخفي"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "تابعنا على تويتر"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "أخف الآخرين"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "شغل الشريط المخفي عندما أقوم بتسجيل الدخول"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "منظف شريط القائمة"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "إعرف المزيد عنا"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "دقيقة واحدة"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "صندوق"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 ثوان"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "مخفي"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "عين اختصارا"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "هذا التطبيق مفتوخ المصدر بالكامل"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "إعرض التفضيلات عند بدء التشغيل"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "خدمات"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "ظاهر"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons\nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "في شريط القائمة الخاص بـMac الخاص بك، استمر بالضغط على ⌘ واسحب الأيقونات\nبين الأقسام لتكوين الشريط المخفي."; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "أخف الأيقونة تلقائيا بعد: "; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "صندوق"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "١٥ ثانية"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "راسلنا إلكنرونيا"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "الشريط المخفي"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "١٠ ثوان"; /* Class = "NSTextFieldCell"; title = "Monday 08 Mar 9:00AM"; ObjectID = "zAH-cs-dar"; */ "zAH-cs-dar.title" = "الإقنين ٠٨ مارس ٩:٠٠ صباحا"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "عام"; ================================================ FILE: hidden/de.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "Voreinstellungen…"; "Toggle Auto Collapse" = "Automatisch einklappen"; "Enable Auto Collapse" = "Automatisch einklappen einschalten"; "Disable Auto Collapse" = "Automatisch einklappen ausschalten"; "Quit" = "Beenden"; "Set Shortcut" = "Shortcut einstellen"; "Tutorial text" = " Verwende die “permanent ausgeblendet“ Funktion um deine Menüleistensymbole aufgeräumt zu halten.. Und so funktioniert es.. Zum einschalten: 1. Aktiviere permanent ausgeblendet “􀥤” (transluzenter Farbstreifen) 2. Halte 􀆔 und ziehe es auf die linke Seite der normalen Leiste, verschiebe dann die Symbole die ausgeblendet werden sollen auf die linke Seite dieser Leiste. 3. Abschließend klicke mit der rechten Maustaste auf das Einklappen Symbol “􀆊” um sie auszublenden. Zum Anzeigen der permanent ausgeblendeten Symbole: 1. Klicke mit der rechten Maustaste nochmals auf das Einklappen Symbol “􀆊” um sie anzuzeigen und wiederhole den Schritt um die Funktion zu aktivieren. Viel Spaß 😉! "; ================================================ FILE: hidden/de.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "Einstellungen"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️Immer ausgeblendet"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "Version"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Hidden Bar beenden"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "Über Hidden Bar"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "Beim Erweitern die gesamte Menübreite benutzen"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Hauptmenü"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "Allgemein"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "Über"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Voreinstellungen…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 Sekunden"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "Globaler Shortcut"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "Box"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Alle anzeigen"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "Benutzerdefinierte Ansicht"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "Benutzerdefinierte Ansicht"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "Benutzerdefinierte Ansicht"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "Benutzerdefinierte Ansicht"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Dienste"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "Permanent ausgeblendeten Teil aktivieren"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hidden Bar ausblenden"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "Folge uns auf Twitter"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Andere ausblenden"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "Hidden Bar beim Anmelden starten"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "Menüleisten Cleaner"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "Mehr über uns erfahren"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1 Minute"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "Box"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 Sekunden"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "Hidden"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "Shortcut einstellen"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "Diese App ist vollständig Open Source"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "Voreinstellungen beim Starten anzeigen"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Dienste"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "Anzeigen"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons\nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "Halte ⌘ in der Menüleiste und verschiebe Symbole\nzwischen den Sektionen um Hidden Bar zu konfigurieren."; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "Symbol automatisch ausblenden nach: "; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "Box"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15 Sekunden"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "Email an uns senden"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10 Sekunden"; /* Class = "NSTextFieldCell"; title = "Monday 08 Mar 9:00AM"; ObjectID = "zAH-cs-dar"; */ "zAH-cs-dar.title" = "Montag 8. März 9:00 Uhr"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "Allgemein"; ================================================ FILE: hidden/en.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "Preferences..."; "Toggle Auto Collapse" = "Toggle Auto Collapse"; "Enable Auto Collapse" = "Enable Auto Collapse"; "Disable Auto Collapse" = "Disable Auto Collapse"; "Quit" = "Quit"; "Set Shortcut" = "Set Shortcut"; "Tutorial text" = " Use the always hidden feature to keep your icons tidy. Here's how to set it Steps to enable: 1. Enable the always hidden “􀥤” (translucent color bar) 2. Hold 􀆔 and drag it on the left-hand side of the normal bar, then move any icons you want to disappear on the left of that bar. 3. Finally, please right-click on the collapse “􀆊” icon to make it disappear. Steps to view always hidden icons: 1. You right-click on “􀆊” icon again to view and repeat the action to enable the feature. Enjoy 😉! "; ================================================ FILE: hidden/fr.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "Réglages..."; "Toggle Auto Collapse" = "Activer la réduction automatique"; "Enable Auto Collapse" = "Activer la réduction automatique"; "Disable Auto Collapse" = "Désactiver la réduction automatique"; "Quit" = "Quitter"; "Set Shortcut" = "Définir un raccourci"; "Tutorial text" = " Utilisez la fonction de section toujours cachée pour garder vos icônes bien rangées. Étapes pour activer: 1. Activez le «􀥤» toujours masqué (barre de couleur translucide) 2. Maintenez 􀆔 et faites-le glisser sur le côté gauche de la barre normale, puis déplacez les icônes que vous souhaitez faire disparaître sur la gauche de cette barre. 3. Enfin, faites un clic droit sur l'icône de réduction «􀆊» pour la faire disparaître. Étapes pour afficher les icônes toujours masquées: 1. Vous cliquez à nouveau avec le bouton droit de la souris sur l'icône «view» pour afficher et répéter l'action pour activer la fonction. Profitez 😉! "; "Disable Auto Collapse" = "Désactiver la réduction automatique"; ================================================ FILE: hidden/fr.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "Réglages"; /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Personnaliser la barre d'outils"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Chercher"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️Always Hidden"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Baisser"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Augmenter"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Orthographe"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Utiliser la valeur par défaut"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Parole"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Serrer"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "Version"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Chercher"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Passer en mode plein écran"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quitter Hidden Bar"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Édition"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copier le style"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "À propos de Hidden Bar"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Refaire"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Corriger l'orthographe automatiquement"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Direction d'écriture"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Copier / coller intelligent"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Menu principal"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "Général"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "À propos"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Réglages"; /* Class = "NSMenuItem"; title = " Left to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = " De gauche à droite"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Enregistrer sous…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 secondes"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Fermer"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Orthographe et grammaire"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Aide"; /* Class = "NSMenuItem"; title = "Hidden Bar Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "Aide pour Hidden Bar"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Texte"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Gras"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Utiliser la valeur par défaut"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Police"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Direction d'écriture"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "Vue"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Remplacement de texte"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Afficher l'orthographe et la grammaire"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "Raccourci global"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "Vue"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Indice"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Ouvrir…"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justifier"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Ne rien utiliser"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "Boîte"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revenir à enregistré"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Afficher tout"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Tout ramener au premier plan"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Coller la règle"; /* Class = "NSMenuItem"; title = " Left to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = " De gauche à droite"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "Vue personalisée"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "Vue personalisée"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Coller la règle"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "Vue personalisée"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "Vue personalisée"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "Activer la section toujours cachée"; /* Class = "NSMenuItem"; title = " Default"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = " Defaut"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Réduire"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Ligne de base"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Masquer Hidden Bar"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Trouver le précédent"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Arrêter la lecture"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Agrandir"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Afficher les polices"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Agrandir"; /* Class = "NSMenuItem"; title = " Right to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = " De droite à gauche"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Exposant"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Tout sélectionner"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Aller à la sélection"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "Nous suivre sur Twitter"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Fenêtre"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitaliser"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Centre"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Cacher les autres"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italique"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "Démarrer automatiquement Hidden Bar lors de la connexion"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Édition"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Souligner"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "Nouveau"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Coller et correspondre au style"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "Nettoyeur de la barre de menu"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "En savoir plus sur nous"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Rechercher…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Rechercher et remplacer…"; /* Class = "NSMenuItem"; title = " Default"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = " Defaut"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Commencer la lecture"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Aligner à gauche"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1 minute"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraphe"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Imprimer…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Fenêtre"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Police"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Utiliser la valeur par défaut"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "Boîte"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Afficher les couleurs"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "Fichier"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 secondes"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Ne rien utiliser"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "Cachés"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Sélection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Liens intelligents"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Transformer en miniscules"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Texte"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "Fichier"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Annuler"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "Définir le raccourci"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "Voir le répo git open source"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Coller"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "Afficher les réglages au lancement"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Citations intelligentes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "Montrés"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Crénage"; /* Class = "NSMenuItem"; title = " Right to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = " De droite à gauche"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons\nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "Dans la barre des menus de votre Mac, maintenez la touche ⌘ et\nfaites glisser les icônes entre les sections pour configurer Hidden Bar."; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Afficher la barre latérale"; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "Masquer automatiquement l'icône après: "; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "Boîte"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Ouvrir un élément récent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Desserer"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Supprimer"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Enregistrer…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Trouver prochain"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Mise en page…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Vérifier l'orthographe lors de la saisie "; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15 secondes"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Tirets intelligents"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "Nous envoyer un email"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Afficher la barre d'outils"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Détecteurs de donées"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Ouvrir un élément récent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Crénage"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Couper"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Coller le style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Afficher la règle"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Effacer le menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Mettre en majuscule"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Aide"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copier"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Utiliser tous"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Parole"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10 secondes"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Afficher les substitutions"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "Général"; "8z8-6N-wnc.title" = "Utiliser toute la barre de menu lors du développement"; ================================================ FILE: hidden/hr.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "Postavke …"; "Toggle Auto Collapse" = "Uklj/Isklj automatsko sklapanje"; "Enable Auto Collapse" = "Uključi automatsko sklapanje"; "Disable Auto Collapse" = "Isključi automatsko sklapanje"; "Quit" = "Zatvori program"; "Set Shortcut" = "Postavi prečac"; "Tutorial text" = " Koristi funkciju skrivanja ikona za održavanje reda u traci izbornika. Postavlja se na sljedeći način Koraci za uključivanje: 1. Uključi uvijek skriveno „􀥤” (poluprozirna okomita crta) 2. Pritisni i povuci 􀆔 na lijevu stranu standardne trake, zatim premjesti ikone koje želiš sakriti na lijevu stranu te trake. 3. Na kraju pritisni desnom tipkom miša na ikonu za sklapanje „􀆊” kako bi se ikone sakrile. Koraci za prikazivanje uvijek skrivenih ikona: 1. Pritisni desnom tipkom miša ponovo na ikonu „􀆊” i ponovi radnju za uključivanje funkcije. Uživaj 😉! "; ================================================ FILE: hidden/hr.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "Postavke"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️Uvijek skriveno"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "Verzija"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Zatvori Hidden Bar"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "Hidden Bar informacije"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "Koristi cijelu traku izbornika pri rasklapanju"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Glavni izbornik"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "Opće"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "Informacije"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Postavke …"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 s"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "Globalni prečac"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "Kutija"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Prikaži sve"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "Prilagođen prikaz"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "Prilagođen prikaz"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "Prilagođen prikaz"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "Prilagođen prikaz"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Usluge"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "Uključi uvijek skriveni odjeljak"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Sakrij Hidden Bar"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "Prati nas na Twitteru"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Sakrij ostalo"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "Pokreni Hidden Bar nakon prijave"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "Čistač trake izbornika"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "Saznaj više o nama"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1 min"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "Kutija"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 s"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "Skriveno"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "Postavi prečac"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "Ovo je progam otvorenog koda"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "Prikaži postavke nakon pokretanja"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Usluge"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "Prikazano"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons\nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "Za konfiguriranje programa Hidden Bar, u traci izbornika pritisni tipku ⌘ i povuci ikone između odjeljaka."; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "Sakrij ikone automatski nakon: "; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "Pozadina"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15 s"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "Pošalji nam e-mail"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10 s"; /* Class = "NSTextFieldCell"; title = "Monday 08 Mar 9:00AM"; ObjectID = "zAH-cs-dar"; */ "zAH-cs-dar.title" = "Ponedjeljak, 8. ožujka 9:00"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "Opće"; ================================================ FILE: hidden/ja.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "環境設定..."; "Quit" = "終了"; "Toggle Auto Collapse" = "自動折りたたみを切り替える"; "Enable Auto Collapse" = "自動折りたたみオン"; "Disable Auto Collapse" = "自動折りたたみオフ"; "Set Shortcut" = "ショットキーを設定"; "Tutorial text" = " 「アイコンを常に非表示機能」でメニューバーをスッキリできる. 設定方法: 1. 「アイコンを常に非表示機能」を有効にする(半透明の|が表示される). 2. Command(⌘)キーを押しながら,半透明の「|」を不透明「|」の左側に移動して,さらに常に非表示したいアイコンを半透明の「|」の左側に移動する. 3. 最後は「>」を右クリックすると,半透明「|」より左にあるアイコンが常に非表示される. (もう一回「>」を右クリックすると,常に非表示されたアイコンが表示される) "; ================================================ FILE: hidden/ja.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "設置"; /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "カスタマイズツールバー…"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️常に非表示"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSButtonCell"; title = "Keep last app state"; ObjectID = "31D-vN-XSA"; */ "31D-vN-XSA.title" = "前回の使用状態を保留する"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "初期設定を使用する"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "Version"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "フルスクリーン"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Hidden Barを終了"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "編集"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "Hidden Barについて"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "メインメニュー"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "一般"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "About"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "環境設定…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30秒"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "ヘルプ"; /* Class = "NSMenuItem"; title = "Hidden Bar Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "Hidden Bar ヘルプ"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "テキスト"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "フォーマット"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "初期設定を使用する"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "フォント"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "表示"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "グローバルショットキー"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "表示"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSWindow"; title = "Hidden Bar"; ObjectID = "IQv-IB-iLA"; */ "IQv-IB-iLA.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "Box"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "Custom View"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "Custom View"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "Custom View"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "Custom View"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "サービス"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "「アイコンを常に非表示機能」を有効にする"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "アイコンを表示する時に Hidden のメニューバーも表示"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hidden Barを隠す"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "Twitterでフォロー"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "ウィンドウズ"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "ほかを隠す"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "ログインする時 Hidden Bar を起動"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "編集"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "Menu bar cleaner"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "私たちを知る"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1分"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "プリント…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "ウィンドウズ"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "フォント"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "初期設定を利用"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "Box"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "ファイル"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5秒"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSButtonCell"; title = "Keep icon in dock"; ObjectID = "cUd-D7-0WY"; */ "cUd-D7-0WY.title" = "ドックにアイコンを隠さない"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "非表示"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "テキスト"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "ファイル"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "ショットキーを設定"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "このアプリはフルオープンソース"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "ペースト"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "起動時に環境設定を開く"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "サービス"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "ベースライン"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "表示"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "フォーマット"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons \nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "Mac のメニューバーに ⌘ を押しながらアイコンを移動して \nメニューバーをカスタマイズする"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "一定時間を経つと自動的にアイコンを非表示する: "; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "Box"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "最近使った項目"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "削除"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "保存…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "次を探す"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15秒"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "メールで連絡"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "ツールバーを表示する"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "最近使った項目"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "カット"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "ヘルプ"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "コピー"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10秒"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "一般"; ================================================ FILE: hidden/vi.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "Tuỳ chọn..."; "Toggle Auto Collapse" = "Đổi trạng thái tự động ẩn"; "Enable Auto Collapse" = "Bật tự động ẩn"; "Disable Auto Collapse" = "Tắt tự động ẩn"; "Quit" = "Thoát"; "Set Shortcut" = "Cài phím tắt"; "Tutorial text" = " Dùng tính năng luôn ẩn để làm thanh menu gọn gàng hơn bằng cách luôn ẩn những icons bạn không thích. Để bật tính năng này Các bước thực hiện: 1. Bật tính năng luôn ẩn “􀥤” (thanh dọc có màu hơi mờ sẽ xuất hiện) 2. Giữ phím 􀆔 và kéo thanh mờ này về phía bên tay trái của thanh không mờ, di chuyển icons của ứng dụng mà bạn không muốn hiện kể cả khi đang mở rộng (hiện ẩn). 3. Sau cùng, click phải vào icon “􀆊” để luôn ẩn những icon này. Để hiện lại những icon luôn ẩn: 1. Click phải vào nút “􀆊” 😉! "; ================================================ FILE: hidden/vi.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "Tuỳ chọn"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️Luôn ẩn"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "Phiên bản"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Thoát Hidden Bar"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About Hidden Bar"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "Sử dụng toàn thanh công cụ khi mở rộng"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "Bảng tuỳ chỉnh"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "Về chúng tôi"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Tuỳ chọn…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 giây"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "Phím tắt"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "Box"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "Custom View"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "Custom View"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "Custom View"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "Custom View"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "Bật tính năng luôn ẩn"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Ẩn Hidden Bar"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "Theo dõi chúng tôi trên Twitter"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "Chạy Hidden Bar khi khởi động"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "Menu bar cleaner"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "Tìm hiểu thêm về chúng tôi"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1 phút"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "Box"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 giây"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "Ẩn"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "Đặt phím tắt"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "Đây là phần mềm mã nguồn mở"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "Hiện tuỳ chọn lúc khởi chạy"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "Hiện"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons\nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "Ở thanh menu hệ thống, giữ phím ⌘ và nhấn chuột kéo icons\n di chuyển đến vùng cần ẩn /hiện."; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "Tự động ẩn sau: "; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "Box"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15 giây"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "Email cho chúng tôi"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10 giây"; /* Class = "NSTextFieldCell"; title = "Monday 08 Mar 9:00AM"; ObjectID = "zAH-cs-dar"; */ "zAH-cs-dar.title" = "Monday 08 Mar 9:00AM"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "General"; ================================================ FILE: hidden/zh-Hans.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "偏好设置..."; "Toggle Auto Collapse" = "切换自动折叠"; "Enable Auto Collapse" = "开启自动折叠"; "Disable Auto Collapse" = "关闭自动折叠"; "Quit" = "退出"; "Set Shortcut" = "设置快捷键"; "Tutorial text" = " 使用 '持续隐藏' 功能让您的菜单栏保持整洁。这个教程将会帮助您设置这个功能。 启用步骤: 1. 启用持续隐藏功能 ”|“(半透明分割线)。 2. 按住 ⌘ 并将持续隐藏区域拖至一般隐藏区域(不透明|)的左侧。 3. 接着将不想显示的图标移至持续隐藏区域中。 4. 最后右键单击 “>” 按钮,就能隐藏'持续隐藏区域'中的图标。 (再次右键单击 “>” 按钮恢复显示 “持续隐藏区域” 中的图标。) 祝您使用愉快 😉! "; ================================================ FILE: hidden/zh-Hans.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "设置"; /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "Customize Toolbar…"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "Find"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️持续隐藏"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "Lower"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "Raise"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "Transformations"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSButtonCell"; title = "Keep last app state"; ObjectID = "31D-vN-XSA"; */ "31D-vN-XSA.title" = "保留上一次使用应用时的状态"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "Spelling"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "Use Default"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "Speech"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "Tighten"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "版本"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "Find"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "Enter Full Screen"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "Quit Hidden Bar"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "Edit"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "Copy Style"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "About Hidden Bar"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "Redo"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "Correct Spelling Automatically"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "Smart Copy/Paste"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "Main Menu"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "通用设置"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "关于我们"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "Preferences…"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = "\tLeft to Right"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "Save As…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 秒"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "Close"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "Spelling and Grammar"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "Help"; /* Class = "NSMenuItem"; title = "Hidden Bar Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "Hidden Bar Help"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "Text"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "Substitutions"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "Bold"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "Format"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "Use Default"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "Font"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "Writing Direction"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "View"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "Text Replacement"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "Show Spelling and Grammar"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "全局快捷键"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "View"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "Subscript"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "Open…"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSWindow"; title = "Hidden Bar"; ObjectID = "IQv-IB-iLA"; */ "IQv-IB-iLA.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "Justify"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "Use None"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "Box"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "Revert to Saved"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "Show All"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "Bring All to Front"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "Paste Ruler"; /* Class = "NSMenuItem"; title = "\tLeft to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = "\tLeft to Right"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "Custom View"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "Custom View"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "Copy Ruler"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "Custom View"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "Custom View"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "Services"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "启用持续隐藏区域"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "展开隐藏区域时使用完整的菜单栏"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "Minimize"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "Baseline"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "Hide Hidden Bar"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "Find Previous"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "Stop Speaking"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "Bigger"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "Show Fonts"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "Zoom"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "Superscript"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "Select All"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "Jump to Selection"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "在推特上关注我们"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "Window"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "Capitalize"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "Center"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "Hide Others"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "Italic"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "在登录时启动 Hidden Bar"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "Edit"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "Underline"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "New"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "Paste and Match Style"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "菜单栏管理器"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "了解更多"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "Find…"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "Find and Replace…"; /* Class = "NSMenuItem"; title = "\tDefault"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = "\tDefault"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "Start Speaking"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "Align Left"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1 分钟"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "Paragraph"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "Print…"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "Window"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "Font"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "Use Default"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "Box"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "Show Colors"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "File"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "Use Selection for Find"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 秒"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "Transformations"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "Use None"; /* Class = "NSButtonCell"; title = "Keep icon in dock"; ObjectID = "cUd-D7-0WY"; */ "cUd-D7-0WY.title" = "在程序坞中保留图标"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "隐藏"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "Selection"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "Smart Links"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "Make Lower Case"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "Text"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "File"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "Undo"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "设置快捷键"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "此应用完全开源"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "Paste"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "在应用程序启动时显示偏好设置"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "Smart Quotes"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "Check Document Now"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "Services"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "Smaller"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "Baseline"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "显示"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "Kern"; /* Class = "NSMenuItem"; title = "\tRight to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = "\tRight to Left"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "Format"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons \nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "在 Mac 的菜单栏中,按住 ⌘ 并拖动图标\n以自定义菜单栏"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "Show Sidebar"; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "等待"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "Check Grammar With Spelling"; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "Box"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "Ligatures"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "Open Recent"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "Loosen"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "Delete"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "Save…"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "Find Next"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "Page Setup…"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "Check Spelling While Typing"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15 秒"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "Smart Dashes"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "通过电子邮件联系我们"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "Show Toolbar"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "Data Detectors"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "Open Recent"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "Kern"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "Cut"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "Paste Style"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "Show Ruler"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "Clear Menu"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "Make Upper Case"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "Ligatures"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "Align Right"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "Help"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "Copy"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "Use All"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "Speech"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10 秒"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "Show Substitutions"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "通用"; /* Class = "NSTextFieldCell"; title = " "; ObjectID = "ERh-JM-snt"; */ "ERh-JM-snt.title" = " 后自动隐藏图标"; ================================================ FILE: hidden/zh-Hant.lproj/Localizable.strings ================================================ /* Localizable.strings Hidden Bar Created by Licardo on 2020/3/9. Copyright © 2020 Dwarves Foundation. All rights reserved. */ "Preferences..." = "偏好設定⋯"; "Quit" = "結束"; "Toggle Auto Collapse" = "開關自動收合"; "Enable Auto Collapse" = "開啟自動收合"; "Disable Auto Collapse" = "關閉自動收合"; "Set Shortcut" = "設定快速鍵"; "Tutorial text" = " 「持續隱藏」功能讓您的圖示永保整潔。本文會引導您設定這個功能。 啟用步驟: 1. 啟用表示持續隱藏的「|」按鈕(半透明色條) 2. 按住 􀆔,接著拖曳到「一般顯示區域」的左側(一般隱藏區域) 接著將不想顯示的圖示移至「一般隱藏區域」的左側(持續隱藏區域)。 3. 最後,對表示縮回的「􀆊」圖示按下右鍵,就能隱藏「持續隱藏區域」中的圖示。 顯示「持續隱藏」圖示的步驟: 1. 重新對「􀆊」圖示按下右鍵就能顯示「持續隱藏區域」中的圖示, 再按一次就能隱藏。試試看吧 😉! "; ================================================ FILE: hidden/zh-Hant.lproj/Main.strings ================================================ /* Class = "NSTextFieldCell"; title = "Settings"; ObjectID = "1Is-Ut-a9h"; */ "1Is-Ut-a9h.title" = "設定"; /* Class = "NSMenuItem"; title = "Customize Toolbar…"; ObjectID = "1UK-8n-QPP"; */ "1UK-8n-QPP.title" = "自訂工具列⋯"; /* Class = "NSMenuItem"; title = "Hidden Bar"; ObjectID = "1Xt-HY-uBw"; */ "1Xt-HY-uBw.title" = "Hidden Bar"; /* Class = "NSMenu"; title = "Find"; ObjectID = "1b7-l0-nxx"; */ "1b7-l0-nxx.title" = "尋找"; /* Class = "NSTextFieldCell"; title = "⭐️Always Hidden"; ObjectID = "1jU-1x-cFf"; */ "1jU-1x-cFf.title" = "⭐️ 持續隱藏"; /* Class = "NSMenuItem"; title = "Lower"; ObjectID = "1tx-W0-xDw"; */ "1tx-W0-xDw.title" = "調低"; /* Class = "NSMenuItem"; title = "Raise"; ObjectID = "2h7-ER-AoG"; */ "2h7-ER-AoG.title" = "調高"; /* Class = "NSMenuItem"; title = "Transformations"; ObjectID = "2oI-Rn-ZJC"; */ "2oI-Rn-ZJC.title" = "轉換"; /* Class = "NSTextFieldCell"; title = "Hidden Bar"; ObjectID = "2xp-Ht-xa6"; */ "2xp-Ht-xa6.title" = "Hidden Bar"; /* Class = "NSMenu"; title = "Spelling"; ObjectID = "3IN-sU-3Bg"; */ "3IN-sU-3Bg.title" = "拼字檢查"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "3Om-Ey-2VK"; */ "3Om-Ey-2VK.title" = "使用預設值"; /* Class = "NSMenu"; title = "Speech"; ObjectID = "3rS-ZA-NoH"; */ "3rS-ZA-NoH.title" = "語音"; /* Class = "NSMenuItem"; title = "Tighten"; ObjectID = "46P-cB-AYj"; */ "46P-cB-AYj.title" = "緊密"; /* Class = "NSTextFieldCell"; title = "Version"; ObjectID = "4Au-5A-dYq"; */ "4Au-5A-dYq.title" = "版本"; /* Class = "NSMenuItem"; title = "Find"; ObjectID = "4EN-yA-p0u"; */ "4EN-yA-p0u.title" = "尋找"; /* Class = "NSMenuItem"; title = "Enter Full Screen"; ObjectID = "4J7-dP-txa"; */ "4J7-dP-txa.title" = "進入全螢幕"; /* Class = "NSMenuItem"; title = "Quit Hidden Bar"; ObjectID = "4sb-4s-VLi"; */ "4sb-4s-VLi.title" = "結束 Hidden Bar"; /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "5QF-Oa-p0T"; */ "5QF-Oa-p0T.title" = "編輯"; /* Class = "NSMenuItem"; title = "Copy Style"; ObjectID = "5Vv-lz-BsD"; */ "5Vv-lz-BsD.title" = "複製樣式"; /* Class = "NSMenuItem"; title = "About Hidden Bar"; ObjectID = "5kV-Vb-QxS"; */ "5kV-Vb-QxS.title" = "關於 Hidden Bar"; /* Class = "NSMenuItem"; title = "Redo"; ObjectID = "6dh-zS-Vam"; */ "6dh-zS-Vam.title" = "重做"; /* Class = "NSMenuItem"; title = "Correct Spelling Automatically"; ObjectID = "78Y-hA-62v"; */ "78Y-hA-62v.title" = "自動更正拼字"; /* Class = "NSMenu"; title = "Writing Direction"; ObjectID = "8mr-sm-Yjd"; */ "8mr-sm-Yjd.title" = "書寫方向"; /* Class = "NSMenuItem"; title = "Substitutions"; ObjectID = "9ic-FL-obx"; */ "9ic-FL-obx.title" = "替代"; /* Class = "NSMenuItem"; title = "Smart Copy/Paste"; ObjectID = "9yt-4B-nSM"; */ "9yt-4B-nSM.title" = "智慧型拷貝/貼上"; /* Class = "NSMenu"; title = "Main Menu"; ObjectID = "AYu-sK-qS6"; */ "AYu-sK-qS6.title" = "主選單"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[0] = "General"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[0]" = "一般"; /* Class = "NSSegmentedCell"; B2x-1Q-Aei.ibShadowedLabels[1] = "About"; ObjectID = "B2x-1Q-Aei"; */ "B2x-1Q-Aei.ibShadowedLabels[1]" = "關於"; /* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "BOF-NM-1cW"; */ "BOF-NM-1cW.title" = "偏好設定⋯"; /* Class = "NSMenuItem"; title = " Left to Right"; ObjectID = "BgM-ve-c93"; */ "BgM-ve-c93.title" = " 由左至右"; /* Class = "NSMenuItem"; title = "Save As…"; ObjectID = "Bw7-FT-i3A"; */ "Bw7-FT-i3A.title" = "儲存為…"; /* Class = "NSMenuItem"; title = "30 seconds"; ObjectID = "Ch6-Z2-LyX"; */ "Ch6-Z2-LyX.title" = "30 秒"; /* Class = "NSMenuItem"; title = "Close"; ObjectID = "DVo-aG-piG"; */ "DVo-aG-piG.title" = "關閉"; /* Class = "NSMenuItem"; title = "Spelling and Grammar"; ObjectID = "Dv1-io-Yv7"; */ "Dv1-io-Yv7.title" = "拼字和文法檢查"; /* Class = "NSMenu"; title = "Help"; ObjectID = "F2S-fz-NVQ"; */ "F2S-fz-NVQ.title" = "輔助說明"; /* Class = "NSMenuItem"; title = "Hidden Bar Help"; ObjectID = "FKE-Sm-Kum"; */ "FKE-Sm-Kum.title" = "Hidden Bar 輔助說明"; /* Class = "NSMenuItem"; title = "Text"; ObjectID = "Fal-I4-PZk"; */ "Fal-I4-PZk.title" = "文字"; /* Class = "NSMenu"; title = "Substitutions"; ObjectID = "FeM-D8-WVr"; */ "FeM-D8-WVr.title" = "替代"; /* Class = "NSMenuItem"; title = "Bold"; ObjectID = "GB9-OM-e27"; */ "GB9-OM-e27.title" = "粗體"; /* Class = "NSMenu"; title = "Format"; ObjectID = "GEO-Iw-cKr"; */ "GEO-Iw-cKr.title" = "格式"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "GUa-eO-cwY"; */ "GUa-eO-cwY.title" = "使用預設值"; /* Class = "NSMenuItem"; title = "Font"; ObjectID = "Gi5-1S-RQB"; */ "Gi5-1S-RQB.title" = "字型"; /* Class = "NSMenuItem"; title = "Writing Direction"; ObjectID = "H1b-Si-o9J"; */ "H1b-Si-o9J.title" = "書寫方向"; /* Class = "NSMenuItem"; title = "View"; ObjectID = "H8h-7b-M4v"; */ "H8h-7b-M4v.title" = "顯示方式"; /* Class = "NSMenuItem"; title = "Text Replacement"; ObjectID = "HFQ-gK-NFA"; */ "HFQ-gK-NFA.title" = "替代文字"; /* Class = "NSMenuItem"; title = "Show Spelling and Grammar"; ObjectID = "HFo-cy-zxI"; */ "HFo-cy-zxI.title" = "顯示拼字與文法檢查"; /* Class = "NSTextFieldCell"; title = "Global Shortcut"; ObjectID = "HJP-Lf-rxm"; */ "HJP-Lf-rxm.title" = "全域快捷鍵"; /* Class = "NSMenu"; title = "View"; ObjectID = "HyV-fh-RgO"; */ "HyV-fh-RgO.title" = "顯示方式"; /* Class = "NSMenuItem"; title = "Subscript"; ObjectID = "I0S-gh-46l"; */ "I0S-gh-46l.title" = "下標"; /* Class = "NSMenuItem"; title = "Open…"; ObjectID = "IAo-SY-fd9"; */ "IAo-SY-fd9.title" = "開啟⋯"; /* Class = "NSButtonCell"; title = "⌫"; ObjectID = "IId-1b-leb"; */ "IId-1b-leb.title" = "⌫"; /* Class = "NSMenuItem"; title = "Justify"; ObjectID = "J5U-5w-g23"; */ "J5U-5w-g23.title" = "齊行"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "J7y-lM-qPV"; */ "J7y-lM-qPV.title" = "不使用"; /* Class = "NSBox"; title = "Box"; ObjectID = "Jjd-1G-63n"; */ "Jjd-1G-63n.title" = "方框"; /* Class = "NSMenuItem"; title = "Revert to Saved"; ObjectID = "KaW-ft-85H"; */ "KaW-ft-85H.title" = "回復成儲存過的版本"; /* Class = "NSMenuItem"; title = "Show All"; ObjectID = "Kd2-mp-pUS"; */ "Kd2-mp-pUS.title" = "顯示全部"; /* Class = "NSMenuItem"; title = "Bring All to Front"; ObjectID = "LE2-aR-0XJ"; */ "LE2-aR-0XJ.title" = "將此程式所有視窗移至最前"; /* Class = "NSMenuItem"; title = "Paste Ruler"; ObjectID = "LVM-kO-fVI"; */ "LVM-kO-fVI.title" = "貼上尺標"; /* Class = "NSMenuItem"; title = " Left to Right"; ObjectID = "Lbh-J2-qVU"; */ "Lbh-J2-qVU.title" = " 由左至右"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.label" = "自訂顯示方式"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "ML6-W4-U8X"; */ "ML6-W4-U8X.paletteLabel" = "自訂顯示方式"; /* Class = "NSMenuItem"; title = "Copy Ruler"; ObjectID = "MkV-Pr-PK5"; */ "MkV-Pr-PK5.title" = "拷貝尺標"; /* Class = "NSToolbarItem"; label = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.label" = "自訂顯示方式"; /* Class = "NSToolbarItem"; paletteLabel = "Custom View"; ObjectID = "NIO-JJ-pjq"; */ "NIO-JJ-pjq.paletteLabel" = "自訂顯示方式"; /* Class = "NSMenuItem"; title = "Services"; ObjectID = "NMo-om-nkz"; */ "NMo-om-nkz.title" = "服務"; /* Class = "NSButtonCell"; title = "Enable always hidden section"; ObjectID = "Nhn-ch-1f7"; */ "Nhn-ch-1f7.title" = "啟用持續隱藏區域"; /* Class = "NSMenuItem"; title = " Default"; ObjectID = "Nop-cj-93Q"; */ "Nop-cj-93Q.title" = " 預設值"; /* Class = "NSMenuItem"; title = "Minimize"; ObjectID = "OY7-WF-poV"; */ "OY7-WF-poV.title" = "最小化"; /* Class = "NSMenuItem"; title = "Baseline"; ObjectID = "OaQ-X3-Vso"; */ "OaQ-X3-Vso.title" = "基線"; /* Class = "NSMenuItem"; title = "Hide Hidden Bar"; ObjectID = "Olw-nP-bQN"; */ "Olw-nP-bQN.title" = "隱藏 Hidden Bar"; /* Class = "NSMenuItem"; title = "Find Previous"; ObjectID = "OwM-mh-QMV"; */ "OwM-mh-QMV.title" = "尋找上一個"; /* Class = "NSMenuItem"; title = "Stop Speaking"; ObjectID = "Oyz-dy-DGm"; */ "Oyz-dy-DGm.title" = "停止朗讀"; /* Class = "NSMenuItem"; title = "Bigger"; ObjectID = "Ptp-SP-VEL"; */ "Ptp-SP-VEL.title" = "放大"; /* Class = "NSMenuItem"; title = "Show Fonts"; ObjectID = "Q5e-8K-NDq"; */ "Q5e-8K-NDq.title" = "顯示字體"; /* Class = "NSMenuItem"; title = "Zoom"; ObjectID = "R4o-n2-Eq4"; */ "R4o-n2-Eq4.title" = "縮放"; /* Class = "NSMenuItem"; title = " Right to Left"; ObjectID = "RB4-Sm-HuC"; */ "RB4-Sm-HuC.title" = " 由右至左"; /* Class = "NSMenuItem"; title = "Superscript"; ObjectID = "Rqc-34-cIF"; */ "Rqc-34-cIF.title" = "上標"; /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "Ruw-6m-B2m"; */ "Ruw-6m-B2m.title" = "全選"; /* Class = "NSMenuItem"; title = "Jump to Selection"; ObjectID = "S0p-oC-mLd"; */ "S0p-oC-mLd.title" = "跳至所選範圍"; /* Class = "NSTextFieldCell"; title = "Follow us on Twitter"; ObjectID = "Tba-C7-Zr8"; */ "Tba-C7-Zr8.title" = "在 Twitter 追蹤我們"; /* Class = "NSMenu"; title = "Window"; ObjectID = "Td7-aD-5lo"; */ "Td7-aD-5lo.title" = "視窗"; /* Class = "NSMenuItem"; title = "Capitalize"; ObjectID = "UEZ-Bs-lqG"; */ "UEZ-Bs-lqG.title" = "首字大寫"; /* Class = "NSMenuItem"; title = "Center"; ObjectID = "VIY-Ag-zcb"; */ "VIY-Ag-zcb.title" = "置中"; /* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "Vdr-fp-XzO"; */ "Vdr-fp-XzO.title" = "隱藏其他"; /* Class = "NSMenuItem"; title = "Italic"; ObjectID = "Vjx-xi-njq"; */ "Vjx-xi-njq.title" = "斜體"; /* Class = "NSButtonCell"; title = "Start Hidden Bar when I log in"; ObjectID = "W1G-55-zGo"; */ "W1G-55-zGo.title" = "登入時啟動 Hidden Bar"; /* Class = "NSMenu"; title = "Edit"; ObjectID = "W48-6f-4Dl"; */ "W48-6f-4Dl.title" = "編輯"; /* Class = "NSMenuItem"; title = "Underline"; ObjectID = "WRG-CD-K1S"; */ "WRG-CD-K1S.title" = "底線"; /* Class = "NSMenuItem"; title = "New"; ObjectID = "Was-JA-tGl"; */ "Was-JA-tGl.title" = "新增"; /* Class = "NSMenuItem"; title = "Paste and Match Style"; ObjectID = "WeT-3V-zwk"; */ "WeT-3V-zwk.title" = "貼上並符合樣式"; /* Class = "NSTextFieldCell"; title = "Menu bar cleaner"; ObjectID = "X4W-sr-Z32"; */ "X4W-sr-Z32.title" = "選單列清道夫"; /* Class = "NSTextFieldCell"; title = "Know more about us"; ObjectID = "Xb1-xM-sYy"; */ "Xb1-xM-sYy.title" = "了解我們更多"; /* Class = "NSMenuItem"; title = "Find…"; ObjectID = "Xz5-n4-O0W"; */ "Xz5-n4-O0W.title" = "尋找⋯"; /* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "YEy-JH-Tfz"; */ "YEy-JH-Tfz.title" = "尋找與取代⋯"; /* Class = "NSMenuItem"; title = " Default"; ObjectID = "YGs-j5-SAR"; */ "YGs-j5-SAR.title" = " 預設值"; /* Class = "NSMenuItem"; title = "Start Speaking"; ObjectID = "Ynk-f8-cLZ"; */ "Ynk-f8-cLZ.title" = "開始朗讀"; /* Class = "NSMenuItem"; title = "Align Left"; ObjectID = "ZM1-6Q-yy1"; */ "ZM1-6Q-yy1.title" = "齊左"; /* Class = "NSMenuItem"; title = "1 minute"; ObjectID = "Zkr-Xd-Ffh"; */ "Zkr-Xd-Ffh.title" = "1 分鐘"; /* Class = "NSMenuItem"; title = "Paragraph"; ObjectID = "ZvO-Gk-QUH"; */ "ZvO-Gk-QUH.title" = "段落"; /* Class = "NSMenuItem"; title = "Print…"; ObjectID = "aTl-1u-JFS"; */ "aTl-1u-JFS.title" = "列印⋯"; /* Class = "NSMenuItem"; title = "Window"; ObjectID = "aUF-d1-5bR"; */ "aUF-d1-5bR.title" = "視窗"; /* Class = "NSMenu"; title = "Font"; ObjectID = "aXa-aM-Jaq"; */ "aXa-aM-Jaq.title" = "字體"; /* Class = "NSMenuItem"; title = "Use Default"; ObjectID = "agt-UL-0e3"; */ "agt-UL-0e3.title" = "使用預設值"; /* Class = "NSTextFieldCell"; title = "MIT © Dwarves Foundation"; ObjectID = "b1t-QR-iSj"; */ "b1t-QR-iSj.title" = "MIT © Dwarves Foundation"; /* Class = "NSBox"; title = "Box"; ObjectID = "bFi-aV-ejJ"; */ "bFi-aV-ejJ.title" = "方框"; /* Class = "NSMenuItem"; title = "Show Colors"; ObjectID = "bgn-CT-cEk"; */ "bgn-CT-cEk.title" = "顯示顏色"; /* Class = "NSMenu"; title = "File"; ObjectID = "bib-Uj-vzu"; */ "bib-Uj-vzu.title" = "檔案"; /* Class = "NSMenuItem"; title = "Use Selection for Find"; ObjectID = "buJ-ug-pKt"; */ "buJ-ug-pKt.title" = "使用所選範圍尋找"; /* Class = "NSMenuItem"; title = "5 seconds"; ObjectID = "bzS-lm-JvT"; */ "bzS-lm-JvT.title" = "5 秒"; /* Class = "NSMenu"; title = "Transformations"; ObjectID = "c8a-y6-VQd"; */ "c8a-y6-VQd.title" = "轉換"; /* Class = "NSMenuItem"; title = "Use None"; ObjectID = "cDB-IK-hbR"; */ "cDB-IK-hbR.title" = "不使用"; /* Class = "NSTextFieldCell"; title = "Hidden"; ObjectID = "cXt-8R-PHo"; */ "cXt-8R-PHo.title" = "隱藏區"; /* Class = "NSMenuItem"; title = "Selection"; ObjectID = "cqv-fj-IhA"; */ "cqv-fj-IhA.title" = "所選範圍"; /* Class = "NSMenuItem"; title = "Smart Links"; ObjectID = "cwL-P1-jid"; */ "cwL-P1-jid.title" = "智慧型連結"; /* Class = "NSMenuItem"; title = "Make Lower Case"; ObjectID = "d9M-CD-aMd"; */ "d9M-CD-aMd.title" = "小寫"; /* Class = "NSMenu"; title = "Text"; ObjectID = "d9c-me-L2H"; */ "d9c-me-L2H.title" = "文字"; /* Class = "NSMenuItem"; title = "File"; ObjectID = "dMs-cI-mzQ"; */ "dMs-cI-mzQ.title" = "檔案"; /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "dRJ-4n-Yzg"; */ "dRJ-4n-Yzg.title" = "還原"; /* Class = "NSButtonCell"; title = "Set Shortcut"; ObjectID = "fc2-jD-QNf"; */ "fc2-jD-QNf.title" = "設定快捷鍵"; /* Class = "NSTextFieldCell"; title = "This app is fully open source"; ObjectID = "fqc-io-QOP"; */ "fqc-io-QOP.title" = "這個 App 完全開源"; /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "gVA-U4-sdL"; */ "gVA-U4-sdL.title" = "貼上"; /* Class = "NSButtonCell"; title = "Show preferences on launch"; ObjectID = "hCh-Ue-NgH"; */ "hCh-Ue-NgH.title" = "啟動時顯示偏好設定"; /* Class = "NSMenuItem"; title = "Smart Quotes"; ObjectID = "hQb-2v-fYv"; */ "hQb-2v-fYv.title" = "智慧型引號"; /* Class = "NSMenuItem"; title = "Check Document Now"; ObjectID = "hz2-CU-CR7"; */ "hz2-CU-CR7.title" = "立即檢查文件"; /* Class = "NSMenu"; title = "Services"; ObjectID = "hz9-B4-Xy5"; */ "hz9-B4-Xy5.title" = "服務"; /* Class = "NSMenuItem"; title = "Smaller"; ObjectID = "i1d-Er-qST"; */ "i1d-Er-qST.title" = "縮小"; /* Class = "NSMenu"; title = "Baseline"; ObjectID = "ijk-EB-dga"; */ "ijk-EB-dga.title" = "基線"; /* Class = "NSTextFieldCell"; title = "Shown"; ObjectID = "iyS-g5-5mk"; */ "iyS-g5-5mk.title" = "顯示區"; /* Class = "NSMenuItem"; title = "Kern"; ObjectID = "jBQ-r6-VK2"; */ "jBQ-r6-VK2.title" = "字元間距"; /* Class = "NSMenuItem"; title = " Right to Left"; ObjectID = "jFq-tB-4Kx"; */ "jFq-tB-4Kx.title" = " 由右至左"; /* Class = "NSMenuItem"; title = "Format"; ObjectID = "jxT-CU-nIS"; */ "jxT-CU-nIS.title" = "格式"; /* Class = "NSTextFieldCell"; title = "In your Mac's menu bar, hold ⌘ and drag icons\nbetween sections to configure Hidden Bar."; ObjectID = "k7C-e5-6a0"; */ "k7C-e5-6a0.title" = "按住 ⌘ 並在區塊間拖曳 Mac 選單列的圖示\n就是 Hidden Bar 的設定方法。"; /* Class = "NSMenuItem"; title = "Show Sidebar"; ObjectID = "kIP-vf-haE"; */ "kIP-vf-haE.title" = "顯示側邊欄"; /* Class = "NSButtonCell"; title = "Automatically hide icon after: "; ObjectID = "kg8-rW-srh"; */ "kg8-rW-srh.title" = "自動隱藏圖示的時間間隔:"; /* Class = "NSMenuItem"; title = "Check Grammar With Spelling"; ObjectID = "mK6-2p-4JG"; */ "mK6-2p-4JG.title" = "檢查拼字文法"; /* Class = "NSBox"; title = "Box"; ObjectID = "mtL-vU-2iq"; */ "mtL-vU-2iq.title" = "方框"; /* Class = "NSMenuItem"; title = "Ligatures"; ObjectID = "o6e-r0-MWq"; */ "o6e-r0-MWq.title" = "連字"; /* Class = "NSMenu"; title = "Open Recent"; ObjectID = "oas-Oc-fiZ"; */ "oas-Oc-fiZ.title" = "打開最近使用過的檔案"; /* Class = "NSMenuItem"; title = "Loosen"; ObjectID = "ogc-rX-tC1"; */ "ogc-rX-tC1.title" = "寬鬆"; /* Class = "NSMenuItem"; title = "Delete"; ObjectID = "pa3-QI-u2k"; */ "pa3-QI-u2k.title" = "刪除"; /* Class = "NSMenuItem"; title = "Save…"; ObjectID = "pxx-59-PXV"; */ "pxx-59-PXV.title" = "儲存⋯"; /* Class = "NSMenuItem"; title = "Find Next"; ObjectID = "q09-fT-Sye"; */ "q09-fT-Sye.title" = "尋找下一個"; /* Class = "NSMenuItem"; title = "Page Setup…"; ObjectID = "qIS-W8-SiK"; */ "qIS-W8-SiK.title" = "設定頁面⋯"; /* Class = "NSMenuItem"; title = "Check Spelling While Typing"; ObjectID = "rbD-Rh-wIN"; */ "rbD-Rh-wIN.title" = "在輸入時同步檢查拼字"; /* Class = "NSMenuItem"; title = "15 seconds"; ObjectID = "rdn-Xm-fZD"; */ "rdn-Xm-fZD.title" = "15 秒"; /* Class = "NSMenuItem"; title = "Smart Dashes"; ObjectID = "rgM-f4-ycn"; */ "rgM-f4-ycn.title" = "智慧型破折號"; /* Class = "NSTextFieldCell"; title = "Email us"; ObjectID = "sRr-sO-uV0"; */ "sRr-sO-uV0.title" = "用電子郵件聯絡我們"; /* Class = "NSMenuItem"; title = "Show Toolbar"; ObjectID = "snW-S8-Cw5"; */ "snW-S8-Cw5.title" = "顯示工具列"; /* Class = "NSMenuItem"; title = "Data Detectors"; ObjectID = "tRr-pd-1PS"; */ "tRr-pd-1PS.title" = "資料偵測器"; /* Class = "NSMenuItem"; title = "Open Recent"; ObjectID = "tXI-mr-wws"; */ "tXI-mr-wws.title" = "打開最近使用過的檔案"; /* Class = "NSMenu"; title = "Kern"; ObjectID = "tlD-Oa-oAM"; */ "tlD-Oa-oAM.title" = "字元間距"; /* Class = "NSMenu"; title = "Hidden Bar"; ObjectID = "uQy-DD-JDr"; */ "uQy-DD-JDr.title" = "Hidden Bar"; /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "uRl-iY-unG"; */ "uRl-iY-unG.title" = "剪下"; /* Class = "NSMenuItem"; title = "Paste Style"; ObjectID = "vKC-jM-MkH"; */ "vKC-jM-MkH.title" = "貼上樣式"; /* Class = "NSMenuItem"; title = "Show Ruler"; ObjectID = "vLm-3I-IUL"; */ "vLm-3I-IUL.title" = "顯示尺標"; /* Class = "NSMenuItem"; title = "Clear Menu"; ObjectID = "vNY-rz-j42"; */ "vNY-rz-j42.title" = "清除選單"; /* Class = "NSMenuItem"; title = "Make Upper Case"; ObjectID = "vmV-6d-7jI"; */ "vmV-6d-7jI.title" = "大寫"; /* Class = "NSMenu"; title = "Ligatures"; ObjectID = "w0m-vy-SC9"; */ "w0m-vy-SC9.title" = "連字"; /* Class = "NSMenuItem"; title = "Align Right"; ObjectID = "wb2-vD-lq4"; */ "wb2-vD-lq4.title" = "齊右"; /* Class = "NSMenuItem"; title = "Help"; ObjectID = "wpr-3q-Mcd"; */ "wpr-3q-Mcd.title" = "輔助說明"; /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "x3v-GG-iWU"; */ "x3v-GG-iWU.title" = "拷貝"; /* Class = "NSMenuItem"; title = "Use All"; ObjectID = "xQD-1f-W4t"; */ "xQD-1f-W4t.title" = "使用全部"; /* Class = "NSMenuItem"; title = "Speech"; ObjectID = "xrE-MZ-jX0"; */ "xrE-MZ-jX0.title" = "語音"; /* Class = "NSMenuItem"; title = "10 seconds"; ObjectID = "z2X-nw-vxX"; */ "z2X-nw-vxX.title" = "10 秒"; /* Class = "NSMenuItem"; title = "Show Substitutions"; ObjectID = "z6F-FW-3nz"; */ "z6F-FW-3nz.title" = "顯示替代項目"; /* Class = "NSTextFieldCell"; title = "General"; ObjectID = "zAf-vj-OOZ"; */ "zAf-vj-OOZ.title" = "一般"; /* Class = "NSButtonCell"; title = "Use the full MenuBar on expanding"; ObjectID = "8z8-6N-wnc"; */ "8z8-6N-wnc.title" = "展開隱藏區時淨空選單列";