mirror of
https://github.com/greenshot/greenshot
synced 2025-07-31 04:00:13 -07:00
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1774 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
20 lines
479 B
C#
20 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using GreenshotPlugin.Controls;
|
|
using GreenshotPlugin.Core;
|
|
using Greenshot.IniFile;
|
|
using System.ComponentModel.Design;
|
|
using System.Reflection;
|
|
using System.IO;
|
|
using System.Windows.Forms;
|
|
|
|
namespace GreenshotImgurPlugin.Forms {
|
|
public class ImgurForm : GreenshotForm {
|
|
protected override string LanguagePattern {
|
|
get {
|
|
return Language.LANGUAGE_FILENAME_PATTERN;
|
|
}
|
|
}
|
|
}
|
|
}
|