source: trunk/ICeCoffEE/ICeCoffEE/English.lproj/Localizable.strings@ 678

Last change on this file since 678 was 495, checked in by Nicholas Riley, 15 years ago

English.proj/APEInfo.rtfd: Updated for 1.5b5.

English.lproj/InfoPlist.strings: Updated copyright date.

English.lproj/Localizable.strings: Don't report an error in WebKit if
there's nothing to launch ("Sorry, ICeCoffEE was unable to find
anything to select").

ICeCoffEE/ICeCoffEE.m: Don't trigger exception with Command-click
outside text range (introduced in 10.5.x?).

ICeCoffEE/ICeCoffEEWebKit.m: Update for WebFrame changes (r39145).

VERSION.xcconfig: Updated for 1.5b5.

File size: 7.2 KB
Line 
1/**** "Open With" menu ****/
2
3/* Format for 'default app', e.g "Internet Explorer (5.2) (default)" */
4"DefaultApp%@" = "%@ (default)";
5
6/* Format for app location, e.g "Internet Explorer (5.2) -- /Applications" */
7"App%@Location%@" = "%@ — %@";
8
9/* First (disabled, label) element of menu */
10"Open Location With" = "Open Location With";
11
12/* Disabled item above bookmark helper application */
13"Add Bookmark" = "Add Bookmark";
14
15"Copy Link" = "Copy Link";
16
17/**** Add Bookmark dialog box ****/
18
19/* Title from "Add Bookmark" above */
20
21/* Message */
22"Bookmark name and description are optional." = "Bookmark name and description are optional.";
23
24/* URL text field label */
25"Location:" = "Location:";
26
27/* Bookmark name text field label */
28"Name:" = "Name:";
29
30/* Bookmark description text field label */
31"Description:" = "Description:";
32
33/* Buttons */
34"Add" = "Add";
35"Cancel" = "Cancel";
36
37
38/**** Shared URL launching errors ****/
39
40/* Alert (presented on OSStatus or NSException) */
41"AlertTitle" = "Open Internet Location";
42"AlertMessage%@" = "The selected Internet location could not be opened.\n\n%@.";
43"AlertDisableButton" = "Disable ICeCoffEE…";
44
45/* Session disable alert */
46"DisableAlertTitle" = "Disable ICeCoffEE";
47"DisableAlertMessage%@" = "If you believe ICeCoffEE is interfering with the normal functioning of the application “%@”, you can turn it off in this application until the application has quit.\n\nIf this is the first time you have experienced this problem, please email icecoffee@sabi.net with the details of the conflict.\n\nTo disable ICeCoffEE permanently, use the Application Enhancer pane of System Preferences.";
48"DisableAlertDisableButton" = "Disable";
49"DisableAlertDontDisableButton" = "Don’t Disable";
50
51
52/**** Shared URL parsing errors ****/
53
54/* After processing, the URL is too long */
55"The potential URL is longer than %lu characters" = "The potential URL is longer than %lu characters";
56
57/* After processing, no URL could be found */
58"No URL is selected" = "No URL is selected";
59
60/* ICStart error */
61"Unable to start Internet Config (error %d)" = "Unable to start Internet Config (error %d)";
62
63
64/**** NSTextView launching errors ****/
65
66/* Can't get selected range */
67"There is no insertion point or selection in the text field where you clicked" = "There is no insertion point or selection in the text field where you clicked";
68
69/* Can't get text storage */
70"Sorry, ICeCoffEE is unable to locate the insertion point or selection" = "Sorry, ICeCoffEE is unable to locate the insertion point or selection";
71
72/* Text storage has zero length */
73"No text was found" = "No text was found";
74
75
76/**** Terminal launching errors ****/
77
78/* Word selection produced nothing */
79"Sorry, ICeCoffEE was unable to find anything to select" = "Sorry, ICeCoffEE was unable to find any text to select";
80
81
82/**** Internet Config errors ****/
83
84/* icPrefNotFoundErr */
85"-666" = "No helper application is set for the selected URL’s scheme (e.g. http:)";
86
87/* icNoURLErr */
88"-673" = "The selection is not a URL";
89
90/* icInternalErr */
91"-669" = "Internet Config experienced an internal error";
92
93
94/**** Launch Services errors ****/
95
96/* kLSApplicationNotFoundErr */
97"-10814" = "No helper applications are available for the selected URL’s scheme (e.g. http:)";
98
99
100/**** Misc. errors ****/
101
102/* fnfErr */
103"-43" = "The URL references a local file which could not be found";
104
105/* paramErr */
106"-50" = "The selection is not a complete URL";
107
108/* kTECNoConversionPathErr */
109"-8749" = "The selected URL contains invalid (non-ASCII) characters";
110
111/* Message to use if no OSError lookup message is available; substitutes context */
112"An unknown error occurred in %@" = "An unknown error occurred in %@";
Note: See TracBrowser for help on using the repository browser.