diff --git a/.htaccess b/.htaccess index ad4a4c2..76ffe65 100644 --- a/.htaccess +++ b/.htaccess @@ -1,4 +1,4 @@ RewriteEngine On -RewriteRule ^faq$ faq.html [L] -RewriteRule ^tos$ tos.html [L] -RewriteRule ^([a-z]{2})/faq$ $1/faq.html [L] \ No newline at end of file +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !\.php$ +RewriteRule ^(.*)$ $1.php [L] \ No newline at end of file diff --git a/_config.php b/_config.php deleted file mode 100644 index 3f18689..0000000 --- a/_config.php +++ /dev/null @@ -1,8 +0,0 @@ - "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Mac.tar.gz", - "win32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Win32.zip", - "linux32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Linux-32.tar.gz", - "linux64" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Linux-64.tar.gz" - ); \ No newline at end of file diff --git a/css/style.css b/css/style.css index 04b404b..4e8d6d4 100755 --- a/css/style.css +++ b/css/style.css @@ -3195,6 +3195,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI content: "\e605"; } +.icon-ghost:before { + background: url(../images/blog.png) no-repeat; + content: "\00a0\00a0\00a0\00a0"; +} + .icon-twitter:before { content: "\e606"; } @@ -3308,8 +3313,8 @@ h5 { display: block; } -.width-50 { - width: 50%; +.width-70 { + width: 70%; text-align: center; } @@ -3323,7 +3328,7 @@ span.code { } @media screen and (max-width: 500px) { - .width-50 { + .width-70 { width: 100%; } } @@ -3359,6 +3364,19 @@ span.code { box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), inset 0px 1px rgba(255, 255, 255, 0.2); } +.icon-ghost { + background: #E5850A; +} +.icon-ghost:before { + font-size: 16px; +} +.icon-ghost:hover { + background: #E79338; +} +.icon-twitter:active { + background: #E5850A; +} + .icon-twitter { background: #36bff4; } @@ -3415,6 +3433,7 @@ span.code { } #header nav { position: relative; + z-index:1000; } #header nav .align-left { position: absolute; @@ -3460,6 +3479,12 @@ span.code { top: 5px; left: 9px; } +#header nav ul li.social a.icon-ghost:before { + font-size: 15px; + position: absolute; + top: 5px; + left: 6px; +} #header nav ul li.social a.icon-twitter:before { font-size: 12px; position: absolute; @@ -3474,6 +3499,7 @@ span.code { } #header .text { padding: 0 0 40px; + z-index: 100; } #header h1 { margin-bottom: 5px; @@ -4150,3 +4176,361 @@ body.lin-32 .dl-lin-32, body.lin-64 .dl-lin-64 { display: inline-block !important; } + +.tos { + background: #111; + margin:20px 0; +} + +.tos header { + text-align: center; +} + +.tos-container { + width:600px; + margin:0 auto; + line-height: 1.3em +} + +/* ---------------------------------------------------------------------- */ +/* "Polyglot" Language Switcher +/* ---------------------------------------------------------------------- +Version: 1.4 +Author: Ixtendo +Author URI: http://www.ixtendo.com +License: MIT License +License URI: http://www.opensource.org/licenses/mit-license.php +------------------------------------------------------------------------- */ + +/* ---------------------------------------------------------------------- */ +/* Generic +/* ---------------------------------------------------------------------- */ +#langswitch, #langswitch * { + margin: 0; + padding: 0; + outline: none; +} + +#langswitch ul { + list-style: none; +} + +#langswitch { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 12px; + color: #444; + line-height: normal; + position: relative; /* sets the initial position for the drop-down menu */ + z-index: 100; + display: inline-block; +} + +#langswitch form { + display: none; +} + +/* ---------------------------------------------------------------------- */ +/* JS-created Code +/* ---------------------------------------------------------------------- */ +#langswitch a { + text-decoration: none; + display: block; + padding: 0.5em 0px 0.5em 0px; /* 6px 6px 6px 28px */ + color: #444; + width: 36px; + background-repeat: no-repeat; + background-position: 6px center; +} + +#langswitch a:hover { + color: #000; +} + +#langswitch a.current:link, #langswitch a.current:visited, #langswitch a.current:active { + position: relative; /* sets the initial position for the trigger arrow */ + background-color: #FFF; + border: 1px solid #E5E5E5; + border-radius: 3px; + height: 1.25em; /* 15px */ + width: 44px; +} + +#langswitch ul.dropdown li { + padding-left: 8px; +} + +#langswitch a.current:hover, +#langswitch ul.dropdown li:hover { + background-color: #F7F7F7; +} + +#langswitch a.active { + border-bottom: none !important; + border-radius: 3px 3px 0 0 !important; +} + +#langswitch span.trigger { + display: block; + position: absolute; + width: 9px; + height: 5px; + text-indent: -10000em; + top: 12px; + right: 6px; +} + +#langswitch a.current:link span.trigger, #langswitch a.current:visited span.trigger { + background: url(../images/arrow-down.gif) no-repeat left top; +} + +#langswitch a.current:hover span.trigger, #langswitch a.current:active span.trigger, #langswitch a.active span.trigger { + background-position: left bottom !important; +} + +/* Drop-Down Menu */ + +#langswitch ul.dropdown { + display: none; + position: absolute; + top: 23px; + left: 0; + background-color: #FFF; + border: 1px solid #E5E5E5; + border-top: none !important; + border-radius: 0 0 3px 3px; + z-index: 200; +} + +#langswitch ul.dropdown li { + border-top: 1px dotted #D4D4D4; + margin: 0; +} + +#langswitch ul.dropdown li:last-child { + border-radius: 0 0 3px 3px; +} + +/* Flags */ +#ad {background-image: url(../images/flags/ad.png)} +#ae {background-image: url(../images/flags/ae.png)} +#af {background-image: url(../images/flags/af.png)} +#ag {background-image: url(../images/flags/ag.png)} +#ai {background-image: url(../images/flags/ai.png)} +#al {background-image: url(../images/flags/al.png)} +#am {background-image: url(../images/flags/am.png)} +#an {background-image: url(../images/flags/an.png)} +#ao {background-image: url(../images/flags/ao.png)} +#aq {background-image: url(../images/flags/aq.png)} +#ar {background-image: url(../images/flags/ar.png)} +#as {background-image: url(../images/flags/as.png)} +#at {background-image: url(../images/flags/at.png)} +#au {background-image: url(../images/flags/au.png)} +#aw {background-image: url(../images/flags/aw.png)} +#az {background-image: url(../images/flags/az.png)} +#ba {background-image: url(../images/flags/ba.png)} +#bb {background-image: url(../images/flags/bb.png)} +#bd {background-image: url(../images/flags/bd.png)} +#be {background-image: url(../images/flags/be.png)} +#bf {background-image: url(../images/flags/bf.png)} +#bg {background-image: url(../images/flags/bg.png)} +#bh {background-image: url(../images/flags/bh.png)} +#bi {background-image: url(../images/flags/bi.png)} +#bj {background-image: url(../images/flags/bj.png)} +#bm {background-image: url(../images/flags/bm.png)} +#bn {background-image: url(../images/flags/bn.png)} +#bo {background-image: url(../images/flags/bo.png)} +#bs {background-image: url(../images/flags/bs.png)} +#bt {background-image: url(../images/flags/bt.png)} +#bw {background-image: url(../images/flags/bw.png)} +#by {background-image: url(../images/flags/by.png)} +#bz {background-image: url(../images/flags/bz.png)} +#ca {background-image: url(../images/flags/ca.png)} +#cd {background-image: url(../images/flags/cd.png)} +#cf {background-image: url(../images/flags/cf.png)} +#cg {background-image: url(../images/flags/cg.png)} +#ch {background-image: url(../images/flags/ch.png)} +#ci {background-image: url(../images/flags/ci.png)} +#ck {background-image: url(../images/flags/ck.png)} +#cl {background-image: url(../images/flags/cl.png)} +#cm {background-image: url(../images/flags/cm.png)} +#co {background-image: url(../images/flags/co.png)} +#cr {background-image: url(../images/flags/cr.png)} +#cu {background-image: url(../images/flags/cu.png)} +#cv {background-image: url(../images/flags/cv.png)} +#cy {background-image: url(../images/flags/cy.png)} +#cz {background-image: url(../images/flags/cz.png)} +#de {background-image: url(../images/flags/de.png)} +#dj {background-image: url(../images/flags/dj.png)} +#dk {background-image: url(../images/flags/dk.png)} +#dm {background-image: url(../images/flags/dm.png)} +#do {background-image: url(../images/flags/do.png)} +#dz {background-image: url(../images/flags/dz.png)} +#ec {background-image: url(../images/flags/ec.png)} +#ee {background-image: url(../images/flags/ee.png)} +#eg {background-image: url(../images/flags/eg.png)} +#eh {background-image: url(../images/flags/eh.png)} +#en {background-image: url(../images/flags/en.png)} +#er {background-image: url(../images/flags/er.png)} +#es {background-image: url(../images/flags/es.png)} +#et {background-image: url(../images/flags/et.png)} +#fi {background-image: url(../images/flags/fi.png)} +#fj {background-image: url(../images/flags/fj.png)} +#fm {background-image: url(../images/flags/fm.png)} +#fo {background-image: url(../images/flags/fo.png)} +#fr {background-image: url(../images/flags/fr.png)} +#ga {background-image: url(../images/flags/ga.png)} +#gb {background-image: url(../images/flags/gb.png)} +#gd {background-image: url(../images/flags/gd.png)} +#ge {background-image: url(../images/flags/ge.png)} +#gg {background-image: url(../images/flags/gg.png)} +#gh {background-image: url(../images/flags/gh.png)} +#gi {background-image: url(../images/flags/gi.png)} +#gl {background-image: url(../images/flags/gl.png)} +#gm {background-image: url(../images/flags/gm.png)} +#gn {background-image: url(../images/flags/gn.png)} +#gp {background-image: url(../images/flags/gp.png)} +#gq {background-image: url(../images/flags/gq.png)} +#gr {background-image: url(../images/flags/gr.png)} +#gt {background-image: url(../images/flags/gt.png)} +#gu {background-image: url(../images/flags/gu.png)} +#gw {background-image: url(../images/flags/gw.png)} +#gy {background-image: url(../images/flags/gy.png)} +#hk {background-image: url(../images/flags/hk.png)} +#hn {background-image: url(../images/flags/hn.png)} +#hr {background-image: url(../images/flags/hr.png)} +#ht {background-image: url(../images/flags/ht.png)} +#hu {background-image: url(../images/flags/hu.png)} +#id {background-image: url(../images/flags/id.png)} +#ie {background-image: url(../images/flags/ie.png)} +#il {background-image: url(../images/flags/il.png)} +#im {background-image: url(../images/flags/im.png)} +#in {background-image: url(../images/flags/in.png)} +#iq {background-image: url(../images/flags/iq.png)} +#ir {background-image: url(../images/flags/ir.png)} +#is {background-image: url(../images/flags/is.png)} +#it {background-image: url(../images/flags/it.png)} +#je {background-image: url(../images/flags/je.png)} +#jm {background-image: url(../images/flags/jm.png)} +#jo {background-image: url(../images/flags/jo.png)} +#jp {background-image: url(../images/flags/jp.png)} +#ke {background-image: url(../images/flags/ke.png)} +#kg {background-image: url(../images/flags/kg.png)} +#kh {background-image: url(../images/flags/kh.png)} +#ki {background-image: url(../images/flags/ki.png)} +#km {background-image: url(../images/flags/km.png)} +#kn {background-image: url(../images/flags/kn.png)} +#kp {background-image: url(../images/flags/kp.png)} +#kr {background-image: url(../images/flags/kr.png)} +#kw {background-image: url(../images/flags/kw.png)} +#ky {background-image: url(../images/flags/ky.png)} +#kz {background-image: url(../images/flags/kz.png)} +#la {background-image: url(../images/flags/la.png)} +#lb {background-image: url(../images/flags/lb.png)} +#lc {background-image: url(../images/flags/lc.png)} +#li {background-image: url(../images/flags/li.png)} +#lk {background-image: url(../images/flags/lk.png)} +#lr {background-image: url(../images/flags/lr.png)} +#ls {background-image: url(../images/flags/ls.png)} +#lt {background-image: url(../images/flags/lt.png)} +#lu {background-image: url(../images/flags/lu.png)} +#lv {background-image: url(../images/flags/lv.png)} +#ly {background-image: url(../images/flags/ly.png)} +#ma {background-image: url(../images/flags/ma.png)} +#mc {background-image: url(../images/flags/mc.png)} +#md {background-image: url(../images/flags/md.png)} +#me {background-image: url(../images/flags/me.png)} +#mg {background-image: url(../images/flags/mg.png)} +#mh {background-image: url(../images/flags/mh.png)} +#mk {background-image: url(../images/flags/mk.png)} +#ml {background-image: url(../images/flags/ml.png)} +#mm {background-image: url(../images/flags/mm.png)} +#mn {background-image: url(../images/flags/mn.png)} +#mo {background-image: url(../images/flags/mo.png)} +#mq {background-image: url(../images/flags/mq.png)} +#mr {background-image: url(../images/flags/mr.png)} +#ms {background-image: url(../images/flags/ms.png)} +#mt {background-image: url(../images/flags/mt.png)} +#mu {background-image: url(../images/flags/mu.png)} +#mv {background-image: url(../images/flags/mv.png)} +#mw {background-image: url(../images/flags/mw.png)} +#mx {background-image: url(../images/flags/mx.png)} +#my {background-image: url(../images/flags/my.png)} +#mz {background-image: url(../images/flags/mz.png)} +#na {background-image: url(../images/flags/na.png)} +#nc {background-image: url(../images/flags/nc.png)} +#ne {background-image: url(../images/flags/ne.png)} +#ng {background-image: url(../images/flags/ng.png)} +#ni {background-image: url(../images/flags/ni.png)} +#nl {background-image: url(../images/flags/nl.png)} +#no {background-image: url(../images/flags/no.png)} +#np {background-image: url(../images/flags/np.png)} +#nr {background-image: url(../images/flags/nr.png)} +#nz {background-image: url(../images/flags/nz.png)} +#om {background-image: url(../images/flags/om.png)} +#pa {background-image: url(../images/flags/pa.png)} +#pe {background-image: url(../images/flags/pe.png)} +#pf {background-image: url(../images/flags/pf.png)} +#pg {background-image: url(../images/flags/pg.png)} +#ph {background-image: url(../images/flags/ph.png)} +#pk {background-image: url(../images/flags/pk.png)} +#pl {background-image: url(../images/flags/pl.png)} +#pr {background-image: url(../images/flags/pr.png)} +#ps {background-image: url(../images/flags/ps.png)} +#pt-br {background-image: url(../images/flags/pt-br.png)} +#pt {background-image: url(../images/flags/pt.png)} +#pw {background-image: url(../images/flags/pw.png)} +#py {background-image: url(../images/flags/py.png)} +#qa {background-image: url(../images/flags/qa.png)} +#re {background-image: url(../images/flags/re.png)} +#ro {background-image: url(../images/flags/ro.png)} +#rs {background-image: url(../images/flags/rs.png)} +#ru {background-image: url(../images/flags/ru.png)} +#rw {background-image: url(../images/flags/rw.png)} +#sa {background-image: url(../images/flags/sa.png)} +#sb {background-image: url(../images/flags/sb.png)} +#sc {background-image: url(../images/flags/sc.png)} +#sd {background-image: url(../images/flags/sd.png)} +#se {background-image: url(../images/flags/se.png)} +#sg {background-image: url(../images/flags/sg.png)} +#si {background-image: url(../images/flags/si.png)} +#sk {background-image: url(../images/flags/sk.png)} +#sl {background-image: url(../images/flags/sl.png)} +#sm {background-image: url(../images/flags/sm.png)} +#sn {background-image: url(../images/flags/sn.png)} +#so {background-image: url(../images/flags/so.png)} +#sr {background-image: url(../images/flags/sr.png)} +#st {background-image: url(../images/flags/st.png)} +#sv {background-image: url(../images/flags/sv.png)} +#sy {background-image: url(../images/flags/sy.png)} +#sz {background-image: url(../images/flags/sz.png)} +#tc {background-image: url(../images/flags/tc.png)} +#td {background-image: url(../images/flags/td.png)} +#tg {background-image: url(../images/flags/tg.png)} +#th {background-image: url(../images/flags/th.png)} +#tj {background-image: url(../images/flags/tj.png)} +#tl {background-image: url(../images/flags/tl.png)} +#tm {background-image: url(../images/flags/tm.png)} +#tn {background-image: url(../images/flags/tn.png)} +#to {background-image: url(../images/flags/to.png)} +#tr {background-image: url(../images/flags/tr.png)} +#tt {background-image: url(../images/flags/tt.png)} +#tv {background-image: url(../images/flags/tv.png)} +#tz {background-image: url(../images/flags/tz.png)} +#ua {background-image: url(../images/flags/ua.png)} +#ug {background-image: url(../images/flags/ug.png)} +#uy {background-image: url(../images/flags/uy.png)} +#uz {background-image: url(../images/flags/uz.png)} +#va {background-image: url(../images/flags/va.png)} +#vc {background-image: url(../images/flags/vc.png)} +#ve {background-image: url(../images/flags/ve.png)} +#vg {background-image: url(../images/flags/vg.png)} +#vi {background-image: url(../images/flags/vi.png)} +#vn {background-image: url(../images/flags/vn.png)} +#vu {background-image: url(../images/flags/vu.png)} +#ws {background-image: url(../images/flags/ws.png)} +#ye {background-image: url(../images/flags/ye.png)} +#za {background-image: url(../images/flags/za.png)} +#zh-cn {background-image: url(../images/flags/zh-cn.png)} +#zh-tw {background-image: url(../images/flags/zh-tw.png)} +#zm {background-image: url(../images/flags/zm.png)} +#zw {background-image: url(../images/flags/zw.png)} \ No newline at end of file diff --git a/download.php b/download.php index 6de4767..7b7780e 100644 --- a/download.php +++ b/download.php @@ -1,31 +1,25 @@ "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Mac.tar.gz", - "win32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Win-32.zip", - "linux32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Linux-32.tar.gz", - "linux64" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Linux-64.tar.gz" + "mac" => $link_mac, + "win" => $link_win, + "linux32" => $link_linux32, + "linux64" => $link_linux64 ); - if (isset($_GET['os'])) { - - if (isset($releases[$_GET['os']])) { - $download_file = $releases[$_GET['os']]; - } else { - header("Location: /"); - die(); - } + if (isset($_GET['os']) && isset($releases[$_GET['os']])) { + $download_file = $releases[$_GET['os']]; } else { header("Location: /"); - die(); } ?> - - + + + - - + + + - Download - Popcorn Time - + Popcorn Time - <?=$langsite["TITLE_DLS"]?> + " /> + + + - - + + - +
-

Thank you for using Popcorn Time

-

- Your download is about to start. Click here if your download didn't start -

+

+

-

-
-

Subscribe to our official mailing list

-
* indicates required
-
- - -
-
- - -
-
-
-
+
+

+
+ + +
+
+ + +
+
+
" name="subscribe" id="mc-embedded-subscribe" class="button">
+
- + + diff --git a/faq.html b/faq.php similarity index 53% rename from faq.html rename to faq.php index b96f2c8..cc45688 100644 --- a/faq.html +++ b/faq.php @@ -1,9 +1,11 @@ + - - + + + - - + + + - Frequently Asked Questions - Popcorn Time - - + Popcorn Time - <?=$langsite["TITLE_FAQ"]?> + " /> + + + + - - + +
-

To enjoy a great experience, always make sure you're running the latest Popcorn Time version.
- Our only official site is get-popcorn.com (for now). Do not get the app from anywhere else, as there's a few fake sites going around.

+


+ get-popcorn.com

-

Frequently Asked Questions

-

Popcorn Time! is the result of many developers and designers putting a bunch of APIs together to make the experience of watching torrent movies as simple as possible.

-

We are an open source project. We are from all over the world. We love our movies. And boy, do we love popcorn!

+

+

+

-

Popcorn Time works using torrents, fair enough. But am I seeding while watching a movie?

-

Indeed, you are! You're going to be uploading bits and bytes of the movie for as long as you're watching it in Popcorn Time.

+

+

-

What happens to the movies after I'm done?

-

Your movies will stay buried in a secret folder somewhere in your drive until you restart your computer. Then they will be gone for good.

+

+

-

Will there be a new version?

-

Most definitely! You're going to have to download it manually for now, but fear not! If you're on version Beta 2.x or upwards, you'll be notified within the app. Other than that, we'll let you know through Facebook and/or Twitter.

+

+

-

How come you've got the latest movies?

-

We search for movies uploaded by YIFY. Better ask them how they are handling this!

+

+

-

Will you be adding movies in my language?

-

Chances are that most (if not all) of the movies available in Popcorn Time will be in English. However, languages for subtitles and the app itself are constantly being added by our lovely contributors.

+

+

-

Why can't I launch Popcorn Time?

-

Your system may prevent unsigned apps from being run
Go to System Preferences > Security > Allow Apps downloaded from > Anywhere and try to launch Popcorn Time! again.

-

You may have not have enough User Priviliges
- Open a Terminal, and type: +

+


+


+

  • $ chmod +x /Applications/Popcorn\ Time.app/Contents/MacOS/node-webkit
  • $ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/crash_inspector
  • $ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper.app/Contents/MacOS/node-webkit\ Helper
  • $ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper\ EH.app/Contents/MacOS/node-webkit\ Helper\ EH
  • $ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper\ NP.app/Contents/MacOS/node-webkit\ Helper\ NP
  • -

+ +

-

I can't get past the initial "Please wait..." screen :(

-

Living on Queen Elizabeth's realm and using old version (<2.8), aren't you? There's a workaround for this issue in version 2.8 and onwards, but there's no guarantee it will work. Check out the Black list for more information on website blocking in the UK.

+

+

-

Why can't I select subtitles?

-

You may have to wait until all of the movie data (cover, summary, length, etc...) is retrieved. Sometimes it may be something else!

+

+

-

Thinking about launching for Android/iOS/Chromecast/Smart TVs/Commodore 64?

-

Our efforts are currently focussed towards making the best desktop app for watching torrent movies. So launching versions for other devices is not in our immediate roadmap.

+

+

-

Does the app work on Raspberry Pi/ChomeBook/BeagleBone?

-

Currently the app is compiled only for Win/Linux32/Linux64/Mac but if you want to try it on ARM go for it!

+

+

-

You're changing site/repo more often I change underwear! Where's the best place to stay up to date with the project?

-

Well yes, the app has had some difficult times since its inception. The best place for the latest info and updates is the IRC channel #popcorntime on freenode.

+

+

@@ -170,19 +185,19 @@
- - + + diff --git a/images/arrow-down.gif b/images/arrow-down.gif new file mode 100644 index 0000000..edd521a Binary files /dev/null and b/images/arrow-down.gif differ diff --git a/images/blog.png b/images/blog.png new file mode 100644 index 0000000..3d72674 Binary files /dev/null and b/images/blog.png differ diff --git a/images/flags/ad.png b/images/flags/ad.png new file mode 100644 index 0000000..9031e27 Binary files /dev/null and b/images/flags/ad.png differ diff --git a/images/flags/ae.png b/images/flags/ae.png new file mode 100644 index 0000000..a3724db Binary files /dev/null and b/images/flags/ae.png differ diff --git a/images/flags/af.png b/images/flags/af.png new file mode 100644 index 0000000..484c991 Binary files /dev/null and b/images/flags/af.png differ diff --git a/images/flags/ag.png b/images/flags/ag.png new file mode 100644 index 0000000..a1f6da3 Binary files /dev/null and b/images/flags/ag.png differ diff --git a/images/flags/ai.png b/images/flags/ai.png new file mode 100644 index 0000000..fc2c726 Binary files /dev/null and b/images/flags/ai.png differ diff --git a/images/flags/al.png b/images/flags/al.png new file mode 100644 index 0000000..68b6144 Binary files /dev/null and b/images/flags/al.png differ diff --git a/images/flags/am.png b/images/flags/am.png new file mode 100644 index 0000000..5f7dc7b Binary files /dev/null and b/images/flags/am.png differ diff --git a/images/flags/an.png b/images/flags/an.png new file mode 100644 index 0000000..163d334 Binary files /dev/null and b/images/flags/an.png differ diff --git a/images/flags/ao.png b/images/flags/ao.png new file mode 100644 index 0000000..55dc94b Binary files /dev/null and b/images/flags/ao.png differ diff --git a/images/flags/aq.png b/images/flags/aq.png new file mode 100644 index 0000000..d62f32c Binary files /dev/null and b/images/flags/aq.png differ diff --git a/images/flags/ar.png b/images/flags/ar.png new file mode 100644 index 0000000..8acaf68 Binary files /dev/null and b/images/flags/ar.png differ diff --git a/images/flags/as.png b/images/flags/as.png new file mode 100644 index 0000000..a7c5cd7 Binary files /dev/null and b/images/flags/as.png differ diff --git a/images/flags/at.png b/images/flags/at.png new file mode 100644 index 0000000..2275896 Binary files /dev/null and b/images/flags/at.png differ diff --git a/images/flags/au.png b/images/flags/au.png new file mode 100644 index 0000000..a70c6b7 Binary files /dev/null and b/images/flags/au.png differ diff --git a/images/flags/aw.png b/images/flags/aw.png new file mode 100644 index 0000000..3a0684b Binary files /dev/null and b/images/flags/aw.png differ diff --git a/images/flags/az.png b/images/flags/az.png new file mode 100644 index 0000000..8e90389 Binary files /dev/null and b/images/flags/az.png differ diff --git a/images/flags/ba.png b/images/flags/ba.png new file mode 100644 index 0000000..040bacf Binary files /dev/null and b/images/flags/ba.png differ diff --git a/images/flags/bb.png b/images/flags/bb.png new file mode 100644 index 0000000..81ed981 Binary files /dev/null and b/images/flags/bb.png differ diff --git a/images/flags/bd.png b/images/flags/bd.png new file mode 100644 index 0000000..4781f69 Binary files /dev/null and b/images/flags/bd.png differ diff --git a/images/flags/be.png b/images/flags/be.png new file mode 100644 index 0000000..eebb0c4 Binary files /dev/null and b/images/flags/be.png differ diff --git a/images/flags/bf.png b/images/flags/bf.png new file mode 100644 index 0000000..c8739b0 Binary files /dev/null and b/images/flags/bf.png differ diff --git a/images/flags/bg.png b/images/flags/bg.png new file mode 100644 index 0000000..4579f08 Binary files /dev/null and b/images/flags/bg.png differ diff --git a/images/flags/bh.png b/images/flags/bh.png new file mode 100644 index 0000000..5e61b9c Binary files /dev/null and b/images/flags/bh.png differ diff --git a/images/flags/bi.png b/images/flags/bi.png new file mode 100644 index 0000000..8beac22 Binary files /dev/null and b/images/flags/bi.png differ diff --git a/images/flags/bj.png b/images/flags/bj.png new file mode 100644 index 0000000..8ce7547 Binary files /dev/null and b/images/flags/bj.png differ diff --git a/images/flags/bm.png b/images/flags/bm.png new file mode 100644 index 0000000..fa4699f Binary files /dev/null and b/images/flags/bm.png differ diff --git a/images/flags/bn.png b/images/flags/bn.png new file mode 100644 index 0000000..8afbe1b Binary files /dev/null and b/images/flags/bn.png differ diff --git a/images/flags/bo.png b/images/flags/bo.png new file mode 100644 index 0000000..d9b4a78 Binary files /dev/null and b/images/flags/bo.png differ diff --git a/images/flags/bs.png b/images/flags/bs.png new file mode 100644 index 0000000..4fa2c4b Binary files /dev/null and b/images/flags/bs.png differ diff --git a/images/flags/bt.png b/images/flags/bt.png new file mode 100644 index 0000000..71b9ff5 Binary files /dev/null and b/images/flags/bt.png differ diff --git a/images/flags/bw.png b/images/flags/bw.png new file mode 100644 index 0000000..551b48a Binary files /dev/null and b/images/flags/bw.png differ diff --git a/images/flags/by.png b/images/flags/by.png new file mode 100644 index 0000000..b5a2e3c Binary files /dev/null and b/images/flags/by.png differ diff --git a/images/flags/bz.png b/images/flags/bz.png new file mode 100644 index 0000000..e150f0f Binary files /dev/null and b/images/flags/bz.png differ diff --git a/images/flags/ca.png b/images/flags/ca.png new file mode 100644 index 0000000..1b90bea Binary files /dev/null and b/images/flags/ca.png differ diff --git a/images/flags/cd.png b/images/flags/cd.png new file mode 100644 index 0000000..5ac78b2 Binary files /dev/null and b/images/flags/cd.png differ diff --git a/images/flags/cf.png b/images/flags/cf.png new file mode 100644 index 0000000..ee3a68c Binary files /dev/null and b/images/flags/cf.png differ diff --git a/images/flags/cg.png b/images/flags/cg.png new file mode 100644 index 0000000..cb1a22e Binary files /dev/null and b/images/flags/cg.png differ diff --git a/images/flags/ch.png b/images/flags/ch.png new file mode 100644 index 0000000..c8dd942 Binary files /dev/null and b/images/flags/ch.png differ diff --git a/images/flags/ci.png b/images/flags/ci.png new file mode 100644 index 0000000..b5f13a7 Binary files /dev/null and b/images/flags/ci.png differ diff --git a/images/flags/ck.png b/images/flags/ck.png new file mode 100644 index 0000000..b24914b Binary files /dev/null and b/images/flags/ck.png differ diff --git a/images/flags/cl.png b/images/flags/cl.png new file mode 100644 index 0000000..4d9b548 Binary files /dev/null and b/images/flags/cl.png differ diff --git a/images/flags/cm.png b/images/flags/cm.png new file mode 100644 index 0000000..1ae42f2 Binary files /dev/null and b/images/flags/cm.png differ diff --git a/images/flags/co.png b/images/flags/co.png new file mode 100644 index 0000000..30476c4 Binary files /dev/null and b/images/flags/co.png differ diff --git a/images/flags/cr.png b/images/flags/cr.png new file mode 100644 index 0000000..399b9c4 Binary files /dev/null and b/images/flags/cr.png differ diff --git a/images/flags/cu.png b/images/flags/cu.png new file mode 100644 index 0000000..54ee2e5 Binary files /dev/null and b/images/flags/cu.png differ diff --git a/images/flags/cv.png b/images/flags/cv.png new file mode 100644 index 0000000..fbf22df Binary files /dev/null and b/images/flags/cv.png differ diff --git a/images/flags/cy.png b/images/flags/cy.png new file mode 100644 index 0000000..9bbd09e Binary files /dev/null and b/images/flags/cy.png differ diff --git a/images/flags/cz.png b/images/flags/cz.png new file mode 100644 index 0000000..3e855a5 Binary files /dev/null and b/images/flags/cz.png differ diff --git a/images/flags/de.png b/images/flags/de.png new file mode 100644 index 0000000..63b86fd Binary files /dev/null and b/images/flags/de.png differ diff --git a/images/flags/dj.png b/images/flags/dj.png new file mode 100644 index 0000000..335575c Binary files /dev/null and b/images/flags/dj.png differ diff --git a/images/flags/dk.png b/images/flags/dk.png new file mode 100644 index 0000000..63db11d Binary files /dev/null and b/images/flags/dk.png differ diff --git a/images/flags/dm.png b/images/flags/dm.png new file mode 100644 index 0000000..28291b7 Binary files /dev/null and b/images/flags/dm.png differ diff --git a/images/flags/do.png b/images/flags/do.png new file mode 100644 index 0000000..9434025 Binary files /dev/null and b/images/flags/do.png differ diff --git a/images/flags/dz.png b/images/flags/dz.png new file mode 100644 index 0000000..0d08e5f Binary files /dev/null and b/images/flags/dz.png differ diff --git a/images/flags/ec.png b/images/flags/ec.png new file mode 100644 index 0000000..fcb9e33 Binary files /dev/null and b/images/flags/ec.png differ diff --git a/images/flags/ee.png b/images/flags/ee.png new file mode 100644 index 0000000..7cedf4a Binary files /dev/null and b/images/flags/ee.png differ diff --git a/images/flags/eg.png b/images/flags/eg.png new file mode 100644 index 0000000..ebde625 Binary files /dev/null and b/images/flags/eg.png differ diff --git a/images/flags/eh.png b/images/flags/eh.png new file mode 100644 index 0000000..ea55ea9 Binary files /dev/null and b/images/flags/eh.png differ diff --git a/images/flags/en.png b/images/flags/en.png new file mode 100644 index 0000000..09c94a0 Binary files /dev/null and b/images/flags/en.png differ diff --git a/images/flags/er.png b/images/flags/er.png new file mode 100644 index 0000000..af4d27c Binary files /dev/null and b/images/flags/er.png differ diff --git a/images/flags/es.png b/images/flags/es.png new file mode 100644 index 0000000..8d149a3 Binary files /dev/null and b/images/flags/es.png differ diff --git a/images/flags/et.png b/images/flags/et.png new file mode 100644 index 0000000..059cbe4 Binary files /dev/null and b/images/flags/et.png differ diff --git a/images/flags/fi.png b/images/flags/fi.png new file mode 100644 index 0000000..58ed9f6 Binary files /dev/null and b/images/flags/fi.png differ diff --git a/images/flags/fj.png b/images/flags/fj.png new file mode 100644 index 0000000..c6fc3d3 Binary files /dev/null and b/images/flags/fj.png differ diff --git a/images/flags/fm.png b/images/flags/fm.png new file mode 100644 index 0000000..66180a6 Binary files /dev/null and b/images/flags/fm.png differ diff --git a/images/flags/fo.png b/images/flags/fo.png new file mode 100644 index 0000000..b8de107 Binary files /dev/null and b/images/flags/fo.png differ diff --git a/images/flags/fr.png b/images/flags/fr.png new file mode 100644 index 0000000..3f16223 Binary files /dev/null and b/images/flags/fr.png differ diff --git a/images/flags/ga.png b/images/flags/ga.png new file mode 100644 index 0000000..dfc5594 Binary files /dev/null and b/images/flags/ga.png differ diff --git a/images/flags/gb.png b/images/flags/gb.png new file mode 100644 index 0000000..c7f7128 Binary files /dev/null and b/images/flags/gb.png differ diff --git a/images/flags/gd.png b/images/flags/gd.png new file mode 100644 index 0000000..f1ebd7e Binary files /dev/null and b/images/flags/gd.png differ diff --git a/images/flags/ge.png b/images/flags/ge.png new file mode 100644 index 0000000..168c0e3 Binary files /dev/null and b/images/flags/ge.png differ diff --git a/images/flags/gg.png b/images/flags/gg.png new file mode 100644 index 0000000..b42d0c7 Binary files /dev/null and b/images/flags/gg.png differ diff --git a/images/flags/gh.png b/images/flags/gh.png new file mode 100644 index 0000000..0775464 Binary files /dev/null and b/images/flags/gh.png differ diff --git a/images/flags/gi.png b/images/flags/gi.png new file mode 100644 index 0000000..2df779c Binary files /dev/null and b/images/flags/gi.png differ diff --git a/images/flags/gl.png b/images/flags/gl.png new file mode 100644 index 0000000..aab099a Binary files /dev/null and b/images/flags/gl.png differ diff --git a/images/flags/gm.png b/images/flags/gm.png new file mode 100644 index 0000000..a8f96f7 Binary files /dev/null and b/images/flags/gm.png differ diff --git a/images/flags/gn.png b/images/flags/gn.png new file mode 100644 index 0000000..aaa4254 Binary files /dev/null and b/images/flags/gn.png differ diff --git a/images/flags/gp.png b/images/flags/gp.png new file mode 100644 index 0000000..ca40788 Binary files /dev/null and b/images/flags/gp.png differ diff --git a/images/flags/gq.png b/images/flags/gq.png new file mode 100644 index 0000000..7b99fbc Binary files /dev/null and b/images/flags/gq.png differ diff --git a/images/flags/gr.png b/images/flags/gr.png new file mode 100644 index 0000000..d52e9bd Binary files /dev/null and b/images/flags/gr.png differ diff --git a/images/flags/gt.png b/images/flags/gt.png new file mode 100644 index 0000000..cc1f6e7 Binary files /dev/null and b/images/flags/gt.png differ diff --git a/images/flags/gu.png b/images/flags/gu.png new file mode 100644 index 0000000..42fde74 Binary files /dev/null and b/images/flags/gu.png differ diff --git a/images/flags/gw.png b/images/flags/gw.png new file mode 100644 index 0000000..6d2cedf Binary files /dev/null and b/images/flags/gw.png differ diff --git a/images/flags/gy.png b/images/flags/gy.png new file mode 100644 index 0000000..7b4ce14 Binary files /dev/null and b/images/flags/gy.png differ diff --git a/images/flags/hk.png b/images/flags/hk.png new file mode 100644 index 0000000..5adfced Binary files /dev/null and b/images/flags/hk.png differ diff --git a/images/flags/hn.png b/images/flags/hn.png new file mode 100644 index 0000000..1d47eef Binary files /dev/null and b/images/flags/hn.png differ diff --git a/images/flags/hr.png b/images/flags/hr.png new file mode 100644 index 0000000..31c06b4 Binary files /dev/null and b/images/flags/hr.png differ diff --git a/images/flags/ht.png b/images/flags/ht.png new file mode 100644 index 0000000..a99c371 Binary files /dev/null and b/images/flags/ht.png differ diff --git a/images/flags/hu.png b/images/flags/hu.png new file mode 100644 index 0000000..c59f41f Binary files /dev/null and b/images/flags/hu.png differ diff --git a/images/flags/id.png b/images/flags/id.png new file mode 100644 index 0000000..c66335f Binary files /dev/null and b/images/flags/id.png differ diff --git a/images/flags/ie.png b/images/flags/ie.png new file mode 100644 index 0000000..f3b94ac Binary files /dev/null and b/images/flags/ie.png differ diff --git a/images/flags/il.png b/images/flags/il.png new file mode 100644 index 0000000..cdf7c53 Binary files /dev/null and b/images/flags/il.png differ diff --git a/images/flags/im.png b/images/flags/im.png new file mode 100644 index 0000000..34a95d1 Binary files /dev/null and b/images/flags/im.png differ diff --git a/images/flags/in.png b/images/flags/in.png new file mode 100644 index 0000000..d90456d Binary files /dev/null and b/images/flags/in.png differ diff --git a/images/flags/iq.png b/images/flags/iq.png new file mode 100644 index 0000000..d5f361c Binary files /dev/null and b/images/flags/iq.png differ diff --git a/images/flags/ir.png b/images/flags/ir.png new file mode 100644 index 0000000..79801bf Binary files /dev/null and b/images/flags/ir.png differ diff --git a/images/flags/is.png b/images/flags/is.png new file mode 100644 index 0000000..7d79389 Binary files /dev/null and b/images/flags/is.png differ diff --git a/images/flags/it.png b/images/flags/it.png new file mode 100644 index 0000000..9d4ce40 Binary files /dev/null and b/images/flags/it.png differ diff --git a/images/flags/je.png b/images/flags/je.png new file mode 100644 index 0000000..9c4e53e Binary files /dev/null and b/images/flags/je.png differ diff --git a/images/flags/jm.png b/images/flags/jm.png new file mode 100644 index 0000000..6c59518 Binary files /dev/null and b/images/flags/jm.png differ diff --git a/images/flags/jo.png b/images/flags/jo.png new file mode 100644 index 0000000..899a4a8 Binary files /dev/null and b/images/flags/jo.png differ diff --git a/images/flags/jp.png b/images/flags/jp.png new file mode 100644 index 0000000..0ce0a47 Binary files /dev/null and b/images/flags/jp.png differ diff --git a/images/flags/ke.png b/images/flags/ke.png new file mode 100644 index 0000000..92897f7 Binary files /dev/null and b/images/flags/ke.png differ diff --git a/images/flags/kg.png b/images/flags/kg.png new file mode 100644 index 0000000..8406fe3 Binary files /dev/null and b/images/flags/kg.png differ diff --git a/images/flags/kh.png b/images/flags/kh.png new file mode 100644 index 0000000..dc2e557 Binary files /dev/null and b/images/flags/kh.png differ diff --git a/images/flags/ki.png b/images/flags/ki.png new file mode 100644 index 0000000..4423050 Binary files /dev/null and b/images/flags/ki.png differ diff --git a/images/flags/km.png b/images/flags/km.png new file mode 100644 index 0000000..d3fb7d9 Binary files /dev/null and b/images/flags/km.png differ diff --git a/images/flags/kn.png b/images/flags/kn.png new file mode 100644 index 0000000..febac13 Binary files /dev/null and b/images/flags/kn.png differ diff --git a/images/flags/kp.png b/images/flags/kp.png new file mode 100644 index 0000000..1bbe095 Binary files /dev/null and b/images/flags/kp.png differ diff --git a/images/flags/kr.png b/images/flags/kr.png new file mode 100644 index 0000000..4a4f8fb Binary files /dev/null and b/images/flags/kr.png differ diff --git a/images/flags/kw.png b/images/flags/kw.png new file mode 100644 index 0000000..727c69b Binary files /dev/null and b/images/flags/kw.png differ diff --git a/images/flags/ky.png b/images/flags/ky.png new file mode 100644 index 0000000..550f815 Binary files /dev/null and b/images/flags/ky.png differ diff --git a/images/flags/kz.png b/images/flags/kz.png new file mode 100644 index 0000000..ca599c8 Binary files /dev/null and b/images/flags/kz.png differ diff --git a/images/flags/la.png b/images/flags/la.png new file mode 100644 index 0000000..4e3ce0b Binary files /dev/null and b/images/flags/la.png differ diff --git a/images/flags/lb.png b/images/flags/lb.png new file mode 100644 index 0000000..08b6dd0 Binary files /dev/null and b/images/flags/lb.png differ diff --git a/images/flags/lc.png b/images/flags/lc.png new file mode 100644 index 0000000..cf701b2 Binary files /dev/null and b/images/flags/lc.png differ diff --git a/images/flags/li.png b/images/flags/li.png new file mode 100644 index 0000000..d99a12a Binary files /dev/null and b/images/flags/li.png differ diff --git a/images/flags/lk.png b/images/flags/lk.png new file mode 100644 index 0000000..4a3aa64 Binary files /dev/null and b/images/flags/lk.png differ diff --git a/images/flags/lr.png b/images/flags/lr.png new file mode 100644 index 0000000..026ebcb Binary files /dev/null and b/images/flags/lr.png differ diff --git a/images/flags/ls.png b/images/flags/ls.png new file mode 100644 index 0000000..5865b82 Binary files /dev/null and b/images/flags/ls.png differ diff --git a/images/flags/lt.png b/images/flags/lt.png new file mode 100644 index 0000000..714784d Binary files /dev/null and b/images/flags/lt.png differ diff --git a/images/flags/lu.png b/images/flags/lu.png new file mode 100644 index 0000000..dcd2eda Binary files /dev/null and b/images/flags/lu.png differ diff --git a/images/flags/lv.png b/images/flags/lv.png new file mode 100644 index 0000000..3b2c2c8 Binary files /dev/null and b/images/flags/lv.png differ diff --git a/images/flags/ly.png b/images/flags/ly.png new file mode 100644 index 0000000..dd7dbbb Binary files /dev/null and b/images/flags/ly.png differ diff --git a/images/flags/ma.png b/images/flags/ma.png new file mode 100644 index 0000000..cccbe6d Binary files /dev/null and b/images/flags/ma.png differ diff --git a/images/flags/mc.png b/images/flags/mc.png new file mode 100644 index 0000000..c66335f Binary files /dev/null and b/images/flags/mc.png differ diff --git a/images/flags/md.png b/images/flags/md.png new file mode 100644 index 0000000..92c934d Binary files /dev/null and b/images/flags/md.png differ diff --git a/images/flags/me.png b/images/flags/me.png new file mode 100644 index 0000000..72a4780 Binary files /dev/null and b/images/flags/me.png differ diff --git a/images/flags/mg.png b/images/flags/mg.png new file mode 100644 index 0000000..be1ce87 Binary files /dev/null and b/images/flags/mg.png differ diff --git a/images/flags/mh.png b/images/flags/mh.png new file mode 100644 index 0000000..dcc39b1 Binary files /dev/null and b/images/flags/mh.png differ diff --git a/images/flags/mk.png b/images/flags/mk.png new file mode 100644 index 0000000..253d929 Binary files /dev/null and b/images/flags/mk.png differ diff --git a/images/flags/ml.png b/images/flags/ml.png new file mode 100644 index 0000000..2642d9e Binary files /dev/null and b/images/flags/ml.png differ diff --git a/images/flags/mm.png b/images/flags/mm.png new file mode 100644 index 0000000..7e58eb7 Binary files /dev/null and b/images/flags/mm.png differ diff --git a/images/flags/mn.png b/images/flags/mn.png new file mode 100644 index 0000000..920ede4 Binary files /dev/null and b/images/flags/mn.png differ diff --git a/images/flags/mo.png b/images/flags/mo.png new file mode 100644 index 0000000..e478154 Binary files /dev/null and b/images/flags/mo.png differ diff --git a/images/flags/mq.png b/images/flags/mq.png new file mode 100644 index 0000000..44570c3 Binary files /dev/null and b/images/flags/mq.png differ diff --git a/images/flags/mr.png b/images/flags/mr.png new file mode 100644 index 0000000..245ca35 Binary files /dev/null and b/images/flags/mr.png differ diff --git a/images/flags/ms.png b/images/flags/ms.png new file mode 100644 index 0000000..679cdad Binary files /dev/null and b/images/flags/ms.png differ diff --git a/images/flags/mt.png b/images/flags/mt.png new file mode 100644 index 0000000..d94b9e7 Binary files /dev/null and b/images/flags/mt.png differ diff --git a/images/flags/mu.png b/images/flags/mu.png new file mode 100644 index 0000000..fa0aaa9 Binary files /dev/null and b/images/flags/mu.png differ diff --git a/images/flags/mv.png b/images/flags/mv.png new file mode 100644 index 0000000..a294159 Binary files /dev/null and b/images/flags/mv.png differ diff --git a/images/flags/mw.png b/images/flags/mw.png new file mode 100644 index 0000000..51b5e31 Binary files /dev/null and b/images/flags/mw.png differ diff --git a/images/flags/mx.png b/images/flags/mx.png new file mode 100644 index 0000000..c1bd33b Binary files /dev/null and b/images/flags/mx.png differ diff --git a/images/flags/my.png b/images/flags/my.png new file mode 100644 index 0000000..4498960 Binary files /dev/null and b/images/flags/my.png differ diff --git a/images/flags/mz.png b/images/flags/mz.png new file mode 100644 index 0000000..e8d9b6a Binary files /dev/null and b/images/flags/mz.png differ diff --git a/images/flags/na.png b/images/flags/na.png new file mode 100644 index 0000000..61cf1e0 Binary files /dev/null and b/images/flags/na.png differ diff --git a/images/flags/nc.png b/images/flags/nc.png new file mode 100644 index 0000000..7dc765d Binary files /dev/null and b/images/flags/nc.png differ diff --git a/images/flags/ne.png b/images/flags/ne.png new file mode 100644 index 0000000..31b8e43 Binary files /dev/null and b/images/flags/ne.png differ diff --git a/images/flags/ng.png b/images/flags/ng.png new file mode 100644 index 0000000..7b30c22 Binary files /dev/null and b/images/flags/ng.png differ diff --git a/images/flags/ni.png b/images/flags/ni.png new file mode 100644 index 0000000..7247d83 Binary files /dev/null and b/images/flags/ni.png differ diff --git a/images/flags/nl.png b/images/flags/nl.png new file mode 100644 index 0000000..10e8ea0 Binary files /dev/null and b/images/flags/nl.png differ diff --git a/images/flags/no.png b/images/flags/no.png new file mode 100644 index 0000000..f629dc4 Binary files /dev/null and b/images/flags/no.png differ diff --git a/images/flags/np.png b/images/flags/np.png new file mode 100644 index 0000000..6dfe9ea Binary files /dev/null and b/images/flags/np.png differ diff --git a/images/flags/nr.png b/images/flags/nr.png new file mode 100644 index 0000000..8cffaca Binary files /dev/null and b/images/flags/nr.png differ diff --git a/images/flags/nz.png b/images/flags/nz.png new file mode 100644 index 0000000..810c8bc Binary files /dev/null and b/images/flags/nz.png differ diff --git a/images/flags/om.png b/images/flags/om.png new file mode 100644 index 0000000..282aeed Binary files /dev/null and b/images/flags/om.png differ diff --git a/images/flags/pa.png b/images/flags/pa.png new file mode 100644 index 0000000..81d3fd5 Binary files /dev/null and b/images/flags/pa.png differ diff --git a/images/flags/pe.png b/images/flags/pe.png new file mode 100644 index 0000000..8d2691e Binary files /dev/null and b/images/flags/pe.png differ diff --git a/images/flags/pf.png b/images/flags/pf.png new file mode 100644 index 0000000..5f55118 Binary files /dev/null and b/images/flags/pf.png differ diff --git a/images/flags/pg.png b/images/flags/pg.png new file mode 100644 index 0000000..3f8143f Binary files /dev/null and b/images/flags/pg.png differ diff --git a/images/flags/ph.png b/images/flags/ph.png new file mode 100644 index 0000000..2225029 Binary files /dev/null and b/images/flags/ph.png differ diff --git a/images/flags/pk.png b/images/flags/pk.png new file mode 100644 index 0000000..e9192a6 Binary files /dev/null and b/images/flags/pk.png differ diff --git a/images/flags/pl.png b/images/flags/pl.png new file mode 100644 index 0000000..079871b Binary files /dev/null and b/images/flags/pl.png differ diff --git a/images/flags/pr.png b/images/flags/pr.png new file mode 100644 index 0000000..2469b57 Binary files /dev/null and b/images/flags/pr.png differ diff --git a/images/flags/ps.png b/images/flags/ps.png new file mode 100644 index 0000000..364ddf8 Binary files /dev/null and b/images/flags/ps.png differ diff --git a/images/flags/pt-br.png b/images/flags/pt-br.png new file mode 100644 index 0000000..7daab39 Binary files /dev/null and b/images/flags/pt-br.png differ diff --git a/images/flags/pt.png b/images/flags/pt.png new file mode 100644 index 0000000..7a8ca65 Binary files /dev/null and b/images/flags/pt.png differ diff --git a/images/flags/pw.png b/images/flags/pw.png new file mode 100644 index 0000000..f4425f7 Binary files /dev/null and b/images/flags/pw.png differ diff --git a/images/flags/py.png b/images/flags/py.png new file mode 100644 index 0000000..21607d3 Binary files /dev/null and b/images/flags/py.png differ diff --git a/images/flags/qa.png b/images/flags/qa.png new file mode 100644 index 0000000..6442606 Binary files /dev/null and b/images/flags/qa.png differ diff --git a/images/flags/re.png b/images/flags/re.png new file mode 100644 index 0000000..129cbb5 Binary files /dev/null and b/images/flags/re.png differ diff --git a/images/flags/ro.png b/images/flags/ro.png new file mode 100644 index 0000000..b7a4b87 Binary files /dev/null and b/images/flags/ro.png differ diff --git a/images/flags/rs.png b/images/flags/rs.png new file mode 100644 index 0000000..ba8e9b5 Binary files /dev/null and b/images/flags/rs.png differ diff --git a/images/flags/ru.png b/images/flags/ru.png new file mode 100644 index 0000000..30459ae Binary files /dev/null and b/images/flags/ru.png differ diff --git a/images/flags/rw.png b/images/flags/rw.png new file mode 100644 index 0000000..f593964 Binary files /dev/null and b/images/flags/rw.png differ diff --git a/images/flags/sa.png b/images/flags/sa.png new file mode 100644 index 0000000..1b49e61 Binary files /dev/null and b/images/flags/sa.png differ diff --git a/images/flags/sb.png b/images/flags/sb.png new file mode 100644 index 0000000..833d9c9 Binary files /dev/null and b/images/flags/sb.png differ diff --git a/images/flags/sc.png b/images/flags/sc.png new file mode 100644 index 0000000..c9c87a2 Binary files /dev/null and b/images/flags/sc.png differ diff --git a/images/flags/sd.png b/images/flags/sd.png new file mode 100644 index 0000000..4a54678 Binary files /dev/null and b/images/flags/sd.png differ diff --git a/images/flags/se.png b/images/flags/se.png new file mode 100644 index 0000000..22f6e7e Binary files /dev/null and b/images/flags/se.png differ diff --git a/images/flags/sg.png b/images/flags/sg.png new file mode 100644 index 0000000..aceea6d Binary files /dev/null and b/images/flags/sg.png differ diff --git a/images/flags/si.png b/images/flags/si.png new file mode 100644 index 0000000..2bc05e1 Binary files /dev/null and b/images/flags/si.png differ diff --git a/images/flags/sk.png b/images/flags/sk.png new file mode 100644 index 0000000..6c717be Binary files /dev/null and b/images/flags/sk.png differ diff --git a/images/flags/sl.png b/images/flags/sl.png new file mode 100644 index 0000000..3daf482 Binary files /dev/null and b/images/flags/sl.png differ diff --git a/images/flags/sm.png b/images/flags/sm.png new file mode 100644 index 0000000..88cca4d Binary files /dev/null and b/images/flags/sm.png differ diff --git a/images/flags/sn.png b/images/flags/sn.png new file mode 100644 index 0000000..ebd84c0 Binary files /dev/null and b/images/flags/sn.png differ diff --git a/images/flags/so.png b/images/flags/so.png new file mode 100644 index 0000000..b5cd16e Binary files /dev/null and b/images/flags/so.png differ diff --git a/images/flags/sr.png b/images/flags/sr.png new file mode 100644 index 0000000..2f2a77b Binary files /dev/null and b/images/flags/sr.png differ diff --git a/images/flags/st.png b/images/flags/st.png new file mode 100644 index 0000000..9279a37 Binary files /dev/null and b/images/flags/st.png differ diff --git a/images/flags/sv.png b/images/flags/sv.png new file mode 100644 index 0000000..ccb8882 Binary files /dev/null and b/images/flags/sv.png differ diff --git a/images/flags/sy.png b/images/flags/sy.png new file mode 100644 index 0000000..0b765cc Binary files /dev/null and b/images/flags/sy.png differ diff --git a/images/flags/sz.png b/images/flags/sz.png new file mode 100644 index 0000000..1ec4f63 Binary files /dev/null and b/images/flags/sz.png differ diff --git a/images/flags/tc.png b/images/flags/tc.png new file mode 100644 index 0000000..e476d69 Binary files /dev/null and b/images/flags/tc.png differ diff --git a/images/flags/td.png b/images/flags/td.png new file mode 100644 index 0000000..cace22f Binary files /dev/null and b/images/flags/td.png differ diff --git a/images/flags/tg.png b/images/flags/tg.png new file mode 100644 index 0000000..7e9fd29 Binary files /dev/null and b/images/flags/tg.png differ diff --git a/images/flags/th.png b/images/flags/th.png new file mode 100644 index 0000000..643665a Binary files /dev/null and b/images/flags/th.png differ diff --git a/images/flags/tj.png b/images/flags/tj.png new file mode 100644 index 0000000..1270d45 Binary files /dev/null and b/images/flags/tj.png differ diff --git a/images/flags/tl.png b/images/flags/tl.png new file mode 100644 index 0000000..bb5e4d1 Binary files /dev/null and b/images/flags/tl.png differ diff --git a/images/flags/tm.png b/images/flags/tm.png new file mode 100644 index 0000000..0d9791e Binary files /dev/null and b/images/flags/tm.png differ diff --git a/images/flags/tn.png b/images/flags/tn.png new file mode 100644 index 0000000..96549ae Binary files /dev/null and b/images/flags/tn.png differ diff --git a/images/flags/to.png b/images/flags/to.png new file mode 100644 index 0000000..1914b39 Binary files /dev/null and b/images/flags/to.png differ diff --git a/images/flags/tr.png b/images/flags/tr.png new file mode 100644 index 0000000..668f5f7 Binary files /dev/null and b/images/flags/tr.png differ diff --git a/images/flags/tt.png b/images/flags/tt.png new file mode 100644 index 0000000..655e6eb Binary files /dev/null and b/images/flags/tt.png differ diff --git a/images/flags/tv.png b/images/flags/tv.png new file mode 100644 index 0000000..e25dc16 Binary files /dev/null and b/images/flags/tv.png differ diff --git a/images/flags/tz.png b/images/flags/tz.png new file mode 100644 index 0000000..c7a2ec8 Binary files /dev/null and b/images/flags/tz.png differ diff --git a/images/flags/ua.png b/images/flags/ua.png new file mode 100644 index 0000000..9b05e4c Binary files /dev/null and b/images/flags/ua.png differ diff --git a/images/flags/ug.png b/images/flags/ug.png new file mode 100644 index 0000000..3fc5255 Binary files /dev/null and b/images/flags/ug.png differ diff --git a/images/flags/uy.png b/images/flags/uy.png new file mode 100644 index 0000000..bbd1f1a Binary files /dev/null and b/images/flags/uy.png differ diff --git a/images/flags/uz.png b/images/flags/uz.png new file mode 100644 index 0000000..ff9e70b Binary files /dev/null and b/images/flags/uz.png differ diff --git a/images/flags/va.png b/images/flags/va.png new file mode 100644 index 0000000..fef6194 Binary files /dev/null and b/images/flags/va.png differ diff --git a/images/flags/vc.png b/images/flags/vc.png new file mode 100644 index 0000000..8de9ab8 Binary files /dev/null and b/images/flags/vc.png differ diff --git a/images/flags/ve.png b/images/flags/ve.png new file mode 100644 index 0000000..e8af855 Binary files /dev/null and b/images/flags/ve.png differ diff --git a/images/flags/vg.png b/images/flags/vg.png new file mode 100644 index 0000000..c751c25 Binary files /dev/null and b/images/flags/vg.png differ diff --git a/images/flags/vi.png b/images/flags/vi.png new file mode 100644 index 0000000..fe75334 Binary files /dev/null and b/images/flags/vi.png differ diff --git a/images/flags/vn.png b/images/flags/vn.png new file mode 100644 index 0000000..dedeb75 Binary files /dev/null and b/images/flags/vn.png differ diff --git a/images/flags/vu.png b/images/flags/vu.png new file mode 100644 index 0000000..0b26c42 Binary files /dev/null and b/images/flags/vu.png differ diff --git a/images/flags/ws.png b/images/flags/ws.png new file mode 100644 index 0000000..e1d7730 Binary files /dev/null and b/images/flags/ws.png differ diff --git a/images/flags/ye.png b/images/flags/ye.png new file mode 100644 index 0000000..f2902a3 Binary files /dev/null and b/images/flags/ye.png differ diff --git a/images/flags/za.png b/images/flags/za.png new file mode 100644 index 0000000..3ed5ce8 Binary files /dev/null and b/images/flags/za.png differ diff --git a/images/flags/zh-cn.png b/images/flags/zh-cn.png new file mode 100644 index 0000000..173b181 Binary files /dev/null and b/images/flags/zh-cn.png differ diff --git a/images/flags/zh-tw.png b/images/flags/zh-tw.png new file mode 100644 index 0000000..30f98a1 Binary files /dev/null and b/images/flags/zh-tw.png differ diff --git a/images/flags/zm.png b/images/flags/zm.png new file mode 100644 index 0000000..918653f Binary files /dev/null and b/images/flags/zm.png differ diff --git a/images/flags/zw.png b/images/flags/zw.png new file mode 100644 index 0000000..ac356e0 Binary files /dev/null and b/images/flags/zw.png differ diff --git a/inc/.htaccess b/inc/.htaccess new file mode 100644 index 0000000..3418e55 --- /dev/null +++ b/inc/.htaccess @@ -0,0 +1 @@ +deny from all \ No newline at end of file diff --git a/inc/config.php b/inc/config.php new file mode 100644 index 0000000..b830588 --- /dev/null +++ b/inc/config.php @@ -0,0 +1,41 @@ + \n"; + } +} + +?> \ No newline at end of file diff --git a/inc/lang/en.php b/inc/lang/en.php new file mode 100644 index 0000000..9a6a22d --- /dev/null +++ b/inc/lang/en.php @@ -0,0 +1,81 @@ + "Watch torrent movies instantly", + "TITLE_FAQ" => "Frequently Asked Questions", + "TITLE_TOS" => "Terms of Service", + "TITLE_DL" => "Download", + "SITE_DESC" => "Skip the downloads! Watch the best movies instantly in HD, with subtitles, for free! Available for Windows, Mac and Linux.", + "HEADER" => "Watch torrent movies instantly", + "SUBHEADER" => "Currently in Beta, but go ahead and try it!", + // %s replaced with version number + "BTN_DOWNLOAD" => "Download Beta %s", + "DL_DESC_WIN" => "For Windows 7 and above", + "DL_DESC_MAC" => "For Mac OSX 10.6 and above", + "DL_DESC_LIN32" => "For 32-bit Linux Users", + "DL_DESC_LIN64" => "For 64-bit Linux Users", + "DL_THANKYOU" => "Thank you for using Popcorn Time", + "DL_STARTING_1" => "Your download is about to start.", + "DL_STARTING_2" => "Click here", + "DL_STARTING_3" => "if your download didn't start.", + "MAIL_SUBSCRIBE" => "Subscribe to our official mailing list", + "MAIL_EMAIL" => "Email Address", + "MAIL_SUBSCRIBE_BTN" => "Subscribe", + "DISCLAIMER_TITLE" => "Popcorn Time streams movies from Torrents", + "DISCLAIMER_DESC" => "Downloading copyrighted material may be illegal in your country. Use at your own risk.", + "FEAT_MOVIES" => "Great movies", + "FEAT_MOVIES_DESC" => "We're constantly searching all over the web for the best torrents from the most important sites.", + "FEAT_NORESTRICTION" => "No restrictions", + "FEAT_NORESTRICTION_DESC"=> "Watch any movie as many times as you want. All you need to get started is a proper internet connection.", + "FEAT_CATALOGUE" => "Awesome catalogue", + "FEAT_CATALOGUE_DESC" => "If the movie is out there, Popcorn Time will find the best version possible and start streaming it right away.", + "FEAT_QUALITY" => "The best quality", + "FEAT_QUALITY_DESC" => "Watch your movie instantly in HD and with subtitles. And then keep watching.", + "FEAT_BEST" => "Best of all... it's free!", + "HOW_TITLE" => "Hard to believe?", + "HOW_DESC" => "See how easy it works...", + "HOW_1" => "Open PT & select a movie", + "HOW_2" => "Choose HD & Subtitles", + "HOW_3" => "Click play & enjoy!", + "GET_TITLE" => "A whole new way to watch movies", + "GET_DESC" => "Just take care of the popcorn & leave the rest to us.", + "FOOTER" => "Made with <3 by a bunch of geeks from All Around The World" +); + +$langfaq = Array( + "WARNING_1" => "To enjoy a great experience, always make sure you're running", + "WARNING_2" => "the latest Popcorn Time version.", + "WARNING_3" => "Our only official site is", + "WARNING_4" => "(for now). Do not get the app from anywhere else, as there's a few fake sites going around.", + "TITLE" => "Frequently Asked Questions", + "DESC_1" => "Popcorn Time! is the result of many developers and designers putting a bunch of APIs together to make the experience of watching torrent movies as simple as possible.", + "DESC_2" => "We are an open source project. We are from all over the world. We love our movies. And boy, do we love popcorn.", + "LEGAL_Q" => "Is this legal?", + "LEGAL_A" => "Depends on where you're from, really. Once again: we're using torrents, so if you really care, you'd better google what the legal situation around these protocol is where you live.", + "SEED_Q" => "Popcorn Time works using torrents, fair enough. Am I seeding while watching a movie?", + "SEED_A" => "Indeed, you are. You're going to be uploading bits and bits of the movie for as long as you're watching it on Popcorn Time.", + "STORAGE_Q" => "What happens to the movies after I'm done?", + "STORAGE_A" => "Your movies will stay buried in a secret folder somewhere in your drive until you restart your computer. Then it will be gone for good.", + "UPDATE_Q" => "Will there be a new version?", + "UPDATE_A" => "Most definitely. You're going to have to download it manually though. But fear not! If you're on version Beta 2, you'll be notified within the app. Other than that, we'll let you know through Twitter.", + "MOVIES_Q" => "How come you've got the latest movies?", + "MOVIES_A" => "We search for movies uploaded by YIFY. Better ask them how they are handling this!", + "LANG_Q" => "Will you be adding movies in my language?", + "LANG_A" => "Chances are that most (if not all) of the movies available in Popcorn Time will be in English. However, languages for subtitles and the app itself are constantly being added by our lovely contributors.", + "LAUNCH_Q" => "Why can't I launch Popcorn Time?", + "LAUNCH_Q1" => "Your system may prevent unsigned apps from being run", + "LAUNCH_A1" => "Go to System Preferences > Security > Allow Apps downloaded from > Anywhere and try to launch Popcorn Time! again.", + "LAUNCH_Q2" => "You may have not have enough User Priviliges", + "LAUNCH_A2" => "Open a Terminal, and type:", + "STUCK_Q" => "I can't get past the initial \"Please wait...\" screen", + "STUCK_A" => "It is possible that your internet provider block the API used by this app. Like this Black list in UK.", + "SUBS_Q" => "Why can't I select subtitles?", + "SUBS_A" => "You may have to wait until all of the movie data (cover, summary, length, etc...) is retrieved. Sometimes it may be something else!", + "BUILDS_Q" => "Thinking about launching for Android/iOS/Chromecast/Smart TVs/Commodore 64?", + "BUILDS_A" => "Our efforts are currently towards making the best desktop app for watching torrent movies. So launching versions for other devices is not in our inmediate roadmap.", + "DEVICES_Q" => "Is the app works on Raspberry Pi/ChomeBook/BeagleBone?", + "DEVICES_A" => "Currently the App compiled only for Win/Linux32/Linux64/Mac but if you want to try it on ARM go for it!", + "SITE_Q" => "You are changing site/repo more often than some underwear, which is the best place to start with?", + "SITE_A" => "Well yes, the App had difficult times, the best place for the latest info yet is the IRC channel." +); +?> \ No newline at end of file diff --git a/inc/lang/es.php b/inc/lang/es.php new file mode 100644 index 0000000..d2bebfc --- /dev/null +++ b/inc/lang/es.php @@ -0,0 +1,81 @@ + "Mirá películas de torrent instantáneamente", + "TITLE_FAQ" => "Preguntas más frecuentes", + "TITLE_TOS" => "Terminos del Servicio", + "TITLE_DL" => "Descarga", + "SITE_DESC" => "Basta de descargas! Mirá las mejores películas instantáneamente en HD, con subtítulos, gratis! Disponible para Windows, Mac y Linux.", + "HEADER" => "Mirá películas de torrent instantáneamente", + "SUBHEADER" => "Actualmente en Beta, ¡pero adelante y pruébalo!", + // %s replaced with version number + "BTN_DOWNLOAD" => "Descargar Beta %s", + "DL_DESC_WIN" => "Para Windows 7 y superior", + "DL_DESC_MAC" => "Para Mac OSX 10.6 y superior", + "DL_DESC_LIN32" => "Para Linux de 32-bit", + "DL_DESC_LIN64" => "Para Linux de 64-bit", + "DL_THANKYOU" => "Gracias por utilizar Popcorn Time", + "DL_STARTING_1" => "Tu descarga está a punto de empezar.", + "DL_STARTING_2" => "Click aquí", + "DL_STARTING_3" => "si tu descarga no empieza.", + "MAIL_SUBSCRIBE" => "Suscribete a nuestra lista de correos oficial", + "MAIL_EMAIL" => "Dirección de email", + "MAIL_SUBSCRIBE_BTN" => "Suscribirse", + "DISCLAIMER_TITLE" => "Popcorn Time transmite películas desde Torrents", + "DISCLAIMER_DESC" => "Descargar material protegido por derechos de autor puede ser ilegal en tu país. Úselo bajo su propio riesgo.", + "FEAT_MOVIES" => "Espectaculares películas", + "FEAT_MOVIES_DESC" => "Estamos constantemente buscando en toda la web para los mejores torrents de los sitios más importantes.", + "FEAT_NORESTRICTION" => "Sin restricciones", + "FEAT_NORESTRICTION_DESC"=> "Mirá cualquier película las veces que quieras. Todo lo que necesitas es una buena conexión a internet.", + "FEAT_CATALOGUE" => "Catálogo impresionante", + "FEAT_CATALOGUE_DESC" => "Si la película esta por ahí, Popcorn Time encontrará la mejor versión posible y empezará a transmitir al instante.", + "FEAT_QUALITY" => "La mejor calidad", + "FEAT_QUALITY_DESC" => "Mirá tus películas instantáneamente en HD y con subtítulos. Y luego sigue mirando.", + "FEAT_BEST" => "Y lo mejor de todo... ¡es gratis!", + "HOW_TITLE" => "¿Difícil de creer?", + "HOW_DESC" => "Mirá como funciona...", + "HOW_1" => "Abre PT y selecciona una película", + "HOW_2" => "Elije HD y Subtítulos", + "HOW_3" => "Click en reproducir y a disfrutar", + "GET_TITLE" => "Una nueva manera de ver películas", + "GET_DESC" => "Sólo ocupate del pochoclo y dejanos el resto a nosotros.", + "FOOTER" => "Hecho con <3 por un montón de geeks alrededor del mundo" +); + +$langfaq = Array( + "WARNING_1" => "Para disfrutar de una gran experiencia, siempre asegúrese de que está ejecutando", + "WARNING_2" => "la última versión de Popcorn Time.", + "WARNING_3" => "Nuestro único sitio oficial es", + "WARNING_4" => "(por ahora). No obtenga la aplicación de algún otro lado, ya que hay un par de sitios falsos dando vuelta.", + "TITLE" => "Preguntas más frecuentes", + "DESC_1" => "Popcorn Time! es el resultado de un par de desarrolladores y diseñadores juntando un par de APIs para hacer la experiencia de mirar torrents lo más simple posible.", + "DESC_2" => "Somos un proyecto de código abierto. Somos de todas partes del mundo. Amamos nuestras películas. Y por sobre todo, amamos el pochoclo.", + "LEGAL_Q" => "¿Esto es legal?", + "LEGAL_A" => "Depende de donde vivas realmente. De nuevo, nosotros usamos torrents, así que si realmente te interesa, lo mejor sería que busques en Google cual es la situación legal de este protocolo en tu país.", + "SEED_Q" => "Popcorn Time funciona usando torrents, me parece justo. ¿Eso significa que estoy seedeando mientras miro una película?", + "SEED_A" => "De hecho, lo estás. Va a subir trocitos y trocitos de la película durante el tiempo que estés viendola en Popcorn Time.", + "STORAGE_Q" => "¿Qué sucede cuando termino de ver la película?", + "STORAGE_A" => "Tus películas permanecerán ocultas en archivos temporales y desaparecerá automáticamente al reiniciar la computadora. Entonces se habrán ido para siempre.", + "UPDATE_Q" => "¿Habrá una nueva versión?", + "UPDATE_A" => "Definitivamente. Tendrás que descargarla manualmente. ¡Pero ojo! Si usas una versión mayor a la beta 0.2.9 inclusive, serás notificado dentro de la aplicación. Aparte de eso, avisaremos por Twitter.", + "MOVIES_Q" => "¿Cómo es que obtienen las últimas películas?", + "MOVIES_A" => "Nosotros usamos la API de YIFY. ¡Mejor preguntenle a ellos como lo manejan!", + "LANG_Q" => "¿Agregarán películas en mi idioma?", + "LANG_A" => "Lo más probable es que la mayoría (si no todas) de las películas disponibles en Popcorn Time serás en inglés. Sin embargo, los idiomas para los subtitulos y la propia aplicación son constantemente agregados por nuestro encantadores contribuyentes.", + "LAUNCH_Q" => "¿Por qué no puedo ejecutar Popcorn Time?", + "LAUNCH_Q1" => "Tú sistema puede que evite que aplicaciones no firmadas se ejecuten", + "LAUNCH_A1" => "Ve a Preferencias del Sistema > Seguridad > Permitir aplicaciones descargadas desde > Cualquier lado y prueba ejecutar Popcorn Time nuevamente.", + "LAUNCH_Q2" => "Puede que no tengas los Privilegios de Usuario necesarios", + "LAUNCH_A2" => "Abre el Terminal y escribe:", + "STUCK_Q" => "No puedo pasar de la pantalla de carga inicial de \"Por favor espera...\"", + "STUCK_A" => "Es posible que tu proveedor de interner bloquee la API utilizada por la aplicación. Como esta lista negra en UK..", + "SUBS_Q" => "¿Por qué no puedo seleccionar subtítulos?", + "SUBS_A" => "Tienes que esperar a que todos los datos de la película (carátula, sinopsis, duración, etc...) se carguen. ¡A veces puede ser otra cosa!", + "BUILDS_Q" => "¿Piensan en soportar Android/iOS/Chromecast/Smart TVs/Commodore 64?", + "BUILDS_A" => "Nuestros esfuerzos están enfocados en hacer la mejor aplicación de escritorio para ver películas de torrents. Así que el lanzamiento de versiones para otros dispositivos no está en nuestros planes inmediatos.", + "DEVICES_Q" => "¿La aplicación funciona en Raspberry Pi/ChomeBook/BeagleBone?", + "DEVICES_A" => "Actualmente la aplicación se compila solo para Windows, Linux 32bits, Linux 64bits y Mac, ¡pero si deseas probarlo en ARM adelante!", + "SITE_Q" => "Están cambiando de sitio/repo muy a menudo. ¿Cuál es el mejor lugar para informarse?", + "SITE_A" => "Bueno sí, la aplicación pasó momentos difíciles. El mejor lugar para obtener la última información es nuestro canal de IRC." +); +?> \ No newline at end of file diff --git a/index.html b/index.php similarity index 51% rename from index.html rename to index.php index a4bdb0f..84274f4 100644 --- a/index.html +++ b/index.php @@ -1,8 +1,10 @@ + - + + -
  • -
  • + +
  • +
  • +
  • -

    Watch torrent movies instantly

    -

    Currently in Beta, but go ahead and try it!

    +

    +

    - Popcorn Time UI + Popcorn Time UI
    -
    Popcorn Time streams movies from Torrents
    -

    Downloading copyrighted material may be illegal in your country. Use at your own risk.

    +
    +

    - -
    Great movies
    -

    We're constantly searching all over the web for the best torrents from the most important sites.

    + +
    +

    - -
    No restrictions
    -

    Watch any movie as many times as you want. All you need to get started is a proper internet connection.

    + +
    +

    - -
    Awesome catalogue
    -

    If the movie is out there, Popcorn Time will find the best version possible and start streaming it right away.

    + +
    +

    - -
    The best quality
    -

    Watch your movie instantly in HD and with subtitles. And then keep watching.

    + +
    +

    -
    - Pochoclin +
    + Pochoclin
    -

    Best of all... it's free!

    +

    +
    - Download Beta 2.9 - For Mac OSX 10.6 and above + +
    - Download Beta 2.9 - For Windows 7 and above + +
    - Download Beta 2.9 - For 32-bit Linux Users + +
    - Download Beta 2.9 - For 64-bit Linux Users + +
    -

    Hard to believe?

    -

    See how easy it works...

    +

    +

      -
    • Open PT & select a movie
    • -
    • Choose HD & Subtitles
    • -
    • Click play & enjoy!
    • +
    • +
    • +
    - Popcorn Time UI + Popcorn Time UI
    -

    A whole new way to watch movies

    -

    Just take care of the popcorn & leave the rest to us.

    +

    +

    -
    -

    These are some of the movies you'd be able to watch

    -
    -
    - - + + - + \ No newline at end of file diff --git a/js/jquery.polyglot.language.switcher.js b/js/jquery.polyglot.language.switcher.js new file mode 100644 index 0000000..c7d41a2 --- /dev/null +++ b/js/jquery.polyglot.language.switcher.js @@ -0,0 +1,393 @@ +// JavaScript Document + + +/* ---------------------------------------------------------------------- */ +/* "Polyglot" Language Switcher + /* ---------------------------------------------------------------------- + Version: 2.2 + Author: Ixtendo + Author URI: http://www.ixtendo.com + License: MIT License + License URI: http://www.opensource.org/licenses/mit-license.php + ------------------------------------------------------------------------- */ + +/** + * jquery.timer.js + * + * Copyright (c) 2011 Jason Chavannes + * + * http://jchavannes.com/jquery-timer + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +(function ($) { + + //jquery.timer.js + $.timer = function(func, time, autostart) { + this.set = function(func, time, autostart) { + this.init = true; + if(typeof func == 'object') { + var paramList = ['autostart', 'time']; + for(var arg in paramList) {if(func[paramList[arg]] != undefined) {eval(paramList[arg] + " = func[paramList[arg]]");}}; + func = func.action; + } + if(typeof func == 'function') {this.action = func;} + if(!isNaN(time)) {this.intervalTime = time;} + if(autostart && !this.active) { + this.active = true; + this.setTimer(); + } + return this; + }; + this.once = function(time) { + var timer = this; + if(isNaN(time)) {time = 0;} + window.setTimeout(function() {timer.action();}, time); + return this; + }; + this.play = function(reset) { + if(!this.active) { + if(reset) {this.setTimer();} + else {this.setTimer(this.remaining);} + this.active = true; + } + return this; + }; + this.pause = function() { + if(this.active) { + this.active = false; + this.remaining -= new Date() - this.last; + this.clearTimer(); + } + return this; + }; + this.stop = function() { + this.active = false; + this.remaining = this.intervalTime; + this.clearTimer(); + return this; + }; + this.toggle = function(reset) { + if(this.active) {this.pause();} + else if(reset) {this.play(true);} + else {this.play();} + return this; + }; + this.reset = function() { + this.active = false; + this.play(true); + return this; + }; + this.clearTimer = function() { + window.clearTimeout(this.timeoutObject); + }; + this.setTimer = function(time) { + var timer = this; + if(typeof this.action != 'function') {return;} + if(isNaN(time)) {time = this.intervalTime;} + this.remaining = time; + this.last = new Date(); + this.clearTimer(); + this.timeoutObject = window.setTimeout(function() {timer.go();}, time); + }; + this.go = function() { + if(this.active) { + this.action(); + this.setTimer(); + } + }; + + if(this.init) { + return new $.timer(func, time, autostart); + } else { + this.set(func, time, autostart); + return this; + } + }; + + $.fn.polyglotLanguageSwitcher = function (op) { + + var ls = $.fn.polyglotLanguageSwitcher; + + var rootElement = $(this); + var rootElementId = $(this).attr('id'); + var aElement; + var ulElement = $("