aboutsummaryrefslogtreecommitdiffstats
path: root/Resources/app.js
diff options
context:
space:
mode:
authorTeddy Wing2011-04-29 23:12:39 +0200
committerTeddy Wing2011-04-29 23:12:39 +0200
commit632892b577200697dbb4af4acc4dc35ca6818fcd (patch)
treebc3b9ce844b699b1b1a4bfe75e7c8619029c95f0 /Resources/app.js
parented8c24d59c8f036904608b94d01241f7ca5985f3 (diff)
downloadRocheTwit-632892b577200697dbb4af4acc4dc35ca6818fcd.tar.bz2
Cleaned up, added some comments, changed strings to French
Diffstat (limited to 'Resources/app.js')
-rw-r--r--Resources/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/Resources/app.js b/Resources/app.js
index 2dba46e..134abeb 100644
--- a/Resources/app.js
+++ b/Resources/app.js
@@ -4,14 +4,14 @@ var tabGroup = Titanium.UI.createTabGroup();
// Create the main, root window
var search_win = Titanium.UI.createWindow({
- title: 'Search Twitter',
+ title: 'RocheTwit',
backgroundColor: '#fff',
tabBarHidden: true, // hide the tab bar
url: 'search.js' // create a new context for this window in 'search.js'
});
// Create the tab to contain our search window
var search_tab = Titanium.UI.createTab({
- title: 'Search',
+ title: 'Recherche',
icon: 'KS_nav_views.png',
window: search_win // use search_win in this tab
});