Browse Source

Added reload button

Thomas Buck 10 years ago
parent
commit
d19921aed8

+ 19
- 1
RedditBar.xcodeproj/project.pbxproj View File

@@ -37,7 +37,7 @@
37 37
 /* End PBXContainerItemProxy section */
38 38
 
39 39
 /* Begin PBXFileReference section */
40
-		E90E74B3184FAA0F00F38929 /* en */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
40
+		E90E74B3184FAA0F00F38929 /* en */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
41 41
 		E90E74B6184FAADE00F38929 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/MainMenu.strings; sourceTree = "<group>"; };
42 42
 		E90E74B7184FAADE00F38929 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Prefs.strings; sourceTree = "<group>"; };
43 43
 		E90E74B8184FAADE00F38929 /* de */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
@@ -47,6 +47,8 @@
47 47
 		E9341912184A1A1A00D03488 /* StateModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateModel.h; sourceTree = "<group>"; };
48 48
 		E9341913184A1A1A00D03488 /* StateModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateModel.m; sourceTree = "<group>"; };
49 49
 		E934191A184A47DE00D03488 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/Prefs.xib; sourceTree = "<group>"; };
50
+		E97FD65E185232CA006B5B3E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MainMenu.strings; sourceTree = "<group>"; };
51
+		E97FD65F185232D5006B5B3E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Prefs.strings; sourceTree = "<group>"; };
50 52
 		E9A129AF184BD24000F50D1D /* RedditItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RedditItem.h; sourceTree = "<group>"; };
51 53
 		E9A129B0184BD24000F50D1D /* RedditItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RedditItem.m; sourceTree = "<group>"; };
52 54
 		E9B6773C184B73DC00850559 /* Reddit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reddit.h; sourceTree = "<group>"; };
@@ -197,6 +199,7 @@
197 199
 				E9CF1F1A184961010004AE02 /* Frameworks */,
198 200
 				E9341915184A3A6500D03488 /* ShellScript */,
199 201
 				E9CF1F1B184961010004AE02 /* Resources */,
202
+				E97FD65D185231D0006B5B3E /* ShellScript */,
200 203
 			);
201 204
 			buildRules = (
202 205
 			);
@@ -297,6 +300,19 @@
297 300
 			shellPath = /bin/sh;
298 301
 			shellScript = "buildNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleVersion\" \"${PROJECT_DIR}/${INFOPLIST_FILE}\")\nbuildNumber=$(($buildNumber + 1))\n/usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $buildNumber\" \"${PROJECT_DIR}/${INFOPLIST_FILE}\"";
299 302
 		};
303
+		E97FD65D185231D0006B5B3E /* ShellScript */ = {
304
+			isa = PBXShellScriptBuildPhase;
305
+			buildActionMask = 2147483647;
306
+			files = (
307
+			);
308
+			inputPaths = (
309
+			);
310
+			outputPaths = (
311
+			);
312
+			runOnlyForDeploymentPostprocessing = 0;
313
+			shellPath = /bin/sh;
314
+			shellScript = "# update_storyboard_strings.sh - automatically extract translatable strings from storyboards and update strings files\n# Based on http://forums.macrumors.com/showpost.php?p=16060008&postcount=4 by mikezang\n\nstoryboardExt=\".xib\"\nstringsExt=\".strings\"\nnewStringsExt=\".strings.new\"\noldStringsExt=\".strings.old\"\nlocaleDirExt=\".lproj\"\n\n# Find storyboard file full path inside project folder\nfor storyboardPath in `find . -name \"*$storyboardExt\" -print`\ndo\n# Get Base strings file full path\nbaseStringsPath=$(echo \"$storyboardPath\" | sed \"s/$storyboardExt/$stringsExt/\")\n\n# Create base strings file if it doesn't exist\nif ! [ -f $baseStringsPath ]; then\ntouch -r $storyboardPath $baseStringsPath\n# Make base strings file older than the storyboard file\ntouch -A -01 $baseStringsPath\nfi\n\n# Create strings file only when storyboard file newer\nif find $storyboardPath -prune -newer $baseStringsPath -print | grep -q .; then\n# Get storyboard file name and folder\nstoryboardFile=$(basename \"$storyboardPath\")\nstoryboardDir=$(dirname \"$storyboardPath\")\n\n# Get New Base strings file full path and strings file name\nnewBaseStringsPath=$(echo \"$storyboardPath\" | sed \"s/$storyboardExt/$newStringsExt/\")\nstringsFile=$(basename \"$baseStringsPath\")\nibtool --export-strings-file $newBaseStringsPath $storyboardPath\niconv -f UTF-16 -t UTF-8 $newBaseStringsPath > $baseStringsPath\nrm $newBaseStringsPath\n\n# Get all locale strings folder\nfor localeStringsDir in `find . -name \"*$localeDirExt\" -print`\ndo\n# Skip Base strings folder\nif [ $localeStringsDir != $storyboardDir ]; then\nlocaleStringsPath=$localeStringsDir/$stringsFile\n\n# Just copy base strings file on first time\nif [ ! -e $localeStringsPath ]; then\ncp $baseStringsPath $localeStringsPath\nelse\noldLocaleStringsPath=$(echo \"$localeStringsPath\" | sed \"s/$stringsExt/$oldStringsExt/\")\ncp $localeStringsPath $oldLocaleStringsPath\n\n# Merge baseStringsPath to localeStringsPath\nawk 'NR == FNR && /^\\/\\*/ {x=$0; getline; a[x]=$0; next} /^\\/\\*/ {x=$0; print; getline; $0=a[x]?a[x]:$0; printf $0\"\\n\\n\"}' $oldLocaleStringsPath $baseStringsPath > $localeStringsPath\n\nrm $oldLocaleStringsPath\nfi\nfi\ndone\nelse\necho \"$storyboardPath file not modified.\"\nfi\ndone";
315
+		};
300 316
 /* End PBXShellScriptBuildPhase section */
