onebox 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/.rubocop.yml +476 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +92 -0
- data/Rakefile +22 -0
- data/lib/onebox.rb +33 -0
- data/lib/onebox/engine.rb +93 -0
- data/lib/onebox/engine/amazon_onebox.rb +25 -0
- data/lib/onebox/engine/bliptv_onebox.rb +26 -0
- data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
- data/lib/onebox/engine/college_humor_onebox.rb +26 -0
- data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
- data/lib/onebox/engine/dotsub_onebox.rb +25 -0
- data/lib/onebox/engine/example_onebox.rb +25 -0
- data/lib/onebox/engine/flickr_onebox.rb +25 -0
- data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
- data/lib/onebox/engine/html.rb +11 -0
- data/lib/onebox/engine/hulu_onebox.rb +26 -0
- data/lib/onebox/engine/nfb_onebox.rb +25 -0
- data/lib/onebox/engine/open_graph.rb +11 -0
- data/lib/onebox/engine/qik_onebox.rb +23 -0
- data/lib/onebox/engine/revision3_onebox.rb +26 -0
- data/lib/onebox/engine/slideshare_onebox.rb +25 -0
- data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
- data/lib/onebox/engine/ted_onebox.rb +25 -0
- data/lib/onebox/engine/viddler_onebox.rb +26 -0
- data/lib/onebox/engine/vimeo_onebox.rb +26 -0
- data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
- data/lib/onebox/engine/yfrog_onebox.rb +25 -0
- data/lib/onebox/matcher.rb +13 -0
- data/lib/onebox/preview.rb +31 -0
- data/lib/onebox/version.rb +3 -0
- data/onebox.gemspec +36 -0
- data/spec/fixtures/amazon.response +3098 -0
- data/spec/fixtures/android.response +138 -0
- data/spec/fixtures/apple.response +391 -0
- data/spec/fixtures/bliptv.response +724 -0
- data/spec/fixtures/clickthrough.response +1472 -0
- data/spec/fixtures/clikthrough.response +1472 -0
- data/spec/fixtures/collegehumor.response +1272 -0
- data/spec/fixtures/dailymotion.response +575 -0
- data/spec/fixtures/dotsub.response +1257 -0
- data/spec/fixtures/example.response +50 -0
- data/spec/fixtures/flickr.response +1292 -0
- data/spec/fixtures/funnyordie.response +2010 -0
- data/spec/fixtures/gist.response +282 -0
- data/spec/fixtures/github_blob.response +706 -0
- data/spec/fixtures/github_commit.response +881 -0
- data/spec/fixtures/github_pullrequest.response +1619 -0
- data/spec/fixtures/hulu.response +339 -0
- data/spec/fixtures/image.response +0 -0
- data/spec/fixtures/imgur.response +892 -0
- data/spec/fixtures/kinomap.response +299 -0
- data/spec/fixtures/nfb.response +810 -0
- data/spec/fixtures/opengraph.response +27 -0
- data/spec/fixtures/qik.response +371 -0
- data/spec/fixtures/revision3.response +985 -0
- data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
- data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
- data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
- data/spec/fixtures/slideshare.response +1745 -0
- data/spec/fixtures/soundcloud.response +1409 -0
- data/spec/fixtures/stackexchange.response +1889 -0
- data/spec/fixtures/ted.response +1341 -0
- data/spec/fixtures/twitter.response +1712 -0
- data/spec/fixtures/viddler.response +442 -0
- data/spec/fixtures/video.response +0 -0
- data/spec/fixtures/vimeo.response +571 -0
- data/spec/fixtures/wikipedia.response +1236 -0
- data/spec/fixtures/wikipedia_redirected.response +899 -0
- data/spec/fixtures/yfrog.response +464 -0
- data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
- data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
- data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
- data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
- data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
- data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
- data/spec/lib/onebox/engine/example_spec.rb +18 -0
- data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
- data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
- data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
- data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
- data/spec/lib/onebox/engine/qik_spec.rb +35 -0
- data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
- data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
- data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
- data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
- data/spec/lib/onebox/engine/ted_spec.rb +30 -0
- data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
- data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
- data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
- data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
- data/spec/lib/onebox/engine_spec.rb +78 -0
- data/spec/lib/onebox/matcher_spec.rb +20 -0
- data/spec/lib/onebox/preview_spec.rb +21 -0
- data/spec/lib/onebox_spec.rb +49 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/html_spec_helper.rb +17 -0
- data/templates/amazon.handlebars +9 -0
- data/templates/bliptv.handlebars +10 -0
- data/templates/clickthrough.handlebars +8 -0
- data/templates/clikthrough.handlebars +8 -0
- data/templates/collegehumor.handlebars +9 -0
- data/templates/dailymotion.handlebars +9 -0
- data/templates/dotsub.handlebars +9 -0
- data/templates/flickr.handlebars +8 -0
- data/templates/funnyordie.handlebars +9 -0
- data/templates/hulu.handlebars +9 -0
- data/templates/nfb.handlebars +8 -0
- data/templates/qik.handlebars +7 -0
- data/templates/revision3.handlebars +9 -0
- data/templates/slideshare.handlebars +8 -0
- data/templates/soundcloud.handlebars +9 -0
- data/templates/stackexchange.handlebars +7 -0
- data/templates/ted.handlebars +8 -0
- data/templates/viddler.handlebars +9 -0
- data/templates/vimeo.handlebars +9 -0
- data/templates/wikipedia.handlebars +8 -0
- data/templates/yfrog.handlebars +8 -0
- metadata +447 -0
|
@@ -0,0 +1,1257 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
5
|
+
<link rel="icon" href="http://dotsub.com/styles/dotsub2/images/favicon.ico"/>
|
|
6
|
+
<link rel="shortcut icon" href="http://dotsub.com/styles/dotsub2/images/favicon.ico"/>
|
|
7
|
+
<meta name="verify-v1" content="/g84csdvErTyQiTn2ZrG3wnBeSA0k1HFWipicO+5P9g="/>
|
|
8
|
+
<meta name="msvalidate.01" content="29FA4BF8E2E048D10A1CFB523EF7BDB6" />
|
|
9
|
+
<meta property="fb:page_id" content="51817601183" />
|
|
10
|
+
<meta name="description" content="Online video translation and transcription crowdsourced"/>
|
|
11
|
+
<title>Twitter in Plain English
|
|
12
|
+
- 93 Translation(s) | Dotsub</title>
|
|
13
|
+
<link rel=stylesheet type="text/css" href="/scripts/ext-4.0.1/resources/css/ext-all.css"/>
|
|
14
|
+
<link href="/styles/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
15
|
+
<script src="/styles/bootstrap/js/jquery.js" type="text/javascript"></script>
|
|
16
|
+
<script src="/styles/bootstrap/js/jquery-ui-min.js" type="text/javascript"></script>
|
|
17
|
+
<script>
|
|
18
|
+
var jq17 = jQuery.noConflict();
|
|
19
|
+
</script>
|
|
20
|
+
<script src="/styles/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
|
|
21
|
+
<script src="/styles/bootstrap/js/jquery.placeholder.min.js" type="text/javascript"></script>
|
|
22
|
+
<!--[if lt IE 7]>
|
|
23
|
+
<link rel=stylesheet href="/scripts/pngHack/pngHack.css" type="text/css">
|
|
24
|
+
<![endif]-->
|
|
25
|
+
<script type="text/javascript">
|
|
26
|
+
var contextRoot = '';
|
|
27
|
+
var applicationUrl = 'http://dotsub.com';
|
|
28
|
+
var webappVersion = '85a7afc022a8834901a91df2308fd725ff5fda48';
|
|
29
|
+
</script>
|
|
30
|
+
<script type="text/javascript" src="/scripts/prototype.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
31
|
+
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/scriptaculous/1.8.3/effects.js"></script>
|
|
32
|
+
<script type="text/javascript" src="/scripts/global.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
33
|
+
<script type="text/javascript" src="/scripts/tracker.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
34
|
+
<script type="text/javascript" src="/dwr/engine.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
35
|
+
<script type="text/javascript" src="/dwr/util.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
36
|
+
<script type="text/javascript" src="/scripts/yui/yahoo-dom-event/yahoo-dom-event.js"></script>
|
|
37
|
+
<script type="text/javascript" src="/scripts/yui/container/container-min.js"></script>
|
|
38
|
+
<script type="text/javascript" src="/scripts/ext-4.0.1/ext-all.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
39
|
+
<script type="text/javascript">
|
|
40
|
+
Ext.scopeResetCSS = true;
|
|
41
|
+
var _gaq = _gaq || [];
|
|
42
|
+
_gaq.push(['_setAccount', 'UA-3684979-1']);
|
|
43
|
+
_gaq.push(['_trackPageview']);
|
|
44
|
+
(function() {
|
|
45
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
46
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
47
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
|
|
48
|
+
})();
|
|
49
|
+
document.observe('dom:loaded', function() {
|
|
50
|
+
var currentMenu = '';
|
|
51
|
+
var menuLookup =
|
|
52
|
+
{ 'MainMenu': 0,
|
|
53
|
+
'PersonalMediaMenu':1,
|
|
54
|
+
'MostViewed':2,
|
|
55
|
+
'Latest':3,
|
|
56
|
+
'Genre':4,
|
|
57
|
+
'MediaCollectionsMenu':5,
|
|
58
|
+
'Language':6,
|
|
59
|
+
'Country':7,
|
|
60
|
+
'Help':8
|
|
61
|
+
};
|
|
62
|
+
var x = menuLookup[currentMenu];
|
|
63
|
+
try{
|
|
64
|
+
$$('#siteNav li')[x].addClassName('active')
|
|
65
|
+
}
|
|
66
|
+
catch(e){}
|
|
67
|
+
});
|
|
68
|
+
</script>
|
|
69
|
+
<script type="text/javascript">
|
|
70
|
+
dotSUBUser = null;
|
|
71
|
+
</script>
|
|
72
|
+
<script type='text/javascript' src='/dwr/interface/UserManager.js'></script>
|
|
73
|
+
<meta name="heading" content="Twitter in Plain English"/>
|
|
74
|
+
<script type="text/javascript" src="/static/players/beta/jwplayer.min.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
75
|
+
<script type="text/javascript" src="/styles/bootstrap/js/jquery.zclip.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
76
|
+
<meta name="description" content="A short explanation of the micro-blogging service, Twitter." />
|
|
77
|
+
<script type='text/javascript' src='/dwr/interface/Mailer.js'></script>
|
|
78
|
+
<script type="text/javascript" src="/scripts/displayVideo.js?version=85a7afc022a8834901a91df2308fd725ff5fda48"></script>
|
|
79
|
+
<script type="text/javascript" src="/scripts/validator.jsp"></script>
|
|
80
|
+
<script type="text/javascript" src="/dwr/interface/CaptionManager.js"></script>
|
|
81
|
+
<script type='text/javascript' src='/dwr/interface/MediaCollectionManager.js'></script>
|
|
82
|
+
<script type="text/javascript">
|
|
83
|
+
var trackerId = 'UA-3684979-1';
|
|
84
|
+
var mediaUri = '/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/m/flv/en';
|
|
85
|
+
var mediaDuration = 144000;
|
|
86
|
+
var language = 'eng';
|
|
87
|
+
var webAppUrl = 'http://dotsub.com';
|
|
88
|
+
</script>
|
|
89
|
+
<link rel="stylesheet" type="text/css" media="screen" href="/scripts/yui/container/assets/skins/sam/container.css?version=85a7afc022a8834901a91df2308fd725ff5fda48"/>
|
|
90
|
+
<script type='text/javascript'>
|
|
91
|
+
//<![CDATA[
|
|
92
|
+
dotSUBMedia = {"id":"665bd0d5-a9f4-4a07-9d9e-b31ba926ca78","title":"Twitter in Plain English","description":"A short explanation of the micro-blogging service, Twitter."}
|
|
93
|
+
//]]>
|
|
94
|
+
</script>
|
|
95
|
+
<script type='text/javascript'>
|
|
96
|
+
//<![CDATA[
|
|
97
|
+
project = {"id":"3c01ee87-dda2-4594-96d5-ca7cd57bbcba"}
|
|
98
|
+
//]]>
|
|
99
|
+
</script>
|
|
100
|
+
<script type='text/javascript'>
|
|
101
|
+
//<![CDATA[
|
|
102
|
+
captionStats = [{"languageName":"Abkhaz","languageCode":"abk","percentageComplete":5,"languageDirection":"ltr"},{"languageName":"Afar","languageCode":"aar","percentageComplete":5,"languageDirection":"ltr"},{"languageName":"Afrihili","languageCode":"afh","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Afrikaans","languageCode":"afr","percentageComplete":10,"languageDirection":"ltr"},{"languageName":"Akan","languageCode":"aka","percentageComplete":5,"languageDirection":"ltr"},{"languageName":"Albanian","languageCode":"alb","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Arabic","languageCode":"ara","percentageComplete":100,"languageDirection":"rtl"},{"languageName":"Armenian","languageCode":"arm","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Artificial","languageCode":"art","percentageComplete":7,"languageDirection":"ltr"},{"languageName":"Aymara","languageCode":"aym","percentageComplete":67,"languageDirection":"ltr"},{"languageName":"Azerbaijani","languageCode":"aze","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Baltic","languageCode":"bat","percentageComplete":5,"languageDirection":"ltr"},{"languageName":"Basque","languageCode":"baq","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Berber","languageCode":"ber","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Bislama","languageCode":"bis","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Bosnian","languageCode":"bos","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Breton","languageCode":"bre","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Bulgarian","languageCode":"bul","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Catalan","languageCode":"cat","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Cherokee","languageCode":"chr","percentageComplete":5,"languageDirection":"ltr"},{"languageName":"Chinese (Simplified)","languageCode":"chi_hans","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Chinese (Traditional)","languageCode":"chi_hant","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Chinese, Yue (Cantonese)","languageCode":"yue","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Croatian","languageCode":"scr","percentageComplete":92,"languageDirection":"ltr"},{"languageName":"Czech","languageCode":"cze","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Dakota","languageCode":"dak","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Danish","languageCode":"dan","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Dutch","languageCode":"dut","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"English","languageCode":"eng","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Esperanto","languageCode":"epo","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Estonian","languageCode":"est","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Faroese","languageCode":"fao","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Filipino (Pilipino)","languageCode":"fil","percentageComplete":15,"languageDirection":"ltr"},{"languageName":"Finnish","languageCode":"fin","percentageComplete":67,"languageDirection":"ltr"},{"languageName":"French (Canada)","languageCode":"fre_ca","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"French (France)","languageCode":"fre_fr","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Galician","languageCode":"glg","percentageComplete":47,"languageDirection":"ltr"},{"languageName":"Georgian","languageCode":"geo","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"German","languageCode":"ger","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Greek","languageCode":"gre","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Gujarati","languageCode":"guj","percentageComplete":52,"languageDirection":"ltr"},{"languageName":"Haitian Creole","languageCode":"hat","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Hebrew","languageCode":"heb","percentageComplete":100,"languageDirection":"rtl"},{"languageName":"Hindi","languageCode":"hin","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Hungarian","languageCode":"hun","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Icelandic","languageCode":"ice","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Indonesian","languageCode":"ind","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Interlingua","languageCode":"ina","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Iranian","languageCode":"ira","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Irish","languageCode":"gle","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Italian","languageCode":"ita","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Japanese","languageCode":"jpn","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Kannada","languageCode":"kan","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Kazakh","languageCode":"kaz","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Latin","languageCode":"lat","percentageComplete":10,"languageDirection":"ltr"},{"languageName":"Latvian","languageCode":"lav","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Lithuanian","languageCode":"lit","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Macedonian","languageCode":"mac","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Maithili","languageCode":"mai","percentageComplete":7,"languageDirection":"ltr"},{"languageName":"Malay","languageCode":"may","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Maltese","languageCode":"mlt","percentageComplete":7,"languageDirection":"ltr"},{"languageName":"Marathi","languageCode":"mar","percentageComplete":35,"languageDirection":"ltr"},{"languageName":"Nepali","languageCode":"nep","percentageComplete":67,"languageDirection":"ltr"},{"languageName":"Norwegian","languageCode":"nor","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Norwegian, Bokmål (Bokmaal)","languageCode":"nob","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Persian (Farsi)","languageCode":"per","percentageComplete":100,"languageDirection":"rtl"},{"languageName":"Philippine","languageCode":"phi","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Polish","languageCode":"pol","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Portuguese (Brazil)","languageCode":"por_br","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Portuguese (Portugal)","languageCode":"por_pt","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Romanian","languageCode":"rum","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Russian","languageCode":"rus","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Serbian","languageCode":"scc","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Serbo-Croatian","languageCode":"hbs","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Slovak","languageCode":"slo","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Slovenian","languageCode":"slv","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Somali","languageCode":"som","percentageComplete":7,"languageDirection":"ltr"},{"languageName":"Spanish","languageCode":"spa","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Swahili","languageCode":"swa","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Swedish","languageCode":"swe","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Syriac","languageCode":"syr","percentageComplete":5,"languageDirection":"ltr"},{"languageName":"Tagalog","languageCode":"tgl","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Tamil","languageCode":"tam","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Telugu","languageCode":"tel","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Thai","languageCode":"tha","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Turkish","languageCode":"tur","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Turkmen","languageCode":"tuk","percentageComplete":2,"languageDirection":"ltr"},{"languageName":"Ukrainian","languageCode":"ukr","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Urdu","languageCode":"urd","percentageComplete":27,"languageDirection":"rtl"},{"languageName":"Uyghur (Uighur)","languageCode":"uig","percentageComplete":67,"languageDirection":"ltr"},{"languageName":"Uzbek","languageCode":"uzb","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Vietnamese","languageCode":"vie","percentageComplete":100,"languageDirection":"ltr"},{"languageName":"Vlaams (Flemish)","languageCode":"vls","percentageComplete":60,"languageDirection":"ltr"},{"languageName":"Welsh","languageCode":"wel","percentageComplete":100,"languageDirection":"ltr"}]
|
|
103
|
+
//]]>
|
|
104
|
+
</script>
|
|
105
|
+
<!-- facebook share tags -->
|
|
106
|
+
<meta name="medium" content="video"/>
|
|
107
|
+
<meta property="og:type" content="video" />
|
|
108
|
+
<meta property="og:site_name" content="Dotsub" />
|
|
109
|
+
<meta property="og:url" content="http://dotsub.com/view/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78"/>
|
|
110
|
+
<meta proprery="og:title" content="Twitter in Plain English" />
|
|
111
|
+
<meta proprery="og:description" content="A short explanation of the micro-blogging service, Twitter." />
|
|
112
|
+
<meta property="og:image" content="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/p" />
|
|
113
|
+
<meta property="og:video" content="http://dotsub.com/static/players/beta/player.swf?logo.position=top-right&logo.position=top-right&logo.file=http://dotsub.com/static/players/beta/player-logo.png&duration=144.999&plugins=http://dotsub.com/static/players/beta/sitePlugin.swf&sitePlugin.serviceroot=http://dotsub.com&sitePlugin.uuid=665bd0d5-a9f4-4a07-9d9e-b31ba926ca78&sitePlugin.tid=UA-3684979-1&sitePlugin.embedded=true&sitePlugin.url=https%3A%2F%2Ffacebook.com%2Fcommon%2Freferer_frame.php&skin=http://dotsub.com/static/players/beta/skin/newtubedarksmall.zip&controlbar.position=over&image=http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/p&sitePlugin.language=eng&provider=video&autostart=true&file=http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/m/flv/"/>
|
|
114
|
+
<meta property="og:video:secure_url" content="https://dotsub.com/static/players/beta/player.swf?logo.position=top-right&logo.position=top-right&autostart=true&logo.file=https://dotsub.com/static/players/beta/player-logo.png&duration=144.999&plugins=https://dotsub.com/static/players/beta/sitePlugin.swf&sitePlugin.serviceroot=https://dotsub.com&sitePlugin.uuid=665bd0d5-a9f4-4a07-9d9e-b31ba926ca78&sitePlugin.tid=UA-3684979-1&sitePlugin.embedded=true&sitePlugin.url=https%3A%2F%2Ffacebook.com%2Fcommon%2Freferer_frame.php&skin=https://dotsub.com/static/players/beta/skin/newtubedarksmall.zip&controlbar.position=over&image=https://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/p&sitePlugin.language=eng&provider=video&file=https://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/m/flv/"/>
|
|
115
|
+
<meta name="video_height" content="316" />
|
|
116
|
+
<meta name="video_width" content="420" />
|
|
117
|
+
<meta name="video_type" content="application/x-shockwave-flash" />
|
|
118
|
+
<!-- Twitter Card Tags -->
|
|
119
|
+
<meta name="twitter:card" content="player"><meta name="medium" content="video"/>
|
|
120
|
+
<meta name="twitter:site" content="@dotsub">
|
|
121
|
+
<meta name="twitter:url" content="http://dotsub.com/view/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78">
|
|
122
|
+
<meta name="twitter:title" content="Twitter in Plain English">
|
|
123
|
+
<meta name="twitter:description" content="A short explanation of the micro-blogging service, Twitter.">
|
|
124
|
+
<meta name="twitter:player:height" content="347" />
|
|
125
|
+
<meta name="twitter:player:width" content="420" />
|
|
126
|
+
<meta name="twitter:player" content="https://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embed/?sharing=false" />
|
|
127
|
+
<script type="text/javascript">
|
|
128
|
+
/*<![CDATA[ */
|
|
129
|
+
messages = {"videoDisplay.reportSpamWarning":"Are you sure you want to report this as spam?","videoDisplay.deleteSpam":"Delete this spam video?","videoDisplay.clearYouTubeWarning":"Are you sure you want to remove the link to this video on YouTube? You should only do this when the video has been deleted at YouTube.","videoDisplay.choosealanguage":"Select a language...","videoDisplay.reprocessWarning":"Are you sure you want to reprocess this media?","videoDisplay.resetCaptionsWarning":"Are you sure that you want to remove all translations and the transcription to this video? This can not be undone!","videoDisplay.noProjects":"You have no project to add this media to","videoDisplay.addedToProject":"Media Added to Project","button.add":"Add","videoDisplay.makeNotCompleteWarning":"Are you sure that you want to mark this transcription not complete?","videoDisplay.addToCollection":"Add this video to a collection","videoDisplay.addedToCollection":"Added","videoDisplay.add":"Add","videoDisplay.addedToFavorites":"Added to your favorites","videoDisplay.reportWarning":"Are you sure you want to report this as offensive content?","videoDisplay.thanksForReport":"Thank you for your feedback on this video."}
|
|
130
|
+
/* ]]> */
|
|
131
|
+
</script>
|
|
132
|
+
<script type="text/javascript">
|
|
133
|
+
/*<![CDATA[ */
|
|
134
|
+
adminMessages = {"featured.addedItem":"Added to featured page","featured.containsItem":"This is a featured video"}
|
|
135
|
+
/* ]]> */
|
|
136
|
+
</script>
|
|
137
|
+
<!-- facebook share tags -->
|
|
138
|
+
<meta name="showMenu" content="false"/>
|
|
139
|
+
<meta name="description" content="Twitter in Plain English translation and transcription crowdsourced"/>
|
|
140
|
+
<script type="text/javascript">
|
|
141
|
+
document.observe('dom:loaded', function() {
|
|
142
|
+
jwplayer('playerReplace').setup({
|
|
143
|
+
flashplayer: '/static/players/beta/player.swf',
|
|
144
|
+
"provider": "video",
|
|
145
|
+
"file": 'https://sc1.dotsub.com/d84da296789d74dcd1b1ed35376b8cdf/51fb32c8/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/video.flv',
|
|
146
|
+
image: '/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/p',
|
|
147
|
+
"height": 377,
|
|
148
|
+
"width": 620,
|
|
149
|
+
duration: 144.999,
|
|
150
|
+
skin: '/static/players/beta/skin/newtubedark.zip',
|
|
151
|
+
dock: 'false',
|
|
152
|
+
logo: {
|
|
153
|
+
position: 'top-right',
|
|
154
|
+
file: '/static/players/beta/player-logo.png',
|
|
155
|
+
hide: true,
|
|
156
|
+
margin: 8
|
|
157
|
+
},
|
|
158
|
+
plugins: {
|
|
159
|
+
'/static/players/beta/sitePlugin.swf': {
|
|
160
|
+
'uuid': '665bd0d5-a9f4-4a07-9d9e-b31ba926ca78',
|
|
161
|
+
'language': 'eng',
|
|
162
|
+
'tid': "UA-3684979-1",
|
|
163
|
+
'serviceroot': 'https://dotsub.com'
|
|
164
|
+
},
|
|
165
|
+
'/static/players/beta/sharing.swf' : {
|
|
166
|
+
'code': '<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embed/" frameborder="0" width="560" height="315"></iframe>'
|
|
167
|
+
}
|
|
168
|
+
,
|
|
169
|
+
"ova-jw": {
|
|
170
|
+
'tag': "http://www.adotube.com/kernel/vast/vast.php?omlSource=http://www.adotube.com/php/services/player/OMLService.php?avpid=4_VoiY2&ad_type=pre-rolls&integration=vpaid&vpaid=1&rtb=0&platform_version=vast20as3&publisher="+encodeURI("http://dotsub.com")+"&title="+encodeURI(dotSUBMedia.title)+"&description="+encodeURI(dotSUBMedia.description)+"&videoURL=https://sc1.dotsub.com/d84da296789d74dcd1b1ed35376b8cdf/51fb32c8/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/video.flv&http_ref=" + encodeURIComponent(window.location.href),
|
|
171
|
+
"debug": {
|
|
172
|
+
"levels": "none"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
});
|
|
178
|
+
</script>
|
|
179
|
+
<style>
|
|
180
|
+
.x-slider-horz {
|
|
181
|
+
padding-right: 0;
|
|
182
|
+
padding-left: 0;
|
|
183
|
+
}
|
|
184
|
+
</style>
|
|
185
|
+
</head>
|
|
186
|
+
<body class=" yui-skin-sam" >
|
|
187
|
+
<script type="text/javascript">
|
|
188
|
+
/*<![CDATA[ */
|
|
189
|
+
loginMessages = {"errors.header.password.mismatch":"Invalid username and/or password, please try again or click here for help","errors.header.password.locked":"Your user account is not active, please activate it by clicking the activation link you received by e-mail"}
|
|
190
|
+
/* ]]> */
|
|
191
|
+
</script>
|
|
192
|
+
<div class="navbar navbar-static-top">
|
|
193
|
+
<div class="navbar-inner">
|
|
194
|
+
<div class="container">
|
|
195
|
+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
|
196
|
+
<span class="icon-bar"></span>
|
|
197
|
+
<span class="icon-bar"></span>
|
|
198
|
+
<span class="icon-bar"></span>
|
|
199
|
+
</a>
|
|
200
|
+
<div>
|
|
201
|
+
<ul class="nav pull-right">
|
|
202
|
+
<li class="divider-vertical"></li>
|
|
203
|
+
<li>
|
|
204
|
+
<a id="signUp" href="/enterprise/signup?location=%2fview%2f665bd0d5-a9f4-4a07-9d9e-b31ba926ca78">
|
|
205
|
+
Sign Up Free
|
|
206
|
+
</a>
|
|
207
|
+
</li>
|
|
208
|
+
<li class="divider-vertical"></li>
|
|
209
|
+
<li class="dropdown">
|
|
210
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Sign In<b class="caret"></b></a>
|
|
211
|
+
<ul class="dropdown-menu dropdown-form">
|
|
212
|
+
<div class="dropdown-login-content">
|
|
213
|
+
<form>
|
|
214
|
+
<input id="username" type="text" class="span3" placeholder="Username">
|
|
215
|
+
<input id="password" type="password" class="span2" placeholder="Password">
|
|
216
|
+
<button id="signIn" type="submit"
|
|
217
|
+
class="signin span1 pull-right btn btn-primary">Login
|
|
218
|
+
</button>
|
|
219
|
+
<label class="checkbox">
|
|
220
|
+
<input id="remember" type="checkbox"> Remember me?
|
|
221
|
+
</label>
|
|
222
|
+
</form>
|
|
223
|
+
<div id="loginError" style="display: none">
|
|
224
|
+
<div class="alert alert-error fade in">
|
|
225
|
+
<span class="alert-heading">Invalid login</span>
|
|
226
|
+
<a href="/login">Forgot Password?</a>
|
|
227
|
+
</div>
|
|
228
|
+
</div>
|
|
229
|
+
</div>
|
|
230
|
+
</ul>
|
|
231
|
+
</li>
|
|
232
|
+
<li class="divider-vertical"></li>
|
|
233
|
+
</ul>
|
|
234
|
+
</div>
|
|
235
|
+
<div class="nav-collapse">
|
|
236
|
+
<ul class="nav">
|
|
237
|
+
<li class="dotsub-branded"><a class="brand" href="/">
|
|
238
|
+
<img height="25" src="/images/bootstrap/logo.png">
|
|
239
|
+
</a></li>
|
|
240
|
+
<li class="Enterprise"><a href="/enterprise">Enterprise</a></li>
|
|
241
|
+
<li><a href="http://blog.dotsub.com">Blog</a></li>
|
|
242
|
+
<li>
|
|
243
|
+
<a href="http://help.dotsub.com/">
|
|
244
|
+
Help</a></li>
|
|
245
|
+
<li>
|
|
246
|
+
<form action="/view/" method="GET" style="margin:0">
|
|
247
|
+
<button type="submit" style="color:#fff" class="btn btn-info">
|
|
248
|
+
Watch Videos
|
|
249
|
+
</button>
|
|
250
|
+
</form>
|
|
251
|
+
</li>
|
|
252
|
+
</ul>
|
|
253
|
+
</div>
|
|
254
|
+
</div>
|
|
255
|
+
</div>
|
|
256
|
+
</div>
|
|
257
|
+
<div class="container">
|
|
258
|
+
<div class="pull-right">
|
|
259
|
+
<form id="siteSearchHeader" class="navbar-search pull-left" method="GET" action="/view/search/">
|
|
260
|
+
<input type="text" name="q" id="q" class="search-query" placeholder="Search">
|
|
261
|
+
<i class="icon-search" style="position: relative; top: 2px; left: -26px"></i>
|
|
262
|
+
</form>
|
|
263
|
+
</div>
|
|
264
|
+
</div>
|
|
265
|
+
<div class="container" style="text-align: center;">
|
|
266
|
+
<h6> </h6>
|
|
267
|
+
<ul id="siteNav" class="nav nav-tabs">
|
|
268
|
+
<li>
|
|
269
|
+
<a href="/view/" >Featured</a>
|
|
270
|
+
</li>
|
|
271
|
+
<li >
|
|
272
|
+
<a href="/view/my/" >My Videos</a>
|
|
273
|
+
</li>
|
|
274
|
+
<li >
|
|
275
|
+
<a href="/view/mostviewed/" >Most Viewed</a>
|
|
276
|
+
</li>
|
|
277
|
+
<li >
|
|
278
|
+
<a href="/view/latest/" >Latest</a>
|
|
279
|
+
</li>
|
|
280
|
+
<li >
|
|
281
|
+
<a href="/view/genre/" >Genre</a>
|
|
282
|
+
</li>
|
|
283
|
+
<li >
|
|
284
|
+
<a href="/channel/collection/" >Collections</a>
|
|
285
|
+
</li>
|
|
286
|
+
<li >
|
|
287
|
+
<a href="/view/language/" >Language</a>
|
|
288
|
+
</li>
|
|
289
|
+
<li >
|
|
290
|
+
<a href="/view/country/" >Country</a>
|
|
291
|
+
</li>
|
|
292
|
+
</ul>
|
|
293
|
+
</div>
|
|
294
|
+
<div class="page container">
|
|
295
|
+
<div class="signupPitch alert alert-info">
|
|
296
|
+
<a href="/tutorials">
|
|
297
|
+
Watch videos with subtitles in your language, upload your videos, create your own subtitles! Click here to learn more on "how to Dotsub"
|
|
298
|
+
</a>
|
|
299
|
+
</div>
|
|
300
|
+
</div>
|
|
301
|
+
<div id="pageBg" class="container">
|
|
302
|
+
<div id="page">
|
|
303
|
+
<div id="content" class="clearfix">
|
|
304
|
+
<div id="heading">
|
|
305
|
+
<h1>Twitter in Plain English
|
|
306
|
+
</h1>
|
|
307
|
+
</div>
|
|
308
|
+
<div id="main" class="row">
|
|
309
|
+
<div class="span12">
|
|
310
|
+
<div id="displayMedia" class="row">
|
|
311
|
+
<div class="span12">
|
|
312
|
+
<div style="text-align:center;padding-bottom:13px">
|
|
313
|
+
</div>
|
|
314
|
+
</div>
|
|
315
|
+
<div id="player" class="player span8">
|
|
316
|
+
<div class="playerBox" id="playerBox">
|
|
317
|
+
<div id="playerReplace" style="display:none;">
|
|
318
|
+
<img src="/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/p" alt="Preview"/>
|
|
319
|
+
Hey! You must have JavaScript turned off or an old version of Adobe's Flash.
|
|
320
|
+
<a href="http://www.macromedia.com/go/getflashplayer/">Get the latest version Flash. </a>
|
|
321
|
+
</div>
|
|
322
|
+
</div>
|
|
323
|
+
<div class="tabbable"> <!-- Only required for left/right tabs -->
|
|
324
|
+
<ul class="nav nav-tabs" style="margin-bottom: 0; margin-top: 10px">
|
|
325
|
+
<li class="active"><a href="#tab1" data-toggle="tab">Social</a></li>
|
|
326
|
+
<li><a href="#mediaShare" data-toggle="tab">Share</a></li>
|
|
327
|
+
<li class=""><a href="#mediaTranscription" data-toggle="tab">Transcription</a></li>
|
|
328
|
+
</ul>
|
|
329
|
+
<div class="tab-content">
|
|
330
|
+
<div class="tab-pane active" id="tab1">
|
|
331
|
+
<div id="ratingDiv" class="mediaRating" class="rating">
|
|
332
|
+
<span id="mediaRatingInfo">
|
|
333
|
+
<span id="mediaRating">0</span> (<span id="mediaUpVotes">0</span> Likes / <span id="mediaDownVotes">0</span> Dislikes)
|
|
334
|
+
</span>
|
|
335
|
+
</div>
|
|
336
|
+
<div id="a2aShare">
|
|
337
|
+
<!-- ADDTHIS BUTTON BEGIN -->
|
|
338
|
+
<script type="text/javascript">
|
|
339
|
+
var addthis_config = {
|
|
340
|
+
username: "dotsub",
|
|
341
|
+
ui_hover_direction: -1,
|
|
342
|
+
data_track_clickback: true,
|
|
343
|
+
data_ga_property: 'UA-3684979-1',
|
|
344
|
+
data_ga_social : true
|
|
345
|
+
};
|
|
346
|
+
</script>
|
|
347
|
+
<!-- AddThis Button BEGIN -->
|
|
348
|
+
<div class="addthis_toolbox addthis_default_style ">
|
|
349
|
+
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
|
|
350
|
+
<a class="addthis_button_tweet"></a>
|
|
351
|
+
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
|
|
352
|
+
<a class="addthis_counter addthis_pill_style"></a>
|
|
353
|
+
</div>
|
|
354
|
+
<script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js#pubid=dotsub"></script>
|
|
355
|
+
<!-- AddThis Button END -->
|
|
356
|
+
</div>
|
|
357
|
+
<div id="fb-root" style="padding-top:20px"></div>
|
|
358
|
+
<script src="//connect.facebook.net/en_US/all.js">
|
|
359
|
+
</script>
|
|
360
|
+
<script>
|
|
361
|
+
FB.init({
|
|
362
|
+
cookie:true,
|
|
363
|
+
status:true,
|
|
364
|
+
xfbml:true
|
|
365
|
+
});
|
|
366
|
+
document.observe('dom:loaded', function() {
|
|
367
|
+
//now add some listeners
|
|
368
|
+
FB.Event.subscribe('comment.create', commentChanged);
|
|
369
|
+
FB.Event.subscribe('comment.remove', commentChanged);
|
|
370
|
+
function commentChanged(response) {
|
|
371
|
+
new Ajax.Request('/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/comment', {
|
|
372
|
+
method: 'post'
|
|
373
|
+
});
|
|
374
|
+
}
|
|
375
|
+
});
|
|
376
|
+
</script>
|
|
377
|
+
<fb:comments href="http://dotsub.com/view/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78" num_posts="2" width="600"></fb:comments>
|
|
378
|
+
</div>
|
|
379
|
+
<div class="tab-pane" id="mediaShare">
|
|
380
|
+
<ul>
|
|
381
|
+
<li>
|
|
382
|
+
<h4>Embed Video</h4>
|
|
383
|
+
</li>
|
|
384
|
+
<li class="simpleEmbed">
|
|
385
|
+
Embed normal player <input id="embedNormalPlayer"
|
|
386
|
+
value='<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embed/" frameborder="0" width="640" height="360"></iframe>'/>
|
|
387
|
+
<a href="#" id="embedNormalPlayerCopy">Copy to Clipboard</a>
|
|
388
|
+
</li>
|
|
389
|
+
<li class="simpleEmbed">
|
|
390
|
+
Embed a smaller player <input id="embedSmallPlayer"
|
|
391
|
+
value='<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embed/" frameborder="0" width="420" height="315"></iframe>'/>
|
|
392
|
+
<a href="#" id="embedSmallPlayerCopy">Copy to Clipboard</a>
|
|
393
|
+
</li>
|
|
394
|
+
<li class="simpleEmbed">
|
|
395
|
+
<a id="advancedEmdeddingOptions">
|
|
396
|
+
Advanced Embedding Options
|
|
397
|
+
</a>
|
|
398
|
+
</li>
|
|
399
|
+
<li id="advancedEmbed" style="display:none;">
|
|
400
|
+
<div>
|
|
401
|
+
<div>Embedding Options</div>
|
|
402
|
+
<div>
|
|
403
|
+
Size:
|
|
404
|
+
<select id="embedSize">
|
|
405
|
+
<option value="s">Small</option>
|
|
406
|
+
<option value="m" selected="true">Small Wide Screen</option>
|
|
407
|
+
<option value="l">Wide Screen</option>
|
|
408
|
+
</select>
|
|
409
|
+
</div>
|
|
410
|
+
<div>
|
|
411
|
+
Language:
|
|
412
|
+
<select id="embedLanguage">
|
|
413
|
+
<option value="">Auto Selection</option>
|
|
414
|
+
<option value="abk">
|
|
415
|
+
Abkhaz</option>
|
|
416
|
+
<option value="aar">
|
|
417
|
+
Afar</option>
|
|
418
|
+
<option value="afh">
|
|
419
|
+
Afrihili</option>
|
|
420
|
+
<option value="afr">
|
|
421
|
+
Afrikaans</option>
|
|
422
|
+
<option value="aka">
|
|
423
|
+
Akan</option>
|
|
424
|
+
<option value="alb">
|
|
425
|
+
Albanian</option>
|
|
426
|
+
<option value="ara">
|
|
427
|
+
Arabic</option>
|
|
428
|
+
<option value="arm">
|
|
429
|
+
Armenian</option>
|
|
430
|
+
<option value="art">
|
|
431
|
+
Artificial</option>
|
|
432
|
+
<option value="aym">
|
|
433
|
+
Aymara</option>
|
|
434
|
+
<option value="aze">
|
|
435
|
+
Azerbaijani</option>
|
|
436
|
+
<option value="bat">
|
|
437
|
+
Baltic</option>
|
|
438
|
+
<option value="baq">
|
|
439
|
+
Basque</option>
|
|
440
|
+
<option value="ber">
|
|
441
|
+
Berber</option>
|
|
442
|
+
<option value="bis">
|
|
443
|
+
Bislama</option>
|
|
444
|
+
<option value="bos">
|
|
445
|
+
Bosnian</option>
|
|
446
|
+
<option value="bre">
|
|
447
|
+
Breton</option>
|
|
448
|
+
<option value="bul">
|
|
449
|
+
Bulgarian</option>
|
|
450
|
+
<option value="cat">
|
|
451
|
+
Catalan</option>
|
|
452
|
+
<option value="chr">
|
|
453
|
+
Cherokee</option>
|
|
454
|
+
<option value="chi_hans">
|
|
455
|
+
Chinese (Simplified)</option>
|
|
456
|
+
<option value="chi_hant">
|
|
457
|
+
Chinese (Traditional)</option>
|
|
458
|
+
<option value="yue">
|
|
459
|
+
Chinese, Yue (Cantonese)</option>
|
|
460
|
+
<option value="scr">
|
|
461
|
+
Croatian</option>
|
|
462
|
+
<option value="cze">
|
|
463
|
+
Czech</option>
|
|
464
|
+
<option value="dak">
|
|
465
|
+
Dakota</option>
|
|
466
|
+
<option value="dan">
|
|
467
|
+
Danish</option>
|
|
468
|
+
<option value="dut">
|
|
469
|
+
Dutch</option>
|
|
470
|
+
<option value="eng">
|
|
471
|
+
English</option>
|
|
472
|
+
<option value="epo">
|
|
473
|
+
Esperanto</option>
|
|
474
|
+
<option value="est">
|
|
475
|
+
Estonian</option>
|
|
476
|
+
<option value="fao">
|
|
477
|
+
Faroese</option>
|
|
478
|
+
<option value="fil">
|
|
479
|
+
Filipino (Pilipino)</option>
|
|
480
|
+
<option value="fin">
|
|
481
|
+
Finnish</option>
|
|
482
|
+
<option value="fre_ca">
|
|
483
|
+
French (Canada)</option>
|
|
484
|
+
<option value="fre_fr">
|
|
485
|
+
French (France)</option>
|
|
486
|
+
<option value="glg">
|
|
487
|
+
Galician</option>
|
|
488
|
+
<option value="geo">
|
|
489
|
+
Georgian</option>
|
|
490
|
+
<option value="ger">
|
|
491
|
+
German</option>
|
|
492
|
+
<option value="gre">
|
|
493
|
+
Greek</option>
|
|
494
|
+
<option value="guj">
|
|
495
|
+
Gujarati</option>
|
|
496
|
+
<option value="hat">
|
|
497
|
+
Haitian Creole</option>
|
|
498
|
+
<option value="heb">
|
|
499
|
+
Hebrew</option>
|
|
500
|
+
<option value="hin">
|
|
501
|
+
Hindi</option>
|
|
502
|
+
<option value="hun">
|
|
503
|
+
Hungarian</option>
|
|
504
|
+
<option value="ice">
|
|
505
|
+
Icelandic</option>
|
|
506
|
+
<option value="ind">
|
|
507
|
+
Indonesian</option>
|
|
508
|
+
<option value="ina">
|
|
509
|
+
Interlingua</option>
|
|
510
|
+
<option value="ira">
|
|
511
|
+
Iranian</option>
|
|
512
|
+
<option value="gle">
|
|
513
|
+
Irish</option>
|
|
514
|
+
<option value="ita">
|
|
515
|
+
Italian</option>
|
|
516
|
+
<option value="jpn">
|
|
517
|
+
Japanese</option>
|
|
518
|
+
<option value="kan">
|
|
519
|
+
Kannada</option>
|
|
520
|
+
<option value="kaz">
|
|
521
|
+
Kazakh</option>
|
|
522
|
+
<option value="lat">
|
|
523
|
+
Latin</option>
|
|
524
|
+
<option value="lav">
|
|
525
|
+
Latvian</option>
|
|
526
|
+
<option value="lit">
|
|
527
|
+
Lithuanian</option>
|
|
528
|
+
<option value="mac">
|
|
529
|
+
Macedonian</option>
|
|
530
|
+
<option value="mai">
|
|
531
|
+
Maithili</option>
|
|
532
|
+
<option value="may">
|
|
533
|
+
Malay</option>
|
|
534
|
+
<option value="mlt">
|
|
535
|
+
Maltese</option>
|
|
536
|
+
<option value="mar">
|
|
537
|
+
Marathi</option>
|
|
538
|
+
<option value="nep">
|
|
539
|
+
Nepali</option>
|
|
540
|
+
<option value="nor">
|
|
541
|
+
Norwegian</option>
|
|
542
|
+
<option value="nob">
|
|
543
|
+
Norwegian, Bokmål (Bokmaal)</option>
|
|
544
|
+
<option value="per">
|
|
545
|
+
Persian (Farsi)</option>
|
|
546
|
+
<option value="phi">
|
|
547
|
+
Philippine</option>
|
|
548
|
+
<option value="pol">
|
|
549
|
+
Polish</option>
|
|
550
|
+
<option value="por_br">
|
|
551
|
+
Portuguese (Brazil)</option>
|
|
552
|
+
<option value="por_pt">
|
|
553
|
+
Portuguese (Portugal)</option>
|
|
554
|
+
<option value="rum">
|
|
555
|
+
Romanian</option>
|
|
556
|
+
<option value="rus">
|
|
557
|
+
Russian</option>
|
|
558
|
+
<option value="scc">
|
|
559
|
+
Serbian</option>
|
|
560
|
+
<option value="hbs">
|
|
561
|
+
Serbo-Croatian</option>
|
|
562
|
+
<option value="slo">
|
|
563
|
+
Slovak</option>
|
|
564
|
+
<option value="slv">
|
|
565
|
+
Slovenian</option>
|
|
566
|
+
<option value="som">
|
|
567
|
+
Somali</option>
|
|
568
|
+
<option value="spa">
|
|
569
|
+
Spanish</option>
|
|
570
|
+
<option value="swa">
|
|
571
|
+
Swahili</option>
|
|
572
|
+
<option value="swe">
|
|
573
|
+
Swedish</option>
|
|
574
|
+
<option value="syr">
|
|
575
|
+
Syriac</option>
|
|
576
|
+
<option value="tgl">
|
|
577
|
+
Tagalog</option>
|
|
578
|
+
<option value="tam">
|
|
579
|
+
Tamil</option>
|
|
580
|
+
<option value="tel">
|
|
581
|
+
Telugu</option>
|
|
582
|
+
<option value="tha">
|
|
583
|
+
Thai</option>
|
|
584
|
+
<option value="tur">
|
|
585
|
+
Turkish</option>
|
|
586
|
+
<option value="tuk">
|
|
587
|
+
Turkmen</option>
|
|
588
|
+
<option value="ukr">
|
|
589
|
+
Ukrainian</option>
|
|
590
|
+
<option value="urd">
|
|
591
|
+
Urdu</option>
|
|
592
|
+
<option value="uig">
|
|
593
|
+
Uyghur (Uighur)</option>
|
|
594
|
+
<option value="uzb">
|
|
595
|
+
Uzbek</option>
|
|
596
|
+
<option value="vie">
|
|
597
|
+
Vietnamese</option>
|
|
598
|
+
<option value="vls">
|
|
599
|
+
Vlaams (Flemish)</option>
|
|
600
|
+
<option value="wel">
|
|
601
|
+
Welsh</option>
|
|
602
|
+
</select>
|
|
603
|
+
</div>
|
|
604
|
+
<div>
|
|
605
|
+
Embed Code
|
|
606
|
+
</div>
|
|
607
|
+
<div>
|
|
608
|
+
<input id="embedCode" type="text"
|
|
609
|
+
value='<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embed/" frameborder="0" width="640" height="360"></iframe>'>
|
|
610
|
+
</div>
|
|
611
|
+
<a href="#" id="embedCustomPlayerCopy">Copy to Clipboard</a>
|
|
612
|
+
</div>
|
|
613
|
+
</li>
|
|
614
|
+
<li>
|
|
615
|
+
<h4>Embed Video With Transcription</h4>
|
|
616
|
+
</li>
|
|
617
|
+
<li>
|
|
618
|
+
Embed with transcription beside video <input id="embedWithTransBeside"
|
|
619
|
+
value='<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embedWithTranscript/h/" frameborder="0" width="840" height="315"></iframe>'/>
|
|
620
|
+
<a href="#" id="embedWithTransBesideCopy">Copy to Clipboard</a>
|
|
621
|
+
</li>
|
|
622
|
+
<li>
|
|
623
|
+
Embed with transcription below video <input id="embedWithTransBelow"
|
|
624
|
+
value='<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/embedWithTranscript/v/" frameborder="0" width="420" height="630"></iframe>'/>
|
|
625
|
+
<a href="#" id="embedWithTransBelowCopy">Copy to Clipboard</a>
|
|
626
|
+
</li>
|
|
627
|
+
<li>
|
|
628
|
+
<h4>Embed transcript</h4>
|
|
629
|
+
</li>
|
|
630
|
+
<li class="transcriptEmbed">
|
|
631
|
+
Embed transcript in:
|
|
632
|
+
<select id="embedTranscriptLanguage">
|
|
633
|
+
<option value="">Auto Selection</option>
|
|
634
|
+
<option value="abk">
|
|
635
|
+
Abkhaz</option>
|
|
636
|
+
<option value="aar">
|
|
637
|
+
Afar</option>
|
|
638
|
+
<option value="afh">
|
|
639
|
+
Afrihili</option>
|
|
640
|
+
<option value="afr">
|
|
641
|
+
Afrikaans</option>
|
|
642
|
+
<option value="aka">
|
|
643
|
+
Akan</option>
|
|
644
|
+
<option value="alb">
|
|
645
|
+
Albanian</option>
|
|
646
|
+
<option value="ara">
|
|
647
|
+
Arabic</option>
|
|
648
|
+
<option value="arm">
|
|
649
|
+
Armenian</option>
|
|
650
|
+
<option value="art">
|
|
651
|
+
Artificial</option>
|
|
652
|
+
<option value="aym">
|
|
653
|
+
Aymara</option>
|
|
654
|
+
<option value="aze">
|
|
655
|
+
Azerbaijani</option>
|
|
656
|
+
<option value="bat">
|
|
657
|
+
Baltic</option>
|
|
658
|
+
<option value="baq">
|
|
659
|
+
Basque</option>
|
|
660
|
+
<option value="ber">
|
|
661
|
+
Berber</option>
|
|
662
|
+
<option value="bis">
|
|
663
|
+
Bislama</option>
|
|
664
|
+
<option value="bos">
|
|
665
|
+
Bosnian</option>
|
|
666
|
+
<option value="bre">
|
|
667
|
+
Breton</option>
|
|
668
|
+
<option value="bul">
|
|
669
|
+
Bulgarian</option>
|
|
670
|
+
<option value="cat">
|
|
671
|
+
Catalan</option>
|
|
672
|
+
<option value="chr">
|
|
673
|
+
Cherokee</option>
|
|
674
|
+
<option value="chi_hans">
|
|
675
|
+
Chinese (Simplified)</option>
|
|
676
|
+
<option value="chi_hant">
|
|
677
|
+
Chinese (Traditional)</option>
|
|
678
|
+
<option value="yue">
|
|
679
|
+
Chinese, Yue (Cantonese)</option>
|
|
680
|
+
<option value="scr">
|
|
681
|
+
Croatian</option>
|
|
682
|
+
<option value="cze">
|
|
683
|
+
Czech</option>
|
|
684
|
+
<option value="dak">
|
|
685
|
+
Dakota</option>
|
|
686
|
+
<option value="dan">
|
|
687
|
+
Danish</option>
|
|
688
|
+
<option value="dut">
|
|
689
|
+
Dutch</option>
|
|
690
|
+
<option value="eng">
|
|
691
|
+
English</option>
|
|
692
|
+
<option value="epo">
|
|
693
|
+
Esperanto</option>
|
|
694
|
+
<option value="est">
|
|
695
|
+
Estonian</option>
|
|
696
|
+
<option value="fao">
|
|
697
|
+
Faroese</option>
|
|
698
|
+
<option value="fil">
|
|
699
|
+
Filipino (Pilipino)</option>
|
|
700
|
+
<option value="fin">
|
|
701
|
+
Finnish</option>
|
|
702
|
+
<option value="fre_ca">
|
|
703
|
+
French (Canada)</option>
|
|
704
|
+
<option value="fre_fr">
|
|
705
|
+
French (France)</option>
|
|
706
|
+
<option value="glg">
|
|
707
|
+
Galician</option>
|
|
708
|
+
<option value="geo">
|
|
709
|
+
Georgian</option>
|
|
710
|
+
<option value="ger">
|
|
711
|
+
German</option>
|
|
712
|
+
<option value="gre">
|
|
713
|
+
Greek</option>
|
|
714
|
+
<option value="guj">
|
|
715
|
+
Gujarati</option>
|
|
716
|
+
<option value="hat">
|
|
717
|
+
Haitian Creole</option>
|
|
718
|
+
<option value="heb">
|
|
719
|
+
Hebrew</option>
|
|
720
|
+
<option value="hin">
|
|
721
|
+
Hindi</option>
|
|
722
|
+
<option value="hun">
|
|
723
|
+
Hungarian</option>
|
|
724
|
+
<option value="ice">
|
|
725
|
+
Icelandic</option>
|
|
726
|
+
<option value="ind">
|
|
727
|
+
Indonesian</option>
|
|
728
|
+
<option value="ina">
|
|
729
|
+
Interlingua</option>
|
|
730
|
+
<option value="ira">
|
|
731
|
+
Iranian</option>
|
|
732
|
+
<option value="gle">
|
|
733
|
+
Irish</option>
|
|
734
|
+
<option value="ita">
|
|
735
|
+
Italian</option>
|
|
736
|
+
<option value="jpn">
|
|
737
|
+
Japanese</option>
|
|
738
|
+
<option value="kan">
|
|
739
|
+
Kannada</option>
|
|
740
|
+
<option value="kaz">
|
|
741
|
+
Kazakh</option>
|
|
742
|
+
<option value="lat">
|
|
743
|
+
Latin</option>
|
|
744
|
+
<option value="lav">
|
|
745
|
+
Latvian</option>
|
|
746
|
+
<option value="lit">
|
|
747
|
+
Lithuanian</option>
|
|
748
|
+
<option value="mac">
|
|
749
|
+
Macedonian</option>
|
|
750
|
+
<option value="mai">
|
|
751
|
+
Maithili</option>
|
|
752
|
+
<option value="may">
|
|
753
|
+
Malay</option>
|
|
754
|
+
<option value="mlt">
|
|
755
|
+
Maltese</option>
|
|
756
|
+
<option value="mar">
|
|
757
|
+
Marathi</option>
|
|
758
|
+
<option value="nep">
|
|
759
|
+
Nepali</option>
|
|
760
|
+
<option value="nor">
|
|
761
|
+
Norwegian</option>
|
|
762
|
+
<option value="nob">
|
|
763
|
+
Norwegian, Bokmål (Bokmaal)</option>
|
|
764
|
+
<option value="per">
|
|
765
|
+
Persian (Farsi)</option>
|
|
766
|
+
<option value="phi">
|
|
767
|
+
Philippine</option>
|
|
768
|
+
<option value="pol">
|
|
769
|
+
Polish</option>
|
|
770
|
+
<option value="por_br">
|
|
771
|
+
Portuguese (Brazil)</option>
|
|
772
|
+
<option value="por_pt">
|
|
773
|
+
Portuguese (Portugal)</option>
|
|
774
|
+
<option value="rum">
|
|
775
|
+
Romanian</option>
|
|
776
|
+
<option value="rus">
|
|
777
|
+
Russian</option>
|
|
778
|
+
<option value="scc">
|
|
779
|
+
Serbian</option>
|
|
780
|
+
<option value="hbs">
|
|
781
|
+
Serbo-Croatian</option>
|
|
782
|
+
<option value="slo">
|
|
783
|
+
Slovak</option>
|
|
784
|
+
<option value="slv">
|
|
785
|
+
Slovenian</option>
|
|
786
|
+
<option value="som">
|
|
787
|
+
Somali</option>
|
|
788
|
+
<option value="spa">
|
|
789
|
+
Spanish</option>
|
|
790
|
+
<option value="swa">
|
|
791
|
+
Swahili</option>
|
|
792
|
+
<option value="swe">
|
|
793
|
+
Swedish</option>
|
|
794
|
+
<option value="syr">
|
|
795
|
+
Syriac</option>
|
|
796
|
+
<option value="tgl">
|
|
797
|
+
Tagalog</option>
|
|
798
|
+
<option value="tam">
|
|
799
|
+
Tamil</option>
|
|
800
|
+
<option value="tel">
|
|
801
|
+
Telugu</option>
|
|
802
|
+
<option value="tha">
|
|
803
|
+
Thai</option>
|
|
804
|
+
<option value="tur">
|
|
805
|
+
Turkish</option>
|
|
806
|
+
<option value="tuk">
|
|
807
|
+
Turkmen</option>
|
|
808
|
+
<option value="ukr">
|
|
809
|
+
Ukrainian</option>
|
|
810
|
+
<option value="urd">
|
|
811
|
+
Urdu</option>
|
|
812
|
+
<option value="uig">
|
|
813
|
+
Uyghur (Uighur)</option>
|
|
814
|
+
<option value="uzb">
|
|
815
|
+
Uzbek</option>
|
|
816
|
+
<option value="vie">
|
|
817
|
+
Vietnamese</option>
|
|
818
|
+
<option value="vls">
|
|
819
|
+
Vlaams (Flemish)</option>
|
|
820
|
+
<option value="wel">
|
|
821
|
+
Welsh</option>
|
|
822
|
+
</select>
|
|
823
|
+
<br/>
|
|
824
|
+
<input id="transcriptionEmbedCode"
|
|
825
|
+
value='<iframe src="http://dotsub.com/media/665bd0d5-a9f4-4a07-9d9e-b31ba926ca78/ts/" frameborder="0" width="100%" height="385"></iframe>'/>
|
|
826
|
+
<a href="#" id="embedTransCopy">Copy to Clipboard</a>
|
|
827
|
+
</li>
|
|
828
|
+
<li>
|
|
829
|
+
<a id="inviteLink">Invite a user to Dotsub</a>
|
|
830
|
+
<div id="inviteDiv" style="display:none;">
|
|
831
|
+
<input type="text" id="email" value="Enter their email address..."/>
|
|
832
|
+
<input id="inviteButton" type="button" value="Invite"/>
|
|
833
|
+
<div class="spinner">
|
|
834
|
+
<img id="spinner" src="/images/spinner.gif" alt="Busy Animated Icon" class="spinner" style="display: none" />
|
|
835
|
+
</div>
|
|
836
|
+
</div>
|
|
837
|
+
<div id="success" style="display:none;">
|
|
838
|
+
Your invitation to join Dotsub was successful
|
|
839
|
+
</div>
|
|
840
|
+
<div id="error" class="fieldError" style="display:none;">
|
|
841
|
+
There was an error inviting that user to Dotsub
|
|
842
|
+
</div>
|
|
843
|
+
</li>
|
|
844
|
+
</ul>
|
|
845
|
+
</div>
|
|
846
|
+
<div class="tab-pane " id="mediaTranscription">
|
|
847
|
+
<div style="height: 260px;overflow-y: scroll; position: relative" dir="ltr">
|
|
848
|
+
<a id="0" class="paragraphStart transcriptLine">So, what are you doing? It's one of the first questions we often ask friends and family.</a>
|
|
849
|
+
<br/><br/>
|
|
850
|
+
<a id="5000" class="paragraphStart transcriptLine">Even if the answer is just mowing the lawn or cooking dinner, it's interesting to us.</a>
|
|
851
|
+
<a id="10000" class="transcriptLine">It makes us feel connected and part of each other's lives.</a>
|
|
852
|
+
<a id="13000" class="transcriptLine">Unfortunately, most of our day to day lives are hidden from people that care.</a>
|
|
853
|
+
<a id="18000" class="transcriptLine">Of course we have email and blogs and phones to keep us connected.</a>
|
|
854
|
+
<a id="22000" class="transcriptLine">But you wouldn't send an email to a friend to tell them you're having coffee.</a>
|
|
855
|
+
<br/><br/>
|
|
856
|
+
<a id="25000" class="paragraphStart transcriptLine">Your friend doesn't need to know that.</a>
|
|
857
|
+
<a id="28000" class="transcriptLine">But, what about the people that want to know about the little things that happen in your life?</a>
|
|
858
|
+
<a id="33000" class="transcriptLine">Real life happens between blog posts and emails. And now, there's a way to share.</a>
|
|
859
|
+
<a id="38000" class="transcriptLine">This is Twitter in Plain English.</a>
|
|
860
|
+
<a id="41000" class="transcriptLine">Thanks to Twitter, it's possible to share short, bite-sized updates about your life.</a>
|
|
861
|
+
<br/><br/>
|
|
862
|
+
<a id="46000" class="paragraphStart transcriptLine">And follow the updates of people that matter to you via the Web.</a>
|
|
863
|
+
<a id="49000" class="transcriptLine">Here's how it works.</a>
|
|
864
|
+
<a id="51000" class="transcriptLine">Meet Carla. She's addicted to her mobile phone,</a>
|
|
865
|
+
<a id="54000" class="transcriptLine">reads blogs every day, and has contacts all over the world.</a>
|
|
866
|
+
<a id="57000" class="transcriptLine">She heard about Twitter and was skeptical.</a>
|
|
867
|
+
<a id="60000" class="transcriptLine">After some of her friends couldn't stop talking about it,</a>
|
|
868
|
+
<a id="62000" class="transcriptLine">she gave it a try.</a>
|
|
869
|
+
<a id="63000" class="transcriptLine">She signed up for free and saw that Twitter pages look a little like blogs, with very short posts.</a>
|
|
870
|
+
<a id="69000" class="transcriptLine">Each page is personal and has updates from friends.</a>
|
|
871
|
+
<a id="72000" class="transcriptLine">She got started by looking up her friends on Twitter.com.</a>
|
|
872
|
+
<a id="76000" class="transcriptLine">After finding a few, she clicked Follow to start seeing their updates on her Twitter page.</a>
|
|
873
|
+
<a id="81000" class="transcriptLine">Within hours, she began to see a different side of people she chose to follow.</a>
|
|
874
|
+
<a id="85000" class="transcriptLine">She didn't know that Steven in Seattle was a baseball fan,</a>
|
|
875
|
+
<br/><br/>
|
|
876
|
+
<a id="88000" class="paragraphStart transcriptLine">Or that Julia in London was reading a new investment book.</a>
|
|
877
|
+
<a id="91000" class="transcriptLine">The little messages from Twitter painted a picture of her friends, family and co-workers that she'd never seen before.</a>
|
|
878
|
+
<a id="97000" class="transcriptLine">It was the real world.</a>
|
|
879
|
+
<br/><br/>
|
|
880
|
+
<a id="99000" class="paragraphStart transcriptLine">Soon, she became a fan of Twitter, and posted updates every day.</a>
|
|
881
|
+
<a id="103000" class="transcriptLine">Her friends followed her updates, and learned that she recently discovered a passion for Van Halen.</a>
|
|
882
|
+
<br/><br/>
|
|
883
|
+
<a id="108000" class="paragraphStart transcriptLine">They could see Carla's life between blog posts and emails.</a>
|
|
884
|
+
<a id="112000" class="transcriptLine">For Carla, Twitter worked because it was simple.</a>
|
|
885
|
+
<a id="114000" class="transcriptLine">The updates were always short - under 140 characters.</a>
|
|
886
|
+
<a id="118000" class="transcriptLine">Plus, she could post updates and follow her friends</a>
|
|
887
|
+
<br/><br/>
|
|
888
|
+
<a id="120000" class="paragraphStart transcriptLine">Using the Twitter website, software on her browser,</a>
|
|
889
|
+
<a id="124000" class="transcriptLine">a mobile phone or instant messages.</a>
|
|
890
|
+
<a id="127000" class="transcriptLine">By asking members to answer the question, What are you doing?</a>
|
|
891
|
+
<br/><br/>
|
|
892
|
+
<a id="130000" class="paragraphStart transcriptLine">Carla found that Twitter brought her closer to people that matter to her.</a>
|
|
893
|
+
<a id="134000" class="transcriptLine">140 characters at a time.</a>
|
|
894
|
+
<a id="136000" class="transcriptLine">Find out what your friends are doing at Twitter.com</a>
|
|
895
|
+
<a id="140000" class="transcriptLine">I'm Lee LeFever, and this has been Twitter in Plain English on the Common Craft Show.</a>
|
|
896
|
+
</div>
|
|
897
|
+
</div>
|
|
898
|
+
</div>
|
|
899
|
+
</div>
|
|
900
|
+
</div>
|
|
901
|
+
<div id="mediacontrols" class="span4">
|
|
902
|
+
<div class="module expanded">
|
|
903
|
+
<h3>
|
|
904
|
+
<a class="toggle">Video Details</a>
|
|
905
|
+
</h3>
|
|
906
|
+
<div class="moduleBody">
|
|
907
|
+
<div>
|
|
908
|
+
<span>
|
|
909
|
+
Duration:
|
|
910
|
+
</span>
|
|
911
|
+
2 minutes and 24 seconds
|
|
912
|
+
</div>
|
|
913
|
+
<div>
|
|
914
|
+
<span>
|
|
915
|
+
Country:
|
|
916
|
+
</span>
|
|
917
|
+
<a href="/view/country/US">United States</a>
|
|
918
|
+
</div>
|
|
919
|
+
<div>
|
|
920
|
+
<span>
|
|
921
|
+
Language:
|
|
922
|
+
</span>
|
|
923
|
+
<a href="/view/language/eng">
|
|
924
|
+
English</a>
|
|
925
|
+
</div>
|
|
926
|
+
<div>
|
|
927
|
+
<span>
|
|
928
|
+
License:
|
|
929
|
+
</span>
|
|
930
|
+
<a href="http://creativecommons.org/licenses/by-nc/2.5/">
|
|
931
|
+
CC Attribution Non-Commercial
|
|
932
|
+
</a>
|
|
933
|
+
</div>
|
|
934
|
+
<div>
|
|
935
|
+
<span>
|
|
936
|
+
Genre:
|
|
937
|
+
</span>
|
|
938
|
+
<a href="/view/genre/genre.instructional">
|
|
939
|
+
Instructional
|
|
940
|
+
</a>
|
|
941
|
+
</div>
|
|
942
|
+
<div>
|
|
943
|
+
<span>
|
|
944
|
+
Producer:
|
|
945
|
+
</span>
|
|
946
|
+
Common Craft
|
|
947
|
+
</div>
|
|
948
|
+
<div>
|
|
949
|
+
<span>
|
|
950
|
+
Director:
|
|
951
|
+
</span>
|
|
952
|
+
Lee LeFever
|
|
953
|
+
</div>
|
|
954
|
+
<div>
|
|
955
|
+
<span>
|
|
956
|
+
Views:
|
|
957
|
+
</span>
|
|
958
|
+
9,541,382
|
|
959
|
+
(9,330,512
|
|
960
|
+
embedded)
|
|
961
|
+
</div>
|
|
962
|
+
<div>
|
|
963
|
+
<span>
|
|
964
|
+
Posted by:
|
|
965
|
+
</span>
|
|
966
|
+
<a href="/user/leelefever">leelefever</a> on Mar 5, 2008
|
|
967
|
+
</div>
|
|
968
|
+
<br/>
|
|
969
|
+
<div>
|
|
970
|
+
<script type="text/javascript">
|
|
971
|
+
var descriptioncontent;
|
|
972
|
+
var descriptiontrunkatedContent;
|
|
973
|
+
var descriptionmoreLink = new Element("a", {'class': "expander"}).update('(More)');
|
|
974
|
+
descriptionmoreLink.observe("click", function(event) {
|
|
975
|
+
$('descriptionp').update(descriptioncontent);
|
|
976
|
+
$('descriptionp').insert(descriptionlessLink);
|
|
977
|
+
});
|
|
978
|
+
var descriptionlessLink = new Element("a", {'class': "expander"}).update(" (Less)");
|
|
979
|
+
descriptionlessLink.observe("click", function() {
|
|
980
|
+
$('descriptionp').update(descriptiontrunkatedContent);
|
|
981
|
+
$('descriptionp').insert(descriptionmoreLink);
|
|
982
|
+
});
|
|
983
|
+
document.observe("dom:loaded", function() {
|
|
984
|
+
try {
|
|
985
|
+
descriptioncontent = $('descriptionp').firstChild.nodeValue;
|
|
986
|
+
}
|
|
987
|
+
catch(e) {
|
|
988
|
+
return;
|
|
989
|
+
}
|
|
990
|
+
if (descriptioncontent.length > 350) {
|
|
991
|
+
descriptiontrunkatedContent = descriptioncontent.truncate(350, "... ");
|
|
992
|
+
$('descriptionp').update(descriptiontrunkatedContent);
|
|
993
|
+
$('descriptionp').insert(descriptionmoreLink);
|
|
994
|
+
}
|
|
995
|
+
});
|
|
996
|
+
</script>
|
|
997
|
+
<div id="description" class="expander">
|
|
998
|
+
<p id="descriptionp">A short explanation of the micro-blogging service, Twitter.</p>
|
|
999
|
+
</div>
|
|
1000
|
+
</div>
|
|
1001
|
+
<div style="margin-top:20px;">
|
|
1002
|
+
<a id="reportVideo">
|
|
1003
|
+
<img src="/images/flag_red.gif" alt="Red Flag"/>
|
|
1004
|
+
Report this video as offensive
|
|
1005
|
+
</a>
|
|
1006
|
+
<div id="reportForm" style="display:none;">
|
|
1007
|
+
<textarea id="reportComments" rows="4" cols="35"></textarea>
|
|
1008
|
+
<button id="reportButton" class="button orange">
|
|
1009
|
+
Send Report
|
|
1010
|
+
</button>
|
|
1011
|
+
</div>
|
|
1012
|
+
</div>
|
|
1013
|
+
</div>
|
|
1014
|
+
</div>
|
|
1015
|
+
<div class="module expanded">
|
|
1016
|
+
<h3>
|
|
1017
|
+
<a class="toggle">Translate and Transcribe </a>
|
|
1018
|
+
</h3>
|
|
1019
|
+
<div class="moduleBody">
|
|
1020
|
+
<ul id="mediaActions">
|
|
1021
|
+
Sign In/Register for Dotsub to translate this video.
|
|
1022
|
+
</ul>
|
|
1023
|
+
</div>
|
|
1024
|
+
</div>
|
|
1025
|
+
<div class="mediaLinks module">
|
|
1026
|
+
<h2>
|
|
1027
|
+
Other videos from leelefever
|
|
1028
|
+
</h2>
|
|
1029
|
+
<div class="media" style="border-bottom: 1px #808080">
|
|
1030
|
+
<a class="pull-left" href="/view/25f1be59-9a84-4d75-94ef-acd0b5ccf0af">
|
|
1031
|
+
<img style="width: 64px;" class="preview" src="/media/25f1be59-9a84-4d75-94ef-acd0b5ccf0af/t" alt="otherVideoPreview"/>
|
|
1032
|
+
</a>
|
|
1033
|
+
<div class="media-body">
|
|
1034
|
+
<a href="/view/25f1be59-9a84-4d75-94ef-acd0b5ccf0af">
|
|
1035
|
+
<h5 class="media-heading">World Wide Web in Plain English</h5>
|
|
1036
|
+
</a>
|
|
1037
|
+
</div>
|
|
1038
|
+
</div>
|
|
1039
|
+
<div class="media" style="border-bottom: 1px #808080">
|
|
1040
|
+
<a class="pull-left" href="/view/253fc0e4-32fe-4c36-80e4-5dfb692dbb95">
|
|
1041
|
+
<img style="width: 64px;" class="preview" src="/media/253fc0e4-32fe-4c36-80e4-5dfb692dbb95/t" alt="otherVideoPreview"/>
|
|
1042
|
+
</a>
|
|
1043
|
+
<div class="media-body">
|
|
1044
|
+
<a href="/view/253fc0e4-32fe-4c36-80e4-5dfb692dbb95">
|
|
1045
|
+
<h5 class="media-heading">Computer Software in Plain English</h5>
|
|
1046
|
+
</a>
|
|
1047
|
+
</div>
|
|
1048
|
+
</div>
|
|
1049
|
+
</div>
|
|
1050
|
+
</div>
|
|
1051
|
+
</div>
|
|
1052
|
+
</div>
|
|
1053
|
+
</div>
|
|
1054
|
+
</div>
|
|
1055
|
+
</div>
|
|
1056
|
+
</div>
|
|
1057
|
+
</div>
|
|
1058
|
+
<footer>
|
|
1059
|
+
<div class="contactFooter">
|
|
1060
|
+
<div class="container">
|
|
1061
|
+
<div class="row">
|
|
1062
|
+
<div class="span3" style="background-image: url('/images/enterprise/envelope.png'); height: 200px; background-repeat: no-repeat; background-position: left">
|
|
1063
|
+
</div>
|
|
1064
|
+
<div class="span3 mailingSignUpDiv">
|
|
1065
|
+
<h4>Sign up for our newsletter</h4>
|
|
1066
|
+
<form id="mailingSignUp" method="POST" action="/services/mailingList" class="form-vertical">
|
|
1067
|
+
<fieldset class="control-group">
|
|
1068
|
+
<label></label>
|
|
1069
|
+
<input type="text" name="email" class="span3" placeholder="E-mail">
|
|
1070
|
+
</fieldset>
|
|
1071
|
+
<fieldset class="control-group">
|
|
1072
|
+
<label></label>
|
|
1073
|
+
<input type="text" name="firstName" class="span3" placeholder="First Name">
|
|
1074
|
+
</fieldset>
|
|
1075
|
+
<fieldset class="control-group">
|
|
1076
|
+
<label></label>
|
|
1077
|
+
<input type="text" name="lastName" class="span3" placeholder="Last Name">
|
|
1078
|
+
</fieldset>
|
|
1079
|
+
<label></label>
|
|
1080
|
+
<button type="submit" class="btn btn-primary">Sign Up!</button>
|
|
1081
|
+
</form>
|
|
1082
|
+
<script type="text/javascript">
|
|
1083
|
+
jQuery(document).ready(function(event) {
|
|
1084
|
+
jQuery('#mailingSignUp button[type|="submit"]').click(function() {
|
|
1085
|
+
//clear old errors:
|
|
1086
|
+
jQuery('#mailingSignUp input[name|="email"]').parent().removeClass("error");
|
|
1087
|
+
//check current form
|
|
1088
|
+
var email = jQuery('#mailingSignUp input[name|="email"]').val();
|
|
1089
|
+
if (email == "") {
|
|
1090
|
+
if (email == "") {
|
|
1091
|
+
jQuery('#mailingSignUp input[name|="email"]').parent().addClass("error");
|
|
1092
|
+
}
|
|
1093
|
+
jQuery('.mailingSignUpDiv').effect('shake', {distance: 10}, 100, function() {
|
|
1094
|
+
});
|
|
1095
|
+
return false;
|
|
1096
|
+
}
|
|
1097
|
+
});
|
|
1098
|
+
jQuery('.termsOfUse').click(function() {
|
|
1099
|
+
window.open('/termsOfUse');
|
|
1100
|
+
});
|
|
1101
|
+
if (jQuery('#signIn')) {
|
|
1102
|
+
jQuery('#signIn').click(function() {
|
|
1103
|
+
jQuery('#loginError').hide();
|
|
1104
|
+
var username = jQuery('input#username').val();
|
|
1105
|
+
var password = jQuery('input#password').val();
|
|
1106
|
+
var remember = jQuery('input#remember').is(':checked');
|
|
1107
|
+
UserManager.authenticate(username, password, remember, {
|
|
1108
|
+
callback: function() {
|
|
1109
|
+
location.reload();
|
|
1110
|
+
},
|
|
1111
|
+
errorHandler: function(result, ex, ex2) {
|
|
1112
|
+
if (ex.javaClassName == "org.springframework.security.LockedException") {
|
|
1113
|
+
}
|
|
1114
|
+
else {
|
|
1115
|
+
setTimeout("jQuery('.dropdown-login-content').effect('shake', {distance: 10}, 100, function(){jQuery('#loginError').show();})", 200);
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
});
|
|
1119
|
+
return false;
|
|
1120
|
+
});
|
|
1121
|
+
}
|
|
1122
|
+
jQuery().alert();
|
|
1123
|
+
jQuery('input, textarea').placeholder();
|
|
1124
|
+
});
|
|
1125
|
+
</script>
|
|
1126
|
+
</div>
|
|
1127
|
+
<div class="span5 offset1 followUs">
|
|
1128
|
+
<h4>Follow Us</h4>
|
|
1129
|
+
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fdotsub&width=218&colorscheme=light&show_faces=false&border_color&stream=false&header=false&height=55"
|
|
1130
|
+
scrolling="no" frameborder="0"
|
|
1131
|
+
style="border:none; position:relative; left: -10px; overflow:hidden; width:218px; height:55px;"
|
|
1132
|
+
allowTransparency="true"></iframe>
|
|
1133
|
+
<br/>
|
|
1134
|
+
<a href="http://twitter.com/Dotsub" class="twitter-follow-button">Follow @dotsub</a>
|
|
1135
|
+
<br/>
|
|
1136
|
+
<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
|
|
1137
|
+
<div style="height:10px; display:block">
|
|
1138
|
+
</div>
|
|
1139
|
+
<!-- Place this tag in your head or just before your close body tag -->
|
|
1140
|
+
<script type="text/javascript" src="//apis.google.com/js/plusone.js"></script>
|
|
1141
|
+
<!-- Place this tag where you want the +1 button to render -->
|
|
1142
|
+
<g:plusone></g:plusone>
|
|
1143
|
+
<br/>
|
|
1144
|
+
</div>
|
|
1145
|
+
</div>
|
|
1146
|
+
</div>
|
|
1147
|
+
</div>
|
|
1148
|
+
<div class="footer">
|
|
1149
|
+
<div class="container">
|
|
1150
|
+
<div class="row">
|
|
1151
|
+
<div class="span3">
|
|
1152
|
+
<ul>
|
|
1153
|
+
<li>
|
|
1154
|
+
<a href="/about"><span>About Dotsub </span></a>
|
|
1155
|
+
</li>
|
|
1156
|
+
<li>
|
|
1157
|
+
<a href="/contact">Contact </a>
|
|
1158
|
+
</li>
|
|
1159
|
+
<li>
|
|
1160
|
+
<a href="/press">Press </a>
|
|
1161
|
+
</li>
|
|
1162
|
+
<li>
|
|
1163
|
+
<a href="/team">Team </a>
|
|
1164
|
+
</li>
|
|
1165
|
+
<li>
|
|
1166
|
+
<a href="/board">Board </a>
|
|
1167
|
+
</li>
|
|
1168
|
+
<li>
|
|
1169
|
+
<a href="/newsletter">Newsletters </a>
|
|
1170
|
+
</li>
|
|
1171
|
+
<li>
|
|
1172
|
+
<a href="http://blog.dotsub.com">Blog</a>
|
|
1173
|
+
</li>
|
|
1174
|
+
</ul>
|
|
1175
|
+
</div>
|
|
1176
|
+
<div class="span3">
|
|
1177
|
+
<ul>
|
|
1178
|
+
<li>
|
|
1179
|
+
<span>Help with Dotsub </span>
|
|
1180
|
+
</li>
|
|
1181
|
+
<li>
|
|
1182
|
+
<a href="/howto">How to Dotsub </a>
|
|
1183
|
+
</li>
|
|
1184
|
+
<li>
|
|
1185
|
+
<a href="/demo">Demo</a>
|
|
1186
|
+
</li>
|
|
1187
|
+
<li>
|
|
1188
|
+
<a href="/tutorials">Tutorials </a>
|
|
1189
|
+
</li>
|
|
1190
|
+
<li>
|
|
1191
|
+
<a href="http://help.dotsub.com/">
|
|
1192
|
+
Help Portal </a>
|
|
1193
|
+
</li>
|
|
1194
|
+
<li>
|
|
1195
|
+
<a href="http://help.dotsub.com/faqs">
|
|
1196
|
+
FAQ's</a>
|
|
1197
|
+
</li>
|
|
1198
|
+
<li>
|
|
1199
|
+
<a href="mailto:help@dotsub.com">Ask for help</a>
|
|
1200
|
+
</li>
|
|
1201
|
+
</ul>
|
|
1202
|
+
</div>
|
|
1203
|
+
<div class="span3">
|
|
1204
|
+
<ul>
|
|
1205
|
+
<li><span>Developer Resources</span></li>
|
|
1206
|
+
<li>
|
|
1207
|
+
<a href="/jobs">Jobs</a>
|
|
1208
|
+
</li>
|
|
1209
|
+
<li>
|
|
1210
|
+
<a href="/labs">Labs</a>
|
|
1211
|
+
</li>
|
|
1212
|
+
<li>
|
|
1213
|
+
<a href="/solutions/oEmbed">oEmbed</a>
|
|
1214
|
+
</li>
|
|
1215
|
+
<li>
|
|
1216
|
+
<a href="http://status.dotsub.com">System Status</a>
|
|
1217
|
+
</li>
|
|
1218
|
+
</ul>
|
|
1219
|
+
</div>
|
|
1220
|
+
<div class="span3">
|
|
1221
|
+
<ul>
|
|
1222
|
+
<li>
|
|
1223
|
+
<span>Legal Info</span>
|
|
1224
|
+
</li>
|
|
1225
|
+
<li>
|
|
1226
|
+
<a id="privacyPolicyLink" href="/privacyPolicy">Privacy Policy</a>
|
|
1227
|
+
</li>
|
|
1228
|
+
<li>
|
|
1229
|
+
<a id="termsOfUseLink" class="termsOfUse">Terms of Use</a>
|
|
1230
|
+
</li>
|
|
1231
|
+
<li>
|
|
1232
|
+
<a href="http://creativecommons.org/">Creative Commons</a>
|
|
1233
|
+
</li>
|
|
1234
|
+
<li>
|
|
1235
|
+
<a href="/copyright">
|
|
1236
|
+
Copyright Notices
|
|
1237
|
+
</a>
|
|
1238
|
+
</li>
|
|
1239
|
+
</ul>
|
|
1240
|
+
</div>
|
|
1241
|
+
<div class="pull-right">
|
|
1242
|
+
<ul>
|
|
1243
|
+
<li>
|
|
1244
|
+
© 2007-2013
|
|
1245
|
+
dotsub
|
|
1246
|
+
</li>
|
|
1247
|
+
<!--
|
|
1248
|
+
Version 2.0-r85a7afc022a8834901a91df2308fd725ff5fda48
|
|
1249
|
+
-->
|
|
1250
|
+
</ul>
|
|
1251
|
+
</div>
|
|
1252
|
+
</div>
|
|
1253
|
+
</div>
|
|
1254
|
+
</div>
|
|
1255
|
+
</footer>
|
|
1256
|
+
</body>
|
|
1257
|
+
</html>
|