├── .gitattributes ├── .github └── issue_template.md ├── .gitignore ├── 3rdparty └── EncodingTools │ ├── EncodingTools.cs │ ├── EncodingTools.csproj │ ├── Multilang │ ├── CMLangConvertCharset.cs │ ├── CMLangConvertCharsetClass.cs │ ├── CMLangString.cs │ ├── CMLangStringClass.cs │ ├── CMultiLanguage.cs │ ├── CMultiLanguageClass.cs │ ├── IEnumCodePage.cs │ ├── IEnumRfc1766.cs │ ├── IEnumScript.cs │ ├── IMLangCodePages.cs │ ├── IMLangConvertCharset.cs │ ├── IMLangFontLink.cs │ ├── IMLangFontLink2.cs │ ├── IMLangLineBreakConsole.cs │ ├── IMLangString.cs │ ├── IMLangStringAStr.cs │ ├── IMLangStringBufA.cs │ ├── IMLangStringBufW.cs │ ├── IMLangStringWStr.cs │ ├── IMultiLanguage.cs │ ├── IMultiLanguage2.cs │ ├── IMultiLanguage3.cs │ ├── ISequentialStream.cs │ ├── IStream.cs │ ├── _FILETIME.cs │ ├── _LARGE_INTEGER.cs │ ├── _RemotableHandle.cs │ ├── _ULARGE_INTEGER.cs │ ├── __MIDL_IWinTypes_0009.cs │ ├── tagDetectEncodingInfo.cs │ ├── tagMIMECONTF.cs │ ├── tagMIMECPINFO.cs │ ├── tagMIMECSETINFO.cs │ ├── tagMLCPF.cs │ ├── tagMLDETECTCP.cs │ ├── tagMLSTR_FLAGS.cs │ ├── tagRFC1766INFO.cs │ ├── tagSCRIPFONTINFO.cs │ ├── tagSCRIPTINFO.cs │ ├── tagSTATSTG.cs │ └── tagUNICODERANGE.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Readme.md ├── LICENSE.md ├── README.md ├── Setup ├── FileAssociation.nsh ├── Setup.nsi └── st.png ├── SubtitleTools.Common ├── Behaviors │ ├── AutoScrollListView.cs │ ├── FolderBrowserDialogBehavior.cs │ ├── LoadedBehavior.cs │ ├── MediaElementBehavior.cs │ ├── OpenFileDialogBoxBehavior.cs │ ├── ScrollToIndexBehavior.cs │ ├── SetCaretIndexBehavior.cs │ ├── SliderBehavior.cs │ └── WebHyperlink.cs ├── CodePlexRss │ ├── Deserializer.cs │ ├── DownloadHistory.cs │ ├── Model │ │ ├── VersionInfo.cs │ │ └── VersionsInfo.cs │ └── rss.cs ├── Collections │ └── MTObservableCollection.cs ├── Compression │ └── Compression.cs ├── Config │ └── ConfigSetGet.cs ├── Controls │ ├── BetterPopup.cs │ ├── BusyIndicator.cs │ └── VisualStates.BusyIndicator.cs ├── Converters │ ├── ColorConverter.cs │ ├── FileNameConverter.cs │ ├── ImageConverter.cs │ ├── Iso639Converter.cs │ ├── NumberToTimeSpanConverter.cs │ ├── PlayBtnImageConverter.cs │ ├── TimeSpanConverter.cs │ ├── VisibilityConverter.cs │ └── WaterMarkConverter.cs ├── EncodingHelper │ ├── DetectEncoding.cs │ └── Model │ │ ├── EncodingInf.cs │ │ └── EncodingsInf.cs ├── Files │ ├── FileAssociation.cs │ ├── Filters.cs │ ├── Info.cs │ ├── Path.cs │ └── Xml.cs ├── ISO639 │ ├── Language.cs │ └── LanguagesCodes.cs ├── Logger │ └── ExceptionLogger.cs ├── MVVM │ ├── App.cs │ ├── DelegateCommand.cs │ ├── Designer.cs │ ├── Messenger.cs │ └── ViewModelBase.cs ├── Net │ ├── Downloader.cs │ └── PostXML.cs ├── Properties │ └── AssemblyInfo.cs ├── Regex │ └── RegexHelper.cs ├── ResourceFiles │ └── ResourceUtils.cs ├── SubtitleTools.Common.csproj ├── Themes │ ├── ExpressionDark.xaml │ ├── Generic.xaml │ └── Images │ │ ├── error-info.png │ │ ├── error.png │ │ └── warning.png ├── Threading │ └── DispatcherHelper.cs ├── Toolkit │ ├── Imdb.cs │ ├── Memory.cs │ └── SafeClipboard.cs ├── Translators │ └── TranslatorContainer.cs └── packages.config ├── SubtitleTools.Infrastructure ├── Core │ ├── CalculateReadingTime.cs │ ├── CalculateWordsCount.cs │ ├── ChangeEncoding.cs │ ├── DeleteRow.cs │ ├── FixRle.cs │ ├── JoinFiles.cs │ ├── LogWindow.cs │ ├── Merge.cs │ ├── MixFiles.cs │ ├── OpenSubtitlesOrg │ │ ├── API │ │ │ ├── CheckHashInfo.cs │ │ │ ├── DownloadSubtitlesResult.cs │ │ │ ├── IOpenSubtitlesDb.cs │ │ │ ├── LoginInfo.cs │ │ │ ├── SearchInfo.cs │ │ │ ├── SubCheckHashResult.cs │ │ │ ├── SubtitleDataInfo.cs │ │ │ ├── SubtitleInfo.cs │ │ │ ├── SubtitlesData.cs │ │ │ ├── TryUploadInfo.cs │ │ │ ├── TryUploadResult.cs │ │ │ ├── UA.cs │ │ │ ├── UploadBaseinfo.cs │ │ │ ├── UploadCDsInfo.cs │ │ │ └── UploadResult.cs │ │ ├── Helper │ │ │ ├── MovieFileInfo.cs │ │ │ └── UploadData.cs │ │ └── OpenSubtitlesXmlRpc.cs │ ├── ParseSrt.cs │ ├── Sre.cs │ ├── Sync.cs │ ├── Translate.cs │ └── UnicodeRle.cs ├── Models │ ├── AudioFormat.cs │ ├── AudioFormats.cs │ ├── DownloadOpenSubtitlesGui.cs │ ├── JoinTwoFilesGui.cs │ ├── Log.cs │ ├── Logs.cs │ ├── MainWindowGui.cs │ ├── OsdbItem.cs │ ├── OsdbItems.cs │ ├── PreviewModel.cs │ ├── SilenceTimeout.cs │ ├── SpeechRecognitionEngine.cs │ ├── SpeechRecognitionEngines.cs │ ├── SpeechRecognitionModel.cs │ ├── SubtitleItem.cs │ ├── SubtitleItems.cs │ ├── SyncModel.cs │ ├── TranslatorModel.cs │ └── UploadItem.cs ├── Properties │ └── AssemblyInfo.cs ├── SubtitleTools.Infrastructure.csproj ├── ViewModels │ ├── AboutViewModel.cs │ ├── DetectEncodingViewModel.cs │ ├── DownloadOpenSubtitlesViewModel.cs │ ├── JoinTwoFilesViewModel.cs │ ├── LogsViewModel.cs │ ├── MainWindowViewModel.cs │ ├── PreviewViewModel.cs │ ├── SpeechRecognitionViewModel.cs │ ├── SyncViewModel.cs │ ├── TranslatorViewModel.cs │ └── UploadOpenSubtitlesViewModel.cs └── packages.config ├── SubtitleTools.Shell ├── About.xaml ├── About.xaml.cs ├── DetectEncodingView.xaml ├── DetectEncodingView.xaml.cs ├── DownloadOpenSubtitles.xaml ├── DownloadOpenSubtitles.xaml.cs ├── Flags │ ├── ad.png │ ├── ae.png │ ├── af.png │ ├── ag.png │ ├── ai.png │ ├── al.png │ ├── am.png │ ├── an.png │ ├── ao.png │ ├── ar.png │ ├── as.png │ ├── at.png │ ├── au.png │ ├── aw.png │ ├── ax.png │ ├── az.png │ ├── ba.png │ ├── bb.png │ ├── bd.png │ ├── be.png │ ├── bf.png │ ├── bg.png │ ├── bh.png │ ├── bi.png │ ├── bj.png │ ├── bm.png │ ├── bn.png │ ├── bo.png │ ├── br.png │ ├── bs.png │ ├── bt.png │ ├── bv.png │ ├── bw.png │ ├── by.png │ ├── bz.png │ ├── ca.png │ ├── catalonia.png │ ├── cc.png │ ├── cd.png │ ├── cf.png │ ├── cg.png │ ├── ch.png │ ├── ci.png │ ├── ck.png │ ├── cl.png │ ├── cm.png │ ├── cn.png │ ├── co.png │ ├── cr.png │ ├── cs.png │ ├── cu.png │ ├── cv.png │ ├── cx.png │ ├── cy.png │ ├── cz.png │ ├── de.png │ ├── dj.png │ ├── dk.png │ ├── dm.png │ ├── do.png │ ├── dz.png │ ├── ec.png │ ├── ee.png │ ├── eg.png │ ├── eh.png │ ├── england.png │ ├── er.png │ ├── es.png │ ├── et.png │ ├── europeanunion.png │ ├── fam.png │ ├── fi.png │ ├── fj.png │ ├── fk.png │ ├── fm.png │ ├── fo.png │ ├── fr.png │ ├── ga.png │ ├── gb.png │ ├── gd.png │ ├── ge.png │ ├── gf.png │ ├── gh.png │ ├── gi.png │ ├── gl.png │ ├── gm.png │ ├── gn.png │ ├── gp.png │ ├── gq.png │ ├── gr.png │ ├── gs.png │ ├── gt.png │ ├── gu.png │ ├── gw.png │ ├── gy.png │ ├── hk.png │ ├── hm.png │ ├── hn.png │ ├── hr.png │ ├── ht.png │ ├── hu.png │ ├── id.png │ ├── ie.png │ ├── il.png │ ├── in.png │ ├── io.png │ ├── iq.png │ ├── ir.png │ ├── is.png │ ├── it.png │ ├── jm.png │ ├── jo.png │ ├── jp.png │ ├── ke.png │ ├── kg.png │ ├── kh.png │ ├── ki.png │ ├── km.png │ ├── kn.png │ ├── kp.png │ ├── kr.png │ ├── kw.png │ ├── ky.png │ ├── kz.png │ ├── la.png │ ├── lb.png │ ├── lc.png │ ├── li.png │ ├── lk.png │ ├── lr.png │ ├── ls.png │ ├── lt.png │ ├── lu.png │ ├── lv.png │ ├── ly.png │ ├── ma.png │ ├── mc.png │ ├── md.png │ ├── me.png │ ├── mg.png │ ├── mh.png │ ├── mk.png │ ├── ml.png │ ├── mm.png │ ├── mn.png │ ├── mo.png │ ├── mp.png │ ├── mq.png │ ├── mr.png │ ├── ms.png │ ├── mt.png │ ├── mu.png │ ├── mv.png │ ├── mw.png │ ├── mx.png │ ├── my.png │ ├── mz.png │ ├── na.png │ ├── nc.png │ ├── ne.png │ ├── nf.png │ ├── ng.png │ ├── ni.png │ ├── nl.png │ ├── no.png │ ├── np.png │ ├── nr.png │ ├── nu.png │ ├── null.png │ ├── nz.png │ ├── om.png │ ├── pa.png │ ├── pe.png │ ├── pf.png │ ├── pg.png │ ├── ph.png │ ├── pk.png │ ├── pl.png │ ├── pm.png │ ├── pn.png │ ├── pr.png │ ├── ps.png │ ├── pt.png │ ├── pw.png │ ├── py.png │ ├── qa.png │ ├── re.png │ ├── ro.png │ ├── rs.png │ ├── ru.png │ ├── rw.png │ ├── sa.png │ ├── sb.png │ ├── sc.png │ ├── scotland.png │ ├── sd.png │ ├── se.png │ ├── sg.png │ ├── sh.png │ ├── si.png │ ├── sj.png │ ├── sk.png │ ├── sl.png │ ├── sm.png │ ├── sn.png │ ├── so.png │ ├── sr.png │ ├── st.png │ ├── sv.png │ ├── sy.png │ ├── sz.png │ ├── tc.png │ ├── td.png │ ├── tf.png │ ├── tg.png │ ├── th.png │ ├── tj.png │ ├── tk.png │ ├── tl.png │ ├── tm.png │ ├── tn.png │ ├── to.png │ ├── tr.png │ ├── tt.png │ ├── tv.png │ ├── tw.png │ ├── tz.png │ ├── ua.png │ ├── ug.png │ ├── um.png │ ├── us.png │ ├── uy.png │ ├── uz.png │ ├── va.png │ ├── vc.png │ ├── ve.png │ ├── vg.png │ ├── vi.png │ ├── vn.png │ ├── vu.png │ ├── wales.png │ ├── wf.png │ ├── ws.png │ ├── ye.png │ ├── yt.png │ ├── za.png │ ├── zm.png │ └── zw.png ├── Images │ ├── CopyHS.png │ ├── alert.png │ ├── books.png │ ├── box_download_48.png │ ├── calculator.png │ ├── clipping_sound.png │ ├── close.png │ ├── configure.png │ ├── copy.png │ ├── debug-pause-icon.png │ ├── debug-run-icon.png │ ├── debug-step-into-icon.png │ ├── debug-stop-icon.png │ ├── delete.png │ ├── delete16.png │ ├── download.png │ ├── error.png │ ├── event16.png │ ├── film_link.png │ ├── format.png │ ├── format_text_direction_rtl.png │ ├── info.png │ ├── join.png │ ├── merge.png │ ├── movies.png │ ├── note_add.png │ ├── open.png │ ├── osdb.png │ ├── refresh.png │ ├── save.png │ ├── search.png │ ├── speech_recognition.png │ ├── sync.png │ ├── toolbar_find.png │ ├── translate.png │ ├── upload.png │ └── voice_chat.png ├── JoinTwoFiles.xaml ├── JoinTwoFiles.xaml.cs ├── Logs.xaml ├── Logs.xaml.cs ├── MainShell.xaml ├── MainShell.xaml.cs ├── Preview.xaml ├── Preview.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SpeechRecognition.xaml ├── SpeechRecognition.xaml.cs ├── SubtitleTools.Shell.csproj ├── SubtitleView.xaml ├── SubtitleView.xaml.cs ├── SyncView.xaml ├── SyncView.xaml.cs ├── Toolbar.xaml ├── Toolbar.xaml.cs ├── TranslatorView.xaml ├── TranslatorView.xaml.cs ├── UploadOpenSubtitles.xaml ├── UploadOpenSubtitles.xaml.cs └── packages.config ├── SubtitleTools.Tests ├── Properties │ └── AssemblyInfo.cs ├── Samples │ └── rss.cs ├── SubtitleTools.Tests.csproj ├── TestParseSrt.cs ├── TestPrj.nunit ├── TestRegexHelper.cs └── packages.config ├── SubtitleTools.sln └── SubtitleTools ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── SubtitleTools.csproj ├── app.config ├── movies.ico └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/EncodingTools/EncodingTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/EncodingTools.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/EncodingTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/EncodingTools.csproj -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/CMLangConvertCharset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/CMLangConvertCharset.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/CMLangConvertCharsetClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/CMLangConvertCharsetClass.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/CMLangString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/CMLangString.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/CMLangStringClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/CMLangStringClass.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/CMultiLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/CMultiLanguage.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/CMultiLanguageClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/CMultiLanguageClass.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IEnumCodePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IEnumCodePage.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IEnumRfc1766.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IEnumRfc1766.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IEnumScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IEnumScript.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangCodePages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangCodePages.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangConvertCharset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangConvertCharset.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangFontLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangFontLink.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangFontLink2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangFontLink2.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangLineBreakConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangLineBreakConsole.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangString.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangStringAStr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangStringAStr.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangStringBufA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangStringBufA.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangStringBufW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangStringBufW.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMLangStringWStr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMLangStringWStr.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMultiLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMultiLanguage.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMultiLanguage2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMultiLanguage2.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IMultiLanguage3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IMultiLanguage3.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/ISequentialStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/ISequentialStream.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/IStream.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/_FILETIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/_FILETIME.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/_LARGE_INTEGER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/_LARGE_INTEGER.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/_RemotableHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/_RemotableHandle.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/_ULARGE_INTEGER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/_ULARGE_INTEGER.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/__MIDL_IWinTypes_0009.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/__MIDL_IWinTypes_0009.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagDetectEncodingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagDetectEncodingInfo.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagMIMECONTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagMIMECONTF.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagMIMECPINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagMIMECPINFO.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagMIMECSETINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagMIMECSETINFO.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagMLCPF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagMLCPF.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagMLDETECTCP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagMLDETECTCP.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagMLSTR_FLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagMLSTR_FLAGS.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagRFC1766INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagRFC1766INFO.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagSCRIPFONTINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagSCRIPFONTINFO.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagSCRIPTINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagSCRIPTINFO.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagSTATSTG.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Multilang/tagUNICODERANGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Multilang/tagUNICODERANGE.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /3rdparty/EncodingTools/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/3rdparty/EncodingTools/Readme.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/README.md -------------------------------------------------------------------------------- /Setup/FileAssociation.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/Setup/FileAssociation.nsh -------------------------------------------------------------------------------- /Setup/Setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/Setup/Setup.nsi -------------------------------------------------------------------------------- /Setup/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/Setup/st.png -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/AutoScrollListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/AutoScrollListView.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/FolderBrowserDialogBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/FolderBrowserDialogBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/LoadedBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/LoadedBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/MediaElementBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/MediaElementBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/OpenFileDialogBoxBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/OpenFileDialogBoxBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/ScrollToIndexBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/ScrollToIndexBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/SetCaretIndexBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/SetCaretIndexBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/SliderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/SliderBehavior.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Behaviors/WebHyperlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Behaviors/WebHyperlink.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/CodePlexRss/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/CodePlexRss/Deserializer.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/CodePlexRss/DownloadHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/CodePlexRss/DownloadHistory.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/CodePlexRss/Model/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/CodePlexRss/Model/VersionInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/CodePlexRss/Model/VersionsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/CodePlexRss/Model/VersionsInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/CodePlexRss/rss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/CodePlexRss/rss.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Collections/MTObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Collections/MTObservableCollection.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Compression/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Compression/Compression.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Config/ConfigSetGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Config/ConfigSetGet.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Controls/BetterPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Controls/BetterPopup.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Controls/BusyIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Controls/BusyIndicator.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Controls/VisualStates.BusyIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Controls/VisualStates.BusyIndicator.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/ColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/ColorConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/FileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/FileNameConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/ImageConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/Iso639Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/Iso639Converter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/NumberToTimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/NumberToTimeSpanConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/PlayBtnImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/PlayBtnImageConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Converters/WaterMarkConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Converters/WaterMarkConverter.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/EncodingHelper/DetectEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/EncodingHelper/DetectEncoding.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/EncodingHelper/Model/EncodingInf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/EncodingHelper/Model/EncodingInf.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/EncodingHelper/Model/EncodingsInf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/EncodingHelper/Model/EncodingsInf.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Files/FileAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Files/FileAssociation.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Files/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Files/Filters.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Files/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Files/Info.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Files/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Files/Path.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Files/Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Files/Xml.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/ISO639/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/ISO639/Language.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/ISO639/LanguagesCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/ISO639/LanguagesCodes.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Logger/ExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Logger/ExceptionLogger.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/MVVM/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/MVVM/App.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/MVVM/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/MVVM/DelegateCommand.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/MVVM/Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/MVVM/Designer.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/MVVM/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/MVVM/Messenger.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/MVVM/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/MVVM/ViewModelBase.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Net/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Net/Downloader.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Net/PostXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Net/PostXML.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Regex/RegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Regex/RegexHelper.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/ResourceFiles/ResourceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/ResourceFiles/ResourceUtils.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/SubtitleTools.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/SubtitleTools.Common.csproj -------------------------------------------------------------------------------- /SubtitleTools.Common/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /SubtitleTools.Common/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Themes/Generic.xaml -------------------------------------------------------------------------------- /SubtitleTools.Common/Themes/Images/error-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Themes/Images/error-info.png -------------------------------------------------------------------------------- /SubtitleTools.Common/Themes/Images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Themes/Images/error.png -------------------------------------------------------------------------------- /SubtitleTools.Common/Themes/Images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Themes/Images/warning.png -------------------------------------------------------------------------------- /SubtitleTools.Common/Threading/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Threading/DispatcherHelper.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Toolkit/Imdb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Toolkit/Imdb.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Toolkit/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Toolkit/Memory.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Toolkit/SafeClipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Toolkit/SafeClipboard.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/Translators/TranslatorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/Translators/TranslatorContainer.cs -------------------------------------------------------------------------------- /SubtitleTools.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Common/packages.config -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/CalculateReadingTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/CalculateReadingTime.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/CalculateWordsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/CalculateWordsCount.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/ChangeEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/ChangeEncoding.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/DeleteRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/DeleteRow.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/FixRle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/FixRle.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/JoinFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/JoinFiles.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/LogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/LogWindow.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/Merge.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/MixFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/MixFiles.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/CheckHashInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/CheckHashInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/DownloadSubtitlesResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/DownloadSubtitlesResult.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/IOpenSubtitlesDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/IOpenSubtitlesDb.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/LoginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/LoginInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SearchInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubCheckHashResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubCheckHashResult.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubtitleDataInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubtitleDataInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubtitleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubtitleInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubtitlesData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/SubtitlesData.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/TryUploadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/TryUploadInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/TryUploadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/TryUploadResult.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UA.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UploadBaseinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UploadBaseinfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UploadCDsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UploadCDsInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UploadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/API/UploadResult.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/Helper/MovieFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/Helper/MovieFileInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/Helper/UploadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/Helper/UploadData.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/OpenSubtitlesXmlRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/OpenSubtitlesOrg/OpenSubtitlesXmlRpc.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/ParseSrt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/ParseSrt.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/Sre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/Sre.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/Sync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/Sync.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/Translate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/Translate.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Core/UnicodeRle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Core/UnicodeRle.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/AudioFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/AudioFormat.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/AudioFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/AudioFormats.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/DownloadOpenSubtitlesGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/DownloadOpenSubtitlesGui.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/JoinTwoFilesGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/JoinTwoFilesGui.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/Log.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/Logs.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/MainWindowGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/MainWindowGui.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/OsdbItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/OsdbItem.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/OsdbItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/OsdbItems.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/PreviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/PreviewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SilenceTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SilenceTimeout.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SpeechRecognitionEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SpeechRecognitionEngine.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SpeechRecognitionEngines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SpeechRecognitionEngines.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SpeechRecognitionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SpeechRecognitionModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SubtitleItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SubtitleItem.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SubtitleItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SubtitleItems.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/SyncModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/SyncModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/TranslatorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/TranslatorModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Models/UploadItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Models/UploadItem.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/SubtitleTools.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/SubtitleTools.Infrastructure.csproj -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/DetectEncodingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/DetectEncodingViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/DownloadOpenSubtitlesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/DownloadOpenSubtitlesViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/JoinTwoFilesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/JoinTwoFilesViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/LogsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/LogsViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/PreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/PreviewViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/SpeechRecognitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/SpeechRecognitionViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/SyncViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/SyncViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/TranslatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/TranslatorViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/ViewModels/UploadOpenSubtitlesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/ViewModels/UploadOpenSubtitlesViewModel.cs -------------------------------------------------------------------------------- /SubtitleTools.Infrastructure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Infrastructure/packages.config -------------------------------------------------------------------------------- /SubtitleTools.Shell/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/About.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/About.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/DetectEncodingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/DetectEncodingView.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/DetectEncodingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/DetectEncodingView.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/DownloadOpenSubtitles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/DownloadOpenSubtitles.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/DownloadOpenSubtitles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/DownloadOpenSubtitles.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ad.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ae.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/af.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ag.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ai.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/al.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/am.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/an.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ao.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ar.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/as.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/at.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/au.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/aw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ax.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/az.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ba.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bb.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bd.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/be.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bi.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bj.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bo.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/br.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bs.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bv.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/by.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/bz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ca.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/catalonia.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cd.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ch.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ci.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ck.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/co.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cs.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cv.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cx.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cy.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/cz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/de.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/dj.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/dk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/dm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/do.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/dz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ec.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ee.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/eg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/eh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/england.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/er.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/es.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/et.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/europeanunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/europeanunion.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fam.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fi.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fj.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fo.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/fr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ga.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gb.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gd.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ge.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gi.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gp.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gq.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gs.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/gy.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/hk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/hm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/hn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/hr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ht.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/hu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/id.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ie.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/il.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/in.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/io.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/iq.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ir.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/is.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/it.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/jm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/jo.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/jp.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ke.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ki.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/km.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kp.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ky.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/kz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/la.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lb.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/li.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ls.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/lv.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ly.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ma.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/md.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/me.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ml.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mo.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mp.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mq.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ms.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mv.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mx.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/my.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/mz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/na.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/nc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ne.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/nf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ng.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ni.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/nl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/no.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/np.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/nr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/nu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/null.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/nz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/om.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pa.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pe.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ph.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ps.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/pw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/py.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/qa.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/re.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ro.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/rs.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ru.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/rw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sa.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sb.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/scotland.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sd.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/se.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/si.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sj.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/so.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/st.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sv.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sy.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/sz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/td.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/th.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tj.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tk.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/to.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tr.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tv.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/tz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ua.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ug.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/um.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/us.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/uy.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/uz.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/va.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/vc.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ve.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/vg.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/vi.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/vn.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/vu.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/wales.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/wf.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ws.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/ye.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/yt.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/za.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/zm.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Flags/zw.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/CopyHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/CopyHS.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/alert.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/books.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/box_download_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/box_download_48.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/calculator.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/clipping_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/clipping_sound.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/close.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/configure.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/copy.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/debug-pause-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/debug-pause-icon.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/debug-run-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/debug-run-icon.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/debug-step-into-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/debug-step-into-icon.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/debug-stop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/debug-stop-icon.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/delete.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/delete16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/delete16.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/download.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/error.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/event16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/event16.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/film_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/film_link.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/format.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/format_text_direction_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/format_text_direction_rtl.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/info.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/join.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/merge.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/movies.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/note_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/note_add.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/open.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/osdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/osdb.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/refresh.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/save.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/search.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/speech_recognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/speech_recognition.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/sync.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/toolbar_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/toolbar_find.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/translate.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/upload.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/Images/voice_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Images/voice_chat.png -------------------------------------------------------------------------------- /SubtitleTools.Shell/JoinTwoFiles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/JoinTwoFiles.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/JoinTwoFiles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/JoinTwoFiles.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Logs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Logs.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/Logs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Logs.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/MainShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/MainShell.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/MainShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/MainShell.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Preview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Preview.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/Preview.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Preview.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Properties/Resources.resx -------------------------------------------------------------------------------- /SubtitleTools.Shell/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Properties/Settings.settings -------------------------------------------------------------------------------- /SubtitleTools.Shell/SpeechRecognition.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SpeechRecognition.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/SpeechRecognition.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SpeechRecognition.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/SubtitleTools.Shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SubtitleTools.Shell.csproj -------------------------------------------------------------------------------- /SubtitleTools.Shell/SubtitleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SubtitleView.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/SubtitleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SubtitleView.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/SyncView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SyncView.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/SyncView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/SyncView.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/Toolbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Toolbar.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/Toolbar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/Toolbar.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/TranslatorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/TranslatorView.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/TranslatorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/TranslatorView.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/UploadOpenSubtitles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/UploadOpenSubtitles.xaml -------------------------------------------------------------------------------- /SubtitleTools.Shell/UploadOpenSubtitles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/UploadOpenSubtitles.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools.Shell/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Shell/packages.config -------------------------------------------------------------------------------- /SubtitleTools.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SubtitleTools.Tests/Samples/rss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/Samples/rss.cs -------------------------------------------------------------------------------- /SubtitleTools.Tests/SubtitleTools.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/SubtitleTools.Tests.csproj -------------------------------------------------------------------------------- /SubtitleTools.Tests/TestParseSrt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/TestParseSrt.cs -------------------------------------------------------------------------------- /SubtitleTools.Tests/TestPrj.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/TestPrj.nunit -------------------------------------------------------------------------------- /SubtitleTools.Tests/TestRegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/TestRegexHelper.cs -------------------------------------------------------------------------------- /SubtitleTools.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.Tests/packages.config -------------------------------------------------------------------------------- /SubtitleTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools.sln -------------------------------------------------------------------------------- /SubtitleTools/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/App.xaml -------------------------------------------------------------------------------- /SubtitleTools/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/App.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/MainWindow.xaml -------------------------------------------------------------------------------- /SubtitleTools/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SubtitleTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SubtitleTools/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SubtitleTools/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/Properties/Resources.resx -------------------------------------------------------------------------------- /SubtitleTools/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SubtitleTools/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/Properties/Settings.settings -------------------------------------------------------------------------------- /SubtitleTools/SubtitleTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/SubtitleTools.csproj -------------------------------------------------------------------------------- /SubtitleTools/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/app.config -------------------------------------------------------------------------------- /SubtitleTools/movies.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/movies.ico -------------------------------------------------------------------------------- /SubtitleTools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/SubtitleTools/HEAD/SubtitleTools/packages.config --------------------------------------------------------------------------------