301 317
 
302 318
 /* Begin PBXSourcesBuildPhase section */
@@ -346,6 +362,7 @@
346 362
 			children = (
347 363
 				E934191A184A47DE00D03488 /* Base */,
348 364
 				E90E74B7184FAADE00F38929 /* de */,
365
+				E97FD65F185232D5006B5B3E /* en */,
349 366
 			);
350 367
 			name = Prefs.xib;
351 368
 			sourceTree = "<group>";
@@ -373,6 +390,7 @@
373 390
 			children = (
374 391
 				E9CF1F36184961020004AE02 /* Base */,
375 392
 				E90E74B6184FAADE00F38929 /* de */,
393
+				E97FD65E185232CA006B5B3E /* en */,
376 394
 			);
377 395
 			name = MainMenu.xib;
378 396
 			sourceTree = "<group>";

+ 1
- 0
RedditBar/AppDelegate.h View File

@@ -48,6 +48,7 @@
48 48
 
49 49
 -(IBAction)showPreferences:(id)sender;
50 50
 -(IBAction)showAbout:(id)sender;
51
+- (IBAction)reloadCompleteList:(id)sender;
51 52
 -(IBAction)linkToOpen:(id)sender;
52 53
 
53 54
 -(void)reloadListWithOptions;

+ 16
- 13
RedditBar/AppDelegate.m View File

@@ -131,30 +131,33 @@
131 131
     [NSThread detachNewThreadSelector:@selector(isAuthenticatedNewModhash:) toTarget:api withObject:self];
132 132
 }
133 133
 
134
+- (IBAction)reloadCompleteList:(id)sender {
135
+    [firstMenuItem setTitle:NSLocalizedString(@"Loading...", @"Statusitem when user clicks reload")];
136
+    [self clearMenuItems];
137
+    [firstMenuItem setHidden:NO];
138
+    [self reloadListWithOptions];
139
+}
140
+
134 141
 -(IBAction)linkToOpen:(id)sender {
135 142
     NSString *title = [(NSMenuItem *)sender title];
136 143
     if ([title isEqualToString:NSLocalizedString(@"Link...", nil)]) {
137 144
         for (NSUInteger i = 0; i < [menuItems count]; i++) {
138 145
             NSMenuItem *item = [menuItems objectAtIndex:i];
139 146
             NSMenu *submenu = item.submenu;
140
-            if (submenu != nil) {
141
-                if (sender == [submenu itemAtIndex:0]) {
142
-                    RedditItem *rItem = [redditItems objectAtIndex:i];
143
-                    [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
144
-                    return;
145
-                }
147
+            if ((submenu != nil) && (sender == [submenu itemAtIndex:0])) {
148
+                RedditItem *rItem = [redditItems objectAtIndex:i];
149
+                [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
150
+                break;
146 151
             }
147 152
         }
148 153
     } else if ([title isEqualToString:NSLocalizedString(@"Comments...", nil)]) {
149 154
         for (NSUInteger i = 0; i < [menuItems count]; i++) {
150 155
             NSMenuItem *item = [menuItems objectAtIndex:i];
151 156
             NSMenu *submenu = item.submenu;
152
-            if (submenu != nil) {
153
-                if (sender == [submenu itemAtIndex:1]) {
154
-                    RedditItem *rItem = [redditItems objectAtIndex:i];
155
-                    [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem comments]]];
156
-                    return;
157
-                }
157
+            if ((submenu != nil) && (sender == [submenu itemAtIndex:1])) {
158
+                RedditItem *rItem = [redditItems objectAtIndex:i];
159
+                [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem comments]]];
160
+                break;
158 161
             }
159 162
         }
160 163
     } else {
@@ -164,7 +167,7 @@
164 167
                 RedditItem *rItem = [redditItems objectAtIndex:i];
165 168
                 [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
166 169
                 [statusMenu removeItem:[menuItems objectAtIndex:i]];
167
-                return;
170
+                break;
168 171
             }
169 172
         }
170 173
     }

+ 15
- 0
RedditBar/Base.lproj/MainMenu.strings View File

@@ -0,0 +1,15 @@
1
+
2
+/* Class = "NSMenuItem"; title = "Preferences..."; ObjectID = "1lW-9C-xt6"; */
3
+"1lW-9C-xt6.title" = "Preferences...";
4
+
5
+/* Class = "NSMenuItem"; title = "About RedditBar"; ObjectID = "4ah-qP-9eP"; */
6
+"4ah-qP-9eP.title" = "About RedditBar";
7
+
8
+/* Class = "NSMenuItem"; title = "Reload"; ObjectID = "e8u-nc-P6x"; */
9
+"e8u-nc-P6x.title" = "Reload";
10
+
11
+/* Class = "NSMenuItem"; title = "Loading..."; ObjectID = "jfb-mv-iN9"; */
12
+"jfb-mv-iN9.title" = "Loading...";
13
+
14
+/* Class = "NSMenuItem"; title = "Quit"; ObjectID = "oyC-3G-WEc"; */
15
+"oyC-3G-WEc.title" = "Quit";

+ 7
- 0
RedditBar/Base.lproj/MainMenu.xib View File

@@ -26,6 +26,13 @@
26 26
                     <modifierMask key="keyEquivalentModifierMask"/>
27 27
                 </menuItem>
28 28
                 <menuItem isSeparatorItem="YES" id="7Rc-fG-5uQ"/>
29
+                <menuItem title="Reload" id="e8u-nc-P6x">
30
+                    <modifierMask key="keyEquivalentModifierMask"/>
31
+                    <connections>
32
+                        <action selector="reloadCompleteList:" target="494" id="yTe-cz-LY1"/>
33
+                    </connections>
34
+                </menuItem>
35
+                <menuItem isSeparatorItem="YES" id="w4G-0W-l5l"/>
29 36
                 <menuItem title="Preferences..." id="1lW-9C-xt6">
30 37
                     <modifierMask key="keyEquivalentModifierMask"/>
31 38
                     <connections>

+ 51
- 0
RedditBar/Base.lproj/Prefs.strings View File

@@ -0,0 +1,51 @@
1
+
2
+/* Class = "NSWindow"; title = "RedditBar Preferences"; ObjectID = "1"; */
3
+"1.title" = "RedditBar Preferences";
4
+
5
+/* Class = "NSTextFieldCell"; title = "10"; ObjectID = "0SD-Tf-uZS"; */
6
+"0SD-Tf-uZS.title" = "10";
7
+
8
+/* Class = "NSMenuItem"; title = "Cut"; ObjectID = "32T-3T-EcY"; */
9
+"32T-3T-EcY.title" = "Cut";
10
+
11
+/* Class = "NSTextFieldCell"; title = "Subreddits:"; ObjectID = "Cmr-7n-CaG"; */
12
+"Cmr-7n-CaG.title" = "Subreddits:";
13
+
14
+/* Class = "NSTextFieldCell"; title = "Items:"; ObjectID = "FNJ-RL-DXT"; */
15
+"FNJ-RL-DXT.title" = "Items:";
16
+
17
+/* Class = "NSTextFieldCell"; title = "Username: "; ObjectID = "GTO-OP-MYS"; */
18
+"GTO-OP-MYS.title" = "Username: ";
19
+
20
+/* Class = "NSMenu"; title = "Main Menu"; ObjectID = "IWp-hb-gSM"; */
21
+"IWp-hb-gSM.title" = "Main Menu";
22
+
23
+/* Class = "NSMenuItem"; title = "Undo"; ObjectID = "IyX-7D-esH"; */
24
+"IyX-7D-esH.title" = "Undo";
25
+
26
+/* Class = "NSButtonCell"; title = "Save"; ObjectID = "Mqa-FJ-C43"; */
27
+"Mqa-FJ-C43.title" = "Save";
28
+
29
+/* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "TjO-Z6-Vng"; */
30
+"TjO-Z6-Vng.title" = "Cancel";
31
+
32
+/* Class = "NSMenu"; title = "Edit"; ObjectID = "YpZ-Vi-h1u"; */
33
+"YpZ-Vi-h1u.title" = "Edit";
34
+
35
+/* Class = "NSMenuItem"; title = "Edit"; ObjectID = "czz-51-wxr"; */
36
+"czz-51-wxr.title" = "Edit";
37
+
38
+/* Class = "NSMenuItem"; title = "Paste"; ObjectID = "j3h-hj-rfI"; */
39
+"j3h-hj-rfI.title" = "Paste";
40
+
41
+/* Class = "NSTextFieldCell"; title = "Password:"; ObjectID = "m11-YF-fEa"; */
42
+"m11-YF-fEa.title" = "Password:";
43
+
44
+/* Class = "NSMenuItem"; title = "Select All"; ObjectID = "qSu-ha-DhM"; */
45
+"qSu-ha-DhM.title" = "Select All";
46
+
47
+/* Class = "NSButtonCell"; title = "Subscriptions"; ObjectID = "vW5-Cp-Bm1"; */
48
+"vW5-Cp-Bm1.title" = "Subscriptions";
49
+
50
+/* Class = "NSMenuItem"; title = "Copy"; ObjectID = "wSY-To-FDI"; */
51
+"wSY-To-FDI.title" = "Copy";

+ 0
- 46
RedditBar/Base.lproj/Prefs.xib View File

@@ -192,45 +192,6 @@ Gw
192 192
         </numberFormatter>
193 193
         <menu title="Main Menu" systemMenu="main" id="IWp-hb-gSM">
194 194
             <items>
195
-                <menuItem title="RedditBar" id="U8B-tM-Hrf">
196
-                    <modifierMask key="keyEquivalentModifierMask"/>
197
-                    <menu key="submenu" title="RedditBar" systemMenu="apple" id="94G-O2-jwC">
198
-                        <items>
199
-                            <menuItem title="About RedditBar" id="YW3-K5-K2j">
200
-                                <modifierMask key="keyEquivalentModifierMask"/>
201
-                            </menuItem>
202
-                            <menuItem isSeparatorItem="YES" id="twJ-Mg-T1U"/>
203
-                            <menuItem title="Preferences…" keyEquivalent="," id="fNd-08-bdx"/>
204
-                            <menuItem isSeparatorItem="YES" id="s0T-Bl-Th7"/>
205
-                            <menuItem title="Services" id="Tkq-PT-Dyn">
206
-                                <modifierMask key="keyEquivalentModifierMask"/>
207
-                                <menu key="submenu" title="Services" systemMenu="services" id="sdR-Rd-lph"/>
208
-                            </menuItem>
209
-                            <menuItem isSeparatorItem="YES" id="obO-uU-IXK"/>
210
-                            <menuItem title="Hide NewApplication" keyEquivalent="h" id="fH1-kn-NXO"/>
211
-                            <menuItem title="Hide Others" keyEquivalent="h" id="J40-1v-jag">
212
-                                <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
213
-                            </menuItem>
214
-                            <menuItem title="Show All" id="UbR-hU-EII">
215
-                                <modifierMask key="keyEquivalentModifierMask"/>
216
-                            </menuItem>
217
-                            <menuItem isSeparatorItem="YES" id="6ba-Ih-432"/>
218
-                            <menuItem title="Quit NewApplication" keyEquivalent="q" id="ROS-gn-vTj"/>
219
-                        </items>
220
-                    </menu>
221
-                </menuItem>
222
-                <menuItem title="File" id="c7K-B5-rY5">
223
-                    <modifierMask key="keyEquivalentModifierMask"/>
224
-                    <menu key="submenu" title="File" id="24r-2D-3jT">
225
-                        <items>
226
-                            <menuItem title="Close" keyEquivalent="w" id="bqC-fi-B0U">
227
-                                <connections>
228
-                                    <action selector="close:" target="-1" id="qY7-vk-B61"/>
229
-                                </connections>
230
-                            </menuItem>
231
-                        </items>
232
-                    </menu>
233
-                </menuItem>
234 195
                 <menuItem title="Edit" id="czz-51-wxr">
235 196
                     <modifierMask key="keyEquivalentModifierMask"/>
236 197
                     <menu key="submenu" title="Edit" id="YpZ-Vi-h1u">
@@ -240,7 +201,6 @@ Gw
240 201
                                     <action selector="undo:" target="-1" id="6su-5K-AYO"/>
241 202
                                 </connections>
242 203
                             </menuItem>
243
-                            <menuItem isSeparatorItem="YES" id="v8m-cQ-DEf"/>
244 204
                             <menuItem title="Cut" keyEquivalent="x" id="32T-3T-EcY">
245 205
                                 <connections>
246 206
                                     <action selector="cut:" target="-1" id="TeB-yv-dFt"/>
@@ -256,12 +216,6 @@ Gw
256 216
                                     <action selector="paste:" target="-1" id="7m5-ZQ-jR1"/>
257 217
                                 </connections>
258 218
                             </menuItem>
259
-                            <menuItem title="Delete" id="EtB-yf-Wow">
260
-                                <modifierMask key="keyEquivalentModifierMask"/>
261
-                                <connections>
262
-                                    <action selector="delete:" target="-1" id="RD6-ys-5oS"/>
263
-                                </connections>
264
-                            </menuItem>
265 219
                             <menuItem title="Select All" keyEquivalent="a" id="qSu-ha-DhM">
266 220
                                 <connections>
267 221
                                     <action selector="selectAll:" target="-1" id="TBx-Re-gUK"/>

+ 1
- 1
RedditBar/RedditBar-Info.plist View File

@@ -21,7 +21,7 @@
21 21
 	<key>CFBundleSignature</key>
22 22
 	<string>????</string>
23 23
 	<key>CFBundleVersion</key>
24
-	<string>157</string>
24
+	<string>165</string>
25 25
 	<key>LSApplicationCategoryType</key>
26 26
 	<string>public.app-category.utilities</string>
27 27
 	<key>LSMinimumSystemVersion</key>

+ 3
- 0
RedditBar/de.lproj/Localizable.strings View File

@@ -13,6 +13,9 @@
13 13
 /* Link item */
14 14
 "Link..." = "Link...";
15 15
 
16
+/* Statusitem when user clicks reload */
17
+"Loading..." = "Lade...";
18
+
16 19
 /* Statusitem when API is not authenticated */
17 20
 "Login Error!" = "Fehler beim login!";
18 21
 

+ 6
- 3
RedditBar/de.lproj/MainMenu.strings View File

@@ -1,12 +1,15 @@
1
-
2 1
 /* Class = "NSMenuItem"; title = "Preferences..."; ObjectID = "1lW-9C-xt6"; */
3 2
 "1lW-9C-xt6.title" = "Einstellungen...";
4 3
 
5
-/* Class = "NSMenuItem"; title = "About Reddit Bar"; ObjectID = "4ah-qP-9eP"; */
6
-"4ah-qP-9eP.title" = "Über RedditBar";
4
+/* Class = "NSMenuItem"; title = "About RedditBar"; ObjectID = "4ah-qP-9eP"; */
5
+"4ah-qP-9eP.title" = "About RedditBar";
6
+
7
+/* Class = "NSMenuItem"; title = "Reload"; ObjectID = "e8u-nc-P6x"; */
8
+"e8u-nc-P6x.title" = "Aktualisieren";
7 9
 
8 10
 /* Class = "NSMenuItem"; title = "Loading..."; ObjectID = "jfb-mv-iN9"; */
9 11
 "jfb-mv-iN9.title" = "Lade...";
10 12
 
11 13
 /* Class = "NSMenuItem"; title = "Quit"; ObjectID = "oyC-3G-WEc"; */
12 14
 "oyC-3G-WEc.title" = "Beenden";
15
+

+ 1
- 43
RedditBar/de.lproj/Prefs.strings View File

@@ -1,25 +1,15 @@
1
-
2 1
 /* Class = "NSWindow"; title = "RedditBar Preferences"; ObjectID = "1"; */
3 2
 "1.title" = "RedditBar Einstellungen";
4 3
 
5 4
 /* Class = "NSTextFieldCell"; title = "10"; ObjectID = "0SD-Tf-uZS"; */
6 5
 "0SD-Tf-uZS.title" = "10";
7 6
 
8
-/* Class = "NSMenu"; title = "File"; ObjectID = "24r-2D-3jT"; */
9
-"24r-2D-3jT.title" = "Ablage";
10
-
11 7
 /* Class = "NSMenuItem"; title = "Cut"; ObjectID = "32T-3T-EcY"; */
12 8
 "32T-3T-EcY.title" = "Ausschneiden";
13 9
 
14
-/* Class = "NSMenu"; title = "RedditBar"; ObjectID = "94G-O2-jwC"; */
15
-"94G-O2-jwC.title" = "RedditBar";
16
-
17 10
 /* Class = "NSTextFieldCell"; title = "Subreddits:"; ObjectID = "Cmr-7n-CaG"; */
18 11
 "Cmr-7n-CaG.title" = "Subreddits:";
19 12
 
20
-/* Class = "NSMenuItem"; title = "Delete"; ObjectID = "EtB-yf-Wow"; */
21
-"EtB-yf-Wow.title" = "Löschen";
22
-
23 13
 /* Class = "NSTextFieldCell"; title = "Items:"; ObjectID = "FNJ-RL-DXT"; */
24 14
 "FNJ-RL-DXT.title" = "Länge:";
25 15
 
@@ -32,48 +22,18 @@
32 22
 /* Class = "NSMenuItem"; title = "Undo"; ObjectID = "IyX-7D-esH"; */
33 23
 "IyX-7D-esH.title" = "Rückgängig";
34 24
 
35
-/* Class = "NSMenuItem"; title = "Hide Others"; ObjectID = "J40-1v-jag"; */
36
-"J40-1v-jag.title" = "Andere verstecken";
37
-
38 25
 /* Class = "NSButtonCell"; title = "Save"; ObjectID = "Mqa-FJ-C43"; */
39 26
 "Mqa-FJ-C43.title" = "Speichern";
40 27
 
41
-/* Class = "NSMenuItem"; title = "Quit NewApplication"; ObjectID = "ROS-gn-vTj"; */
42
-"ROS-gn-vTj.title" = "RedditBar Beenden";
43
-
44 28
 /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "TjO-Z6-Vng"; */
45 29
 "TjO-Z6-Vng.title" = "Abbrechen";
46 30
 
47
-/* Class = "NSMenuItem"; title = "Services"; ObjectID = "Tkq-PT-Dyn"; */
48
-"Tkq-PT-Dyn.title" = "Services";
49
-
50
-/* Class = "NSMenuItem"; title = "RedditBar"; ObjectID = "U8B-tM-Hrf"; */
51
-"U8B-tM-Hrf.title" = "RedditBar";
52
-
53
-/* Class = "NSMenuItem"; title = "Show All"; ObjectID = "UbR-hU-EII"; */
54
-"UbR-hU-EII.title" = "Alle anzeigen";
55
-
56
-/* Class = "NSMenuItem"; title = "About RedditBar"; ObjectID = "YW3-K5-K2j"; */
57
-"YW3-K5-K2j.title" = "Über RedditBar";
58
-
59 31
 /* Class = "NSMenu"; title = "Edit"; ObjectID = "YpZ-Vi-h1u"; */
60 32
 "YpZ-Vi-h1u.title" = "Bearbeiten";
