⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 localizedstringsmac.mm

📁 linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自WebKit
💻 MM
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (C) 2003, 2006 Apple Computer, Inc.  All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  */#import "config.h"#import "LocalizedStrings.h"#import "BlockExceptions.h"#import "IntSize.h"#import "PlatformString.h"#import "WebCoreViewFactory.h"namespace WebCore {String inputElementAltText(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] inputElementAltText];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String resetButtonDefaultLabel(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] resetButtonDefaultLabel];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String searchableIndexIntroduction(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] searchableIndexIntroduction];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String submitButtonDefaultLabel(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] submitButtonDefaultLabel];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String fileButtonChooseFileLabel(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] fileButtonChooseFileLabel];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String fileButtonNoFileSelectedLabel(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] fileButtonNoFileSelectedLabel];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String copyImageUnknownFileLabel(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] copyImageUnknownFileLabel];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagOpenLinkInNewWindow(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagOpenLinkInNewWindow];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagDownloadLinkToDisk(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagDownloadLinkToDisk];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagCopyLinkToClipboard(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagCopyLinkToClipboard];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagOpenImageInNewWindow(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagOpenImageInNewWindow];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagDownloadImageToDisk(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagDownloadImageToDisk];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagCopyImageToClipboard(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagCopyImageToClipboard];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagOpenFrameInNewWindow(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagOpenFrameInNewWindow];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagCopy(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagCopy];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagGoBack(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagGoBack];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagGoForward(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagGoForward];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagStop(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagStop];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagReload(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagReload];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagCut(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagCut];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagPaste(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagPaste];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagNoGuessesFound(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagNoGuessesFound];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagIgnoreSpelling(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagIgnoreSpelling];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagLearnSpelling(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagLearnSpelling];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagSearchInSpotlight(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagSearchInSpotlight];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagSearchWeb(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagSearchWeb];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagLookUpInDictionary(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagLookUpInDictionary];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagOpenLink(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagOpenLink];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagIgnoreGrammar(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagIgnoreGrammar];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagSpellingMenu(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagSpellingMenu];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagShowSpellingPanel(bool show){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagShowSpellingPanel:show];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagCheckSpelling(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagCheckSpelling];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}String contextMenuItemTagCheckSpellingWhileTyping(){    BEGIN_BLOCK_OBJC_EXCEPTIONS;    return [[WebCoreViewFactory sharedFactory] contextMenuItemTagCheckSpellingWhileTyping];    END_BLOCK_OBJC_EXCEPTIONS;    return String();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -