Skip to content
This repository has been archived by the owner on Feb 25, 2021. It is now read-only.

Develop #15

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added AppStore/iPad/chart-ipad-1.0-1024x748.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed AppStore/iPad/chart-ipad-768x1004.png
Binary file not shown.
Binary file added AppStore/iPad/plan-ipad-1.0-1024x748.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed AppStore/iPad/plan-ipad-768x1004.png
Binary file not shown.
Binary file added AppStore/iPad/settings-ipad-1.0-1024x748.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed AppStore/iPad/settings-ipad-768x1004.png
Binary file not shown.
Binary file added AppStore/iPad/stations-ipad-1.0-1024x748.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed AppStore/iPad/stations-ipad-768x1004.png
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,27 @@
</TranslationSet>
</TextItem>

<TextItem>
<Description> Class = &quot;IBUINavigationItem&quot;; title = &quot;Chat stations&quot;; ObjectID = &quot;69&quot;; </Description>
<Position>69.title</Position>
<TranslationSet>

<base loc="en" >Chat stations</base>
<tran loc="fr" origin="">Messages</tran>

</TranslationSet>
</TextItem>

<TextItem>
<Description> Class = &quot;IBUITabBarItem&quot;; title = &quot;Chat&quot;; ObjectID = &quot;70&quot;; </Description>
<Position>70.title</Position>
<TranslationSet>

<base loc="en" >Chat</base>
<tran loc="fr" origin="">Messages</tran>

</TranslationSet>
</TextItem>

</File>
</Proj>
Binary file modified Localization/fr/_NewBase/MainWindow_Phone.xib.strings
Binary file not shown.
Binary file modified Localization/fr/_NewLoc/MainWindow_Phone.xib.strings
Binary file not shown.
Binary file modified Localization/fr/_OldBase/MainWindow_Phone.xib.strings
Binary file not shown.
16 changes: 2 additions & 14 deletions Localization/fr/_Projects/fr.proj
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<string>MainWindow_Phone.xib.strings</string>
</array>
<key>BrowserWindowHeight</key>
<integer>370</integer>
<integer>384</integer>
<key>BrowserWindowLeft</key>
<integer>92</integer>
<key>BrowserWindowTop</key>
<integer>76</integer>
<key>BrowserWindowWidth</key>
<integer>1329</integer>
<integer>1791</integer>
<key>FileMatcherIsVisible</key>
<false/>
<key>InspectorIsVisible</key>
Expand All @@ -30,16 +30,12 @@
<dict>
<key>ApplicationDictionary</key>
<string>MainWindow_Pad.xib.strings.ad</string>
<key>LogFile</key>
<string>MainWindow_Pad.xib.strings</string>
<key>NewBase</key>
<string>MainWindow_Pad.xib.strings</string>
<key>NewLoc</key>
<string>MainWindow_Pad.xib.strings</string>
<key>OldBase</key>
<string>MainWindow_Pad.xib.strings</string>
<key>WorkGlossary</key>
<string>MainWindow_Pad.xib.strings.wg</string>
</dict>
<dict>
<key>ApplicationDictionary</key>
Expand All @@ -58,16 +54,12 @@
<dict>
<key>ApplicationDictionary</key>
<string>StationDetailMeteoViewController.xib.strings.ad</string>
<key>LogFile</key>
<string>StationDetailMeteoViewController.xib.strings</string>
<key>NewBase</key>
<string>StationDetailMeteoViewController.xib.strings</string>
<key>NewLoc</key>
<string>StationDetailMeteoViewController.xib.strings</string>
<key>OldBase</key>
<string>StationDetailMeteoViewController.xib.strings</string>
<key>WorkGlossary</key>
<string>StationDetailMeteoViewController.xib.strings.wg</string>
</dict>
<dict>
<key>ApplicationDictionary</key>
Expand Down Expand Up @@ -102,14 +94,10 @@
<dict>
<key>ApplicationDictionary</key>
<string>WindTrendChartViewController.xib.strings.ad</string>
<key>LogFile</key>
<string>WindTrendChartViewController.xib.strings</string>
<key>NewBase</key>
<string>WindTrendChartViewController.xib.strings</string>
<key>NewLoc</key>
<string>WindTrendChartViewController.xib.strings</string>
<key>WorkGlossary</key>
<string>WindTrendChartViewController.xib.strings.wg</string>
</dict>
</array>
<key>ProjectName</key>
Expand Down
35 changes: 35 additions & 0 deletions WindMobile/ASI-REST/ASIAuthenticationDialog.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
//
// ASIAuthenticationDialog.h
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
//
// Created by Ben Copsey on 21/08/2009.
// Copyright 2009 All-Seeing Interactive. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class ASIHTTPRequest;

typedef enum _ASIAuthenticationType {
ASIStandardAuthenticationType = 0,
ASIProxyAuthenticationType = 1
} ASIAuthenticationType;

@interface ASIAutorotatingViewController : UIViewController
@end

@interface ASIAuthenticationDialog : ASIAutorotatingViewController <UIActionSheetDelegate, UITableViewDelegate, UITableViewDataSource> {
ASIHTTPRequest *request;
ASIAuthenticationType type;
UITableView *tableView;
UIViewController *presentingController;
BOOL didEnableRotationNotifications;
}
+ (void)presentAuthenticationDialogForRequest:(ASIHTTPRequest *)request;
+ (void)dismiss;

@property (retain) ASIHTTPRequest *request;
@property (assign) ASIAuthenticationType type;
@property (assign) BOOL didEnableRotationNotifications;
@property (retain, nonatomic) UIViewController *presentingController;
@end
Loading