61 33
 
62
-/* Class = "NSMenuItem"; title = "Close"; ObjectID = "bqC-fi-B0U"; */
63
-"bqC-fi-B0U.title" = "Schließen";
64
-
65
-/* Class = "NSMenuItem"; title = "File"; ObjectID = "c7K-B5-rY5"; */
66
-"c7K-B5-rY5.title" = "Ablage";
67
-
68 34
 /* Class = "NSMenuItem"; title = "Edit"; ObjectID = "czz-51-wxr"; */
69 35
 "czz-51-wxr.title" = "Bearbeiten";
70 36
 
71
-/* Class = "NSMenuItem"; title = "Hide NewApplication"; ObjectID = "fH1-kn-NXO"; */
72
-"fH1-kn-NXO.title" = "RedditBar verstecken";
73
-
74
-/* Class = "NSMenuItem"; title = "Preferences…"; ObjectID = "fNd-08-bdx"; */
75
-"fNd-08-bdx.title" = "Einstellungen…";
76
-
77 37
 /* Class = "NSMenuItem"; title = "Paste"; ObjectID = "j3h-hj-rfI"; */
78 38
 "j3h-hj-rfI.title" = "Einfügen";
79 39
 
@@ -83,11 +43,9 @@
83 43
 /* Class = "NSMenuItem"; title = "Select All"; ObjectID = "qSu-ha-DhM"; */
84 44
 "qSu-ha-DhM.title" = "Alle auswählen";
85 45
 
86
-/* Class = "NSMenu"; title = "Services"; ObjectID = "sdR-Rd-lph"; */
87
-"sdR-Rd-lph.title" = "Services";
88
-
89 46
 /* Class = "NSButtonCell"; title = "Subscriptions"; ObjectID = "vW5-Cp-Bm1"; */
90 47
 "vW5-Cp-Bm1.title" = "Abbonements";
91 48
 
92 49
 /* Class = "NSMenuItem"; title = "Copy"; ObjectID = "wSY-To-FDI"; */
93 50
 "wSY-To-FDI.title" = "Kopieren";
51
+

BIN
RedditBar/en.lproj/Localizable.strings View File


+ 15
- 0
RedditBar/en.lproj/MainMenu.strings View File

@@ -0,0 +1,15 @@
1
+
2
+/* Class = "NSMenuItem"; title = "Preferences..."; ObjectID = "1lW-9C-xt6"; */
3
+"1lW-9C-xt6.title" = "Preferences...";
4
+
5
+/* Class = "NSMenuItem"; title = "About RedditBar"; ObjectID = "4ah-qP-9eP"; */
6
+"4ah-qP-9eP.title" = "About RedditBar";
7
+
8
+/* Class = "NSMenuItem"; title = "Reload"; ObjectID = "e8u-nc-P6x"; */
9
+"e8u-nc-P6x.title" = "Reload";
10
+
11
+/* Class = "NSMenuItem"; title = "Loading..."; ObjectID = "jfb-mv-iN9"; */
12
+"jfb-mv-iN9.title" = "Loading...";
13
+
14
+/* Class = "NSMenuItem"; title = "Quit"; ObjectID = "oyC-3G-WEc"; */
15
+"oyC-3G-WEc.title" = "Quit";

+ 51
- 0
RedditBar/en.lproj/Prefs.strings View File

@@ -0,0 +1,51 @@
1
+/* Class = "NSWindow"; title = "RedditBar Preferences"; ObjectID = "1"; */
2
+"1.title" = "RedditBar Preferences";
3
+
4
+/* Class = "NSTextFieldCell"; title = "10"; ObjectID = "0SD-Tf-uZS"; */
5
+"0SD-Tf-uZS.title" = "10";
6
+
7
+/* Class = "NSMenuItem"; title = "Cut"; ObjectID = "32T-3T-EcY"; */
8
+"32T-3T-EcY.title" = "Cut";
9
+
10
+/* Class = "NSTextFieldCell"; title = "Subreddits:"; ObjectID = "Cmr-7n-CaG"; */
11
+"Cmr-7n-CaG.title" = "Subreddits:";
12
+
13
+/* Class = "NSTextFieldCell"; title = "Items:"; ObjectID = "FNJ-RL-DXT"; */
14
+"FNJ-RL-DXT.title" = "Items:";
15
+
16
+/* Class = "NSTextFieldCell"; title = "Username: "; ObjectID = "GTO-OP-MYS"; */
17
+"GTO-OP-MYS.title" = "Username: ";
18
+
19
+/* Class = "NSMenu"; title = "Main Menu"; ObjectID = "IWp-hb-gSM"; */
20
+"IWp-hb-gSM.title" = "Main Menu";
21
+
22
+/* Class = "NSMenuItem"; title = "Undo"; ObjectID = "IyX-7D-esH"; */
23
+"IyX-7D-esH.title" = "Undo";
24
+
25
+/* Class = "NSButtonCell"; title = "Save"; ObjectID = "Mqa-FJ-C43"; */
26
+"Mqa-FJ-C43.title" = "Save";
27
+
28
+/* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "TjO-Z6-Vng"; */
29
+"TjO-Z6-Vng.title" = "Cancel";
30
+
31
+/* Class = "NSMenu"; title = "Edit"; ObjectID = "YpZ-Vi-h1u"; */
32
+"YpZ-Vi-h1u.title" = "Edit";
33
+
34
+/* Class = "NSMenuItem"; title = "Edit"; ObjectID = "czz-51-wxr"; */
35
+"czz-51-wxr.title" = "Edit";
36
+
37
+/* Class = "NSMenuItem"; title = "Paste"; ObjectID = "j3h-hj-rfI"; */
38
+"j3h-hj-rfI.title" = "Paste";
39
+
40
+/* Class = "NSTextFieldCell"; title = "Password:"; ObjectID = "m11-YF-fEa"; */
41
+"m11-YF-fEa.title" = "Password:";
42
+
43
+/* Class = "NSMenuItem"; title = "Select All"; ObjectID = "qSu-ha-DhM"; */
44
+"qSu-ha-DhM.title" = "Select All";
45
+
46
+/* Class = "NSButtonCell"; title = "Subscriptions"; ObjectID = "vW5-Cp-Bm1"; */
47
+"vW5-Cp-Bm1.title" = "Subscriptions";
48
+
49
+/* Class = "NSMenuItem"; title = "Copy"; ObjectID = "wSY-To-FDI"; */
50
+"wSY-To-FDI.title" = "Copy";
51
+

+ 15
- 0
RedditBarTests/de.lproj/MainMenu.strings View File

@@ -0,0 +1,15 @@
1
+
2
+/* Class = "NSMenuItem"; title = "Preferences..."; ObjectID = "1lW-9C-xt6"; */
3
+"1lW-9C-xt6.title" = "Preferences...";
4
+
5
+/* Class = "NSMenuItem"; title = "About RedditBar"; ObjectID = "4ah-qP-9eP"; */
6
+"4ah-qP-9eP.title" = "About RedditBar";
7
+
8
+/* Class = "NSMenuItem"; title = "Reload"; ObjectID = "e8u-nc-P6x"; */
9
+"e8u-nc-P6x.title" = "Reload";
10
+
11
+/* Class = "NSMenuItem"; title = "Loading..."; ObjectID = "jfb-mv-iN9"; */
12
+"jfb-mv-iN9.title" = "Loading...";
13
+
14
+/* Class = "NSMenuItem"; title = "Quit"; ObjectID = "oyC-3G-WEc"; */
15
+"oyC-3G-WEc.title" = "Quit";

+ 51
- 0
RedditBarTests/de.lproj/Prefs.strings View File

@@ -0,0 +1,51 @@
1
+/* Class = "NSWindow"; title = "RedditBar Preferences"; ObjectID = "1"; */
2
+"1.title" = "RedditBar Preferences";
3
+
4
+/* Class = "NSTextFieldCell"; title = "10"; ObjectID = "0SD-Tf-uZS"; */
5
+"0SD-Tf-uZS.title" = "10";
6
+
7
+/* Class = "NSMenuItem"; title = "Cut"; ObjectID = "32T-3T-EcY"; */
8
+"32T-3T-EcY.title" = "Cut";
9
+
10
+/* Class = "NSTextFieldCell"; title = "Subreddits:"; ObjectID = "Cmr-7n-CaG"; */
11
+"Cmr-7n-CaG.title" = "Subreddits:";
12
+
13
+/* Class = "NSTextFieldCell"; title = "Items:"; ObjectID = "FNJ-RL-DXT"; */
14
+"FNJ-RL-DXT.title" = "Items:";
15
+
16
+/* Class = "NSTextFieldCell"; title = "Username: "; ObjectID = "GTO-OP-MYS"; */
17
+"GTO-OP-MYS.title" = "Username: ";
18
+
19
+/* Class = "NSMenu"; title = "Main Menu"; ObjectID = "IWp-hb-gSM"; */
20
+"IWp-hb-gSM.title" = "Main Menu";
21
+
22
+/* Class = "NSMenuItem"; title = "Undo"; ObjectID = "IyX-7D-esH"; */
23
+"IyX-7D-esH.title" = "Undo";
24
+
25
+/* Class = "NSButtonCell"; title = "Save"; ObjectID = "Mqa-FJ-C43"; */
26
+"Mqa-FJ-C43.title" = "Save";
27
+
28
+/* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "TjO-Z6-Vng"; */
29
+"TjO-Z6-Vng.title" = "Cancel";
30
+
31
+/* Class = "NSMenu"; title = "Edit"; ObjectID = "YpZ-Vi-h1u"; */
32
+"YpZ-Vi-h1u.title" = "Edit";
33
+
34
+/* Class = "NSMenuItem"; title = "Edit"; ObjectID = "czz-51-wxr"; */
35
+"czz-51-wxr.title" = "Edit";
36
+
37
+/* Class = "NSMenuItem"; title = "Paste"; ObjectID = "j3h-hj-rfI"; */
38
+"j3h-hj-rfI.title" = "Paste";
39
+
40
+/* Class = "NSTextFieldCell"; title = "Password:"; ObjectID = "m11-YF-fEa"; */
41
+"m11-YF-fEa.title" = "Password:";
42
+
43
+/* Class = "NSMenuItem"; title = "Select All"; ObjectID = "qSu-ha-DhM"; */
44
+"qSu-ha-DhM.title" = "Select All";
45
+
46
+/* Class = "NSButtonCell"; title = "Subscriptions"; ObjectID = "vW5-Cp-Bm1"; */
47
+"vW5-Cp-Bm1.title" = "Subscriptions";
48
+
49
+/* Class = "NSMenuItem"; title = "Copy"; ObjectID = "wSY-To-FDI"; */
50
+"wSY-To-FDI.title" = "Copy";
51
+

+ 15
- 0
RedditBarTests/en.lproj/MainMenu.strings View File

@@ -0,0 +1,15 @@
1
+
2
+/* Class = "NSMenuItem"; title = "Preferences..."; ObjectID = "1lW-9C-xt6"; */
3
+"1lW-9C-xt6.title" = "Preferences...";
4
+
5
+/* Class = "NSMenuItem"; title = "About RedditBar"; ObjectID = "4ah-qP-9eP"; */
6
+"4ah-qP-9eP.title" = "About RedditBar";
7
+
8
+/* Class = "NSMenuItem"; title = "Reload"; ObjectID = "e8u-nc-P6x"; */
9
+"e8u-nc-P6x.title" = "Reload";
10
+
11
+/* Class = "NSMenuItem"; title = "Loading..."; ObjectID = "jfb-mv-iN9"; */
12
+"jfb-mv-iN9.title" = "Loading...";
13
+
14
+/* Class = "NSMenuItem"; title = "Quit"; ObjectID = "oyC-3G-WEc"; */
15
+"oyC-3G-WEc.title" = "Quit";

+ 51
- 0
RedditBarTests/en.lproj/Prefs.strings View File

@@ -0,0 +1,51 @@
1
+/* Class = "NSWindow"; title = "RedditBar Preferences"; ObjectID = "1"; */
2
+"1.title" = "RedditBar Preferences";
3
+
4
+/* Class = "NSTextFieldCell"; title = "10"; ObjectID = "0SD-Tf-uZS"; */
5
+"0SD-Tf-uZS.title" = "10";
6
+
7
+/* Class = "NSMenuItem"; title = "Cut"; ObjectID = "32T-3T-EcY"; */
8
+"32T-3T-EcY.title" = "Cut";
9
+
10
+/* Class = "NSTextFieldCell"; title = "Subreddits:"; ObjectID = "Cmr-7n-CaG"; */
11
+"Cmr-7n-CaG.title" = "Subreddits:";
12
+
13
+/* Class = "NSTextFieldCell"; title = "Items:"; ObjectID = "FNJ-RL-DXT"; */
14
+"FNJ-RL-DXT.title" = "Items:";
15
+
16
+/* Class = "NSTextFieldCell"; title = "Username: "; ObjectID = "GTO-OP-MYS"; */
17
+"GTO-OP-MYS.title" = "Username: ";
18
+
19
+/* Class = "NSMenu"; title = "Main Menu"; ObjectID = "IWp-hb-gSM"; */
20
+"IWp-hb-gSM.title" = "Main Menu";
21
+
22
+/* Class = "NSMenuItem"; title = "Undo"; ObjectID = "IyX-7D-esH"; */
23
+"IyX-7D-esH.title" = "Undo";
24
+
25
+/* Class = "NSButtonCell"; title = "Save"; ObjectID = "Mqa-FJ-C43"; */
26
+"Mqa-FJ-C43.title" = "Save";
27
+
28
+/* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "TjO-Z6-Vng"; */
29
+"TjO-Z6-Vng.title" = "Cancel";
30
+
31
+/* Class = "NSMenu"; title = "Edit"; ObjectID = "YpZ-Vi-h1u"; */
32
+"YpZ-Vi-h1u.title" = "Edit";
33
+
34
+/* Class = "NSMenuItem"; title = "Edit"; ObjectID = "czz-51-wxr"; */
35
+"czz-51-wxr.title" = "Edit";
36
+
37
+/* Class = "NSMenuItem"; title = "Paste"; ObjectID = "j3h-hj-rfI"; */
38
+"j3h-hj-rfI.title" = "Paste";
39
+
40
+/* Class = "NSTextFieldCell"; title = "Password:"; ObjectID = "m11-YF-fEa"; */
41
+"m11-YF-fEa.title" = "Password:";
42
+
43
+/* Class = "NSMenuItem"; title = "Select All"; ObjectID = "qSu-ha-DhM"; */
44
+"qSu-ha-DhM.title" = "Select All";
45
+
46
+/* Class = "NSButtonCell"; title = "Subscriptions"; ObjectID = "vW5-Cp-Bm1"; */
47
+"vW5-Cp-Bm1.title" = "Subscriptions";
48
+
49
+/* Class = "NSMenuItem"; title = "Copy"; ObjectID = "wSY-To-FDI"; */
50
+"wSY-To-FDI.title" = "Copy";
51
+

Loading…
Cancel
Save