Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Feb 23, 2014
0 parents commit 1d9d5d8
Show file tree
Hide file tree
Showing 67 changed files with 4,395 additions and 0 deletions.
139 changes: 139 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
#########################
# .gitignore file for Xcode4 / OS X Source projects
#
# Version 2.0
# For latest version, see: http:https://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#
# 2013 updates:
# - fixed the broken "save personal Schemes"
#
# NB: if you are storing "built" products, this WILL NOT WORK,
# and you should use a different .gitignore (or none at all)
# This file is for SOURCE projects, where there are many extra
# files that we want to exclude
#
#########################

#####
# OS X temporary files that should never be committed

.DS_Store
*.swp
*.lock
profile


####
# Xcode temporary files that should never be committed
#
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this...

*~.nib


####
# Xcode build files -
#
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"

DerivedData/

# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"

build/


#####
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
#
# This is complicated:
#
# SOMETIMES you need to put this file in version control.
# Apple designed it poorly - if you use "custom executables", they are
# saved in this file.
# 99% of projects do NOT use those, so they do NOT want to version control this file.
# ..but if you're in the 1%, comment out the line "*.pbxuser"

*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
# NB: also, whitelist the default ones, some projects need to use these
!default.pbxuser
!default.mode1v3
!default.mode2v3
!default.perspectivev3


####
# Xcode 4 - semi-personal settings
#
#
# OPTION 1: ---------------------------------
# throw away ALL personal settings (including custom schemes!
# - unless they are "shared")
#
# NB: this is exclusive with OPTION 2 below
xcuserdata

# OPTION 2: ---------------------------------
# get rid of ALL personal settings, but KEEP SOME OF THEM
# - NB: you must manually uncomment the bits you want to keep
#
# NB: this is exclusive with OPTION 1 above
#
#xcuserdata/**/*

# (requires option 2 above): Personal Schemes
#
#!xcuserdata/**/xcschemes/*

####
# XCode 4 workspaces - more detailed
#
# Workspaces are important! They are a core feature of Xcode - don't exclude them :)
#
# Workspace layout is quite spammy. For reference:
#
# /(root)/
# /(project-name).xcodeproj/
# project.pbxproj
# /project.xcworkspace/
# contents.xcworkspacedata
# /xcuserdata/
# /(your name)/xcuserdatad/
# UserInterfaceState.xcuserstate
# /xcsshareddata/
# /xcschemes/
# (shared scheme name).xcscheme
# /xcuserdata/
# /(your name)/xcuserdatad/
# (private scheme).xcscheme
# xcschememanagement.plist
#
#

####
# Xcode 4 - Deprecated classes
#
# Allegedly, if you manually "deprecate" your classes, they get moved here.
#
# We're using source-control, so this is a "feature" that we do not want!

*.moved-aside


####
# UNKNOWN: recommended by others, but I can't discover what these files are
#
# ...none. Everything is now explained.

####
# Xcode 5 - Source Control files
#
# Xcode 5 introduced a new file type .xccheckout. This files contains VCS metadata
# and should therefore not be checked into the VCS.

*.xccheckout

Pods/
635 changes: 635 additions & 0 deletions BeMyEyes.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions BeMyEyes.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions BeMyEyes/Base.lproj/BMELoginViewController.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
BMELoginViewController.strings
BeMyEyes

Created by Simon Støvring on 23/02/14.
Copyright (c) 2014 Be My Eyes. All rights reserved.
*/

/* Title of cancel button in alert view shown when a network error occurred during Facebook log in. */
"ALERT_FACEBOOK_LOGIN_UNKNOWN_ERROR_CANCEL" = "OK";

/* Message in alert view shown when a network error occurred during Facebook log in. */
"ALERT_FACEBOOK_LOGIN_UNKNOWN_ERROR_MESSAGE" = "Please verify that you have an active internet connection and try again.";

/* Title in alert view shown when a network error occurred during Facebook log in. */
"ALERT_FACEBOOK_LOGIN_UNKNOWN_ERROR_TITLE" = "An error occurred";

/* Title of cancel button in alert view shown when log in to Facebook failed */
"ALERT_FACEBOOK_NOT_LOGGED_IN_CANCEL" = "OK";

/* Message in alert view shown when logging into Facebook but it failed because authentication failed */
"ALERT_FACEBOOK_NOT_LOGGED_IN_MESSAGE" = "You were not logged in. Please try again.";

/* Title in alert view shown when log in to Facebook failed */
"ALERT_FACEBOOK_NOT_LOGGED_IN_TITLE" = "Not logged in";

/* Title of cancel button in alert view shown when Facebook user not found during log in. */
"ALERT_FACEBOOK_USER_NOT_REGISTERED_CANCEL" = "OK";

/* Message in alert view shown when Facebook user not found during log in. */
"ALERT_FACEBOOK_USER_NOT_REGISTERED_MESSAGE" = "You must first sign up with your Facebook account before you can log in.";

/* Title in alert view shown when Facebook user not found during log in. */
"ALERT_FACEBOOK_USER_NOT_REGISTERED_TITLE" = "Account not registered";

/* Message in alert view shown when the e-mail or password is empty */
"ALERT_EMPTY_FIELD_MESSAGE" = "Please enter both e-mail and password.";

/* Title of cancel button in alert view show when the e-mail or password is empty */
"ALERT_EMPTY_FIELDS_CANCEL" = "OK";

/* Title in alert view shown when the e-mail or password is empty */
"ALERT_EMPTY_FIELDS_TITLE" = "Empty fields";

/* Title of cancel button in alert view shown when credentials are incorrect. */
"ALERT_INCORRECT_CREDENTIALS_CANCEL" = "OK";

/* Message in alert view shown when credentials are incorrect. */
"ALERT_INCORRECT_CREDENTIALS_MESSAGE" = "The entered e-mail and password does not match.";

/* Title in alert view shown when credentials are incorrect. */
"ALERT_INCORRECT_CREDENTIALS_TITLE" = "Incorrect credentials";

/* Title of cancel button in alert view shown when a network error occurred during e-mail log in. */
"ALERT_EMAIL_LOGIN_UNKNOWN_ERROR_CANCEL" = "OK";

/* Message in alert view shown when a network error occurred. */
"ALERT_EMAIL_LOGIN_UNKNOWN_ERROR_MESSAGE" = "Please verify that you have an active internet connection and try again.";

/* Title in alert view shown when a network error occurred during e-mail log in. */
"ALERT_EMAIL_LOGIN_UNKNOWN_ERROR_TITLE" = "An error occurred";
Loading

0 comments on commit 1d9d5d8

Please sign in to comment.