Skip to content
Snippets Groups Projects
Commit 88d22f98 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

Merge remote-tracking branch 'origin/with-ES-store'

Conflicts:
	bower.json
	www/css/style.css
	www/i18n/locale-en.json
	www/index.html
	www/js/app.js
	www/js/controllers/currency-controllers.js
	www/js/controllers/home-controllers.js
	www/js/controllers/wallet-controllers.js
	www/js/services/crypto-services.js
	www/js/services/utils-services.js
	www/js/services/wallet-services.js
	www/templates/account/new_account.html
	www/templates/account/view_transfer.html
	www/templates/account/view_wallet.html
	www/templates/currency/select_currency.html
	www/templates/currency/tabs/view_parameters.html
	www/templates/currency/view_peer.html
	www/templates/explore/explore_currency.html
	www/templates/explore/explore_tabs.html
	www/templates/home.html
	www/templates/login.html
	www/templates/menu.html
	www/templates/wot/lookup.html
	www/templates/wot/modal_lookup.html
parent f0f716ef
No related branches found
No related tags found
No related merge requests found
...@@ -129,77 +129,6 @@ ...@@ -129,77 +129,6 @@
"TITLE": "Paiement" "TITLE": "Paiement"
} }
}, },
"MARKET": {
"COMMON": {
"CATEGORY": "Catégorie",
"CATEGORIES": "Catégories",
"ISSUER": "Soumis par",
"PRICE": "Prix",
"BTN_BUY": "Acheter"
},
"SEARCH": {
"TITLE": "Annonces",
"SEARCH_HELP": "Recherche (voiture, livre...)",
"BTN_ADD": "Nouveau",
"BTN_OPTIONS": "Recherche avancée",
"BTN_AROUND_ME": "Autour de moi",
"LOCATION": "Localisation",
"LOCATION_HELP": "Ville"
},
"VIEW": {
"TITLE": "Annonce"
},
"EDIT": {
"TITLE": "Edition",
"BTN_ADD_PICTURES": "Ajouter des photos",
"RECORD_TITLE": "Titre",
"RECORD_TITLE_HELP": "Titre",
"RECORD_DESCRIPTION": "Description",
"RECORD_DESCRIPTION_HELP": "Description",
"RECORD_PRICE": "Prix",
"RECORD_PRICE_HELP": "Prix (optionnel)",
"RECORD_LOCATION": "Ville",
"RECORD_LOCATION_HELP": "Adresse, Ville"
}
},
"REGISTRY": {
"COMMON": {
"CATEGORY": "Catégorie",
"CATEGORIES": "Catégories",
"ISSUER": "Soumis par"
},
"SEARCH": {
"TITLE": "Annuaire",
"SEARCH_HELP": "Recherche (nom, pseudo, clé publique...)",
"BTN_ADD": "Nouveau",
"BTN_OPTIONS": "Recherche avancée",
"LOCATION": "Localisation",
"LOCATION_HELP": "Ville"
},
"VIEW": {
"TITLE": ""
},
"NEW": {
"TITLE": "Nouveau",
"SELECT_TYPE": "Type d'ajout :",
"TYPE_PARTICULAR": "Particulier",
"TYPE_COMPANY": "Entreprise, organisme ou institution"
},
"EDIT": {
"TITLE": "Edition",
"BTN_ADD_PICTURES": "Ajouter des photos",
"RECORD_TITLE": "Nom",
"RECORD_TITLE_HELP": "Nom",
"RECORD_DESCRIPTION": "À propos de moi",
"RECORD_DESCRIPTION_HELP": "À propos de moi",
"RECORD_PRICE": "Prix",
"RECORD_PRICE_HELP": "Prix (optionnel)",
"RECORD_LOCATION": "Localisation",
"RECORD_LOCATION_HELP": "Localisation (adresse, ville)",
"RECORD_SOCIAL_NETWORKS": "Réseaux sociaux",
"RECORD_PUBKEY": "Clé publique"
}
},
"ERROR": { "ERROR": {
"POPUP_TITLE": "Erreur", "POPUP_TITLE": "Erreur",
"UNKNOWN_ERROR": "Erreur inconnue", "UNKNOWN_ERROR": "Erreur inconnue",
......
...@@ -10,9 +10,8 @@ angular.module("cesium.config", []) ...@@ -10,9 +10,8 @@ angular.module("cesium.config", [])
.constant("APP_CONFIG", { .constant("APP_CONFIG", {
"UCOIN_NODE": "twiced.fr:9330", "UCOIN_NODE": "twiced.fr:9330",
"UCOIN_NODE_ES": "es.ucoin.fr",
"VERSION": "0.0.1", "VERSION": "0.0.1",
"BUILD_DATE": "2016-04-16T16:07:33.159Z" "BUILD_DATE": "2016-04-16T16:07:33.159Z"
}) })
; ;
\ No newline at end of file
...@@ -6,9 +6,7 @@ angular.module('cesium.controllers', [ ...@@ -6,9 +6,7 @@ angular.module('cesium.controllers', [
'cesium.currency.controllers', 'cesium.currency.controllers',
'cesium.wot.controllers', 'cesium.wot.controllers',
'cesium.transfer.controllers', 'cesium.transfer.controllers',
'cesium.settings.controllers', 'cesium.settings.controllers'
'cesium.market.controllers',
'cesium.registry.controllers'
]) ])
.config(function($httpProvider) { .config(function($httpProvider) {
......
...@@ -27,19 +27,6 @@ angular.module('cesium.app.controllers', ['cesium.services']) ...@@ -27,19 +27,6 @@ angular.module('cesium.app.controllers', ['cesium.services'])
.controller('AppCtrl', AppController) .controller('AppCtrl', AppController)
//.controller('LoginCtrl', LoginController)
// .factory('AppModals', ['ModalService', function(ModalService){
// function showLogin(walletData){
// return ModalService.show('templates/login.html', 'LoginCtrl', walletData);
// }
//
// // all app modals here
// return {
// showLogin: showLogin
// };
//
// }])
; ;
function LoginModalController($scope, $ionicModal, Wallet, CryptoUtils, UIUtils, $q, $state, $timeout, $ionicSideMenuDelegate, $ionicHistory) { function LoginModalController($scope, $ionicModal, Wallet, CryptoUtils, UIUtils, $q, $state, $timeout, $ionicSideMenuDelegate, $ionicHistory) {
...@@ -201,23 +188,11 @@ function AppController($scope, $ionicModal, $state, $ionicSideMenuDelegate, UIUt ...@@ -201,23 +188,11 @@ function AppController($scope, $ionicModal, $state, $ionicSideMenuDelegate, UIUt
$scope.hasHeaderFabLeft = false; $scope.hasHeaderFabLeft = false;
$scope.hasHeaderFabRight = false; $scope.hasHeaderFabRight = false;
$scope.system = System; $scope.system = System;
$scope.options = {
market: {
enable: !!Market
},
registry: {
enable: !!Registry
}
};
LoginModalController.call(this, $scope, $ionicModal, Wallet, CryptoUtils, UIUtils, $q, $state, $timeout, $ionicSideMenuDelegate, $ionicHistory); LoginModalController.call(this, $scope, $ionicModal, Wallet, CryptoUtils, UIUtils, $q, $state, $timeout, $ionicSideMenuDelegate, $ionicHistory);
TransferModalController.call(this, $scope, $ionicModal, $state, BMA, Wallet, UIUtils, $timeout, System); TransferModalController.call(this, $scope, $ionicModal, $state, BMA, Wallet, UIUtils, $timeout, System);
ionic.Platform.ready(function() {
//System.init(navigator);
});
//////////////////////////////////////// ////////////////////////////////////////
// Load currencies // Load currencies
//////////////////////////////////////// ////////////////////////////////////////
......
...@@ -3,8 +3,6 @@ angular.module('cesium.services', [ ...@@ -3,8 +3,6 @@ angular.module('cesium.services', [
'cesium.bma.services', 'cesium.bma.services',
'cesium.crypto.services', 'cesium.crypto.services',
'cesium.utils.services', 'cesium.utils.services',
'cesium.wallet.services', 'cesium.wallet.services'
'cesium.market.services',
'cesium.registry.services'
]) ])
; ;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment