App-I18N

 view release on metacpan or  search on metacpan

share/static/app.css  view on Meta::CPAN

    color: black;
}

#langlist { margin: 10px 10%; margin-bottom: 20px; }
#langlist li { display: inline; margin: 5px; background: #36D986; color: #007439;  padding: 6px; }
#langlist li:hover { text-decoration: underline; background: #eee; }

#current-lang { color: #999; margin: 10px; }

#current-message { margin: 10px 13%; margin-top: 20px; }
.navbar input { font-size: 16px; padding: 6px; margin-right: 10px; border: 1px solid #ddd; background: #fff; }
.navbar input:hover { background: #eee; }

#current-msgstr,
#current-msgid { 
	margin: 10px; padding: 8px; 
	width: 70%;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-left: 0px;
	border-right: 0px;
	color: #333;
	font-family: Serif;
	font-size: 18px;
}

#google-translation { 
	margin-left: 30px; margin-bottom: 30px; 
	color: #666;
	background: #eee;
	border: #ddd;
	width: 65%;
	padding: 10px;
}


.apply { color: blue; margin-left: 10px; font-size: 12px; }

/*
body {
    font-size: 22px;
}

h1,h2,h3 { color: #3F92D2; }

textarea,input { 
    font-size: 22px;
    padding: 3px;
    background: #ded;
    color: #666;
}

textarea:focus,
input:focus {  background: #99CCD2;color: #333; font-weight: bold; }

.msgid { width: 300px; float: left; padding:6px; }
.msgstr { width: 400px; float: left; padding:6px; }

.msgid textarea,
.msgid input { width: 300px; }

.msgstr textarea,
.msgstr input { width: 400px; }

share/static/jquery-1.4.2.js  view on Meta::CPAN

				} else if ( elem.removeAttribute ) {
					elem.removeAttribute( jQuery.expando );
				}
				
				delete cache[ id ];
			}
		}
	}
});
// exclude the following css properties to add px
var rexclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
	ralpha = /alpha\([^)]*\)/,
	ropacity = /opacity=([^)]*)/,
	rfloat = /float/i,
	rdashAlpha = /-([a-z])/ig,
	rupper = /([A-Z])/g,
	rnumpx = /^-?\d+(?:px)?$/i,
	rnum = /^-?\d/,

	cssShow = { position: "absolute", visibility: "hidden", display:"block" },
	cssWidth = [ "Left", "Right" ],

share/static/jquery-1.4.2.js  view on Meta::CPAN

			// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291

			// If we're not dealing with a regular pixel number
			// but a number that has a weird ending, we need to convert it to pixels
			if ( !rnumpx.test( ret ) && rnum.test( ret ) ) {
				// Remember the original values
				var left = style.left, rsLeft = elem.runtimeStyle.left;

				// Put in the new values to get a computed value out
				elem.runtimeStyle.left = elem.currentStyle.left;
				style.left = camelCase === "fontSize" ? "1em" : (ret || 0);
				ret = style.pixelLeft + "px";

				// Revert the changed values
				style.left = left;
				elem.runtimeStyle.left = rsLeft;
			}
		}

		return ret;
	},

share/static/jquery.jgrowl.css  view on Meta::CPAN


div.jGrowl {
	padding: 			10px;
	z-index: 			9999;
	color: 				#fff;
	font-size: 			12px;
}

/** Special IE6 Style Positioning **/
div.ie6 {
	position: 			absolute;
}

div.ie6.top-right {
	right: 				auto;
	bottom: 			auto;

share/static/jquery.jgrowl.css  view on Meta::CPAN

div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
	background-color: 		#000;
	opacity: 				.85;
    -ms-filter: 			"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)"; 
    filter: 				progid:DXImageTransform.Microsoft.Alpha(Opacity=85); 
	zoom: 					1;
	width: 					235px;
	padding: 				10px;
	margin-top: 			5px;
	margin-bottom: 			5px;
	font-family: 			Tahoma, Arial, Helvetica, sans-serif;
	font-size: 				1em;
	text-align: 			left;
	display: 				none;
	-moz-border-radius: 	5px;
	-webkit-border-radius:	5px;
}

div.jGrowl div.jGrowl-notification {
	min-height: 			40px;
}

div.jGrowl div.jGrowl-notification div.header {
	font-weight: 			bold;
	font-size:				.85em;
}

div.jGrowl div.jGrowl-notification div.close {
	z-index:				99;
	float: 					right;
	font-weight: 			bold;
	font-size: 				1em;
	cursor:					pointer;
}

div.jGrowl div.jGrowl-closer {
	padding-top: 			4px;
	padding-bottom: 		4px;
	cursor: 				pointer;
	font-size:				.9em;
	font-weight: 			bold;
	text-align: 			center;
}

/** Hide jGrowl when printing **/
@media print {
	div.jGrowl {
		display: 			none;
	}
}

share/static/jquery.jgrowl.js  view on Meta::CPAN

 * notifications function similarly to the Growl Framework available for
 * Mac OS X (http://growl.info).
 *
 * To Do:
 * - Move library settings to containers and allow them to be changed per container
 *
 * Changes in 1.2.4
 * - Fixed IE bug with the close-all button
 * - Fixed IE bug with the filter CSS attribute (special thanks to gotwic)
 * - Update IE opacity CSS
 * - Changed font sizes to use "em", and only set the base style
 *
 * Changes in 1.2.3
 * - The callbacks no longer use the container as context, instead they use the actual notification
 * - The callbacks now receive the container as a parameter after the options parameter
 * - beforeOpen and beforeClose now check the return value, if it's false - the notification does
 *   not continue.  The open callback will also halt execution if it returns false.
 * - Fixed bug where containers would get confused
 * - Expanded the pause functionality to pause an entire container.
 *
 * Changes in 1.2.2



( run in 0.676 second using v1.01-cache-2.11-cpan-5735350b133 )