-
Notifications
You must be signed in to change notification settings - Fork 411
/
Genymotion-ARM-Translation_for_4.3.zip
1449 lines (1348 loc) · 45.1 KB
/
Genymotion-ARM-Translation_for_4.3.zip
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang='zh-CN'>
<link href="https://assets.gitee.com/assets/projects/application-a1c87c144c3305b1a22576ead0829ced.css" media="screen" rel="stylesheet" type="text/css" />
<head>
<title>Genymotion-ARM-Translation_v1.1.zip · 千尺浪/分享 - Gitee</title>
<link href="https://assets.gitee.com/assets/favicon-e87ded4710611ed62adc859698277663.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<meta content='gitee.com/qianchilang/share git https://gitee.com/qianchilang/share.git' name='go-import'>
<meta charset='utf-8'>
<meta content='always' name='referrer'>
<meta content='Gitee' property='og:site_name'>
<meta content='Object' property='og:type'>
<meta content='http://gitee.com/qianchilang/share/blob/master/Genymotion-ARM-Translation_v1.1.zip' property='og:url'>
<meta content='https://gitee.com/logo_themecolor.png' itemprop='image' property='og:image'>
<meta content='Genymotion-ARM-Translation_v1.1.zip · 千尺浪/分享 - Gitee' itemprop='name' property='og:title'>
<meta content='码云(gitee.com)是开源中国推出的代码托管平台,支持 Git 和 SVN,提供免费的私有仓库托管。目前已有超过 300 万的开发者选择码云。' property='og:description'>
<meta content='码云,代码托管,git,Git@OSC,gitee.com,开源,项目管理,版本控制,开源代码,代码分享,项目协作,开源项目托管,免费代码托管,Git代码托管,Git托管服务' name='Keywords'>
<meta content='Genymotion-ARM-Translation' itemprop='description' name='Description'>
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta content="authenticity_token" name="csrf-param" />
<meta content="XXaQTnl2U+nKRKsdL25SK3gzuanWXOjLiObWLttWQEI=" name="csrf-token" />
<link href="https://assets.gitee.com/assets/application-113bc08fcc3c72a99c467c021696c95f.css" media="screen" rel="stylesheet" type="text/css" />
<script src="https://assets.gitee.com/assets/application-8ad6c5cdde3b57127064733fe4cf0b0f.js" type="text/javascript"></script>
<script src="https://assets.gitee.com/assets/lib/jquery.timeago.en-7054cad705e8cd01115935aa73a944b9.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
window.gon = {};gon.locale="en";gon.tour_env={"current_user":null,"controller_path":"blob","action_name":"show","original_url":"http://gitee.com/qianchilang/share/blob/master/Genymotion-ARM-Translation_v1.1.zip"};gon.http_clone="https://gitee.com/qianchilang/share.git";gon.user_project="qianchilang/share";gon.manage_branch="Manage branch";gon.manage_tag="Manage tag";gon.enterprise_id=0;gon.ref="master";
//]]>
</script>
<script src="//res.wx.qq.com/open/js/jweixin-1.2.0.js" type="text/javascript"></script>
<script>
var title = document.title.replace(/( - Gitee| - 码云)$/, '')
imgUrl = '';
document.addEventListener('DOMContentLoaded', function(event) {
var imgUrlEl = document.querySelector('.readme-box .markdown-body > img, .readme-box .markdown-body :not(a) > img');
imgUrl = imgUrlEl && imgUrlEl.getAttribute('src');
if (!imgUrl) {
imgUrlEl = document.querySelector('meta[itemprop=image]');
imgUrl = imgUrlEl && imgUrlEl.getAttribute('content');
imgUrl = imgUrl || "https://gitee.com/logo_themecolor.png";
}
wx.config({
debug: false,
appId: "wxff219d611a159737",
timestamp: "1546589040",
nonceStr: "12583cc89eb5979f88e97d1dd49ca685",
signature: "5a9e2439cb6b911ec371dff4cc2fafd1ecb7faf9",
jsApiList: [
'onMenuShareTimeline',
'onMenuShareAppMessage'
]
});
wx.ready(function () {
wx.onMenuShareTimeline({
title: title, // 分享标题
link: "https://gitee.com/qianchilang/share/blob/master/Genymotion-ARM-Translation_v1.1.zip", // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: imgUrl // 分享图标
});
wx.onMenuShareAppMessage({
title: title, // 分享标题
link: "https://gitee.com/qianchilang/share/blob/master/Genymotion-ARM-Translation_v1.1.zip", // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
desc: document.querySelector('meta[name=Description]').getAttribute('content'),
imgUrl: imgUrl // 分享图标
});
});
wx.error(function(res){
console.error('err', res)
});
})
</script>
<script type='text/x-mathjax-config'>
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [["$$","$$"],["\\[","\\]"]],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'],
ignoreClass: "container|files",
processClass: "markdown-body"
}
});
</script>
<script src="https://gitee.com/uploads/resources/MathJax-2.7.2/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script>
var messages = {
'zh-CN': {
addResult: '增加 <b>{term}</b>',
count: '已选择 {count}',
maxSelections: '最多 {maxCount} 个选择',
noResults: '未找到结果',
serverError: '连接服务器时发生错误'
},
'zh-TW': {
addResult: '增加 <b>{term}</b>',
count: '已選擇 {count}',
maxSelections: '最多 {maxCount} 個選擇',
noResults: '未找到結果',
serverError: '連接服務器時發生錯誤'
}
}
if (messages[gon.locale]) {
$.fn.dropdown.settings.message = messages[gon.locale]
}
</script>
<!--[if lt IE 10]>
<script>
window.location.href = "/incompatible.html";
</script>
<![endif]-->
</head>
<body class='git-project lang-en'>
<script src="https://assets.gitee.com/assets/projects/app-2ea425928329ffb6ff93651a6881815c.js" type="text/javascript"></script>
<header class='common-header fixed noborder' id='git-header-nav'>
<div class='ui container'>
<div class='ui menu'>
<div class='item gitosc-logo'>
<a href="/"><img class='ui inline image' height='28' src='/logo-en.svg?20171024' width='95'>
<img class='ui inline black image' height='28' src='/logo-black-en.svg?20171024' width='95'>
</a></div>
<a href="/explore" class="item " title="Open Source">Open Source
</a><a href="/enterprises" class="item " title="Enterprise">Enterprise
<sup class='ui red label'>
特惠
</sup>
</a><a href="/education" class="item " title="Education">Education
</a><a href="https://blog.gitee.com/" class="item" id="gitee-blog" target="_blank" title="Blog">Blog
</a><div class='right menu userbar' id='git-nav-user-bar'>
<div class='item'>
<form accept-charset="UTF-8" action="/search" autocomplete="on" data-text-filter="Invalid search content" data-text-require="Search keywords can not be less than one" id="navbar-search-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /></div>
<div class='ui mini fluid input'>
<input id="navbar-search-input" name="q" placeholder="Search projects and gists..." type="text" value="" />
<input id="navbar-search-type" name="type" type="hidden" />
</div>
</form>
</div>
<a href="/signup" class="item">Sign up
</a><a href="/login" class="item">Sign in
</a><script>
$('.destroy-user-session').click(function() {
$.cookie('access_token', null, { path: '/' });
})
</script>
</div>
</div>
</div>
</header>
<script>
Gitee.initNavbar()
Gitee.initRepoRemoteWay()
</script>
<!--[if lt IE 10]>
<script>
window.location.href = "/incompatible.html"
</script>
<![endif]-->
<div class='fixed-notice-messages'>
<div class='ui container'>
<div class='flash-messages' id='messages-container'></div>
</div>
<script>
(function() {
$(function() {
var $error_box, alertTip, notify_content, notify_options, template;
template = '<div data-notify="container" class="ui {0} message" role="alert">' + '<i data-notify="dismiss" class="close icon"></i>' + '<span data-notify="message">{2}</span>' + '</div>';
notify_content = null;
notify_options = {};
alertTip = '';
$error_box = $(".flash_error.flash_error_box");
if (notify_options.type === 'error' && $error_box.length > 0 && !$.isEmptyObject(notify_content.message)) {
if (notify_content.message === 'captcha_fail') {
alertTip = "The captcha is incorrect";
} else if (notify_content.message === 'not_found_in_database') {
alertTip = "Invalid email or password.";
} else if (notify_content.message === 'not_found_and_show_captcha') {
alertTip = "Invalid email or password.";
} else {
alertTip = notify_content.message;
}
return $error_box.html(alertTip).show();
} else if (notify_content) {
notify_options.delay = 3000;
notify_options.template = template;
notify_options.offset = {
x: 10,
y: 30
};
notify_options.element = '#messages-container';
return $.notify(notify_content, notify_options);
}
});
}).call(this);
</script>
</div>
<script>
(function() {
$(function() {
var setCookie;
setCookie = function(name, value) {
$.cookie(name, value, {
path: '/',
expires: 365
});
};
$('#remove-bulletin').on('click', function() {
setCookie('remove_bulletin', "gitee-maintain-1545272544");
$('#git-bulletin').hide();
});
$('#remove-member-bulletin').on('click', function() {
setCookie('remove_member_bulletin', "gitee_member_bulletin");
$(this).parent().hide();
});
return $('#remove-gift-bulletin').on('click', function() {
setCookie('remove_gift_bulletin', "gitee-gift-bulletin");
$(this).parent().hide();
});
});
}).call(this);
</script>
<div class='site-content'>
<div class='git-project-header'>
<div class='fixed-notice-messages'>
<div class='ui info icon floating message green' id='fetch-ok' style='display: none'>
<div class='content'>
<div class='header status-title'>
<i class='info icon status-icon'></i>
Fetch the repository succeeded.
</div>
</div>
</div>
<div class='ui info icon floating message error' id='fetch-error' style='display: none'>
<div class='content'>
<div class='header status-title'>
<i class='info icon status-icon'></i>
<span class='error_msg'></span>
</div>
</div>
</div>
</div>
<div class='ui container'>
<div class='git-project-header-details'>
<div class='git-project-header-container'>
<h2 class='git-project-title'>
<i class="project-icon iconfont icon-project-public" title="This is a public repository"></i> <a href="/qianchilang" class="author" title="千尺浪">千尺浪</a> / <a href="/qianchilang/share" class="repository" style="padding-bottom: 0px" target="" title="分享">分享</a>
<input id="project_title" name="project_title" type="hidden" value="千尺浪/分享" />
</h2>
<div class='git-project-header-actions'>
<div class='ui tiny modal project-donate-modal' id='project-donate-modal'>
<i class='iconfont icon-close close'></i>
<div class='header'>Donate</div>
<div class='content'>
This author have not enable Donate yet.
</div>
<div class='actions'>
<a class='ui blank button cancel'>Cancel</a>
<a class='ui orange ok button' href='/notifications/messages/1750549'>Send Message</a>
</div>
</div>
<div class='ui small modal wepay-qrcode'>
<i class='iconfont icon-close close'></i>
<div class='header'>
扫描微信二维码支付
<span class='wepay-cash'></span>
</div>
<div class='content weqcode-center'>
<img id='wepay-qrcode' src=''>
</div>
<div class='actions'>
<div class='ui cancel blank button'>取消</div>
<div class='ui ok orange button'>
支付完成
</div>
</div>
</div>
<div class='ui mini modal' id='confirm-alipay-modal'>
<div class='header'>支付提示</div>
<div class='content'>
将跳转至支付宝完成支付
</div>
<div class='actions'>
<div class='ui approve orange button'>
确定
</div>
<div class='ui blank cancel button'>
取消
</div>
</div>
</div>
<span class='ui basic buttons watch-container'>
<a href="/login" class="ui button watch" title="You must be signed in to watch a repository"><i class='iconfont icon-watch'></i>
Watch
</a><a href="/qianchilang/share/watchers" class="ui button action-social-count" title="4">4
</a></span>
<span class='ui basic buttons star-container'>
<a href="/login" class="ui button star" title="You must be signed in to star a repository"><i class='iconfont icon-star'></i>
Star
</a><a href="/qianchilang/share/stargazers" class="ui button action-social-count" title="11">11
</a></span>
<span class='ui basic buttons fork-container' data-content='You do not have the permission to fork this repository'>
<a href="/login" class="ui button fork "><i class='iconfont icon-fork'></i>
Fork
</a><a href="/qianchilang/share/members" class="ui button action-social-count" title="10">10
</a></span>
</div>
</div>
</div>
</div>
<div class='row' id='import-result-message' style='padding-top: 0px; display: none'>
<div class='sixteen wide column'>
<div class='ui icon yellow message status-color'>
<i class='info icon status-icon' style='width:60px;padding-right:12px;'></i>
<i class='close icon'></i>
<div class='header status-title'>
Sync status
</div>
<span class='status-message'></span>
</div>
</div>
</div>
<div class='ui small modal' id='modal-fork-project'>
<i class='icon-close iconfont close'></i>
<div class='header'>
Fork this repository
</div>
<div class='content'>
<div class='fork-info-content'>
<div class='ui segment fork_project_loader'>
<div class='ui active inverted dimmer'>
<div class='ui text loader'>Loading</div>
</div>
</div>
</div>
</div>
<div class='actions fork-action hide'>
<a class='cancel'> Cancel </a>
<div class='ui large button orange ok'> Confirm </div>
</div>
</div>
<script>
(function() {
$('.fork-container').popup({
inline: true,
hoverable: true,
position: 'bottom left'
});
}).call(this);
</script>
<script>
(function() {
$('#modal-fork-project').modal({
transition: 'fade'
});
$('.checkbox.sync-wiki').checkbox();
}).call(this);
</script>
<style>
i.loading{-webkit-animation:icon-loading 1.2s linear infinite;animation:icon-loading 1.2s linear infinite}.qrcode_cs{float:left}.check-sync-wiki{float:left;height:28px;line-height:28px}.check-sync-wiki .sync-wiki-warn{color:#e28560}
</style>
<script>
$('.metrics-radar').dropdown({ action: 'nothing' });
</script>
<div class='git-project-nav'>
<div class='ui container'>
<div class='ui secondary pointing menu'>
<a href="/qianchilang/share" class="item active"><i class='iconfont icon-code'></i>
Code
</a><a href="/qianchilang/share/issues" class="item "><i class='iconfont icon-issue'></i>
Issues
<span class='ui mini circular label'>
0
</span>
</a><a href="/qianchilang/share/pulls" class="item "><i class='iconfont icon-pull-request'></i>
Pull Requests
<span class='ui mini circular label'>
0
</span>
</a><a href="/qianchilang/share/attach_files" class="item "><i class='iconfont icon-annex'></i>
Attachments
<span class='ui mini circular label'>0</span>
</a><a href="/qianchilang/share/wikis" class="item "><i class='iconfont icon-wiki'></i>
Wiki
<span class='ui mini circular label'>
0
</span>
</a><a href="/qianchilang/share/graph/master" class="item "><i class='iconfont icon-statistics'></i>
Statistics
</a><div class='item project-devops-item'>
<div class='ui pointing top right dropdown project-devops-dropdown'>
<div class='text'>
<i class='iconfont icon-devops'></i>
DevOps
</div>
<i class='dropdown icon'></i>
<div class='menu' style='display:none'>
<a href="https://gitee.com/help/articles/4193" class="item" target="_blank"><img alt="Jenkins_for_gitee" src="https://assets.gitee.com/assets/jenkins_for_gitee-a079e18b0276e2d1230294a470364e7b.png" />
<div class='item-title'>
Jenkins for Gitee
</div>
</a><a href="/qianchilang/share/paas/code_pipeline" class="item"><img alt="Code_pipeline" src="https://assets.gitee.com/assets/code_pipeline-502dbffc863fcc0b6867628c9e8e163e.svg" />
<div class='item-title'>
Aliyun CodePipeline
</div>
</a><a href="/qianchilang/share/paas/huaweicloud_swr" class="item"><img alt="Huaweirqy" src="https://assets.gitee.com/assets/huaweirqy-c24d1adc35c0ecb2bc1e39f6e033835c.png" />
<div class='item-title'>
HuaWei Cloud
</div>
</a><a href="/qianchilang/share/paas/huaweicloud_cse" class="item"><img alt="Hauweiwfw" src="https://assets.gitee.com/assets/hauweiwfw-9edbcf60ca0a5d0de81d2fc804efa9ac.png" />
<div class='item-title'>
HuaWei ServiceStage Cloud
</div>
</a><a href="/qianchilang/share/paas/tencent_hub" class="item"><img alt="Tencent_hub" src="https://assets.gitee.com/assets/tencent_hub-e263083dfb38e2149d8a9eca5347f4d5.png" />
<div class='item-title'>
Tencent Hub
</div>
</a><a href="/qianchilang/share/paas/select_platform" class="item"><img alt="Mopaas_mini" src="https://assets.gitee.com/assets/mopaas_mini-72f0d5aeae31630ae89f624dfb0c23ca.png" />
<div class='item-title'>
MoPaaS V3
</div>
</a></div>
</div>
</div>
<div class='item'>
<div class='ui pointing top right dropdown git-project-service'>
<div class='text'>
<i class='iconfont icon-service'></i>
Service
</div>
<i class='dropdown icon'></i>
<div class='menu' style='display:none'>
<a href="/qianchilang/share/pages" class="item"><img alt="Gitee" src="https://assets.gitee.com/assets/gitee-d6fb391be28450a587df71dda0325f60.png" />
<div class='item-title'>
Gitee Pages
</div>
</a><a href="/qianchilang/share/javadoc" class="item"><img alt="Maven" src="https://assets.gitee.com/assets/maven-aea8b4f12e957c8c67de9c6fc83d27e6.png" />
<div class='item-title'>
JavaDoc
</div>
</a><a href="/qianchilang/share/phpdoc" class="item"><img alt="Phpdoc" src="https://assets.gitee.com/assets/phpdoc-301b1db815d856e5e3de263f04f69e03.png" />
<div class='item-title'>
PHPDoc
</div>
</a><a href="/qianchilang/share/quality_analyses?platform=sonar_qube" class="item"><img alt="Sonar_mini" src="https://assets.gitee.com/assets/sonar_mini-6270e37950512a0bf0a05ac5b9b11243.png" />
<div class='item-title'>
Quality analysis
</div>
</a><a href="/qianchilang/share/quality_analyses?platform=codesafe" class="item"><img alt="Dmws" src="https://assets.gitee.com/assets/dmws-7fce33f3494048913a196a40f998a9ba.png" />
<div class='item-title'>
Code detection
</div>
</a><button class='ui orange basic button quit-button' id='quiting-button'>
Got it, do not show this again.
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$('.git-project-nav .ui.dropdown').dropdown({ action: 'nothing' });
</script>
<style>
.git-project-nav i.checkmark.icon {
color: green;
}
#quiting-button {
display: none;
}
</style>
<script>
isSignIn = false
isClickGuide = false
$('#git-versions.dropdown').dropdown();
$.ajax({
url:"/qianchilang/share/access/add_access_log",
type:"GET"
});
$('#quiting-button').on('click',function() {
$('.git-project-service').click();
if (isSignIn) {
$.post("/projects/set_service_guide")
}
$.cookie("Serve_State", true, { expires: 3650, path: '/'})
$('#quiting-button').hide();
});
if (!(isClickGuide || $.cookie("Serve_State") == 'true')) {
$('.git-project-service').click()
$('#quiting-button').show()
}
</script>
</div>
<div class='ui container'>
<div class='register-guide'>
<div class='register-container'>
<div class='regist'>
Sign up for free
</div>
<div class='description'>
Explore and code with more than 2 million developers,Free private repositories !:)
</div>
<a href="/signup?from=project-guide" class="ui orange button free-registion">Sign up</a>
<div class='login'>
Already have an account?
<a href="/login?from=project-guide">Sign in</a>
</div>
</div>
</div>
<div class='git-project-content-wrapper'>
<div class='git-project-content' id='git-project-content'>
<div class='row' id='git-detail-clone'>
<div class='git-project-desc-wrapper'>
<div class='git-project-desc'>
<div class='project-introduce'>
<span class='git-project-desc-text'>
Genymotion-ARM-Translation
</span>
<a class='hide spread' href='javascript:void(0);'>
spread
<i class='caret down icon'></i>
</a>
<a class='retract hide' href='javascript:void(0);'>
retract
<i class='caret up icon'></i>
</a>
<p class='git-project-homepage'>
<a href="https://gitee.com/qianchilang/share" id="homepage" rel="nofollow" target="_blank">https://gitee.com/qianchilang/share</a>
</p>
</div>
</div>
<div class='git-project-desc-edit flex'>
<div class='sixty-percent ui small input'>
<input name='project[description]' placeholder='Description' type='text' value='Genymotion-ARM-Translation'>
</div>
<div class='twenty-percent ui small input'>
<input data-regex-value='(^$)|(^(http|https):\/\/(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).*)|(^(http|https):\/\/[a-zA-Z0-9]+([_\-\.]{1}[a-zA-Z0-9]+)*\.[a-zA-Z]{2,10}(:[0-9]{1,10})?(\/.*)?$)' name='project[homepage]' placeholder='Homepage(eg: https://gitee.com)' type='text' value='https://gitee.com/qianchilang/share'>
</div>
<div class='zero-percent'>
<button class='ui orange button btn-save'>
Save
</button>
<button class='ui button btn-cancel-edit'>
Cancel
</button>
</div>
</div>
<script>
$(function () {
new ProjectInfoEditor({
el: '.git-project-desc-wrapper',
homepage: "https://gitee.com/qianchilang/share",
description: "Genymotion-ARM-Translation",
url: "/qianchilang/share/update_description",
modalHelper: Gitee.modalHelper
})
})
</script>
</div>
</div>
<div class='git-project-summary' id='git-project-summary'>
<div class='summary-viewer'>
<div class='viewer-wrapper'>
<ul>
<li>
<a href="/qianchilang/share/commits/master"><i class='iconfont icon-commit'></i>
<b>7</b>
commits
</a></li>
<li>
<a href="/qianchilang/share/branches"><i class='iconfont icon-branches'></i>
<b>1</b>
branches
</a></li>
<li>
<a href="/qianchilang/share/tags"><i class='iconfont icon-tag'></i>
<b>0</b>
tags
</a></li>
<li>
<a href="/qianchilang/share/releases"><i class='iconfont icon-release'></i>
<b>0</b>
releases
</a></li>
<li>
<a href="/qianchilang/share/contributors?ref=master"><i class='iconfont icon-collaborators'></i>
<b class='contributor-count' data-url='/qianchilang/share/contributors_count?ref=master'></b>
<span class='contributor-text'>
Fetching contributors
</span>
</a></li>
</ul>
<ul>
</ul>
</div>
</div>
<div class='summary-languages' title='Click for language details'>
</div>
</div>
<div class='git-project-bread' id='git-project-bread'>
<div class='git-project-right-actions float-right'>
<div class='d-inline-block' id='git-project-tree-actions'>
</div>
<div class='ui orange button dropdown' id='btn-dl-or-clone'>
Clone or download
<i class='dropdown icon'></i>
</div>
<div class='ui popup bottom right transition hidden git-project-download-panel'>
<div class='ui small secondary pointing menu'>
<a class='item active' data-type='http' data-url='https://gitee.com/qianchilang/share.git'>HTTPS</a>
<a class='item' data-type='ssh' data-url='[email protected]:qianchilang/share.git'>SSH</a>
</div>
<div class='ui fluid right labeled small input'>
<input id="project_clone_url" name="project_clone_url" onclick="focus();select()" readonly="readonly" type="text" value="https://gitee.com/qianchilang/share.git" />
<div class='ui basic label'>
<div class='ui small basic orange button' data-clipboard-target='#project_clone_url' id='btn-copy-clone-url'>
Copy
</div>
</div>
</div>
<hr>
<a href="/login?url_to=/qianchilang/share/repository/archive/master" class="ui fluid download link button" data-confirm="You must be signed in to download, Are you sure to login?
Highly recommend: git clone "https://gitee.com/qianchilang/share.git""><i class='icon download'></i>
Download ZIP
</a><hr>
</div>
<script>
(function() {
var $btnCopy, $input, $item, $panel, clipboard, remoteWay;
$input = $('#project_clone_url');
remoteWay = '';
clipboard = new Clipboard('#btn-copy-clone-url');
$panel = $('.git-project-download-panel');
$btnCopy = $('#btn-copy-clone-url');
$panel.find('.menu > .item').on('click', function() {
var $item;
$item = $(this).addClass('active');
$item.siblings().removeClass('active');
$input.val($item.attr('data-url'));
return $.cookie('remote_way', $item.attr('data-type'), {
expires: 365,
path: '/'
});
});
$('#btn-dl-or-clone').popup({
popup: $panel,
position: 'bottom right',
on: 'click',
lastResort: 'bottom right',
maxSearchDepth: "10"
});
$item = null;
if (remoteWay) {
$item = $panel.find('.item[data-type="' + remoteWay + '"]');
}
if (!$item || $item.length < 1) {
$item = $panel.find('.ui.menu .item').eq(0);
}
$item.addClass('active').siblings().removeClass('active');
$input.val($item.attr('data-url'));
clipboard.on('success', function() {
$btnCopy.popup({
content: 'Copied',
position: 'right center',
onHidden: function() {
return $btnCopy.popup('destroy');
}
});
return $btnCopy.popup('show');
});
clipboard.on('error', function() {
$btnCopy.popup({
content: 'Copy failed. Please copy it manually',
position: 'right center',
onHidden: function() {
return $btnCopy.popup('destroy');
}
});
return $btnCopy.popup('show');
});
}).call(this);
</script>
</div>
<div class='ui horizontal list'>
<div class='item git-project-branch-item'>
<input id="path" name="path" type="hidden" value="Genymotion-ARM-Translation_v1.1.zip" />
<div class='ui top left pointing dropdown gradient button dropdown-has-tabs' id='git-project-branch'>
<input id="ref" name="ref" type="hidden" value="master" />
<div class='default text'>
master
</div>
<i class='dropdown icon'></i>
<div class='menu'>
<div class='ui left icon search input'>
<i class='iconfont icon-search'></i>
<input placeholder='Search branch' type='text'>
</div>
<div class='tab-menu'>
<div class='tab-menu-action' data-tab='branches'>
<a href="/qianchilang/share/branches/recent" class="ui link button">Manage</a>
</div>
<div class='tab-menu-action' data-tab='tags'>
<a href="/qianchilang/share/tags" class="ui link button">Manage</a>
</div>
<div class='tab-menu-item' data-placeholder='Search branches' data-tab='branches'>
Branches (1)
</div>
</div>
<div class='tab scrolling menu' data-tab='branches'>
<div class='item' data-value='master'>master</div>
</div>
</div>
</div>
<script>
$(function () {
Gitee.initTabsInDropdown($('#git-project-branch').dropdown({
fullTextSearch: true,
onChange: function (value, text) {
var path = $('#path').val();
var href = ['/qianchilang/share/tree', value, path].join('/');
window.location.href = href;
}
}));
})
</script>
</div>
<div class='item' id='git-project-root-actions'>
<div class='repo-index repo-none-index' style='margin-left:0px;'>
<div class='ui horizontal list repo-action-list'>
<div class='item'>
<div class='ui pointing right top dropdown gradient button' id='git-project-file'>
<div class='text'>File</div>
<i class='dropdown icon'></i>
<div class='menu'>
<div class='disabled item'>New file</div>
<div class='disabled item'>Upload file</div>
<a class='item repo-action' id='search-files'>
Search
</a>
</div>
</div>
</div>
<div class='item'>
<a href="/-/ide/project/qianchilang/share/edit/master" class="ui gradient button webide" target="_blank">Web IDE</a>
</div>
<div class='item'>
<a href="/qianchilang/share/widget" class="ui gradient button repo-action"><i class='iconfont icon-widget icon-orange'></i>
Widget
</a></div>
</div>
<script>
$('#git-project-file').dropdown({ action: 'hide' });
</script>
</div>
</div>
<div class='item breadcrumb_path path-breadcrumb-contrainer' id='git-project-breadcrumb'>
<div class='ui breadcrumb path project-path-breadcrumb' id='path-breadcrumb'>
<a href="/qianchilang/share/tree/master" class="section repo-name" data-direction="back" style="font-weight: bold">share
</a><div class='divider'>
/
</div>
<strong>
Genymotion-ARM-Translation_v1.1.zip
</strong>
</div>
</div>
</div>
</div>
<style>
.ui.dropdown .menu>.header{text-transform:none}
</style>
<script>
$(document).ready(function () {
var $gitProjectSummary = $('#git-project-summary');
var $gitProjectLanguages = $gitProjectSummary.find('.summary-languages');
var $statsSwitcherWrapper = $gitProjectSummary.find('.viewer-wrapper');
var $contributorCount = $gitProjectSummary.find('.contributor-count');
var $contributorText = $gitProjectSummary.find('.contributor-text');
var contributorsCountUrl = $contributorCount.data('url');
$gitProjectLanguages.on('click', function() {
$statsSwitcherWrapper.toggleClass('js-lang');
});
$.ajax({
url: contributorsCountUrl,
method: 'GET',
success: function(data) {
if (data.status === 1) {
$contributorCount.text(data.contributors_count);
$contributorText.text('contributors')
} else {
$contributorText.text('Fetching failed')
}
}
});
var $tip = $('#apk-download-tip');
if (!$tip.length) {
return;
}
$tip.find('.btn-close').on('click', function () {
$tip.slideUp();
});
});
(function(){
function pathAutoRender() {
var $parent = $('#git-project-bread'),
$child = $('#git-project-bread').children('.ui.horizontal.list'),
mainWidth = 0;
$child.each(function (i,item) {
mainWidth += $(item).width()
});
$('.breadcrumb.path.fork-path').remove();
if (mainWidth > 995) {
$('#path-breadcrumb').hide();
$parent.append('<div class="ui breadcrumb path fork-path">' + $('#path-breadcrumb').html() + '<div/>')
} else {
$('#path-breadcrumb').show();
}
}
window.pathAutoRender = pathAutoRender;
pathAutoRender();
})();
</script>
<div class='row column tree-holder' id='tree-holder'>
<div class='tree-content-holder' id='tree-content-holder'>
<div class='file_holder'>
<div class='file_title'>
<div class='blob-header-title'>
<div class='blob-description'>
<i class='iconfont icon-readme'></i>
<span class='file_name' title='Genymotion-ARM-Translation_v1.1.zip'>
Genymotion-ARM-Translation_v1.1.zip
</span>
<small>8.96 MB</small>
</div>
<div class='options'><div class='ui mini buttons basic'>
<a href="/qianchilang/share/raw/master/Genymotion-ARM-Translation_v1.1.zip" class="ui button edit-raw" target="_blank">Raw</a>
<a href="/qianchilang/share/commits/master/Genymotion-ARM-Translation_v1.1.zip" class="ui button edit-history">History</a>
</div>
<script>
"use strict";
try {
if((gon.wait_fork!=undefined && gon.wait_fork==true) || (gon.wait_fetch!=undefined && gon.wait_fetch==true)){
$('.edit-blob').popup({content:"This repository is doing something background, pleace try again later", on: 'hover', delay: { show: 200, hide: 200 }});
$('.edit-blob').click(function(e){
e.preventDefault();
})
}
var setUrl = function() {
var params = window.location.search
if (params==undefined || $.trim(params).length==0) return;
$('span.options').children('.basic').find('a').each(function(index,ele){
var origin_href = $(ele).attr('href');
if (origin_href!="#" && origin_href.indexOf('?') == -1){
$(ele).attr('href',origin_href+params);
}
});
}
setUrl();
var clipboard = null,
$btncopy = $("#copy-text");
clipboard = new Clipboard("#copy-text", {
text: function(trigger) {
return $("#blob_raw").val();
}
})
clipboard.on('success', function(e) {
$btncopy.popup('hide');
$btncopy.popup('destroy');
$btncopy.popup({content: 'Copied', position: 'bottom center'});
$btncopy.popup('show');
})
clipboard.on('error', function(e) {
var giteeModal = new GiteeModalHelper({okText: 'Confirm'});
giteeModal.alert("Copy", 'Copy failed. Please copy it manually');
})
$(function() {
$btncopy.popup({
content: 'Copy to clipboard',
position: 'bottom center'
})
})
} catch (error) {
console.log('blob/action error:' + error);
}
</script>
</div>
</div>
<div class='contributor-description'><span class='recent-commit' style='margin-top: 0.7rem'>
<a href="/qianchilang" class="commit-author-link">千尺浪</a>
<span>authored</span>
<span class='timeago commit-date' title='2018-10-10 17:35:55 +0800'>
2018-10-10 17:35
</span>
.
<a href="/qianchilang/share/commit/efc8d7590a0ad5542e42aa72b30177ecf884d212">ARM_Translation</a>
</span>
</div>
</div>
<div class='clearfix'></div>
<div class='file_content blob_file'>
<center>
<a href="/qianchilang/share/raw/master/Genymotion-ARM-Translation_v1.1.zip"><div class='padded'>
<h4>
<i class='icon-download-alt'></i>
<br>
Download (8.96 MB)
</h4>
</div>
</a></center>
</div>
</div>
</div>
<div class='tree_progress'></div>
<div class='ui small modal' id='modal-linejump'>
<div class='ui custom form content'>
<div class='field'>
<div class='ui right action input'>
<input placeholder='Jump to line...' type='number'>
<div class='ui orange button'>
Go
</div>
</div>
</div>
</div>
</div>
<div class='row column inner-comment' id='blob-comment'>
<input id="comment_path" name="comment_path" type="hidden" value="Genymotion-ARM-Translation_v1.1.zip" />
<div class='tree-comments'>
<h3 id='tree_comm_title'>
Comment
(
<span class='comments-count'>
0
</span>