1
0
Fork 0
mirror of synced 2024-06-24 17:20:36 +12:00

fix: syntax error in hi.locale.php

This commit is contained in:
Christy Jacob 2019-10-01 23:15:01 +05:30
parent 13fdc70e3e
commit 69b229c79b
2 changed files with 4 additions and 7 deletions

View file

@ -9,7 +9,7 @@ return [
'AI' => 'संयुक्त अरब अमीरात',
'AR' => 'अर्जेंटीना',
'AM' => 'आर्मेनिया',
'AG' => 'एंटीगुआ और बारबुडा'
'AG' => 'एंटीगुआ और बारबुडा',
'AU' => 'ऑस्ट्रेलिया',
'AT' => 'ऑस्ट्रिया',
'AZ' => 'अजरबैजान',
@ -17,7 +17,7 @@ return [
'BI' => 'बुरुंडी',
'BE' => 'बेल्जियम',
'BJ' => 'बेनिन',
'BF' => 'बुर्किना फ़ासो'
'BF' => 'बुर्किना फ़ासो',
'BD' => 'बांग्लादेश',
'BG' => 'बुल्गारिया',
'BH' => 'बहरीन',
@ -71,12 +71,12 @@ return [
'GN' => 'गिनी',
'GM' => 'गाम्बिया',
'GW' => 'गिनी-बिसाऊ',
'GQ' => 'इक्वेटोरियल गिनी'
'GQ' => 'इक्वेटोरियल गिनी',
'GR' => 'ग्रीस',
'GD' => 'ग्रेनाडा',
'GT' => 'ग्वाटेमाला',
'GY' => 'गुयाना',
'HN' => 'होंडुरास'
'HN' => 'होंडुरास',
'HR' => 'क्रोएशिया',
'HT' => 'हैती',
'HU' => 'हंगरी',

View file

@ -123,9 +123,6 @@ class Bitbucket extends OAuth
$email = $this->request('GET', 'https://api.bitbucket.org/2.0/user/emails?access_token='.urlencode($accessToken));
$this->user['email'] = json_decode($email, true)['values'][0]['email'];
// var_dump($user);
// exit();
}
return $this->user;
}